diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..720bcc02a5267a8ed3826967defdad28b34dafdc --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +venv/ +ENV/ +env/ +.venv/ + +# Node +node_modules/ +.next/ +out/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Environment +.env +.env.local +.env.*.local + +# Data files (keep structure, not data) +*.parquet +*.duckdb +*.duckdb.wal + +# Large data files and binaries (downloaded at build time) +backend/data/embeddings.json +backend/data/*.geojson +backend/data/*.gz +backend/data/*.xlsx +backend/data/global/airports/airports_global.csv +backend/data/*.gpkg +backend/data/osm/ +backend/data/overture/ +backend/data/kontur/ +backend/data/hdx/ +backend/data/base/ +backend/data/inec/ +backend/data/temp/ +backend/data/climate/ +backend/data/ms_buildings/ +backend/data/stri/ +backend/data/socioeconomic/ +backend/data/terrain/ +backend/data/worldbank/ + +# Logs +*.log +npm-debug.log* + +# Build +dist/ +build/ +*.egg-info/ diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md new file mode 100644 index 0000000000000000000000000000000000000000..1578e704a6b4858b76496cad9d419d1f4fc698b7 --- /dev/null +++ b/ARCHITECTURE.md @@ -0,0 +1,426 @@ +# GeoQuery Architecture + +## System Overview + +GeoQuery is a **Territorial Intelligence Platform** that combines Large Language Models (LLMs) with geospatial analysis to enable natural language querying of geographic datasets. The system translates conversational queries into SQL, executes spatial operations, and presents results through interactive maps and data visualizations. + +### Design Philosophy + +1. **Natural Language First**: Users interact through conversational queries, not SQL or GIS interfaces +2. **Dynamic Data Discovery**: No fixed schema—the system adapts to any GeoJSON dataset added to the catalog +3. **Streaming Intelligence**: Real-time thought processes and incremental results via Server-Sent Events +4. **Spatial Native**: PostGIS-compatible spatial operations in DuckDB for performant geospatial analysis +5. **Visual by Default**: Automatic map visualization, choropleth generation, and data presentation + +--- + +## High-Level Architecture + +``` +┌─────────────────────────────────────────────────────────────┐ +│ Frontend │ +│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │ +│ │ ChatPanel │ │ MapViewer │ │ DataExplorer │ │ +│ │ (React) │ │ (Leaflet) │ │ (Table) │ │ +│ └──────────────┘ └──────────────┘ └──────────────┘ │ +│ │ │ │ │ +│ └──────────────────┴──────────────────┘ │ +│ │ (SSE/HTTP) │ +└───────────────────────────┼─────────────────────────────────┘ + │ +┌───────────────────────────┼─────────────────────────────────┐ +│ API Layer │ +│ ┌──────────────────────────────────────────────────┐ │ +│ │ FastAPI Endpoints │ │ +│ │ /api/chat (SSE) │ /api/catalog │ /api/schema │ │ +│ └──────────────────────────────────────────────────┘ │ +│ │ │ +└───────────────────────────┼─────────────────────────────────┘ + │ +┌───────────────────────────┼─────────────────────────────────┐ +│ Service Layer │ +│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │ +│ │ QueryExecutor│ │ LLMGateway │ │ GeoEngine │ │ +│ │ │ │ (Gemini) │ │ (DuckDB) │ │ +│ └──────────────┘ └──────────────┘ └──────────────┘ │ +│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │ +│ │ DataCatalog │ │SemanticSearch│ │ SessionStore │ │ +│ │ (Embeddings) │ │ (Vectors) │ │ (Layers) │ │ +│ └──────────────┘ └──────────────┘ └──────────────┘ │ +└─────────────────────────────────────────────────────────────┘ + │ +┌───────────────────────────┼─────────────────────────────────┐ +│ Data Layer │ +│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │ +│ │ catalog.json │ │ GeoJSON │ │ embeddings │ │ +│ │ (Metadata) │ │ (Datasets) │ │ (.npy) │ │ +│ └──────────────┘ └──────────────┘ └──────────────┘ │ +│ ┌──────────────────────────────────────────────────┐ │ +│ │ DuckDB In-Memory Database │ │ +│ │ (Spatial Tables, Temporary Layers, Indexes) │ │ +│ └──────────────────────────────────────────────────┘ │ +└─────────────────────────────────────────────────────────────┘ +``` + +--- + +## Core Components + +### 1. Frontend (Next.js + React) + +**Location**: `frontend/src/` + +The frontend is a single-page application built with Next.js that provides: +- **ChatPanel**: Conversational interface with streaming responses +- **MapViewer**: Interactive Leaflet map with layer management +- **DataExplorer**: Tabular data view with export capabilities + +**Key Technologies**: +- Next.js 14 (App Router) +- React 18 with hooks +- Leaflet for map rendering +- Server-Sent Events (SSE) for streaming +- dnd-kit for drag-and-drop layer reordering + +### 2. API Layer (FastAPI) + +**Location**: `backend/api/` + +RESTful API with streaming support: +- **`/api/chat`** (POST): Main query endpoint with SSE streaming +- **`/api/catalog`** (GET): Returns available datasets +- **`/api/schema`** (GET): Returns database schema + +**Key Technologies**: +- FastAPI for async HTTP +- Starlette for SSE streaming +- CORS middleware for cross-origin requests + +### 3. Service Layer + +#### QueryExecutor (`backend/services/executor.py`) +Orchestrates the entire query pipeline: +1. Intent detection +2. Data discovery +3. SQL generation +4. Query execution +5. Response formatting +6. Explanation generation + +#### LLMGateway (`backend/core/llm_gateway.py`) +Interfaces with Gemini API: +- Intent detection with thinking +- Text-to-SQL generation +- Natural language explanations +- Layer naming and styling +- Error correction +- Streaming support + +#### GeoEngine (`backend/core/geo_engine.py`) +Manages spatial database: +- DuckDB connection with Spatial extension +- Lazy table loading from GeoJSON +- SQL query execution +- Result formatting to GeoJSON +- Temporary layer registration + +#### DataCatalog (`backend/core/data_catalog.py`) +Dataset discovery system: +- Loads `catalog.json` metadata +- Generates table summaries for LLM context +- Provides schema information +- Manages dataset metadata + +#### SemanticSearch (`backend/core/semantic_search.py`) +Vector-based dataset discovery: +- Generates embeddings for dataset descriptions +- Performs cosine similarity search +- Returns top-k relevant datasets +- Scales to large catalogs (100+ datasets) + +#### SessionStore (`backend/core/session_store.py`) +User session management: +- Tracks created map layers per session +- Enables spatial operations on user layers +- Maintains layer metadata + +### 4. Data Layer + +#### Catalog System (`backend/data/catalog.json`) +Central metadata registry: +- Dataset paths and descriptions +- Semantic descriptions for AI discovery +- Categories and tags +- Schema information +- Data provenance + +#### GeoJSON Datasets (`backend/data/`) +Organized by source: +- `osm/` - OpenStreetMap data (roads, buildings, POI) +- `admin/` - Administrative boundaries (HDX) +- `global/` - Global datasets (Kontur, Natural Earth) +- `socioeconomic/` - World Bank, MPI data +- `stri/` - STRI GIS Portal datasets + +#### Vector Embeddings (`backend/data/embeddings.npy`) +Sentence transformer embeddings for semantic search + +--- + +## Data Flow: User Query to Response + +### Step 1: User Input +``` +User: "Show me hospitals in Panama City" +``` + +### Step 2: Frontend → Backend +``` +POST /api/chat +{ + "message": "Show me hospitals in Panama City", + "history": [] +} +``` + +### Step 3: Intent Detection (LLM) +```python +# QueryExecutor calls LLMGateway.detect_intent() +intent = await llm.detect_intent(query, history) +# Returns: "MAP_REQUEST" +``` + +### Step 4: Semantic Discovery +```python +# SemanticSearch finds relevant tables +candidates = semantic_search.search_table_names(query, top_k=15) +# Returns: ["panama_healthsites_geojson", "osm_amenities", ...] +``` + +### Step 5: Table Schema Retrieval +```python +# GeoEngine loads relevant tables +geo_engine.ensure_table_loaded("panama_healthsites_geojson") +schema = geo_engine.get_table_schemas() +# Returns: "Table: panama_healthsites_geojson\nColumns: name, amenity, geom..." +``` + +### Step 6: SQL Generation (LLM) +```python +# LLMGateway generates SQL +sql = await llm.generate_analytical_sql(query, schema, history) +# Returns: "SELECT name, amenity, geom FROM panama_healthsites_geojson +# WHERE amenity = 'hospital' AND ST_Intersects(geom, ...)" +``` + +### Step 7: Query Execution +```python +# GeoEngine executes spatial query +geojson = geo_engine.execute_spatial_query(sql) +# Returns: GeoJSON with 45 hospital features +``` + +### Step 8: Response Formatting +```python +# Add layer metadata, generate name, configure visualization +layer_info = await llm.generate_layer_name(query, sql) +# Returns: {"name": "Hospitals in Panama City", "emoji": "🏥", "pointStyle": "icon"} + +geojson = format_geojson_layer(query, geojson, features, + layer_info["name"], + layer_info["emoji"], + layer_info["pointStyle"]) +``` + +### Step 9: Explanation Generation (Streaming) +```python +# LLMGateway generates explanation with streaming +async for chunk in llm.stream_explanation(query, sql, data_summary, history): + if chunk["type"] == "thought": + # Stream thinking process to frontend + elif chunk["type"] == "content": + # Stream actual response text +``` + +### Step 10: Frontend Rendering +- ChatPanel displays streamed explanation +- MapViewer renders GeoJSON layer with hospital icons +- DataExplorer shows tabular data + +--- + +## Key Design Decisions + +### 1. Why DuckDB Instead of PostgreSQL? + +**Chosen**: DuckDB with Spatial extension + +**Rationale**: +- **Zero Configuration**: Embedded database, no separate server +- **Fast Analytics**: Columnar storage optimized for analytical queries +- **Spatial Support**: Full PostGIS compatibility via spatial extension +- **GeoJSON Native**: Direct GeoJSON import/export +- **Lightweight**: Perfect for development and small deployments + +**Trade-off**: Limited concurrency compared to PostgreSQL (acceptable for our use case) + +### 2. Why Semantic Search for Dataset Discovery? + +**Chosen**: Sentence transformer embeddings + cosine similarity + +**Rationale**: +- **Scalability**: Works with 100+ datasets without overwhelming LLM context +- **Accuracy**: Better matches than keyword search +- **Token Efficiency**: Only sends relevant table schemas to LLM + +**Example**: +- Query: "Where can I find doctors?" +- Semantic search finds: `panama_healthsites_geojson` (closest match) +- LLM then generates SQL using only relevant schema + +### 3. Why Server-Sent Events for Streaming? + +**Chosen**: SSE instead of WebSockets + +**Rationale**: +- **Simpler Protocol**: One-way communication (server → client) +- **HTTP Compatible**: Works through firewalls and proxies +- **Auto Reconnect**: Built-in browser support +- **Event Types**: Named events for different message types + +**Trade-off**: No client → server streaming (not needed for our use case) + +### 4. Why Lazy Table Loading? + +**Chosen**: Load GeoJSON only when needed + +**Rationale**: +- **Fast Startup**: Don't load all datasets on initialization +- **Memory Efficient**: Only keep active tables in memory +- **Flexible**: Easy to add new datasets without restart + +**Implementation**: +```python +def ensure_table_loaded(self, table_name: str) -> bool: + if table_name not in self.loaded_tables: + self.load_geojson_to_table(table_name) + return table_name in self.loaded_tables +``` + +### 5. Why Choropleth Auto-Detection? + +**Chosen**: Automatic choropleth configuration based on data + +**Rationale**: +- **User Friendly**: No manual configuration needed +- **Intelligent**: Prioritizes meaningful columns (population, area, density) +- **Adaptive**: Works with any numeric column + +**Logic**: +1. Find numeric columns +2. Prioritize keywords (population, area, count) +3. Check value variance (skip if all same) +4. Enable choropleth with appropriate scale (linear/log) + +--- + +##Error Handling & Resilience + +### SQL Error Correction +When a generated SQL query fails: +1. Extract error message +2. Send to LLM with original query and schema +3. LLM generates corrected SQL +4. Execute repaired query +5. If still fails, return error to user + +### Data Unavailable Handling +When requested data doesn't exist: +1. LLM returns special error marker: `-- ERROR: DATA_UNAVAILABLE` +2. System extracts "Requested" and "Available" from response +3. Returns helpful message to user with alternatives + +### Missing Tables +- Catalog lists all datasets but not all loaded +- Lazy loading attempts to load on demand +- If file missing, logs warning and continues + +--- + +## Performance Considerations + +### Query Optimization +- **Spatial Indexes**: DuckDB automatically indexes geometry columns +- **Top-K Limits**: Large result sets limited to prevent memory issues +- **Lazy Evaluation**: Stream results when possible + +### Embedding Cache +- Embeddings pre-computed and stored in `.npy` file +- Only regenerated when catalog changes +- Fast cosine similarity via NumPy vectorization + +### Frontend Rendering +- **Layer Virtualization**: Large point datasets use circle markers for performance +- **Choropleth Colors**: Pre-computed color palettes +- **Lazy Map Loading**: Only render visible layers + +--- + +## Security Considerations + +### LLM Prompt Injection +- **Mitigation**: Clear separation of user query and system instructions +- **Validation**: SQL parsing and column name verification +- **Sandboxing**: Read-only queries (no INSERT/UPDATE/DELETE) + +### API Access +- **CORS**: Configured allowed origins +- **Rate Limiting**: Can be added via middleware (not currently implemented) +- **Authentication**: Not implemented (suitable for internal/demo deployments) + +### Data Privacy +- No user data stored (stateless queries) +- Session layers stored in-memory only +- No query logging by default + +--- + +## Scalability Path + +### Current Limitations +- **Single Process**: No horizontal scaling +- **In-Memory Database**: Limited by RAM +- **No Caching**: Repeated queries re-execute + +### Future Enhancements +1. **Add PostgreSQL/PostGIS**: For production deployments with persistence +2. **Redis Cache**: Cache query results and embeddings +3. **Load Balancer**: Multiple FastAPI instances +4. **Background Workers**: Async data ingestion with Celery +5. **CDN**: Serve GeoJSON datasets from cloud storage + +--- + +## Technology Choices Summary + +| Component | Technology | Why? | +|-----------|-----------|------| +| **Backend Language** | Python 3.11+ | Rich geospatial ecosystem, LLM SDKs | +| **Web Framework** | FastAPI | Async support, OpenAPI docs, SSE | +| **Database** | DuckDB | Embedded, fast analytics, spatial support | +| **LLM** | Google Gemini | Thinking mode, streaming, JSON output | +| **Frontend Framework** | Next.js 14 | React, SSR, App Router, TypeScript | +| **Map Library** | Leaflet | Lightweight, flexible, plugin ecosystem | +| **Embeddings** | sentence-transformers | Multilingual, semantic similarity | +| **Data Format** | GeoJSON | Standard, human-readable, LLM-friendly | + +--- + +## Next Steps + +For detailed information on specific components: +- [Backend Services](docs/backend/CORE_SERVICES.md) +- [API Reference](docs/backend/API_ENDPOINTS.md) +- [Frontend Components](docs/frontend/COMPONENTS.md) +- [Data Flow](docs/DATA_FLOW.md) +- [Setup Guide](SETUP.md) diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md new file mode 100644 index 0000000000000000000000000000000000000000..ae186161258df5b2f5bd45969392112b584bc8e8 --- /dev/null +++ b/DEPLOYMENT.md @@ -0,0 +1,58 @@ +# Deployment Guide + +This guide describes how to deploy the GeoQuery platform for public access. + +## Strategy +We use a **single-container** approach where the backend (FastAPI) serves the frontend (Next.js) as static files. This simplifies deployment to PaaS providers like Railway, Render, or Hugging Face Spaces. + +### Architecture +- **Build Stage**: Node.js builder compiles the Next.js frontend into static HTML/CSS/JS (`frontend/out`). +- **Runtime Stage**: Python 3.11 image installs backend dependencies. +- **Serving**: FastAPI mounts the static build at `/` and serves the API at `/api`. +- **Data**: Geospatial data (`backend/data`) is included in the image (~2GB). + +## Prerequisites +- Docker +- ~5GB Free disk space (for image build) +- 4GB+ RAM on host machine (for DuckDB in-memory analytics) + +## Local Build & Run +```bash +# Build the image +docker build -t geoquery . + +# Run the container (Mapping 7860 to 7860 to match standard Space config) +docker run -p 7860:7860 -e GEMINI_API_KEY=your_key_here geoquery +``` + +## Hosting Options (Getting a Public URL) + +To share this demo with others, you need to host the Docker container on a cloud provider. + +### Option A: Hugging Face Spaces (Easiest & Free) +This will give you a public URL like `https://huggingface.co/spaces/username/geoquery`. + +1. **Create Space**: Go to [huggingface.co/spaces](https://huggingface.co/spaces) -> "Create new Space". + - SDK: **Docker** + - Template: **Blank** +2. **Push Code**: + ```bash + git remote add space https://huggingface.co/spaces/YOUR_USERNAME/SPACE_NAME + git push space main + ``` +3. **Configure Secrets**: In the Space "Settings" tab, add a "Repository Secret" named `GEMINI_API_KEY` with your key. + +### Option B: Railway / Render +1. Connect your GitHub repository. +2. Railway/Render will detect the `Dockerfile`. +3. Set the environment variable `GEMINI_API_KEY`. +4. Detailed output will be available at a URL like `https://geoquery-production.up.railway.app`. + +### Option C: Google Cloud Run +1. Build: `gcloud builds submit --tag gcr.io/PROJECT_ID/geoquery` +2. Deploy: `gcloud run deploy geoquery --image gcr.io/PROJECT_ID/geoquery --platform managed` + + +## Notes +- **Data Persistence**: The current setup uses read-only data baked into the image. User uploads will be lost on restart unless a volume is mounted to `/app/backend/data/custom`. +- **Memory Usage**: DuckDB processes data in-memory. For large queries, ensure the host has sufficient RAM. diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..00a564de2c82f4ca7c40018db7cb0d259a6d23f0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,58 @@ +# ========================================== +# Stage 1: Build Frontend (Next.js) +# ========================================== +FROM node:20-alpine AS frontend +WORKDIR /app + +# Install dependencies +COPY frontend/package*.json ./ +RUN npm ci + +# Copy source code +COPY frontend/ ./ + +# Configure for static export +ENV NEXT_PUBLIC_API_URL=/api/v1 +# Run build (creates /app/out) +RUN npm run build + +# ========================================== +# Stage 2: Runtime (Python + FastAPI) +# ========================================== +FROM python:3.11-slim + +# Create a non-root user (Recommended for HF Spaces) +RUN useradd -m -u 1000 user +USER user +ENV PATH="/home/user/.local/bin:$PATH" + +WORKDIR /app + +# Install system dependencies (as root before switching user) +USER root +RUN apt-get update && apt-get install -y \ + build-essential \ + libgeos-dev \ + && rm -rf /var/lib/apt/lists/* +USER user + +# Install Python dependencies +COPY --chown=user backend/requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +# Copy download script and execute data fetch +COPY backend/scripts/download_hdx_panama.py backend/scripts/ +RUN python backend/scripts/download_hdx_panama.py + +# Copy Backend Code +COPY --chown=user backend/ backend/ + +# Copy Built Frontend to Backend Static Directory +# ensure strict permissions +COPY --from=frontend --chown=user /app/out /app/backend/static + +# Expose port 7860 (Standard for HF Spaces) +EXPOSE 7860 + +# Run Application +CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860"] diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..0f6640b5afd93f5a6e409c3ed33ce4f7680f644a --- /dev/null +++ b/README.md @@ -0,0 +1,277 @@ +--- +title: GeoQuery +emoji: 🌍 +colorFrom: blue +colorTo: green +sdk: docker +pinned: false +license: mit +app_port: 7860 +--- + +# GeoQuery + 🌍🤖 + +**Territorial Intelligence Platform** - Natural language interface for geospatial data analysis powered by LLMs and DuckDB Spatial. + +![Status](https://img.shields.io/badge/Status-Active-success) ![Python](https://img.shields.io/badge/Python-3.11+-blue) ![Next.js](https://img.shields.io/badge/Next.js-15-black) ![License](https://img.shields.io/badge/License-MIT-green) + +--- + +## ✨ What is GeoQuery? + +GeoQuery transforms geographic data analysis by combining **Large Language Models** with **spatial databases**. Simply ask questions in natural language and get instant maps, charts, and insights. + +**Example**: *"Show me hospitals in Panama City"* → Interactive map with 45 hospital locations, automatically styled with 🏥 icons. + +### Key Capabilities + +- 🗣️ **Conversational Queries** - Natural language instead of SQL or GIS interfaces +- 🗺️ **Auto-Visualization** - Smart choropleth maps, point markers, and heatmaps +- 📊 **Dynamic Charts** - Automatic bar, pie, and line chart generation +- 🔍 **Semantic Discovery** - Finds relevant datasets from 100+ options using AI embeddings +- 🧩 **Multi-Step Analysis** - Complex queries automatically decomposed and executed +- 💡 **Thinking Transparency** - See the LLM's reasoning process in real-time +- 🎨 **Custom Point Styles** - Icon markers for POI, circle points for large datasets + +--- + +## 🎬 Quick Demo + +### Try These Queries + +| Query | What You Get | +|-------|--------------| +| "Show me all provinces colored by area" | Choropleth map with size-based gradient | +| "Where are the universities?" | Point map with 🎓 icons | +| "Compare hospital count vs school count by province" | Multi-step analysis with side-by-side bar charts | +| "Show intersections in David as circle points" | 1,288 traffic intersections as simple colored circles | +| "Population density in Veraguas" | H3 hexagon heatmap (33K cells) | + +--- + +## 🏗️ Architecture + +``` +┌──────────────────────────────────────────────────────────┐ +│ Frontend (Next.js) │ +│ Chat Interface │ Leaflet Maps │ Data Explorer │ +└────────────────────────┬─────────────────────────────────┘ + │ (SSE Streaming) +┌────────────────────────┴─────────────────────────────────┐ +│ Backend (FastAPI) │ +│ Intent Detection → Semantic Search → SQL Generation │ +│ ↓ ↓ ↓ │ +│ Gemini LLM DataCatalog (Embeddings) DuckDB Spatial │ +└──────────────────────────────────────────────────────────┘ +``` + +It supports dynamic dataset discovery via semantic embeddings + LLM-generated spatial SQL. + +📖 **[Detailed Architecture](ARCHITECTURE.md)** + +--- + +## 🚀 Quick Start + +### Prerequisites + +- **Python 3.11+** +- **Node.js 18+** +- **Google AI API Key** ([Get one free](https://aistudio.google.com/app/apikey)) + +### Installation + +```bash +# 1. Clone repository +git clone https://github.com/GerardCB/GeoQuery.git +cd GeoQuery + +# 2. Backend setup +cd backend +python -m venv venv +source venv/bin/activate # On Windows: venv\Scripts\activate +pip install -e . + +# 3. Configure API key +export GEMINI_API_KEY="your-api-key-here" + +# 4. Start backend +uvicorn backend.main:app --reload --host 0.0.0.0 --port 8000 + +# 5. Frontend setup (new terminal) +cd frontend +npm install +npm run dev +``` + +### 🎉 Done! + +Open **http://localhost:3000** and start querying! + +📘 **[Detailed Setup Guide](SETUP.md)** + +--- + +## 📂 Project Structure + +``` +GeoQuery/ +├── backend/ +│ ├── api/ # FastAPI endpoints +│ │ └── endpoints/ # /chat, /catalog, /schema +│ ├── core/ # Core services +│ │ ├── llm_gateway.py # Gemini API integration +│ │ ├── geo_engine.py # DuckDB Spatial wrapper +│ │ ├── semantic_search.py # Embedding-based discovery +│ │ ├── data_catalog.py # Dataset metadata management +│ │ ├── query_planner.py # Multi-step query orchestration +│ │ └── prompts.py # LLM system instructions +│ ├── services/ # Business logic +│ │ ├── executor.py # Query pipeline orchestrator +│ │ └── response_formatter.py # GeoJSON/chart formatting +│ ├── data/ # Datasets and metadata +│ │ ├── catalog.json # Dataset registry +│ │ ├── embeddings.npy # Vector embeddings +│ │ ├── osm/ # OpenStreetMap data +│ │ ├── admin/ # Administrative boundaries +│ │ ├── global/ # Global datasets (Kontur, etc.) +│ │ └── socioeconomic/ # World Bank, poverty data +│ └── scripts/ # Data ingestion scripts +│ ├── download_geofabrik.py +│ ├── download_hdx_panama.py +│ └── stri_catalog_scraper.py +├── frontend/ +│ └── src/ +│ ├── app/ # Next.js App Router pages +│ └── components/ +│ ├── ChatPanel.tsx # Chat interface with SSE +│ ├── MapViewer.tsx # Leaflet map with layers +│ └── DataExplorer.tsx # Tabular data view +└── docs/ # Technical documentation + ├── backend/ # Backend deep-dives + ├── frontend/ # Frontend architecture + └── data/ # Data system docs +``` + +--- + +## 🔧 Technology Stack + +| Layer | Technology | Purpose | +|-------|-----------|---------| +| **LLM** | Google Gemini 2.0 | Intent detection, SQL generation, explanations | +| **Backend** | Python 3.11 + FastAPI | Async HTTP server with SSE streaming | +| **Database** | DuckDB with Spatial | In-memory spatial analytics | +| **Frontend** | Next.js 15 + React 18 | Server-side rendering + interactive UI | +| **Maps** | Leaflet 1.9 | Interactive web maps | +| **Embeddings** | sentence-transformers | Semantic dataset search | +| **Data** | GeoJSON + Parquet | Standardized geospatial formats | + +--- + +## 📊 Available Datasets + +GeoQuery currently includes 100+ datasets across multiple categories: + +### Administrative +- Panama provinces, districts, corregimientos (HDX 2021) +- Comarca boundaries +- Electoral districts + +### Infrastructure +- Roads and highways (OpenStreetMap) +- Hospitals and health facilities (986 locations) +- Universities and schools (200+ institutions) +- Airports, ports, power plants + +### Socioeconomic +- World Bank development indicators +- Multidimensional poverty index (MPI) +- Population density (Kontur H3 hexagons - 33K cells) + +### Natural Environment +- Protected areas (STRI GIS Portal) +- Forest cover and land use +- Rivers and water bodies + +📖 **[Full Dataset List](docs/data/DATASET_SOURCES.md)** | **[Adding New Data](docs/backend/SCRIPTS.md)** + +--- + +## 💡 How It Works + +1. **User Query**: "Show me hospitals in Panama City" +2. **Intent Detection**: LLM classifies as MAP_REQUEST +3. **Semantic Search**: Finds `panama_healthsites_geojson` via embeddings +4. **SQL Generation**: LLM creates: `SELECT name, geom FROM panama_healthsites_geojson WHERE ST_Intersects(geom, (SELECT geom FROM pan_admin2 WHERE adm2_name = 'Panamá'))` +5. **Execution**: DuckDB Spatial runs query → 45 features +6. **Visualization**: Auto-styled map with 🏥 icons +7. **Explanation**: LLM streams natural language summary + +**Streaming**: See the LLM's thinking process in real-time via Server-Sent Events. + +📖 **[Detailed Data Flow](docs/DATA_FLOW.md)** | **[LLM Integration](docs/backend/LLM_INTEGRATION.md)** + +--- + +## 🗺️ Advanced Features + +### Choropleth Maps +Automatically detects numeric columns and creates color gradients: +- **Linear scale**: For area, count +- **Logarithmic scale**: For population, density + +### Point Visualization Modes +- **Icon markers** 🏥🎓⛪: For categorical POI (<500 points) +- **Circle points** ⭕: For large datasets like intersections (>500 points) + +### Spatial Operations +- Intersection: "Find hospitals within protected areas" +- Difference: "Show me areas outside national parks" +- Buffer: "Show 5km radius around hospitals" + +### Multi-Step Queries +Complex questions automatically decomposed: +- "Compare population density with hospital coverage by province" + 1. Calculate population per province + 2. Count hospitals per province + 3. Compute ratios + 4. Generate comparison chart + +--- + +## 📚 Documentation + +| Document | Description | +|----------|-------------| +| **[ARCHITECTURE.md](ARCHITECTURE.md)** | System design, components, decisions | +| **[SETUP.md](SETUP.md)** | Development environment setup | +| **[docs/backend/CORE_SERVICES.md](docs/backend/CORE_SERVICES.md)** | Backend services reference | +| **[docs/backend/API_ENDPOINTS.md](docs/backend/API_ENDPOINTS.md)** | API endpoint documentation | +| **[docs/frontend/COMPONENTS.md](docs/frontend/COMPONENTS.md)** | React component architecture | +| **[docs/DATA_FLOW.md](docs/DATA_FLOW.md)** | End-to-end request walkthrough | + +--- + +## 📄 License + +MIT License - see **[LICENSE](LICENSE)** for details. + +--- + +## 🙏 Acknowledgments + +**Data Sources**: +- [OpenStreetMap](https://www.openstreetmap.org/) - Infrastructure and POI data +- [Humanitarian Data Exchange (HDX)](https://data.humdata.org/) - Administrative boundaries +- [World Bank Open Data](https://data.worldbank.org/) - Socioeconomic indicators +- [Kontur Population Dataset](https://data.humdata.org/organization/kontur) - H3 population grid +- [STRI GIS Portal](https://stridata-si.opendata.arcgis.com/) - Environmental datasets + +**Technologies**: +- [Google Gemini](https://ai.google.dev/) - LLM API +- [DuckDB](https://duckdb.org/) - Fast in-process analytics +- [Leaflet](https://leafletjs.com/) - Interactive maps +- [Next.js](https://nextjs.org/) - React framework + diff --git a/SETUP.md b/SETUP.md new file mode 100644 index 0000000000000000000000000000000000000000..2c0f72e1fcd8b22bf2f915c17f50bd39b1d0249d --- /dev/null +++ b/SETUP.md @@ -0,0 +1,455 @@ +# GeoQuery Setup Guide + +Complete guide for setting up the GeoQuery development environment. + +--- + +## Prerequisites + +### Required Software + +| Requirement | Minimum Version | Purpose | +|------------|----------------|---------| +| **Python** | 3.11+ | Backend runtime | +| **Node.js** | 18+ | Frontend runtime | +| **npm** | 9+ | Package management | +| **Git** | 2.0+ | Version control | + +### API Keys + +- **Google AI API Key (Gemini)**: Required for LLM functionality + - Get one free at: https://aistudio.google.com/app/apikey + - Free tier: 15 requests/minute, 1500/day + +### System Requirements + +- **RAM**: 4GB minimum, 8GB recommended (for DuckDB in-memory database) +- **Disk**: 2GB for datasets +- **OS**: macOS, Linux, or Windows (WSL recommended) + +--- + +## Installation + +### 1. Clone Repository + +```bash +git clone https://github.com/GerardCB/GeoQuery.git +cd GeoQuery +``` + +### 2. Backend Setup + +#### Create Virtual Environment + +```bash +cd backend +python3 -m venv venv +``` + +#### Activate Virtual Environment + +**macOS/Linux**: +```bash +source venv/bin/activate +``` + +**Windows** (PowerShell): +```powershell +venv\Scripts\Activate.ps1 +``` + +**Windows** (CMD): +```cmd +venv\Scripts\activate.bat +``` + +#### Install Dependencies + +```bash +pip install --upgrade pip +pip install -e . +``` + +This installs the package in editable mode, including all dependencies from `setup.py`. + +**Key Dependencies**: +- `fastapi` - Web framework +- `uvicorn` - ASGI server +- `duckdb` - Embedded database +- `geopandas` - Geospatial data processing +- `sentence-transformers` - Embeddings +- `google-generativeai` - Gemini SDK + +#### Configure Environment Variables + +Create `.env` file in `backend/` directory: + +```bash +# Required +GEMINI_API_KEY=your-api-key-here + +# Optional (defaults shown) +PORT=8000 +HOST=0.0.0.0 +LOG_LEVEL=INFO +``` + +**Alternative**: Export directly in terminal: + +```bash +export GEMINI_API_KEY="your-api-key-here" +``` + +**Windows**: +```powershell +$env:GEMINI_API_KEY="your-api-key-here" +``` + +#### Verify Backend Installation + +```bash +python -c "import backend; print('Backend installed successfully')" +``` + +### 3. Frontend Setup + +```bash +cd ../frontend # From backend directory +npm install +``` + +**Key Dependencies**: +- `next` - React framework +- `react` - UI library +- `leaflet` - Map library +- `react-leaflet` - React bindings for Leaflet +- `@dnd-kit/core` - Drag and drop + +#### Configure Frontend (Optional) + +Edit `frontend/.env.local` if backend is not on default port: + +```bash +NEXT_PUBLIC_API_URL=http://localhost:8000 +``` + +--- + +## Running Locally + +### Start Backend + +From `backend/` directory with venv activated: + +```bash +uvicorn backend.main:app --reload --host 0.0.0.0 --port 8000 +``` + +**Flags**: +- `--reload`: Auto-restart on code changes +- `--host 0.0.0.0`: Allow external connections +- `--port 8000`: Port number + +**Expected Output**: +``` +INFO: Uvicorn running on http://0.0.0.0:8000 +INFO: Application startup complete. +``` + +**Verify**: +- Open http://localhost:8000/docs → Should show FastAPI Swagger UI +- Check http://localhost:8000/api/catalog → Should return GeoJSON catalog + +### Start Frontend + +From `frontend/` directory: + +```bash +npm run dev +``` + +**Expected Output**: +``` +▲ Next.js 15.1.3 +- Local: http://localhost:3000 +- Ready in 2.1s +``` + +**Verify**: +- Open http://localhost:3000 → Should show GeoQuery chat interface + +--- + +## Database Setup + +### DuckDB Initialization + +**Automatic**: Database is created in-memory on first query. + +**Manual Test**: + +```python +from backend.core.geo_engine import get_geo_engine + +engine = get_geo_engine() +print(f"Loaded tables: {list(engine.loaded_tables.keys())}") +``` + +### Load Initial Datasets + +Datasets are loaded lazily (on-demand). To pre-load common datasets: + +```python +from backend.core.geo_engine import get_geo_engine + +engine = get_geo_engine() +engine.ensure_table_loaded("pan_admin1") # Provinces +engine.ensure_table_loaded("panama_healthsites_geojson") # Hospitals +``` + +### Generate Embeddings + +Required for semantic search: + +```bash +cd backend +python -c "from backend.core.semantic_search import get_semantic_search; get_semantic_search()" +``` + +This generates `backend/data/embeddings.npy` (cached for future use). + +--- + +## Directory Structure After Setup + +``` +GeoQuery/ +├── backend/ +│ ├── venv/ # Virtual environment (created) +│ ├── .env # Environment variables (created) +│ ├── data/ +│ │ ├── embeddings.npy # Generated embeddings (created) +│ │ ├── catalog.json # Dataset registry (existing) +│ │ └── osm/ # GeoJSON datasets (existing) +│ └── +├── frontend/ +│ ├── node_modules/ # npm packages (created) +│ ├── .next/ # Build output (created) +│ └── +└── +``` + +--- + +## Common Issues & Troubleshooting + +### Backend Issues + +#### Issue: "ModuleNotFoundError: No module named 'backend'" + +**Cause**: Virtual environment not activated or package not installed. + +**Solution**: +```bash +source venv/bin/activate # Activate venv +pip install -e . # Install package +``` + +#### Issue: "duckdb.IOException: No files found that match the pattern" + +**Cause**: GeoJSON file missing or incorrect path in catalog.json. + +**Solution**: +1. Check file exists: `ls backend/data/osm/hospitals.geojson` +2. Verify path in `catalog.json` +3. Download missing data: `python backend/scripts/download_geofabrik.py` + +#### Issue: "google.api_core.exceptions.PermissionDenied: API key not valid" + +**Cause**: Invalid or missing GEMINI_API_KEY. + +**Solution**: +```bash +export GEMINI_API_KEY="your-actual-api-key" +# Restart backend +``` + +#### Issue: "Module 'sentence_transformers' has no attribute 'SentenceTransformer'" + +**Cause**: Corrupted installation. + +**Solution**: +```bash +pip uninstall sentence-transformers +pip install sentence-transformers --no-cache-dir +``` + +### Frontend Issues + +#### Issue: "Error: Cannot find module 'next'" + +**Cause**: npm packages not installed. + +**Solution**: +```bash +cd frontend +rm -rf node_modules package-lock.json +npm install +``` + +#### Issue: "Failed to fetch from localhost:8000" + +**Cause**: Backend not running or CORS issue. + +**Solution**: +1. Verify backend is running: `curl http://localhost:8000/api/catalog` +2. Check CORS settings in `backend/main.py` +3. Verify `NEXT_PUBLIC_API_URL` in frontend `.env.local` + +#### Issue: "Map tiles not loading" + +**Cause**: Network issue or ad blocker. + +**Solution**: +1. Check internet connection +2. Disable ad blocker for localhost +3. Alternative tile server in `MapViewer.tsx`: + ```typescript + url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" + ``` + +### General Issues + +#### Issue: Port 8000 already in use + +**Solution**: +```bash +# Find process using port +lsof -ti:8000 + +# Kill process +kill -9 $(lsof -ti:8000) + +# Or use different port +uvicorn backend.main:app --port 8001 +``` + +#### Issue: Out of memory errors + +**Cause**: Loading too many large datasets. + +**Solution**: +1. Reduce dataset size (filter before loading) +2. Increase system RAM +3. Use query limits: `LIMIT 10000` + +--- + +## Development Workflow + +### Code Changes + +**Backend**: +- Python files auto-reload with `--reload` flag +- Changes in `core/`, `services/`, `api/` take effect immediately + +**Frontend**: +- Hot Module Replacement (HMR) enabled +- Changes in `components/`, `app/` reload automatically + +### Adding New Datasets + +1. **Add GeoJSON file** to appropriate directory (e.g., `backend/data/osm/`) + +2. **Update catalog.json**: + ```json + "my_new_dataset": { + "path": "osm/my_new_dataset.geojson", + "description": "Description for display", + "semantic_description": "Detailed description for AI", + "categories": ["infrastructure"], + "tags": ["roads", "transport"] + } + ``` + +3. **Regenerate embeddings**: + ```bash + rm backend/data/embeddings.npy + python -c "from backend.core.semantic_search import get_semantic_search; get_semantic_search()" + ``` + +4. **Test**: Query for the new dataset + +See [docs/backend/SCRIPTS.md](docs/backend/SCRIPTS.md) for data ingestion scripts. + +### Testing API Endpoints + +**Using curl**: +```bash +# Get catalog +curl http://localhost:8000/api/catalog + +# Query chat endpoint +curl -X POST http://localhost:8000/api/chat \ + -H "Content-Type: application/json" \ + -d '{"message": "Show me provinces", "history": []}' +``` + +**Using Swagger UI**: +- Open http://localhost:8000/docs +- Try endpoints interactively + +--- + +## Environment Variables Reference + +| Variable | Required | Default | Description | +|----------|----------|---------|-------------| +| `GEMINI_API_KEY` | ✅ Yes | - | Google AI API key | +| `PORT` | ❌ No | 8000 | Backend server port | +| `HOST` | ❌ No | 0.0.0.0 | Backend host | +| `LOG_LEVEL` | ❌ No | INFO | Logging level (DEBUG, INFO, WARNING, ERROR) | +| `DATABASE_PATH` | ❌ No | :memory: | DuckDB database path (use for persistence) | + +--- + +## IDE Setup + +### VS Code + +**Recommended Extensions**: +- Python (`ms-python.python`) +- Pylance (`ms-python.vscode-pylance`) +- ESLint (`dbaeumer.vscode-eslint`) +- Prettier (`esbenp.prettier-vscode`) + +**Settings** (`.vscode/settings.json`): +```json +{ + "python.defaultInterpreterPath": "./backend/venv/bin/python", + "python.linting.enabled": true, + "python.formatting.provider": "black", + "editor.formatOnSave": true, + "[typescript]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + } +} +``` + +### PyCharm + +1. **Set Python Interpreter**: Settings → Project → Python Interpreter → Add → Existing Environment → `backend/venv/bin/python` +2. **Enable FastAPI**: Settings → Languages & Frameworks → FastAPI +3. **Configure Run**: Run → Edit Configurations → Add → Python → Script path: `backend/main.py` + +--- + +## Next Steps + +- ✅ **Verify installation** by running a test query +- 📖 **Read [ARCHITECTURE.md](../ARCHITECTURE.md)** to understand the system +- 🔧 **Explore [docs/backend/CORE_SERVICES.md](docs/backend/CORE_SERVICES.md)** for component details +- 📊 **Review [docs/data/DATASET_SOURCES.md](docs/data/DATASET_SOURCES.md)** for available data + + diff --git a/backend/__init__.py b/backend/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/backend/api/api.py b/backend/api/api.py new file mode 100644 index 0000000000000000000000000000000000000000..413502935da9d3460fcdea69c25e9719b03a1d7c --- /dev/null +++ b/backend/api/api.py @@ -0,0 +1,8 @@ +from fastapi import APIRouter +from backend.api.endpoints import chat, schema, catalog + +api_router = APIRouter() +api_router.include_router(chat.router, prefix="/chat", tags=["chat"]) +api_router.include_router(schema.router, prefix="/schema", tags=["schema"]) +api_router.include_router(catalog.router, prefix="/catalog", tags=["catalog"]) + diff --git a/backend/api/endpoints/catalog.py b/backend/api/endpoints/catalog.py new file mode 100644 index 0000000000000000000000000000000000000000..f250a8646f66f20af5f1b876b313e7a740649cd6 --- /dev/null +++ b/backend/api/endpoints/catalog.py @@ -0,0 +1,235 @@ +""" +Catalog Management Endpoints + +Provides API for viewing and enriching the data catalog. +""" + +from fastapi import APIRouter, HTTPException, BackgroundTasks +from pydantic import BaseModel +from typing import List, Optional, Dict, Any + +router = APIRouter() + + +class CatalogStatsResponse(BaseModel): + total_datasets: int + enriched_datasets: int + by_category: Dict[str, int] + by_tag: Dict[str, int] + + +class TableMetadataResponse(BaseModel): + name: str + path: str + description: str + semantic_description: Optional[str] + tags: List[str] + data_type: str + columns: List[str] + row_count: Optional[int] + category: str + last_indexed: Optional[str] + last_enriched: Optional[str] + + +class EnrichmentRequest(BaseModel): + table_names: Optional[List[str]] = None # None = all tables + force_refresh: bool = False + + +class EnrichmentResponse(BaseModel): + status: str + message: str + tables_queued: int + + +@router.get("/stats", response_model=CatalogStatsResponse) +async def get_catalog_stats(): + """Get statistics about the data catalog.""" + from backend.core.data_catalog import get_data_catalog + + catalog = get_data_catalog() + stats = catalog.get_stats() + + return CatalogStatsResponse( + total_datasets=stats["total_datasets"], + enriched_datasets=stats.get("enriched_datasets", 0), + by_category=stats["by_category"], + by_tag=stats["by_tag"] + ) + + +@router.get("/tables", response_model=List[TableMetadataResponse]) +async def list_catalog_tables(): + """List all tables in the catalog with their metadata.""" + from backend.core.data_catalog import get_data_catalog + + catalog = get_data_catalog() + tables = [] + + for name, meta in catalog.catalog.items(): + tables.append(TableMetadataResponse( + name=name, + path=meta.get("path", ""), + description=meta.get("description", ""), + semantic_description=meta.get("semantic_description"), + tags=meta.get("tags", []), + data_type=meta.get("data_type", "static"), + columns=meta.get("columns", []), + row_count=meta.get("row_count"), + category=meta.get("category", "unknown"), + last_indexed=meta.get("last_indexed"), + last_enriched=meta.get("last_enriched") + )) + + return tables + + +@router.get("/tables/{table_name}", response_model=TableMetadataResponse) +async def get_table_metadata(table_name: str): + """Get metadata for a specific table.""" + from backend.core.data_catalog import get_data_catalog + + catalog = get_data_catalog() + meta = catalog.get_table_metadata(table_name) + + if not meta: + raise HTTPException(status_code=404, detail=f"Table '{table_name}' not found") + + return TableMetadataResponse( + name=table_name, + path=meta.get("path", ""), + description=meta.get("description", ""), + semantic_description=meta.get("semantic_description"), + tags=meta.get("tags", []), + data_type=meta.get("data_type", "static"), + columns=meta.get("columns", []), + row_count=meta.get("row_count"), + category=meta.get("category", "unknown"), + last_indexed=meta.get("last_indexed"), + last_enriched=meta.get("last_enriched") + ) + + +@router.post("/enrich", response_model=EnrichmentResponse) +async def enrich_catalog(request: EnrichmentRequest, background_tasks: BackgroundTasks): + """ + Trigger LLM enrichment for catalog tables. + + Enrichment generates semantic descriptions and refined tags. + Runs in the background to avoid blocking. + """ + from backend.core.data_catalog import get_data_catalog + + catalog = get_data_catalog() + + if request.table_names: + # Validate table names + invalid = [t for t in request.table_names if t not in catalog.catalog] + if invalid: + raise HTTPException( + status_code=400, + detail=f"Unknown tables: {invalid}" + ) + tables_to_enrich = request.table_names + else: + tables_to_enrich = list(catalog.catalog.keys()) + + # Queue enrichment in background + async def run_enrichment(): + for table_name in tables_to_enrich: + await catalog.enrich_table(table_name, request.force_refresh) + + background_tasks.add_task(run_enrichment) + + return EnrichmentResponse( + status="queued", + message=f"Enrichment started for {len(tables_to_enrich)} tables", + tables_queued=len(tables_to_enrich) + ) + + +@router.post("/enrich/{table_name}") +async def enrich_single_table(table_name: str, force: bool = False): + """ + Immediately enrich a single table (synchronous). + + Use for testing or when you need the result right away. + """ + from backend.core.data_catalog import get_data_catalog + + catalog = get_data_catalog() + + if table_name not in catalog.catalog: + raise HTTPException(status_code=404, detail=f"Table '{table_name}' not found") + + success = await catalog.enrich_table(table_name, force) + + if success: + meta = catalog.get_table_metadata(table_name) + return { + "status": "success", + "table": table_name, + "semantic_description": meta.get("semantic_description"), + "tags": meta.get("tags", []) + } + else: + raise HTTPException(status_code=500, detail=f"Failed to enrich table '{table_name}'") + + +@router.get("/search") +async def search_tables(query: str, top_k: int = 10): + """ + Search for tables using semantic search. + + Returns the most relevant tables for a natural language query. + """ + from backend.core.semantic_search import get_semantic_search + from backend.core.data_catalog import get_data_catalog + + semantic = get_semantic_search() + catalog = get_data_catalog() + + results = semantic.search(query, top_k=top_k) + + response = [] + for table_name, score in results: + meta = catalog.get_table_metadata(table_name) + if meta: + response.append({ + "table": table_name, + "score": round(score, 4), + "description": meta.get("semantic_description") or meta.get("description"), + "tags": meta.get("tags", []) + }) + + return {"query": query, "results": response} + + +@router.post("/rebuild-embeddings") +async def rebuild_embeddings(): + """ + Rebuild all semantic search embeddings from current catalog. + + Use after bulk enrichment or catalog updates. + """ + from backend.core.semantic_search import get_semantic_search + from backend.core.data_catalog import get_data_catalog + + semantic = get_semantic_search() + catalog = get_data_catalog() + + # Force re-embed all tables + count = 0 + for table_name, metadata in catalog.catalog.items(): + if semantic.embed_table(table_name, metadata): + count += 1 + + semantic._save_embeddings() + + return { + "status": "success", + "message": f"Rebuilt embeddings for {count} tables", + "total_embeddings": len(semantic.embeddings) + } + diff --git a/backend/api/endpoints/chat.py b/backend/api/endpoints/chat.py new file mode 100644 index 0000000000000000000000000000000000000000..342e283c23b066952553c56b0556e956afd47508 --- /dev/null +++ b/backend/api/endpoints/chat.py @@ -0,0 +1,90 @@ +from fastapi import APIRouter +from pydantic import BaseModel +from typing import Optional +from backend.services.executor import QueryExecutor + +router = APIRouter() + + +class MessageHistory(BaseModel): + role: str # "user" or "assistant" + content: str + + +class ChatRequest(BaseModel): + message: str + history: list[MessageHistory] = [] + + +class ChartData(BaseModel): + type: str # 'bar', 'line', 'pie', 'donut' + title: Optional[str] = None + data: list[dict] = [] + xKey: Optional[str] = None + yKey: Optional[str] = None + lines: Optional[list[dict]] = None + + +class ChatResponse(BaseModel): + response: str + sql_query: Optional[str] = None + geojson: Optional[dict] = None + data_citations: list[str] = [] + intent: Optional[str] = None + chart_data: Optional[ChartData] = None # NEW: For STAT_QUERY responses + + +@router.post("/", response_model=ChatResponse) +async def chat(request: ChatRequest): + """ + Main chat endpoint that handles conversation with context. + Routes to appropriate handler based on detected intent. + """ + executor = QueryExecutor() + + # Convert history to dict format for the executor + history = [{"role": h.role, "content": h.content} for h in request.history] + + # Process the query with full context + result = await executor.process_query_with_context( + query=request.message, + history=history + ) + + return ChatResponse( + response=result.get("response", "I processed your request."), + sql_query=result.get("sql_query"), + geojson=result.get("geojson"), + data_citations=result.get("data_citations", []), + intent=result.get("intent"), + chart_data=result.get("chart_data"), + raw_data=result.get("raw_data") + ) + + +from sse_starlette.sse import EventSourceResponse +import json +import asyncio + +@router.post("/stream") +async def chat_stream(request: ChatRequest): + """ + Streaming chat endpoint that returns Server-Sent Events (SSE). + """ + executor = QueryExecutor() + history = [{"role": h.role, "content": h.content} for h in request.history] + + async def event_generator(): + try: + # Delegate entirely to the executor's streaming process + async for event in executor.process_query_stream(request.message, history): + yield event + + except Exception as e: + print(f"Stream error: {e}") + yield { + "event": "chunk", + "data": json.dumps({"type": "text", "content": f"\n\nError: {str(e)}"}) + } + + return EventSourceResponse(event_generator()) diff --git a/backend/api/endpoints/schema.py b/backend/api/endpoints/schema.py new file mode 100644 index 0000000000000000000000000000000000000000..e2c2a5060d444f5d8eaac8e4413030c066d20cf1 --- /dev/null +++ b/backend/api/endpoints/schema.py @@ -0,0 +1,84 @@ +""" +Schema endpoint - Provides data catalog information to users. +Shows available tables, columns, and data descriptions. +""" + +from fastapi import APIRouter +from pydantic import BaseModel +from typing import Optional, List, Any +from backend.core.data_catalog import get_data_catalog + +router = APIRouter() + + +class ColumnInfo(BaseModel): + name: str + type: str + description: Optional[str] = None + + +class TableInfo(BaseModel): + name: str + description: str + row_count: int + columns: List[ColumnInfo] + + +class SchemaResponse(BaseModel): + tables: List[TableInfo] + last_updated: str + data_source: str + + +@router.get("/", response_model=SchemaResponse) +async def get_schema(): + """ + Returns the dynamic data catalog with all available tables and their schemas. + """ + catalog = get_data_catalog() + tables = [] + + for table_name, meta in catalog.catalog.items(): + # Map catalog columns to Schema columns + # Catalog columns are just a list of strings usually + cols = [] + raw_cols = meta.get("columns", []) + + # Helper to guess type + def guess_type(col_name): + if col_name == "geom": return "geometry" + if "id" in col_name: return "integer" + if "name" in col_name: return "text" + return "text" # Default + + for col in raw_cols: + cols.append(ColumnInfo( + name=col, + type=guess_type(col), + description=None + )) + + tables.append(TableInfo( + name=table_name, + description=meta.get("semantic_description") or meta.get("description", ""), + row_count=meta.get("row_count") or 0, + columns=cols + )) + + return SchemaResponse( + tables=tables, + last_updated="Dynamic", + data_source="GeoQuery Data Catalog (OSM, Overture, HDX, INEC)" + ) + + +@router.get("/tables") +async def list_tables(): + """ + Returns a simple list of available table names. + """ + catalog = get_data_catalog() + return { + "tables": list(catalog.catalog.keys()), + "count": len(catalog.catalog) + } diff --git a/backend/core/catalog_enricher.py b/backend/core/catalog_enricher.py new file mode 100644 index 0000000000000000000000000000000000000000..5e77b0f31f90efd6b639e1f31dc87ad864e1ab46 --- /dev/null +++ b/backend/core/catalog_enricher.py @@ -0,0 +1,221 @@ +""" +Catalog Enricher Service + +Automatically generates rich metadata for datasets using LLM. +Enhances table descriptions and tags for better semantic search. +""" + +import logging +from typing import Dict, List, Any, Optional +from backend.core.llm_gateway import LLMGateway + +logger = logging.getLogger(__name__) + + +# Prompt for generating semantic descriptions +DESCRIPTION_PROMPT = """Generate a concise 2-3 sentence description for this geographic dataset. + +Table Name: {table_name} +Category: {category} +Columns: {columns} +Sample Column Values: {sample_values} +Row Count: {row_count} + +Focus on: +1. What geographic entities it contains (districts, health facilities, roads, etc.) +2. The geographic scope (Panama, specific province, etc.) +3. Common use cases (administrative analysis, health coverage, etc.) + +Return ONLY the description, no formatting or labels.""" + +# Prompt for generating/refining tags +TAG_PROMPT = """Suggest 5-8 relevant tags for this geographic dataset. + +Table Name: {table_name} +Description: {description} +Columns: {columns} +Current Tags: {current_tags} + +Rules: +1. Tags should be lowercase, single words or hyphenated +2. Include domain tags (health, education, infrastructure) +3. Include geographic tags (administrative, boundaries, points) +4. Include data type tags (census, osm, government) + +Return ONLY a JSON array of strings, e.g. ["health", "facilities", "infrastructure"]""" + + +class CatalogEnricher: + """ + Enriches catalog metadata with LLM-generated descriptions and tags. + + Can be run on-demand for new datasets or batch-run for existing ones. + """ + + _instance = None + + def __new__(cls): + if cls._instance is None: + cls._instance = super(CatalogEnricher, cls).__new__(cls) + cls._instance.initialized = False + return cls._instance + + def __init__(self): + if self.initialized: + return + + self.llm = LLMGateway() + self.initialized = True + + async def generate_description( + self, + table_name: str, + metadata: Dict[str, Any], + sample_values: Optional[Dict[str, str]] = None + ) -> str: + """ + Generate a semantic description for a dataset using LLM. + + Args: + table_name: Name of the table + metadata: Catalog metadata dict + sample_values: Optional dict of column -> sample value + + Returns: + Generated description string + """ + columns = metadata.get("columns", []) + category = metadata.get("category", "unknown") + row_count = metadata.get("row_count", "unknown") + + # Format sample values + sample_str = "Not available" + if sample_values: + sample_str = ", ".join(f"{k}: {v}" for k, v in list(sample_values.items())[:5]) + + prompt = DESCRIPTION_PROMPT.format( + table_name=table_name, + category=category, + columns=", ".join(columns[:15]), # Limit columns + sample_values=sample_str, + row_count=row_count + ) + + try: + response = await self.llm.generate_response(prompt) + description = response.strip() + + # Basic validation + if len(description) < 20 or len(description) > 500: + logger.warning(f"Generated description for {table_name} seems unusual: {len(description)} chars") + + return description + + except Exception as e: + logger.error(f"Failed to generate description for {table_name}: {e}") + return metadata.get("description", f"Geographic data from {category}") + + async def generate_tags( + self, + table_name: str, + metadata: Dict[str, Any] + ) -> List[str]: + """ + Generate or refine tags for a dataset using LLM. + + Args: + table_name: Name of the table + metadata: Catalog metadata dict + + Returns: + List of tag strings + """ + columns = metadata.get("columns", []) + description = metadata.get("semantic_description") or metadata.get("description", "") + current_tags = metadata.get("tags", []) + + prompt = TAG_PROMPT.format( + table_name=table_name, + description=description, + columns=", ".join(columns[:15]), + current_tags=current_tags + ) + + try: + import json + response = await self.llm.generate_response(prompt) + + # Parse JSON array + response = response.strip() + if response.startswith("```"): + response = response.split("```")[1] + if response.startswith("json"): + response = response[4:] + + tags = json.loads(response) + + if isinstance(tags, list): + # Validate and clean tags + clean_tags = [] + for tag in tags: + if isinstance(tag, str): + tag = tag.lower().strip() + if 2 <= len(tag) <= 30: + clean_tags.append(tag) + + return clean_tags + + except Exception as e: + logger.error(f"Failed to generate tags for {table_name}: {e}") + + return current_tags + + async def enrich_table( + self, + table_name: str, + metadata: Dict[str, Any], + sample_values: Optional[Dict[str, str]] = None, + force_refresh: bool = False + ) -> Dict[str, Any]: + """ + Fully enrich a table's metadata with description and tags. + + Args: + table_name: Name of the table + metadata: Current catalog metadata + sample_values: Optional sample data for context + force_refresh: If True, regenerate even if already enriched + + Returns: + Updated metadata dict + """ + updated = metadata.copy() + + # Generate description if missing or forced + if force_refresh or not metadata.get("semantic_description"): + logger.info(f"Generating semantic description for {table_name}...") + description = await self.generate_description(table_name, metadata, sample_values) + updated["semantic_description"] = description + + # Generate/refine tags (always, to improve quality) + if force_refresh or len(metadata.get("tags", [])) < 3: + logger.info(f"Generating tags for {table_name}...") + tags = await self.generate_tags(table_name, updated) + # Merge with existing, deduplicate + existing_tags = set(metadata.get("tags", [])) + new_tags = set(tags) + updated["tags"] = list(existing_tags | new_tags) + + return updated + + +# Singleton accessor +_catalog_enricher: Optional[CatalogEnricher] = None + + +def get_catalog_enricher() -> CatalogEnricher: + """Get the singleton catalog enricher instance.""" + global _catalog_enricher + if _catalog_enricher is None: + _catalog_enricher = CatalogEnricher() + return _catalog_enricher diff --git a/backend/core/data_catalog.py b/backend/core/data_catalog.py new file mode 100644 index 0000000000000000000000000000000000000000..29675731a8fc93d471364e4ff8c75c0bc7c22eee --- /dev/null +++ b/backend/core/data_catalog.py @@ -0,0 +1,445 @@ +""" +Data Catalog Service + +Manages metadata for all datasets available in the platform. +Supports semantic search integration for scalable discovery. +""" + +import json +import duckdb +import logging +from datetime import datetime +from pathlib import Path +from typing import List, Dict, Any, Optional + +logger = logging.getLogger(__name__) + + +# Tag inference rules for auto-tagging datasets +TAG_RULES = { + # Keywords in table name -> tags + "health": ["health", "facilities", "infrastructure"], + "hospital": ["health", "facilities", "medical"], + "clinic": ["health", "facilities", "medical"], + "school": ["education", "facilities", "infrastructure"], + "university": ["education", "facilities", "higher-education"], + "education": ["education", "facilities"], + "road": ["transportation", "infrastructure", "roads"], + "street": ["transportation", "infrastructure", "roads"], + "highway": ["transportation", "infrastructure", "roads"], + "airport": ["transportation", "infrastructure", "aviation"], + "port": ["transportation", "infrastructure", "maritime"], + "population": ["demographics", "census", "population"], + "census": ["demographics", "census", "statistics"], + "admin": ["administrative", "boundaries", "government"], + "district": ["administrative", "boundaries"], + "province": ["administrative", "boundaries"], + "corregimiento": ["administrative", "boundaries"], + "park": ["recreation", "green-space", "amenities"], + "water": ["hydrology", "natural-resources"], + "river": ["hydrology", "water"], + "forest": ["environment", "natural-resources", "land-cover"], + "building": ["infrastructure", "built-environment"], + "poi": ["points-of-interest", "amenities"], +} + + +class DataCatalog: + """ + Singleton service managing dataset metadata. + + Features: + - Auto-discovery of GeoJSON files in data directories + - Schema inference from first record + - Auto-tagging based on naming conventions + - Integration with semantic search for scalable discovery + """ + + _instance = None + + DATA_DIR = Path(__file__).parent.parent / "data" + CATALOG_FILE = DATA_DIR / "catalog.json" + + def __new__(cls): + if cls._instance is None: + cls._instance = super(DataCatalog, cls).__new__(cls) + cls._instance.initialized = False + return cls._instance + + def __init__(self): + if self.initialized: + return + + self.catalog: Dict[str, Any] = {} + self.load_catalog() + self.scan_and_update() + self._init_semantic_search() + self.initialized = True + + def load_catalog(self): + """Load catalog from JSON file.""" + if self.CATALOG_FILE.exists(): + try: + with open(self.CATALOG_FILE, 'r') as f: + self.catalog = json.load(f) + except Exception as e: + logger.error(f"Failed to load catalog: {e}") + self.catalog = {} + else: + self.catalog = {} + + def save_catalog(self): + """Save catalog to JSON file.""" + try: + with open(self.CATALOG_FILE, 'w') as f: + json.dump(self.catalog, f, indent=2) + except Exception as e: + logger.error(f"Failed to save catalog: {e}") + + def _infer_tags(self, table_name: str, columns: List[str]) -> List[str]: + """Auto-generate tags based on table name and columns.""" + tags = set() + name_lower = table_name.lower() + + # Check table name against rules + for keyword, keyword_tags in TAG_RULES.items(): + if keyword in name_lower: + tags.update(keyword_tags) + + # Check columns for additional hints + columns_lower = [c.lower() for c in columns] + if any('pop' in c for c in columns_lower): + tags.add("population") + if any('area' in c for c in columns_lower): + tags.add("geographic") + if 'geom' in columns_lower or 'geometry' in columns_lower: + tags.add("spatial") + + return list(tags) + + def _infer_data_type(self, category: str, table_name: str) -> str: + """Infer data type (static, semi-static, realtime).""" + # Base admin data is static + if category == "base": + return "static" + + # OSM data is semi-static (updated periodically) + if category == "osm": + return "semi-static" + + # HDX humanitarian data - varies + if category == "hdx": + return "semi-static" + + # Census data is static + if "census" in table_name.lower(): + return "static" + + return "static" + + def scan_and_update(self): + """Scan data directories and update catalog with new files.""" + logger.info("Scanning data directories...") + + # Define directories to scan + subdirs = ['base', 'osm', 'inec', 'hdx', 'custom', 'overture', 'ms_buildings'] + + # Temporary connection for schema inference + con = duckdb.connect(':memory:') + con.install_extension('spatial') + con.load_extension('spatial') + + updated = False + + for subdir in subdirs: + dir_path = self.DATA_DIR / subdir + if not dir_path.exists(): + continue + + # Scan for both .geojson and .geojson.gz + for file_path in list(dir_path.glob('**/*.geojson')) + list(dir_path.glob('**/*.geojson.gz')): + table_name = file_path.name.replace('.geojson.gz', '').replace('.geojson', '').lower().replace('-', '_').replace(' ', '_') + + # Check if file path changed (file moved/renamed) + existing = self.catalog.get(table_name) + rel_path = str(file_path.relative_to(self.DATA_DIR)) + + if existing and existing.get('path') == rel_path: + # Already indexed with same path, skip unless missing new fields + if 'tags' in existing and 'data_type' in existing: + continue + + try: + logger.info(f"Indexing {table_name}...") + + # Read first row to get columns + query = f"SELECT * FROM ST_Read('{file_path}') LIMIT 1" + df = con.execute(query).fetchdf() + columns = list(df.columns) + + # Count rows (for metadata) + row_count_query = f"SELECT COUNT(*) FROM ST_Read('{file_path}')" + row_count = con.execute(row_count_query).fetchone()[0] + + # Auto-generate tags + tags = self._infer_tags(table_name, columns) + + # Infer data type + data_type = self._infer_data_type(subdir, table_name) + + # Build catalog entry + self.catalog[table_name] = { + "path": rel_path, + "description": f"Data from {subdir}/{file_path.name}", + "semantic_description": None, # LLM-generated on demand + "tags": tags, + "data_type": data_type, + "update_frequency": None, + "columns": columns, + "row_count": row_count, + "category": subdir, + "format": "geojson", + "last_indexed": datetime.now().isoformat() + } + updated = True + + except Exception as e: + logger.warning(f"Failed to index {file_path}: {e}") + + con.close() + + if updated: + self.save_catalog() + logger.info("Catalog updated.") + + def _init_semantic_search(self): + """Initialize semantic search with current catalog.""" + try: + from backend.core.semantic_search import get_semantic_search + semantic = get_semantic_search() + + # Embed all tables + new_embeddings = semantic.embed_all_tables(self.catalog) + if new_embeddings > 0: + logger.info(f"Created {new_embeddings} new semantic embeddings.") + except Exception as e: + logger.warning(f"Semantic search initialization failed: {e}") + + def get_table_metadata(self, table_name: str) -> Optional[Dict]: + """Get metadata for a specific table.""" + return self.catalog.get(table_name) + + def get_all_table_summaries(self) -> str: + """ + Returns a concise summary of all tables. + + WARNING: This can be very large with many datasets. + Prefer using semantic_search.search() for discovery. + """ + summary = "Available Data Tables:\n" + + # Group by category + by_category: Dict[str, List] = {} + for name, meta in self.catalog.items(): + cat = meta.get('category', 'other') + if cat not in by_category: + by_category[cat] = [] + by_category[cat].append((name, meta)) + + for cat, items in by_category.items(): + summary += f"\n## {cat.upper()}\n" + for name, meta in items: + desc = meta.get('semantic_description') or meta.get('description', 'No description') + tags = meta.get('tags', []) + tag_str = f" [{', '.join(tags[:3])}]" if tags else "" + summary += f"- {name}: {desc}{tag_str}\n" + + return summary + + def get_summaries_for_tables(self, table_names: List[str]) -> str: + """ + Get summaries only for specified tables. + + Used after semantic pre-filtering to build focused LLM context. + """ + summary = "Relevant Data Tables:\n\n" + + for name in table_names: + meta = self.catalog.get(name) + if not meta: + continue + + desc = meta.get('semantic_description') or meta.get('description', 'No description') + tags = meta.get('tags', []) + columns = meta.get('columns', [])[:10] # Limit columns + row_count = meta.get('row_count', 'unknown') + + summary += f"### {name}\n" + summary += f"Description: {desc}\n" + if tags: + summary += f"Tags: {', '.join(tags)}\n" + summary += f"Columns: {', '.join(columns)}\n" + summary += f"Rows: {row_count}\n\n" + + return summary + + def get_specific_table_schemas(self, table_names: List[str]) -> str: + """Returns detailed schema for specific tables.""" + output = "" + for name in table_names: + meta = self.catalog.get(name) + if not meta: + continue + + output += f"### {name}\n" + output += f"Description: {meta.get('description')}\n" + output += "Columns: " + ", ".join(meta.get('columns', [])) + "\n\n" + return output + + def get_file_path(self, table_name: str) -> Optional[Path]: + """Get absolute path for a table's data file.""" + meta = self.catalog.get(table_name) + if meta and 'path' in meta: + return self.DATA_DIR / meta['path'] + return None + + def get_tables_by_tag(self, tag: str) -> List[str]: + """Get all table names that have a specific tag.""" + return [ + name for name, meta in self.catalog.items() + if tag in meta.get('tags', []) + ] + + def get_tables_by_category(self, category: str) -> List[str]: + """Get all table names in a specific category.""" + return [ + name for name, meta in self.catalog.items() + if meta.get('category') == category + ] + + def get_stats(self) -> dict: + """Return statistics about the catalog.""" + categories = {} + tags = {} + enriched_count = 0 + + for meta in self.catalog.values(): + cat = meta.get('category', 'other') + categories[cat] = categories.get(cat, 0) + 1 + + if meta.get('semantic_description'): + enriched_count += 1 + + for tag in meta.get('tags', []): + tags[tag] = tags.get(tag, 0) + 1 + + return { + "total_datasets": len(self.catalog), + "enriched_datasets": enriched_count, + "by_category": categories, + "by_tag": dict(sorted(tags.items(), key=lambda x: -x[1])[:20]), + "catalog_file": str(self.CATALOG_FILE) + } + + async def enrich_table(self, table_name: str, force_refresh: bool = False) -> bool: + """ + Enrich a single table with LLM-generated metadata. + + Returns True if enrichment was successful. + """ + if table_name not in self.catalog: + logger.warning(f"Table {table_name} not found in catalog") + return False + + metadata = self.catalog[table_name] + + # Skip if already enriched (unless forced) + if not force_refresh and metadata.get('semantic_description'): + logger.info(f"Table {table_name} already enriched, skipping") + return True + + try: + from backend.core.catalog_enricher import get_catalog_enricher + enricher = get_catalog_enricher() + + # Get sample values for context + sample_values = await self._get_sample_values(table_name) + + # Enrich + enriched = await enricher.enrich_table(table_name, metadata, sample_values, force_refresh) + + # Update catalog + enriched['last_enriched'] = datetime.now().isoformat() + self.catalog[table_name] = enriched + self.save_catalog() + + # Re-embed with new description + self._update_embedding(table_name, enriched) + + logger.info(f"Successfully enriched {table_name}") + return True + + except Exception as e: + logger.error(f"Failed to enrich {table_name}: {e}") + return False + + async def enrich_all_tables(self, force_refresh: bool = False) -> Dict[str, bool]: + """ + Enrich all tables in the catalog. + + Returns dict of table_name -> success status. + """ + results = {} + + for table_name in self.catalog.keys(): + success = await self.enrich_table(table_name, force_refresh) + results[table_name] = success + + return results + + async def _get_sample_values(self, table_name: str) -> Optional[Dict[str, str]]: + """Get sample values from a table for enrichment context.""" + try: + from backend.core.geo_engine import get_geo_engine + geo_engine = get_geo_engine() + + # Ensure table is loaded + geo_engine.ensure_table_loaded(table_name) + + # Get one row + result = geo_engine.con.execute(f"SELECT * FROM {table_name} LIMIT 1").fetchdf() + + if len(result) > 0: + sample = {} + for col in result.columns: + if col != 'geom': + val = result[col].iloc[0] + if val is not None: + sample[col] = str(val)[:50] # Limit value length + return sample + + except Exception as e: + logger.debug(f"Could not get sample values for {table_name}: {e}") + + return None + + def _update_embedding(self, table_name: str, metadata: Dict[str, Any]) -> None: + """Update semantic search embedding for a table.""" + try: + from backend.core.semantic_search import get_semantic_search + semantic = get_semantic_search() + semantic.embed_table(table_name, metadata) + semantic._save_embeddings() + except Exception as e: + logger.warning(f"Could not update embedding for {table_name}: {e}") + + +_data_catalog = None + + +def get_data_catalog() -> DataCatalog: + """Get the singleton data catalog instance.""" + global _data_catalog + if _data_catalog is None: + _data_catalog = DataCatalog() + return _data_catalog diff --git a/backend/core/database.py b/backend/core/database.py new file mode 100644 index 0000000000000000000000000000000000000000..5f1c4f3c6e8aa4af71eed2cb7d7a8dbd6c3726f9 --- /dev/null +++ b/backend/core/database.py @@ -0,0 +1,34 @@ +from sqlmodel import SQLModel, create_engine +from sqlmodel.ext.asyncio.session import AsyncSession +from sqlalchemy.orm import sessionmaker +from sqlalchemy.pool import NullPool +import os + +# Using local Postgres.app +# Format: postgresql+asyncpg://user:password@host/dbname +# Postgres.app usually defaults to the current user with no password +user = os.getenv("USER", "postgres") +DATABASE_URL = f"postgresql+asyncpg://{user}:@localhost/geoquery" + +engine = create_engine( + DATABASE_URL, + echo=True, + future=True, + poolclass=NullPool # Disable pooling for asyncpg if needed, or adjust +) + +# Async Engine for AsyncPG +from sqlalchemy.ext.asyncio import create_async_engine +async_engine = create_async_engine(DATABASE_URL, echo=True, future=True) + +async def get_session() -> AsyncSession: + async_session = sessionmaker( + async_engine, class_=AsyncSession, expire_on_commit=False + ) + async with async_session() as session: + yield session + +async def init_db(): + async with async_engine.begin() as conn: + # await conn.run_sync(SQLModel.metadata.drop_all) + await conn.run_sync(SQLModel.metadata.create_all) diff --git a/backend/core/geo_engine.py b/backend/core/geo_engine.py new file mode 100644 index 0000000000000000000000000000000000000000..478165ae8f09f163d656bf571cd2865e4f85e855 --- /dev/null +++ b/backend/core/geo_engine.py @@ -0,0 +1,244 @@ +import duckdb +import json +import logging +import os +from typing import Dict, Any, Optional, List +from backend.core.data_catalog import get_data_catalog + +logger = logging.getLogger(__name__) + +class GeoEngine: + _instance = None + + def __new__(cls): + if cls._instance is None: + cls._instance = super(GeoEngine, cls).__new__(cls) + cls._instance.initialized = False + return cls._instance + + def __init__(self): + if self.initialized: + return + + logger.info("Initializing GeoEngine (DuckDB)...") + try: + self.con = duckdb.connect(database=':memory:') + self.con.install_extension('spatial') + self.con.load_extension('spatial') + logger.info("GeoEngine initialized with Spatial extension.") + except Exception as e: + logger.error(f"Failed to initialize GeoEngine: {e}") + raise e + + self.layers = {} # layer_id -> table_name + self.catalog = get_data_catalog() + self.base_tables_loaded = False + self.initialized = True + + # Automatically load base tables + self.initialize_base_tables() + + def initialize_base_tables(self): + """ + Load essential administrative boundary files into DuckDB tables. + """ + if self.base_tables_loaded: + return + + logger.info("Loading base tables into DuckDB...") + + # Load core admin tables from catalog + # We look for tables starting with 'pan_admin' in the 'base' category + base_tables = [ + name for name, meta in self.catalog.catalog.items() + if meta.get('category') == 'base' + ] + + for table_name in base_tables: + self.ensure_table_loaded(table_name) + + self.base_tables_loaded = True + logger.info("Base tables loaded.") + + def ensure_table_loaded(self, table_name: str) -> bool: + """ + Ensure a table is loaded in DuckDB. If not, load it from the catalog. + Returns True if successful, False otherwise. + """ + # Check if already loaded + try: + self.con.execute(f"DESCRIBE {table_name}") + return True + except: + pass # Not loaded + + # Look up in catalog + file_path = self.catalog.get_file_path(table_name) + if not file_path or not file_path.exists(): + logger.warning(f"Table {table_name} not found in catalog or file missing.") + return False + + try: + logger.info(f"Lazy loading table: {table_name}") + self.con.execute(f"CREATE OR REPLACE TABLE {table_name} AS SELECT * FROM ST_Read('{file_path}')") + return True + except Exception as e: + logger.error(f"Failed to load {table_name}: {e}") + return False + + def get_table_schemas(self) -> str: + """ + Get schema of currently loaded tables for LLM context. + """ + result = "Currently Loaded Tables:\n\n" + + try: + # Get all tables + tables = self.con.execute("SHOW TABLES").fetchall() + for table in tables: + table_name = table[0] + try: + columns = self.con.execute(f"DESCRIBE {table_name}").fetchall() + row_count = self.con.execute(f"SELECT COUNT(*) FROM {table_name}").fetchone()[0] + + result += f"### {table_name} ({row_count} rows)\n" + result += "Columns:\n" + + for col in columns: + col_name, col_type = col[0], col[1] + if col_name == 'geom': + result += f" - geom: GEOMETRY (spatial data)\n" + else: + result += f" - {col_name}: {col_type}\n" + result += "\n" + except: + pass + except Exception as e: + logger.error(f"Error getting schemas: {e}") + + return result + + def get_table_list(self) -> List[str]: + """Return list of all available table names.""" + tables = list(self.BASE_TABLES.keys()) + tables.extend(self.layers.values()) + return tables + + def register_layer(self, layer_id: str, geojson: Dict[str, Any]) -> str: + """ + Registers a GeoJSON object as a table in DuckDB. + Returns the table name. + """ + table_name = f"layer_{layer_id.replace('-', '_')}" + + # If table exists, drop it + self.con.execute(f"DROP TABLE IF EXISTS {table_name}") + + # DuckDB can read JSON objects directly via read_json_auto? + # Easier to dump to string and read from memory or temporary file. + # For in-memory, we can use binding or just simple JSON text. + + # Strategy: Create a table with a JSON column, then unpack? + # Better: ST_Read can read from a file. + # Using python objects directly with DuckDB replacement scan is possible but complex for nested GeoJSON. + + # Simplest: Write to temp file, load with ST_Read. + try: + import tempfile + import os + + def json_serial(obj): + """JSON serializer for objects not serializable by default json code""" + if hasattr(obj, 'isoformat'): + return obj.isoformat() + raise TypeError (f"Type {type(obj)} not serializable") + + with tempfile.NamedTemporaryFile(mode='w', suffix='.json', delete=False) as tmp: + json.dump(geojson, tmp, default=json_serial) + tmp_path = tmp.name + + self.con.execute(f"CREATE TABLE {table_name} AS SELECT * FROM ST_Read('{tmp_path}')") + os.unlink(tmp_path) + + self.layers[layer_id] = table_name + logger.info(f"Registered layer {layer_id} as table {table_name}") + return table_name + + except Exception as e: + logger.error(f"Error registering layer {layer_id}: {e}") + raise e + + def execute_spatial_query(self, sql: str) -> Dict[str, Any]: + """ + Executes a SQL query and returns the result as a GeoJSON FeatureCollection. + Expects the query to return a geometry column. + """ + try: + logger.info(f"Executing Spatial SQL: {sql}") + + # Use ST_AsGeoJSON to format the geometry column + # We assume the user/LLM selects * + # We need to wrap the user query to convert to GeoJSON format + + # The query usually returns rows. We need to aggregate to FeatureCollection. + # DuckDB Spatial doesn't automagically output FeatureCollection structure. + # But the 'geojson' driver for ST_Read works. ST_AsGeoJSON works on geometries. + + # Approach: Create a temporary table from the result, then export? + # Or fetch as Python objects. + + self.con.execute(f"CREATE OR REPLACE TEMP TABLE query_result AS {sql}") + + # Check columns to find geometry + columns = self.con.execute("DESCRIBE query_result").fetchall() + geom_col = next((c[0] for c in columns if c[0] in ['geom', 'geometry']), None) + + if not geom_col and 'geometry' not in [c[0] for c in columns]: + # Maybe the user didn't select geometry? + pass + + # Construct GeoJSON manually from rows + # Select ST_AsGeoJSON(geom), * EXCLUDE (geom) + + other_cols = [c[0] for c in columns if c[0] != geom_col] + other_cols_select = ", ".join(other_cols) if other_cols else "" + + select_clause = f"ST_AsGeoJSON({geom_col})" + if other_cols_select: + select_clause += f", {other_cols_select}" + + rows = self.con.execute(f"SELECT {select_clause} FROM query_result").fetchall() + + features = [] + for row in rows: + geometry = json.loads(row[0]) + properties = {} + for i, col_name in enumerate(other_cols): + properties[col_name] = row[i+1] + + features.append({ + "type": "Feature", + "geometry": geometry, + "properties": properties + }) + + return { + "type": "FeatureCollection", + "features": features, + "properties": {} + } + + except Exception as e: + logger.error(f"Spatial query failed: {e}") + raise e + + def get_table_name(self, layer_id: str) -> Optional[str]: + return self.layers.get(layer_id) + +_geo_engine = None + +def get_geo_engine() -> GeoEngine: + global _geo_engine + if _geo_engine is None: + _geo_engine = GeoEngine() + return _geo_engine diff --git a/backend/core/llm_gateway.py b/backend/core/llm_gateway.py new file mode 100644 index 0000000000000000000000000000000000000000..9888a617dc611e25b0a4056beeffc568dda224bc --- /dev/null +++ b/backend/core/llm_gateway.py @@ -0,0 +1,500 @@ +import os +import asyncio +import json +from google import genai +from google.genai import types +from dotenv import load_dotenv + +from backend.core.prompts import ( + SYSTEM_INSTRUCTION, + INTENT_DETECTION_PROMPT, + DATA_DISCOVERY_PROMPT, + SQL_GENERATION_PROMPT, + EXPLANATION_PROMPT, + SPATIAL_SQL_PROMPT, + SPATIAL_SQL_PROMPT, + SQL_CORRECTION_PROMPT, + LAYER_NAME_PROMPT +) + +class LLMGateway: + def __init__(self, model_name: str = "gemini-3-flash-preview"): + # Load environment variables if not already loaded + load_dotenv() + + self.api_key = os.getenv("GEMINI_API_KEY") or os.getenv("GOOGLE_API_KEY") + if not self.api_key: + print("WARNING: GEMINI_API_KEY/GOOGLE_API_KEY not found. LLM features will not work.") + self.client = None + else: + # Explicitly setting the environment variable for the SDK if it's not set + if "GEMINI_API_KEY" not in os.environ and self.api_key: + os.environ["GEMINI_API_KEY"] = self.api_key + + # The SDK automatically picks up GEMINI_API_KEY + self.client = genai.Client() + + self.model = model_name + + def _build_contents_from_history(self, history: list[dict], current_message: str) -> list: + """ + Converts conversation history to the format expected by the Gemini API. + History format: [{"role": "user"|"assistant", "content": "..."}] + """ + contents = [] + for msg in history: + # Map 'assistant' to 'model' for Gemini API + role = "model" if msg["role"] == "assistant" else "user" + contents.append( + types.Content( + role=role, + parts=[types.Part.from_text(text=msg["content"])] + ) + ) + + # Add the current message + contents.append( + types.Content( + role="user", + parts=[types.Part.from_text(text=current_message)] + ) + ) + return contents + + async def generate_response_stream(self, user_query: str, history: list[dict] = None): + """ + Generates a streaming response using conversation history for context. + Yields chunks of text and thought summaries. + """ + if not self.client: + yield "I couldn't generate a response because the API key is missing." + return + + if history is None: + history = [] + + try: + contents = self._build_contents_from_history(history, user_query) + + # Enable thinking mode for general chat as well + config = types.GenerateContentConfig( + system_instruction=SYSTEM_INSTRUCTION, + thinking_config=types.ThinkingConfig( + include_thoughts=True # Enable thought summaries + ) + ) + + stream = await asyncio.to_thread( + self.client.models.generate_content_stream, + model=self.model, + contents=contents, + config=config, + ) + + for chunk in stream: + for part in chunk.candidates[0].content.parts: + if part.thought: + yield {"type": "thought", "content": part.text} + elif part.text: + yield {"type": "content", "text": part.text} + + except Exception as e: + print(f"Error calling Gemini stream: {e}") + yield f"Error: {str(e)}" + + async def generate_response(self, user_query: str, history: list[dict] = None) -> str: + """ + Generates a response using conversation history for context. + """ + if not self.client: + return "I couldn't generate a response because the API key is missing." + + if history is None: + history = [] + + try: + contents = self._build_contents_from_history(history, user_query) + + config = types.GenerateContentConfig( + system_instruction=SYSTEM_INSTRUCTION, + ) + + response = await asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=contents, + config=config, + ) + return response.text + except Exception as e: + print(f"Error calling Gemini: {e}") + return f"I encountered an error: {e}" + + async def detect_intent(self, user_query: str, history: list[dict] = None) -> str: + """ + Detects the intent of the user's query using Gemini thinking mode. + Returns: GENERAL_CHAT, DATA_QUERY, MAP_REQUEST, SPATIAL_OP, or STAT_QUERY + """ + if not self.client: + return "GENERAL_CHAT" + + intent_prompt = INTENT_DETECTION_PROMPT.format(user_query=user_query) + + try: + # Use thinking mode for better intent classification + config = types.GenerateContentConfig( + thinking_config=types.ThinkingConfig( + thinking_level="medium" # Balanced thinking for intent detection + ) + ) + + response = await asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=intent_prompt, + config=config, + ) + intent = response.text.strip().upper() + + # Validate the intent + if intent in ["GENERAL_CHAT", "DATA_QUERY", "MAP_REQUEST", "SPATIAL_OP", "STAT_QUERY"]: + return intent + + # Default fallback + return "GENERAL_CHAT" + except Exception as e: + print(f"Error detecting intent: {e}") + return "GENERAL_CHAT" + + async def stream_intent(self, user_query: str, history: list[dict] = None): + """ + Streams intent detection, yielding thoughts. + """ + if not self.client: + yield {"type": "error", "text": "API Key missing"} + return + + intent_prompt = INTENT_DETECTION_PROMPT.format(user_query=user_query) + + try: + config = types.GenerateContentConfig( + thinking_config=types.ThinkingConfig( + thinking_level="medium", + include_thoughts=True + ) + ) + + stream = await asyncio.to_thread( + self.client.models.generate_content_stream, + model=self.model, + contents=intent_prompt, + config=config, + ) + + for chunk in stream: + for part in chunk.candidates[0].content.parts: + if part.thought: + yield {"type": "thought", "text": part.text} + elif part.text: + yield {"type": "content", "text": part.text} + + except Exception as e: + print(f"Error detecting intent: {e}") + yield {"type": "error", "text": str(e)} + + # Legacy generate_sql removed. + + async def identify_relevant_tables(self, user_query: str, table_summaries: str) -> list[str]: + """ + Identifies which tables are relevant for the user's query from the catalog summary. + Returns a JSON list of table names. + """ + if not self.client: + return [] + + prompt = DATA_DISCOVERY_PROMPT.format(user_query=user_query, table_summaries=table_summaries) + + try: + config = types.GenerateContentConfig( + response_mime_type="application/json" + ) + + response = await asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=prompt, + config=config, + ) + + text = response.text.replace("```json", "").replace("```", "").strip() + tables = json.loads(text) + return tables if isinstance(tables, list) else [] + + except Exception as e: + print(f"Error identifying tables: {e}") + return [] + + async def generate_analytical_sql(self, user_query: str, table_schema: str, history: list[dict] = None) -> str: + """ + Generates a DuckDB SQL query for analytical/statistical questions about geographic data. + This is the core of the text-to-SQL system. + """ + if not self.client: + return "-- Error: API Key missing" + + prompt = SQL_GENERATION_PROMPT.format(table_schema=table_schema, user_query=user_query) + + try: + # Use thinking mode for complex SQL generation + config = types.GenerateContentConfig( + temperature=1, + thinking_config=types.ThinkingConfig( + thinking_level="high" # Maximum reasoning for SQL generation + ) + ) + + response = await asyncio.wait_for( + asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=prompt, + config=config, + ), + timeout=120.0 + ) + + sql = response.text.replace("```sql", "").replace("```", "").strip() + + # Basic validation: must start with SELECT + if not sql.upper().strip().startswith("SELECT") and "-- ERROR" not in sql: + print(f"Warning: Generated SQL doesn't start with SELECT: {sql[:100]}") + if "SELECT" in sql.upper(): + start_idx = sql.upper().find("SELECT") + sql = sql[start_idx:] + + return sql + + except asyncio.TimeoutError: + print("Gemini API call timed out after 30 seconds") + return "-- Error: API call timed out. Please try again." + except Exception as e: + print(f"Error calling Gemini for analytical SQL: {e}") + return f"-- Error generating SQL: {str(e)}" + + async def stream_analytical_sql(self, user_query: str, table_schema: str, history: list[dict] = None): + """ + Streams the generation of DuckDB SQL, yielding thoughts and chunks. + """ + if not self.client: + yield {"type": "error", "text": "API Key missing"} + return + + prompt = SQL_GENERATION_PROMPT.format(table_schema=table_schema, user_query=user_query) + + try: + config = types.GenerateContentConfig( + temperature=1, + thinking_config=types.ThinkingConfig( + thinking_level="high", + include_thoughts=True + ) + ) + + stream = await asyncio.to_thread( + self.client.models.generate_content_stream, + model=self.model, + contents=prompt, + config=config, + ) + + for chunk in stream: + for part in chunk.candidates[0].content.parts: + if part.thought: + yield {"type": "thought", "text": part.text} + elif part.text: + yield {"type": "content", "text": part.text} + + except Exception as e: + print(f"Error streaming SQL: {e}") + yield {"type": "error", "text": str(e)} + + async def stream_explanation(self, user_query: str, sql_query: str, data_summary: str, history: list[dict] = None): + """ + Streams the explanation. + """ + if not self.client: + yield {"type": "error", "text": "API Key missing"} + return + + # Build context from history if available + context_str = "" + if history: + context_str = "Previous conversation context:\n" + for msg in history[-4:]: # Last 4 messages for context + context_str += f"- {msg['role']}: {msg['content'][:100]}...\n" + + prompt = EXPLANATION_PROMPT.format(context_str=context_str, user_query=user_query, sql_query=sql_query, data_summary=data_summary) + + try: + config = types.GenerateContentConfig( + system_instruction=SYSTEM_INSTRUCTION, + thinking_config=types.ThinkingConfig( + thinking_level="low", + include_thoughts=True + ) + ) + + stream = await asyncio.to_thread( + self.client.models.generate_content_stream, + model=self.model, + contents=prompt, + config=config, + ) + + for chunk in stream: + for part in chunk.candidates[0].content.parts: + if part.thought: + yield {"type": "thought", "text": part.text} + elif part.text: + yield {"type": "content", "text": part.text} + + except Exception as e: + print(f"Error generating explanation: {e}") + yield {"type": "error", "text": str(e)} + + async def generate_explanation(self, user_query: str, sql_query: str, data_summary: str, history: list[dict] = None) -> str: + """ + Explains the results of the query to the user, maintaining conversation context. + """ + if not self.client: + return "I couldn't generate an explanation because the API key is missing." + + # Build context from history if available + context_str = "" + if history: + context_str = "Previous conversation context:\n" + for msg in history[-4:]: # Last 4 messages for context + context_str += f"- {msg['role']}: {msg['content'][:100]}...\n" + + prompt = EXPLANATION_PROMPT.format(context_str=context_str, user_query=user_query, sql_query=sql_query, data_summary=data_summary) + + try: + config = types.GenerateContentConfig( + system_instruction=SYSTEM_INSTRUCTION, + thinking_config=types.ThinkingConfig( + thinking_level="low" # Fast response for explanations + ) + ) + + response = await asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=prompt, + config=config, + ) + return response.text + except Exception as e: + print(f"Error generating explanation: {e}") + return "Here are the results from the query." + + async def generate_spatial_sql(self, user_query: str, layer_context: str, history: list[dict] = None) -> str: + """ + Generates a DuckDB Spatial SQL query for geometric operations on layers. + """ + if not self.client: + return "-- Error: API Key missing" + + prompt = SPATIAL_SQL_PROMPT.format(layer_context=layer_context, user_query=user_query) + + try: + config = types.GenerateContentConfig( + temperature=1, + ) + + # Add timeout to prevent indefinite hangs + response = await asyncio.wait_for( + asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=prompt, + config=config, + ), + timeout=120.0 + ) + + sql = response.text.replace("```sql", "").replace("```", "").strip() + return sql + + except asyncio.TimeoutError: + print("Gemini API call timed out after 30 seconds") + return "-- Error: API call timed out. Please try again." + except Exception as e: + print(f"Error calling Gemini: {e}") + return f"-- Error generating SQL: {str(e)}" + + async def correct_sql(self, user_query: str, incorrect_sql: str, error_message: str, schema_context: str) -> str: + """ + Corrects a failed SQL query based on the error message. + """ + if not self.client: + return "-- Error: API Key missing" + + prompt = SQL_CORRECTION_PROMPT.format( + error_message=error_message, + incorrect_sql=incorrect_sql, + user_query=user_query, + schema_context=schema_context + ) + + try: + config = types.GenerateContentConfig( + temperature=1, + ) + + response = await asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=prompt, + config=config, + ) + + sql = response.text.replace("```sql", "").replace("```", "").strip() + return sql + + except Exception as e: + print(f"Error correcting SQL: {e}") + return incorrect_sql + + async def generate_layer_name(self, user_query: str, sql_query: str) -> dict: + """ + Generates a short, descriptive name, emoji, and point style for a map layer. + Returns: {"name": str, "emoji": str, "pointStyle": str | None} + """ + if not self.client: + return {"name": "New Layer", "emoji": "📍", "pointStyle": None} + + prompt = LAYER_NAME_PROMPT.format(user_query=user_query, sql_query=sql_query) + + try: + config = types.GenerateContentConfig( + temperature=1, + response_mime_type="application/json" + ) + + # Use simple generate content (not streaming) + response = await asyncio.to_thread( + self.client.models.generate_content, + model=self.model, + contents=prompt, + config=config, + ) + + result = json.loads(response.text) + return { + "name": result.get("name", "Map Layer"), + "emoji": result.get("emoji", "📍"), + "pointStyle": result.get("pointStyle", None) + } + except Exception as e: + print(f"Error generating layer name: {e}") + return {"name": "Map Layer", "emoji": "📍", "pointStyle": None} diff --git a/backend/core/prompts.py b/backend/core/prompts.py new file mode 100644 index 0000000000000000000000000000000000000000..01d7edee93f9d4522e44a9b877b6d2b932757de4 --- /dev/null +++ b/backend/core/prompts.py @@ -0,0 +1,279 @@ +""" +Centralized storage for all LLM system instructions and prompt templates. +""" + +SYSTEM_INSTRUCTION = """You are GeoQuery, an advanced Territorial Intelligence Agent capable of analyzing diverse geographic datasets. + +## Your Capabilities +You are not limited to a fixed schema. You have a **Dynamic Metadata Catalog** that allows you to discover and query any dataset ingested into the system. +- **Administrative Data**: Provinces, districts, corregimientos (always available). +- **Dynamic Data**: You can query *any* table present in the database (e.g., population, health, infrastructure, biodiversity). +- **Spatial Analysis**: You can perform complex spatial joins, intersections, and aggregations using PostGIS/DuckDB Spatial functions. + +## Output Guidelines +1. **Be Data-Driven**: Base your answers strictly on the results of the SQL queries. +2. **Be Visual**: + - Use **Choropleth Maps** (color gradients) for comparisons/densities. + - Use **Point Maps** for locating specific facilities or events. + - Use **Charts** (Bar, Pie, Line) for statistical summaries. +3. **Be Transparent**: + - Always **Explain** your reasoning. + - **Cite** the specific table names used (e.g., "Source: `osm/universities.geojson`"). + - If data is missing *after* checking the catalog, explain clearly what is available vs. what is missing. + +## Interaction Style +- Professional, concise, and helpful. +- "Thinking" is enabled: Use your internal thought process to plan complex queries before generating SQL. +- If a query fails, self-correct by analyzing the error message. +""" + +INTENT_DETECTION_PROMPT = """Analyze this user query and determine the best output type. + +User Query: "{user_query}" + +THINK STEP BY STEP: +1. What is the user asking for? +2. Does this require geographic visualization (map)? +3. Does this require a chart/graph? +4. Is this a general question or conversation? + +Then respond with ONLY ONE of these exact words: +- GENERAL_CHAT: General question, greeting, or conversational message +- DATA_QUERY: Wants textual information or data that should be shown on a map +- MAP_REQUEST: Wants to SEE or VISUALIZE geographic data on a map (show, display, plot, color, compare regions) +- SPATIAL_OP: Geometric operation between layers (Intersection, Buffer, Union, Difference) +- STAT_QUERY: EXPLICITLY asks for a CHART or GRAPH (bar chart, pie chart, line graph) + +Key rules: +- "color by", "compare regions", "show largest/smallest" → MAP_REQUEST (for choropleth) +- "show me provinces", "display districts" → MAP_REQUEST +- "create a chart", "bar graph" → STAT_QUERY +- Questions about data availability → GENERAL_CHAT + +Respond with only the intent category, nothing else.""" + +DATA_DISCOVERY_PROMPT = """You are a Data Discovery Agent. Convert the user's request into a list of relevant table names from the available data. + +User Request: "{user_query}" + +Available Data Tables: +{table_summaries} + +Rules: +1. Return ONLY a valid JSON list of strings, e.g. ["table1", "table2"]. +2. Select tables that might contain the answer. +3. If asking for "colleges" or "education", include 'universities', 'schools', etc. +4. If asking for "health", include 'hospitals'. +5. Always include 'admin1', 'admin2', 'admin3' if the query involves regions. +6. If no specific table matches, return empty list []. +""" + +SQL_GENERATION_PROMPT = """You are a DuckDB SQL expert for geographic data analysis. Generate a valid DuckDB SQL query for the following request. + +{table_schema} + +### CRITICAL - Data Availability: +✅ You may ONLY query the tables listed above. +❌ Do NOT invent table names or column names. + +**If the requested data is NOT in the schema above, IMMEDIATELY return this exact response and STOP:** +-- ERROR: DATA_UNAVAILABLE +-- Requested: [what the user asked for] +-- Available: [list the tables you DO have] + +**Do NOT keep thinking or try alternative approaches. Just return the error and stop.** + +### User Request: "{user_query}" + +### Rules: +1. Return ONLY the SQL query. No explanation, no markdown formatting. +2. Use DuckDB syntax (ILIKE for case-insensitive matching). +3. ALWAYS include 'geom' in SELECT for map visualization. +4. For "top N" or "largest" queries, use ORDER BY ... DESC LIMIT N. +5. For "per group" queries, use window functions. +6. Do NOT add LIMIT unless the user explicitly asks for a specific count (e.g., "top 10", "first 5"). Return all matching rows by default. +7. NEVER invent columns that don't exist. + +### Special Datasets: +- **Population/Demographics**: Use `kontur_population` (H3 hexagons). + - Columns: `population`, `geom`. + - Query: `SELECT population, geom FROM kontur_population ...` + - Visualization: The system detects the `population` column and automatically renders a heatmap (choropleth). + - Note: This dataset is large (33k hexagons). If querying the entire country, use `LIMIT 40000` to ensure full coverage, or filter by specific province/district. + +### Example Queries: + +-- Largest provinces by area +SELECT adm1_name, area_sqkm, geom FROM admin1 ORDER BY area_sqkm DESC LIMIT 10 + +-- Population Density Heatmap for a Region (e.g., Veraguas) +SELECT population, geom FROM kontur_population +WHERE ST_Intersects(geom, (SELECT geom FROM pan_admin1 WHERE adm1_name = 'Veraguas')) +LIMIT 5000 + +-- Largest district in each province +SELECT adm1_name, adm2_name, area_sqkm, geom FROM ( + SELECT *, ROW_NUMBER() OVER (PARTITION BY adm1_name ORDER BY area_sqkm DESC) as rn + FROM admin2 +) WHERE rn = 1 + +Now generate the SQL for the user's request:""" + +EXPLANATION_PROMPT = """Explain the results of this data query to the user. + +{context_str} + +User Question: "{user_query}" +SQL Query Used: {sql_query} +Data Result Summary: {data_summary} + +Instructions: +1. Keep your response concise and helpful +2. Only describe data that was ACTUALLY returned in the query results +3. The available metrics include: area (area_sqkm), population (kontur_population), names, and geographic codes +4. If the user asked for data that doesn't exist, explain that clearly +5. Cite: "Administrative boundary data from HDX/INEC, 2021" or "Population data from Kontur, 2022" +6. Speak as GeoQuery, the platform itself +""" + +SPATIAL_SQL_PROMPT = """You are a GIS expert using DuckDB Spatial. Generate a valid SQL query for the following request. + +Available Data: +{layer_context} + +User Request: "{user_query}" + +Rules: +1. Return ONLY the SQL query. No markdown formatting, no explanation. +2. Use DuckDB Spatial functions (ST_Difference, ST_Intersection, ST_Union, ST_Buffer, ST_Within, ST_Contains). +3. The geometry column is named 'geom'. Use 'geom' for all spatial functions. +4. CRITICAL: Use ONLY the EXACT table names shown above in your FROM clause. + - Base tables are shown with their schema (e.g., panama_healthsites_geojson) + - User-created layers are shown as "Layer N: Name (Table: layer_xxxxx)" +5. IMPORTANT: For operations that aggregate geometries (ST_Union), use CTE pattern, NOT scalar subqueries: + CORRECT (CTE pattern): + ```sql + WITH layer_b_union AS (SELECT ST_Union(geom) as geom FROM layer_b) + SELECT a.*, ST_Difference(a.geom, b.geom) as geom FROM layer_a a, layer_b_union b + ``` + WRONG (scalar subquery - causes syntax errors): + ```sql + SELECT ST_Difference(geom, (SELECT ST_Union(geom) FROM layer_b)) FROM layer_a + ``` +6. For containment queries (points within polygons), use ST_Within(points.geom, polygons.geom). +7. Handle joins properly (e.g., CROSS JOIN or comma-join for combining with CTEs). +8. IMPORTANT: Preserve 'name' properties if possible. +9. OUTPUT: SELECT with geom column included. +""" + +SQL_CORRECTION_PROMPT = """You are a DuckDB SQL expert. Your previous query failed to execute. Fix it. + +### Error Message: +{error_message} + +### Failed SQL: +{incorrect_sql} + +### User Request: +"{user_query}" + +### Database Schema: +{schema_context} + +### Rules: +1. Fix the error described in the message (e.g., column ambiguity, missing column, syntax error). +2. Return ONLY the valid SQL query. No explanation. +3. Keep the query logic consistent with the User Request. +4. Ensure 'geom' is selected for map visualization if needed. +""" + +LAYER_NAME_PROMPT = """You are a helpful assistant generating a short, descriptive name for a map layer. + +User Request: "{user_query}" +SQL Query: "{sql_query}" + +Rules: +1. Return a VALID JSON object with three keys: "name", "emoji", and "pointStyle". +2. "name": A short descriptive name (1-4 words). +3. "emoji": A single emoji representing the data content (e.g., "🏥" for hospitals, "🎓" for schools, "👥" for population). +4. "pointStyle": Determines how POINT geometries should be rendered on the map (ONLY applies to Point geometry types): + - "icon": Use for specific, categorical points of interest (hospitals, schools, parks, landmarks) + * Best for: Small to medium point datasets (<500 points) + * Best for: When each point represents a distinct, identifiable feature + * The emoji will be displayed on the map as the marker icon + - "circle": Use for large point datasets + * Best for: Large point datasets (>500 points) like street intersections, sensor locations + * Renders as simple colored circles for better performance + - NOTE: For polygon data (H3 hexagons, administrative boundaries), the system automatically uses choropleth rendering (colored polygons). Do NOT set pointStyle for polygon data. +5. Examples: + {{"name": "Schools in Panama", "emoji": "🏫", "pointStyle": "icon"}} + {{"name": "Population Density", "emoji": "👥", "pointStyle": null}} # H3 hexagons are POLYGONS, not points + {{"name": "National Parks", "emoji": "🌲", "pointStyle": "icon"}} + {{"name": "Street Intersections", "emoji": "🚦", "pointStyle": "circle"}} +6. Do NOT return markdown formatting (no ```json). Just the raw JSON string. + +""" + +QUERY_PLANNING_PROMPT = """You are a Query Planning Agent. Decompose this complex query into atomic execution steps. + +User Query: "{user_query}" + +Available Tables: +{available_tables} + +TASK: Break down this query into sequential steps that can be executed independently. + +RULES: +1. Each step should query a SINGLE dataset or combine results from previous steps. +2. Steps that don't depend on each other can run in parallel. +3. The final step should combine/compare results if needed. +4. Use ONLY the table names listed above. + +Return a JSON object with this structure: +{{ + "steps": [ + {{ + "type": "data_query" | "aggregation" | "comparison" | "spatial_join" | "combine", + "description": "Human-readable description of this step", + "tables": ["table_name"], + "sql_hint": "Optional SQL pattern or hint", + "depends_on": [], + "result_name": "descriptive_name_for_result" + }} + ], + "combination_logic": "How to combine the step results for the final answer" +}} + +EXAMPLE for "Compare hospital count vs school count by province": +{{ + "steps": [ + {{ + "type": "aggregation", + "description": "Count hospitals per province", + "tables": ["panama_healthsites_geojson", "pan_admin1"], + "sql_hint": "SELECT province, COUNT(*) as hospital_count FROM ... GROUP BY province", + "depends_on": [], + "result_name": "hospitals_by_province" + }}, + {{ + "type": "aggregation", + "description": "Count schools per province", + "tables": ["schools", "pan_admin1"], + "sql_hint": "SELECT province, COUNT(*) as school_count FROM ... GROUP BY province", + "depends_on": [], + "result_name": "schools_by_province" + }}, + {{ + "type": "combine", + "description": "Join hospital and school counts by province for comparison", + "tables": [], + "sql_hint": "JOIN hospitals_by_province h ON schools_by_province s ON h.province = s.province", + "depends_on": ["hospitals_by_province", "schools_by_province"], + "result_name": "comparison_result" + }} + ], + "combination_logic": "Display side-by-side comparison with bar chart showing both counts per province" +}} + +Now decompose the user's query. Return ONLY the JSON, no markdown formatting. +""" diff --git a/backend/core/query_planner.py b/backend/core/query_planner.py new file mode 100644 index 0000000000000000000000000000000000000000..a9ed27a04e10093d32f20e89d6a07ef66590e64a --- /dev/null +++ b/backend/core/query_planner.py @@ -0,0 +1,291 @@ +""" +Multi-Step Query Planner + +Detects complex queries that require multiple datasets or operations, +decomposes them into atomic steps, and orchestrates execution. +""" + +import json +import logging +from dataclasses import dataclass, field +from typing import List, Dict, Any, Optional +from enum import Enum + +logger = logging.getLogger(__name__) + + +class StepType(Enum): + """Types of query steps.""" + DATA_QUERY = "data_query" # Simple data retrieval + AGGREGATION = "aggregation" # COUNT, SUM, GROUP BY + COMPARISON = "comparison" # Comparing results from previous steps + SPATIAL_JOIN = "spatial_join" # Joining datasets spatially + COMBINE = "combine" # Merge/combine step results + + +@dataclass +class QueryStep: + """A single atomic step in a query plan.""" + step_id: str + step_type: StepType + description: str + tables_needed: List[str] + sql_template: Optional[str] = None + depends_on: List[str] = field(default_factory=list) + result_name: str = "" # Name for intermediate result + + def to_dict(self) -> Dict[str, Any]: + return { + "step_id": self.step_id, + "step_type": self.step_type.value, + "description": self.description, + "tables_needed": self.tables_needed, + "sql_template": self.sql_template, + "depends_on": self.depends_on, + "result_name": self.result_name + } + + +@dataclass +class QueryPlan: + """Complete execution plan for a complex query.""" + original_query: str + is_complex: bool + steps: List[QueryStep] = field(default_factory=list) + parallel_groups: List[List[str]] = field(default_factory=list) # Steps that can run in parallel + final_combination_logic: str = "" + + def to_dict(self) -> Dict[str, Any]: + return { + "original_query": self.original_query, + "is_complex": self.is_complex, + "steps": [s.to_dict() for s in self.steps], + "parallel_groups": self.parallel_groups, + "final_combination_logic": self.final_combination_logic + } + + +class QueryPlanner: + """ + Multi-step query planning service. + + Analyzes queries to determine complexity and decomposes + complex queries into executable atomic steps. + """ + + _instance = None + + # Keywords that often indicate multi-step queries + COMPLEXITY_INDICATORS = [ + "compare", "comparison", "versus", "vs", + "more than", "less than", "higher than", "lower than", + "both", "and also", "as well as", + "ratio", "percentage", "proportion", + "correlation", "relationship between", + "combine", "merge", "together with", + "relative to", "compared to", + "difference between", "gap between" + ] + + # Keywords indicating multiple distinct data types + MULTI_DOMAIN_KEYWORDS = { + "health": ["hospital", "clinic", "healthcare", "health", "medical"], + "education": ["school", "university", "education", "college", "student"], + "infrastructure": ["road", "bridge", "infrastructure", "building"], + "environment": ["forest", "water", "environment", "park", "protected"], + "population": ["population", "demographic", "census", "people", "resident"] + } + + def __new__(cls): + if cls._instance is None: + cls._instance = super(QueryPlanner, cls).__new__(cls) + cls._instance.initialized = False + return cls._instance + + def __init__(self): + if self.initialized: + return + self.initialized = True + + def detect_complexity(self, query: str) -> Dict[str, Any]: + """ + Analyze a query to determine if it requires multi-step planning. + + Returns: + { + "is_complex": bool, + "reason": str, + "detected_domains": List[str], + "complexity_indicators": List[str] + } + """ + query_lower = query.lower() + + # Check for complexity indicators + found_indicators = [ + ind for ind in self.COMPLEXITY_INDICATORS + if ind in query_lower + ] + + # Check for multiple data domains + found_domains = [] + for domain, keywords in self.MULTI_DOMAIN_KEYWORDS.items(): + if any(kw in query_lower for kw in keywords): + found_domains.append(domain) + + # Determine complexity + is_complex = ( + len(found_indicators) > 0 and len(found_domains) >= 2 + ) or ( + len(found_domains) >= 3 + ) or ( + any(x in query_lower for x in ["compare", "ratio", "correlation", "versus", " vs "]) + and len(found_domains) >= 2 + ) + + reason = "" + if is_complex: + if len(found_domains) >= 2: + reason = f"Query involves multiple data domains: {', '.join(found_domains)}" + if found_indicators: + reason += f". Contains comparison/aggregation keywords: {', '.join(found_indicators[:3])}" + + return { + "is_complex": is_complex, + "reason": reason, + "detected_domains": found_domains, + "complexity_indicators": found_indicators + } + + async def plan_query( + self, + query: str, + available_tables: List[str], + llm_gateway + ) -> QueryPlan: + """ + Create an execution plan for a complex query. + + Uses LLM to decompose the query into atomic steps. + """ + from backend.core.prompts import QUERY_PLANNING_PROMPT + + # Build table context + table_list = "\n".join(f"- {t}" for t in available_tables) + + prompt = QUERY_PLANNING_PROMPT.format( + user_query=query, + available_tables=table_list + ) + + try: + response = await llm_gateway.generate_response(prompt, []) + + # Parse JSON response + response_clean = response.strip() + if response_clean.startswith("```json"): + response_clean = response_clean[7:] + if response_clean.startswith("```"): + response_clean = response_clean[3:] + if response_clean.endswith("```"): + response_clean = response_clean[:-3] + + plan_data = json.loads(response_clean.strip()) + + # Convert to QueryPlan + steps = [] + for i, step_data in enumerate(plan_data.get("steps", [])): + step = QueryStep( + step_id=f"step_{i+1}", + step_type=StepType(step_data.get("type", "data_query")), + description=step_data.get("description", ""), + tables_needed=step_data.get("tables", []), + sql_template=step_data.get("sql_hint", None), + depends_on=step_data.get("depends_on", []), + result_name=step_data.get("result_name", f"result_{i+1}") + ) + steps.append(step) + + # Determine parallel groups (steps with no dependencies can run together) + parallel_groups = self._compute_parallel_groups(steps) + + return QueryPlan( + original_query=query, + is_complex=True, + steps=steps, + parallel_groups=parallel_groups, + final_combination_logic=plan_data.get("combination_logic", "") + ) + + except Exception as e: + logger.error(f"Query planning failed: {e}") + # Return single-step fallback + return QueryPlan( + original_query=query, + is_complex=False, + steps=[], + parallel_groups=[], + final_combination_logic="" + ) + + def _compute_parallel_groups(self, steps: List[QueryStep]) -> List[List[str]]: + """ + Compute which steps can be executed in parallel. + + Steps with no dependencies (or only completed dependencies) + can run together. + """ + if not steps: + return [] + + groups = [] + executed = set() + remaining = {s.step_id: s for s in steps} + + while remaining: + # Find steps whose dependencies are all satisfied + ready = [ + step_id for step_id, step in remaining.items() + if all(dep in executed for dep in step.depends_on) + ] + + if not ready: + # Avoid infinite loop - add remaining as sequential + ready = list(remaining.keys())[:1] + + groups.append(ready) + + for step_id in ready: + executed.add(step_id) + del remaining[step_id] + + return groups + + def create_simple_plan(self, query: str) -> QueryPlan: + """Create a simple single-step plan for non-complex queries.""" + return QueryPlan( + original_query=query, + is_complex=False, + steps=[ + QueryStep( + step_id="step_1", + step_type=StepType.DATA_QUERY, + description="Execute query directly", + tables_needed=[], + depends_on=[] + ) + ], + parallel_groups=[["step_1"]] + ) + + +# Singleton accessor +_query_planner: Optional[QueryPlanner] = None + + +def get_query_planner() -> QueryPlanner: + """Get the singleton query planner instance.""" + global _query_planner + if _query_planner is None: + _query_planner = QueryPlanner() + return _query_planner diff --git a/backend/core/semantic_search.py b/backend/core/semantic_search.py new file mode 100644 index 0000000000000000000000000000000000000000..66640141f173f34cbbe59bd38de26652e2817d2d --- /dev/null +++ b/backend/core/semantic_search.py @@ -0,0 +1,259 @@ +""" +Semantic Search Service for Dataset Discovery + +Uses Gemini embeddings to find relevant datasets from a query, +enabling scalable discovery across 250+ datasets without context overflow. +""" + +import json +import logging +import numpy as np +from pathlib import Path +from typing import Dict, List, Optional, Tuple +from google import genai +from google.genai import types +import os +from dotenv import load_dotenv + +load_dotenv() + +logger = logging.getLogger(__name__) + + +class SemanticSearch: + """ + Embedding-based semantic search for dataset discovery. + + Embeds dataset metadata (name, description, tags, columns) and + finds the most relevant datasets for a user query using cosine similarity. + """ + + _instance = None + EMBEDDINGS_FILE = Path(__file__).parent.parent / "data" / "embeddings.json" + EMBEDDING_MODEL = "models/text-embedding-004" + + def __new__(cls): + if cls._instance is None: + cls._instance = super(SemanticSearch, cls).__new__(cls) + cls._instance.initialized = False + return cls._instance + + def __init__(self): + if self.initialized: + return + + self.embeddings: Dict[str, List[float]] = {} + self.metadata_cache: Dict[str, str] = {} # table_name -> embedded text + + # Initialize Gemini client + api_key = os.getenv("GEMINI_API_KEY") or os.getenv("GOOGLE_API_KEY") + if api_key: + self.client = genai.Client() + else: + self.client = None + logger.warning("No API key found. Semantic search will use fallback keyword matching.") + + self._load_embeddings() + self.initialized = True + + def _load_embeddings(self) -> None: + """Load cached embeddings from disk.""" + if self.EMBEDDINGS_FILE.exists(): + try: + with open(self.EMBEDDINGS_FILE, 'r') as f: + data = json.load(f) + self.embeddings = data.get("embeddings", {}) + self.metadata_cache = data.get("metadata", {}) + logger.info(f"Loaded {len(self.embeddings)} cached embeddings.") + except Exception as e: + logger.error(f"Failed to load embeddings: {e}") + self.embeddings = {} + self.metadata_cache = {} + + def _save_embeddings(self) -> None: + """Save embeddings cache to disk.""" + try: + self.EMBEDDINGS_FILE.parent.mkdir(parents=True, exist_ok=True) + with open(self.EMBEDDINGS_FILE, 'w') as f: + json.dump({ + "embeddings": self.embeddings, + "metadata": self.metadata_cache + }, f) + logger.info(f"Saved {len(self.embeddings)} embeddings to cache.") + except Exception as e: + logger.error(f"Failed to save embeddings: {e}") + + def _build_embedding_text(self, table_name: str, metadata: dict) -> str: + """Build text representation of a table for embedding.""" + parts = [f"Table: {table_name}"] + + # Description (prefer semantic if available) + desc = metadata.get("semantic_description") or metadata.get("description", "") + if desc: + parts.append(f"Description: {desc}") + + # Tags + tags = metadata.get("tags", []) + if tags: + parts.append(f"Tags: {', '.join(tags)}") + + # Category + category = metadata.get("category", "") + if category: + parts.append(f"Category: {category}") + + # Key columns (limit to first 15 for embedding efficiency) + columns = metadata.get("columns", []) + # Filter out generic columns + meaningful_cols = [c for c in columns[:15] if c not in ['geom', 'geometry', 'id', 'fid']] + if meaningful_cols: + parts.append(f"Columns: {', '.join(meaningful_cols)}") + + # Data type + data_type = metadata.get("data_type", "static") + parts.append(f"Data type: {data_type}") + + return ". ".join(parts) + + def _embed_text(self, text: str) -> Optional[List[float]]: + """Get embedding for a text string.""" + if not self.client: + return None + + try: + result = self.client.models.embed_content( + model=self.EMBEDDING_MODEL, + contents=text # Note: 'contents' not 'content' + ) + return result.embeddings[0].values + except Exception as e: + logger.error(f"Embedding failed: {e}") + return None + + def _cosine_similarity(self, a: List[float], b: List[float]) -> float: + """Compute cosine similarity between two vectors.""" + a_np = np.array(a) + b_np = np.array(b) + + dot_product = np.dot(a_np, b_np) + norm_a = np.linalg.norm(a_np) + norm_b = np.linalg.norm(b_np) + + if norm_a == 0 or norm_b == 0: + return 0.0 + + return float(dot_product / (norm_a * norm_b)) + + def embed_table(self, table_name: str, metadata: dict) -> bool: + """ + Embed a table's metadata for semantic search. + + Returns True if embedding was successful or already cached. + """ + text = self._build_embedding_text(table_name, metadata) + + # Check if already embedded with same text + if table_name in self.metadata_cache and self.metadata_cache[table_name] == text: + return True + + embedding = self._embed_text(text) + if embedding: + self.embeddings[table_name] = embedding + self.metadata_cache[table_name] = text + return True + + return False + + def embed_all_tables(self, catalog: Dict[str, dict]) -> int: + """ + Embed all tables in the catalog. + + Returns number of newly embedded tables. + """ + new_count = 0 + + for table_name, metadata in catalog.items(): + text = self._build_embedding_text(table_name, metadata) + + # Skip if already embedded with same text + if table_name in self.metadata_cache and self.metadata_cache[table_name] == text: + continue + + if self.embed_table(table_name, metadata): + new_count += 1 + + if new_count > 0: + self._save_embeddings() + logger.info(f"Embedded {new_count} new tables.") + + return new_count + + def search(self, query: str, top_k: int = 15) -> List[Tuple[str, float]]: + """ + Find the most relevant tables for a query. + + Returns list of (table_name, similarity_score) tuples, sorted by relevance. + """ + if not self.embeddings: + logger.warning("No embeddings available. Returning empty results.") + return [] + + # Embed the query + query_embedding = self._embed_text(query) + + if not query_embedding: + # Fallback to keyword matching + return self._keyword_fallback(query, top_k) + + # Compute similarities + scores = [] + for table_name, table_embedding in self.embeddings.items(): + score = self._cosine_similarity(query_embedding, table_embedding) + scores.append((table_name, score)) + + # Sort by similarity (descending) + scores.sort(key=lambda x: -x[1]) + + return scores[:top_k] + + def search_table_names(self, query: str, top_k: int = 15) -> List[str]: + """Convenience method that returns just table names.""" + results = self.search(query, top_k) + return [name for name, _ in results] + + def _keyword_fallback(self, query: str, top_k: int) -> List[Tuple[str, float]]: + """ + Simple keyword matching fallback when embeddings unavailable. + """ + query_terms = query.lower().split() + scores = [] + + for table_name, text in self.metadata_cache.items(): + text_lower = text.lower() + score = sum(1 for term in query_terms if term in text_lower) + if score > 0: + scores.append((table_name, score / len(query_terms))) + + scores.sort(key=lambda x: -x[1]) + return scores[:top_k] + + def get_stats(self) -> dict: + """Return statistics about the semantic search index.""" + return { + "total_tables": len(self.embeddings), + "cache_file": str(self.EMBEDDINGS_FILE), + "cache_exists": self.EMBEDDINGS_FILE.exists(), + "client_available": self.client is not None + } + + +# Singleton accessor +_semantic_search: Optional[SemanticSearch] = None + + +def get_semantic_search() -> SemanticSearch: + """Get the singleton semantic search instance.""" + global _semantic_search + if _semantic_search is None: + _semantic_search = SemanticSearch() + return _semantic_search diff --git a/backend/core/session_store.py b/backend/core/session_store.py new file mode 100644 index 0000000000000000000000000000000000000000..075027cfbb83f8de16a8d28db2158c94eaa7eff9 --- /dev/null +++ b/backend/core/session_store.py @@ -0,0 +1,179 @@ +""" +Session Store Service + +Thread-safe session-scoped storage for user layers and context. +Replaces global SESSION_LAYERS with per-session isolation. +""" + +import logging +import threading +from datetime import datetime, timedelta +from typing import Dict, List, Optional, Any + + +logger = logging.getLogger(__name__) + + +class SessionStore: + """ + Thread-safe session-scoped storage with TTL expiration. + + Each session maintains its own: + - layers: Map layers created by the user + - context: Optional conversation context + + Sessions expire after configurable TTL (default 2 hours). + """ + + _instance = None + + def __new__(cls): + if cls._instance is None: + cls._instance = super(SessionStore, cls).__new__(cls) + cls._instance.initialized = False + return cls._instance + + def __init__(self, ttl_hours: int = 2, max_layers_per_session: int = 15): + if self.initialized: + return + + self._sessions: Dict[str, dict] = {} + self._lock = threading.Lock() + self.ttl = timedelta(hours=ttl_hours) + self.max_layers = max_layers_per_session + self.initialized = True + + logger.info(f"SessionStore initialized with TTL={ttl_hours}h, max_layers={max_layers_per_session}") + + def _get_or_create_session(self, session_id: str) -> dict: + """Get existing session or create new one.""" + if session_id not in self._sessions: + self._sessions[session_id] = { + "layers": [], + "created": datetime.now(), + "accessed": datetime.now() + } + return self._sessions[session_id] + + def get_layers(self, session_id: str) -> List[dict]: + """Get all layers for a session.""" + with self._lock: + session = self._get_or_create_session(session_id) + session["accessed"] = datetime.now() + return session["layers"].copy() + + def add_layer(self, session_id: str, layer: dict) -> None: + """ + Add a layer to a session. + + Enforces max_layers limit by removing oldest layers. + """ + with self._lock: + session = self._get_or_create_session(session_id) + session["layers"].append(layer) + session["accessed"] = datetime.now() + + # Enforce layer limit + while len(session["layers"]) > self.max_layers: + removed = session["layers"].pop(0) + logger.debug(f"Session {session_id[:8]}: removed oldest layer {removed.get('name', 'unknown')}") + + def update_layer(self, session_id: str, layer_id: str, updates: dict) -> bool: + """ + Update an existing layer in a session. + + Returns True if layer was found and updated. + """ + with self._lock: + session = self._sessions.get(session_id) + if not session: + return False + + for layer in session["layers"]: + if layer.get("id") == layer_id: + layer.update(updates) + session["accessed"] = datetime.now() + return True + + return False + + def remove_layer(self, session_id: str, layer_id: str) -> bool: + """ + Remove a layer from a session. + + Returns True if layer was found and removed. + """ + with self._lock: + session = self._sessions.get(session_id) + if not session: + return False + + original_len = len(session["layers"]) + session["layers"] = [l for l in session["layers"] if l.get("id") != layer_id] + session["accessed"] = datetime.now() + + return len(session["layers"]) < original_len + + def clear_session(self, session_id: str) -> None: + """Clear all data for a session.""" + with self._lock: + if session_id in self._sessions: + del self._sessions[session_id] + + def get_layer_by_index(self, session_id: str, index: int) -> Optional[dict]: + """Get a specific layer by 1-based index (for user references like 'Layer 1').""" + with self._lock: + session = self._sessions.get(session_id) + if not session: + return None + + layers = session["layers"] + if 1 <= index <= len(layers): + return layers[index - 1].copy() + + return None + + def cleanup_expired(self) -> int: + """ + Remove sessions older than TTL. + + Returns number of expired sessions removed. + """ + with self._lock: + now = datetime.now() + expired = [ + sid for sid, data in self._sessions.items() + if now - data.get("accessed", data["created"]) > self.ttl + ] + + for sid in expired: + del self._sessions[sid] + + if expired: + logger.info(f"Cleaned up {len(expired)} expired sessions.") + + return len(expired) + + def get_stats(self) -> dict: + """Return statistics about active sessions.""" + with self._lock: + total_layers = sum(len(s["layers"]) for s in self._sessions.values()) + + return { + "active_sessions": len(self._sessions), + "total_layers": total_layers, + "ttl_hours": self.ttl.total_seconds() / 3600, + "max_layers_per_session": self.max_layers + } + + +# Singleton accessor +_session_store: Optional[SessionStore] = None + + +def get_session_store() -> SessionStore: + """Get the singleton session store instance.""" + global _session_store + if _session_store is None: + _session_store = SessionStore() + return _session_store diff --git a/backend/data/catalog.json b/backend/data/catalog.json new file mode 100644 index 0000000000000000000000000000000000000000..046134d0cf863f18a57ee7cc9892652cc2b7336e --- /dev/null +++ b/backend/data/catalog.json @@ -0,0 +1,1290 @@ +{ + "pan_admin3": { + "path": "base/pan_admin3.geojson", + "description": "Data from base/pan_admin3.geojson", + "semantic_description": "This dataset contains the third-level administrative boundaries (corregimientos) of Panama, including their hierarchical relationships to districts and provinces. It provides nationwide coverage of 594 territorial units, making it essential for localized demographic analysis, regional planning, and mapping public service distribution.", + "tags": [ + "administrative", + "government", + "geographic", + "spatial", + "boundaries" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "adm3_name", + "adm3_name1", + "adm3_name2", + "adm3_name3", + "adm3_pcode", + "adm2_name", + "adm2_name1", + "adm2_name2", + "adm2_name3", + "adm2_pcode", + "adm1_name", + "adm1_name1", + "adm1_name2", + "adm1_name3", + "adm1_pcode", + "adm0_name", + "adm0_name1", + "adm0_name2", + "adm0_name3", + "adm0_pcode", + "valid_on", + "valid_to", + "area_sqkm", + "version", + "lang", + "lang1", + "lang2", + "lang3", + "adm3_ref_name", + "center_lat", + "center_lon", + "geom" + ], + "row_count": 594, + "category": "base", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:16.691836", + "last_enriched": "2026-01-09T16:36:08.469629" + }, + "pan_adminpoints": { + "path": "base/pan_adminpoints.geojson", + "description": "Data from base/pan_adminpoints.geojson", + "semantic_description": "This dataset provides point locations for administrative centers across Panama, covering hierarchical levels from the national capital down to sub-district seats. It includes geographic coordinates and standardized naming conventions, making it a foundational tool for territorial planning and administrative spatial analysis.", + "tags": [ + "administrative", + "points-of-interest", + "amenities", + "government", + "spatial", + "boundaries" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "admin_level", + "name", + "name1", + "name2", + "name3", + "x_coord", + "y_coord", + "adm4_name", + "adm4_name1", + "adm4_name2", + "adm4_name3", + "adm4_pcode", + "adm3_name", + "adm3_name1", + "adm3_name2", + "adm3_name3", + "adm3_pcode", + "adm2_name", + "adm2_name1", + "adm2_name2", + "adm2_name3", + "adm2_pcode", + "adm1_name", + "adm1_name1", + "adm1_name2", + "adm1_name3", + "adm1_pcode", + "adm0_name", + "adm0_name1", + "adm0_name2", + "adm0_name3", + "adm0_pcode", + "valid_on", + "valid_to", + "version", + "lang", + "lang1", + "lang2", + "lang3", + "geom" + ], + "row_count": 684, + "category": "base", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:16.764000", + "last_enriched": "2026-01-09T16:36:12.240069" + }, + "pan_admin2": { + "path": "base/pan_admin2.geojson", + "description": "Data from base/pan_admin2.geojson", + "semantic_description": "This dataset comprises the second-level administrative boundaries for Panama, specifically representing the country's 76 districts. It includes standardized names and hierarchical P-codes for districts, provinces, and the national level to ensure data interoperability. This base layer is primarily used for administrative mapping, regional statistical analysis, and territorial planning.", + "tags": [ + "administrative", + "government", + "geographic", + "spatial", + "boundaries" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "adm2_name", + "adm2_name1", + "adm2_name2", + "adm2_name3", + "adm2_pcode", + "adm1_name", + "adm1_name1", + "adm1_name2", + "adm1_name3", + "adm1_pcode", + "adm0_name", + "adm0_name1", + "adm0_name2", + "adm0_name3", + "adm0_pcode", + "valid_on", + "valid_to", + "area_sqkm", + "version", + "lang", + "lang1", + "lang2", + "lang3", + "adm2_ref_name", + "center_lat", + "center_lon", + "geom" + ], + "row_count": 76, + "category": "base", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:17.560205", + "last_enriched": "2026-01-09T16:36:16.456717" + }, + "pan_admin0": { + "path": "base/pan_admin0.geojson", + "description": "Data from base/pan_admin0.geojson", + "semantic_description": "This dataset defines the national boundary of Panama, representing the country's primary administrative level (ADM0). It is typically used as a foundational layer for national-level spatial analysis, cartographic visualizations, and as a reference for countrywide area calculations and statistical aggregation.", + "tags": [ + "administrative", + "government", + "geographic", + "spatial", + "boundaries" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "iso2", + "iso3", + "adm0_name", + "adm0_name1", + "adm0_name2", + "adm0_name3", + "adm0_pcode", + "valid_on", + "valid_to", + "version", + "area_sqkm", + "lang", + "lang1", + "lang2", + "lang3", + "adm0_ref_name", + "center_lat", + "center_lon", + "geom" + ], + "row_count": 1, + "category": "base", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:18.159865", + "last_enriched": "2026-01-09T16:36:18.989777" + }, + "pan_admin1": { + "path": "base/pan_admin1.geojson", + "description": "Data from base/pan_admin1.geojson", + "semantic_description": "This dataset defines the 13 primary administrative divisions of Panama, including its provinces and major indigenous territories. It provides standardized names, area measurements, and codes necessary for nationwide spatial analysis and regional reporting. The layer serves as a foundational component for administrative mapping and aggregating statistical data at the provincial level.", + "tags": [ + "administrative", + "government", + "geographic", + "spatial", + "boundaries" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "adm1_name", + "adm1_name1", + "adm1_name2", + "adm1_name3", + "adm1_pcode", + "adm0_name", + "adm0_name1", + "adm0_name2", + "adm0_name3", + "adm0_pcode", + "valid_on", + "valid_to", + "area_sqkm", + "version", + "lang", + "lang1", + "lang2", + "lang3", + "adm1_ref_name", + "center_lat", + "center_lon", + "geom" + ], + "row_count": 13, + "category": "base", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:18.936257", + "last_enriched": "2026-01-09T16:36:22.439266" + }, + "pan_adminlines": { + "path": "base/pan_adminlines.geojson", + "description": "Data from base/pan_adminlines.geojson", + "semantic_description": "This dataset contains the linear administrative boundaries of Panama across various hierarchical levels, including province and district borders identified by standard P-codes. It serves as a foundational spatial layer for delineating jurisdictional limits and performing territorial analysis. The data is primarily used for cartographic visualization and spatial joins that require precise border definitions for administrative planning.", + "tags": [ + "administrative", + "spatial", + "boundaries", + "government" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "adm_level", + "name", + "valid_on", + "valid_to", + "version", + "right_pcod", + "left_pcod", + "geom" + ], + "row_count": 2338, + "category": "base", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:19.846930", + "last_enriched": "2026-01-09T16:36:26.375260" + }, + "universities": { + "path": "osm/universities.geojson", + "description": "Data from osm/universities.geojson", + "semantic_description": "This dataset identifies 62 higher education institutions across Panama, including attributes for names, operators, and facility types. It is designed for spatial analysis of educational coverage, urban infrastructure planning, and socio-economic research.", + "tags": [ + "higher-education", + "education", + "infrastructure", + "osm", + "spatial", + "facilities", + "points", + "panama" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "name", + "osm_id", + "feature_type", + "operator", + "education_type", + "icon", + "geom" + ], + "row_count": 62, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:19.856764", + "last_enriched": "2026-01-09T16:36:33.114270" + }, + "panama_healthsites_geojson": { + "path": "hdx/health_facilities/panama-healthsites-geojson.geojson", + "description": "Data from hdx/panama-healthsites-geojson.geojson", + "semantic_description": "This dataset provides location and attribute data for 986 health facilities across Panama, including hospitals, laboratories, and clinics sourced from OpenStreetMap. It includes detailed information on operational status, bed capacity, and staffing levels, making it suitable for analyzing health infrastructure distribution and healthcare accessibility mapping.", + "tags": [ + "health", + "facilities", + "geographic", + "spatial", + "infrastructure" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "osm_type", + "completeness", + "amenity", + "healthcare", + "name", + "operator", + "source", + "speciality", + "operator_type", + "operational_status", + "opening_hours", + "beds", + "staff_doctors", + "staff_nurses", + "health_amenity_type", + "dispensing", + "wheelchair", + "emergency", + "insurance", + "water_source", + "electricity", + "is_in_health_area", + "is_in_health_zone", + "url", + "addr_housenumber", + "addr_street", + "addr_postcode", + "addr_city", + "changeset_id", + "changeset_version", + "changeset_timestamp", + "uuid", + "geom" + ], + "row_count": 986, + "category": "hdx", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:20.039814", + "last_enriched": "2026-01-09T16:35:58.888442" + }, + "panama_healthsites_hxl_geojson": { + "path": "hdx/health_facilities/panama-healthsites-hxl-geojson.geojson", + "description": "Data from hdx/panama-healthsites-hxl-geojson.geojson", + "semantic_description": "This dataset comprises 986 health facilities across Panama, detailing hospitals, clinics, and laboratories with information on capacity, specialties, and operational status. It is designed for analyzing healthcare accessibility, resource distribution, and infrastructure coverage at a national level.", + "tags": [ + "health", + "facilities", + "geographic", + "spatial", + "infrastructure" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "osm_type", + "completeness", + "#loc+amenity", + "#meta+healthcare", + "#loc +name", + "#meta +operator", + "#geo+bounds+url", + "#meta +speciality", + "#meta +operator_type", + "#contact +phone", + "#status+operational_status", + "#access +hours", + "#capacity +beds", + "#capacity +staff", + "#meta +health_amenity_type", + "#meta+dispensing", + "#meta+wheelchair", + "#meta+emergency", + "#meta+insurance", + "#meta+water_source", + "#meta+electricity", + "#meta+is_in_health_area", + "#meta+is_in_health_zone", + "#contact +url", + "addr_housenumber", + "addr_street", + "addr_postcode", + "addr_city", + "changeset_id", + "changeset_version", + "changeset_timestamp", + "#meta +id", + "geom" + ], + "row_count": 986, + "category": "hdx", + "format": "geojson", + "last_indexed": "2026-01-09T16:15:20.152069", + "last_enriched": "2026-01-09T16:36:36.834369" + }, + "kontur_population": { + "description": "Population density grid for Panama at 400m H3 hexagon resolution. Based on GHSL, Facebook HRSL, and Microsoft Buildings data.", + "tags": [ + "population", + "density", + "panama", + "h3", + "hexagon", + "kontur", + "demographics" + ], + "data_type": "vector", + "geometry_type": "polygon", + "semantic_description": "Population count per 400m H3 hexagonal grid cell. Use for population density analysis, demographic studies, and urban/rural classification.", + "path": "kontur/kontur_population_EPSG4326.gpkg", + "columns": [ + "h3", + "population", + "geom" + ], + "row_count": 33114 + }, + "osm_roads": { + "description": "OpenStreetMap Road network with classification for Panama", + "tags": [ + "osm", + "panama", + "roads" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/roads.geojson" + }, + "osm_pois": { + "description": "OpenStreetMap Points of interest (restaurants, shops, etc.) for Panama", + "tags": [ + "osm", + "panama", + "pois" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/pois.geojson" + }, + "osm_pois_areas": { + "description": "OpenStreetMap POI areas (larger venues) for Panama", + "tags": [ + "osm", + "panama", + "pois areas" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/pois_areas.geojson" + }, + "osm_buildings": { + "description": "OpenStreetMap Building footprints for Panama", + "tags": [ + "osm", + "panama", + "buildings" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/buildings.geojson" + }, + "osm_landuse": { + "description": "OpenStreetMap Land use zones (residential, commercial, etc.) for Panama", + "tags": [ + "osm", + "panama", + "landuse" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/landuse.geojson" + }, + "osm_natural_points": { + "description": "OpenStreetMap Natural features (trees, peaks) for Panama", + "tags": [ + "osm", + "panama", + "natural points" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/natural_points.geojson" + }, + "osm_natural_areas": { + "description": "OpenStreetMap Natural areas (forests, parks) for Panama", + "tags": [ + "osm", + "panama", + "natural areas" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/natural_areas.geojson" + }, + "osm_water_areas": { + "description": "OpenStreetMap Water bodies (lakes, reservoirs) for Panama", + "tags": [ + "osm", + "panama", + "water areas" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/water_areas.geojson" + }, + "osm_waterways": { + "description": "OpenStreetMap Rivers and streams for Panama", + "tags": [ + "osm", + "panama", + "waterways" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/waterways.geojson" + }, + "osm_railways": { + "description": "OpenStreetMap Railway lines for Panama", + "tags": [ + "osm", + "panama", + "railways" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/railways.geojson" + }, + "osm_traffic": { + "description": "OpenStreetMap Traffic infrastructure (signals, crossings) for Panama", + "tags": [ + "osm", + "panama", + "traffic" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/traffic.geojson" + }, + "osm_traffic_areas": { + "description": "OpenStreetMap Traffic areas (parking lots) for Panama", + "tags": [ + "osm", + "panama", + "traffic areas" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/traffic_areas.geojson" + }, + "osm_transport": { + "description": "OpenStreetMap Transport points (bus stops, stations) for Panama", + "tags": [ + "osm", + "panama", + "transport" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/transport.geojson" + }, + "osm_transport_areas": { + "description": "OpenStreetMap Transport areas (airports, ports) for Panama", + "tags": [ + "osm", + "panama", + "transport areas" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/transport_areas.geojson" + }, + "osm_places": { + "description": "OpenStreetMap Place names (cities, towns, villages) for Panama", + "tags": [ + "osm", + "panama", + "places" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/places.geojson" + }, + "osm_places_areas": { + "description": "OpenStreetMap Place areas for Panama", + "tags": [ + "osm", + "panama", + "places areas" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/places_areas.geojson" + }, + "osm_places_of_worship": { + "description": "OpenStreetMap Places of worship for Panama", + "tags": [ + "osm", + "panama", + "places of worship" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/places_of_worship.geojson" + }, + "osm_places_of_worship_areas": { + "description": "OpenStreetMap Places of worship (buildings) for Panama", + "tags": [ + "osm", + "panama", + "places of worship areas" + ], + "data_type": "vector", + "geometry_type": "auto", + "path": "osm/places_of_worship_areas.geojson" + }, + "roads": { + "path": "osm/roads.geojson", + "description": "Data from osm/roads.geojson", + "semantic_description": null, + "tags": [ + "spatial", + "infrastructure", + "roads", + "transportation" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "ref", + "oneway", + "maxspeed", + "layer", + "bridge", + "tunnel", + "geom" + ], + "row_count": 118464, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:18:59.409660" + }, + "places_of_worship_areas": { + "path": "osm/places_of_worship_areas.geojson", + "description": "Data from osm/places_of_worship_areas.geojson", + "semantic_description": null, + "tags": [ + "spatial" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 694, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:18:59.460933" + }, + "transport": { + "path": "osm/transport.geojson", + "description": "Data from osm/transport.geojson", + "semantic_description": null, + "tags": [ + "maritime", + "spatial", + "infrastructure", + "transportation" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 1891, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:18:59.506892" + }, + "pois_areas": { + "path": "osm/pois_areas.geojson", + "description": "Data from osm/pois_areas.geojson", + "semantic_description": null, + "tags": [ + "spatial", + "points-of-interest", + "amenities" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 11583, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:00.011175" + }, + "railways": { + "path": "osm/railways.geojson", + "description": "Data from osm/railways.geojson", + "semantic_description": null, + "tags": [ + "spatial" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "layer", + "bridge", + "tunnel", + "geom" + ], + "row_count": 296, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:00.034635" + }, + "pois": { + "path": "osm/pois.geojson", + "description": "Data from osm/pois.geojson", + "semantic_description": null, + "tags": [ + "spatial", + "points-of-interest", + "amenities" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 11129, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:00.261571" + }, + "natural_points": { + "path": "osm/natural_points.geojson", + "description": "Data from osm/natural_points.geojson", + "semantic_description": null, + "tags": [ + "spatial", + "points-of-interest", + "amenities" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 6500, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:00.395667" + }, + "traffic": { + "path": "osm/traffic.geojson", + "description": "Data from osm/traffic.geojson", + "semantic_description": null, + "tags": [ + "spatial" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 5902, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:00.509922" + }, + "traffic_areas": { + "path": "osm/traffic_areas.geojson", + "description": "Data from osm/traffic_areas.geojson", + "semantic_description": null, + "tags": [ + "spatial" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 3403, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:00.682898" + }, + "buildings": { + "path": "osm/buildings.geojson", + "description": "Data from osm/buildings.geojson", + "semantic_description": null, + "tags": [ + "spatial", + "built-environment", + "infrastructure" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "type", + "geom" + ], + "row_count": 233936, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:08.488004" + }, + "places": { + "path": "osm/places.geojson", + "description": "Data from osm/places.geojson", + "semantic_description": null, + "tags": [ + "spatial", + "population" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "population", + "name", + "geom" + ], + "row_count": 3683, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:08.594144" + }, + "places_of_worship": { + "path": "osm/places_of_worship.geojson", + "description": "Data from osm/places_of_worship.geojson", + "semantic_description": null, + "tags": [ + "spatial" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 228, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:08.609384" + }, + "natural_areas": { + "path": "osm/natural_areas.geojson", + "description": "Data from osm/natural_areas.geojson", + "semantic_description": null, + "tags": [ + "spatial" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 434, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:08.673965" + }, + "waterways": { + "path": "osm/waterways.geojson", + "description": "Data from osm/waterways.geojson", + "semantic_description": null, + "tags": [ + "natural-resources", + "spatial", + "hydrology" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "width", + "name", + "geom" + ], + "row_count": 15532, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:10.791546" + }, + "water_areas": { + "path": "osm/water_areas.geojson", + "description": "Data from osm/water_areas.geojson", + "semantic_description": null, + "tags": [ + "natural-resources", + "spatial", + "hydrology" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 3733, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:12.941528" + }, + "landuse": { + "path": "osm/landuse.geojson", + "description": "Data from osm/landuse.geojson", + "semantic_description": null, + "tags": [ + "spatial" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 16075, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:15.893984" + }, + "transport_areas": { + "path": "osm/transport_areas.geojson", + "description": "Data from osm/transport_areas.geojson", + "semantic_description": null, + "tags": [ + "maritime", + "spatial", + "infrastructure", + "transportation" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "name", + "geom" + ], + "row_count": 196, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:15.917475" + }, + "places_areas": { + "path": "osm/places_areas.geojson", + "description": "Data from osm/places_areas.geojson", + "semantic_description": null, + "tags": [ + "spatial", + "population" + ], + "data_type": "semi-static", + "update_frequency": null, + "columns": [ + "osm_id", + "code", + "fclass", + "population", + "name", + "geom" + ], + "row_count": 239, + "category": "osm", + "format": "geojson", + "last_indexed": "2026-01-09T18:19:16.220819" + }, + "overture_places": { + "path": "overture/overture_places.geojson", + "description": "Points of Interest from Overture Maps (Places theme)", + "semantic_description": "Comprehensive list of businesses and landmarks with names and categories. Use this for finding specific amenities, shops, or named locations.", + "tags": [ + "overture", + "places", + "poi", + "businesses", + "landmarks", + "spatial", + "panama" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "id", + "version", + "sources", + "names", + "categories", + "basic_category", + "taxonomy", + "confidence", + "websites", + "socials", + "emails", + "phones", + "brand", + "addresses", + "operating_status", + "geom" + ], + "row_count": 33362, + "category": "overture", + "format": "geojson", + "last_indexed": "2026-01-09T18:37:03.188928" + }, + "overture_roads": { + "path": "overture/overture_roads.geojson", + "description": "Road network segments from Overture Maps", + "semantic_description": "Road network segments including highways, streets, and paths. Contains road names and classification.", + "tags": [ + "overture", + "roads", + "transportation", + "infrastructure", + "spatial", + "panama" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "id", + "version", + "sources", + "subtype", + "class", + "names", + "connectors", + "routes", + "subclass_rules", + "access_restrictions", + "level_rules", + "destinations", + "prohibited_transitions", + "rail_flags", + "road_surface", + "road_flags", + "speed_limits", + "width_rules", + "subclass", + "geom" + ], + "row_count": 179610, + "category": "overture", + "format": "geojson", + "last_indexed": "2026-01-09T18:37:18.729125" + }, + "overture_buildings": { + "path": "overture/overture_buildings.geojson", + "description": "Building footprints from Overture Maps", + "semantic_description": "Building footprints including Microsoft and OSM data. Useful for urban density, infrastructure planning, and built-environment analysis.", + "tags": [ + "overture", + "buildings", + "footprints", + "infrastructure", + "spatial", + "panama" + ], + "data_type": "static", + "update_frequency": null, + "columns": [ + "id", + "version", + "sources", + "level", + "subtype", + "class", + "height", + "names", + "has_parts", + "is_underground", + "num_floors", + "min_height", + "min_floor", + "num_floors_underground", + "facade_color", + "facade_material", + "roof_material", + "roof_shape", + "roof_direction", + "roof_orientation", + "roof_color", + "roof_height", + "geom" + ], + "row_count": 1888314, + "category": "overture", + "format": "geojson", + "last_indexed": "2026-01-09T18:38:50.416300" + }, + "panama_weather_stations": { + "path": "climate/weather_stations.geojson", + "description": "Major weather stations in Panama with average temperature and rainfall data.", + "semantic_description": "This dataset contains the locations of major weather stations in Panama (Tocumen, David, Bocas del Toro, etc.). It includes attributes for average annual temperature (Celsius), annual rainfall (mm), and elevation. Use this for analyzing climatic differences across the country.", + "tags": [ + "climate", + "weather", + "temperature", + "rainfall", + "stations" + ], + "data_type": "static", + "category": "climate", + "format": "geojson" + }, + "panama_terrain_features": { + "path": "terrain/simplified_terrain.geojson", + "description": "Simplifed terrain features including major peaks and mountain ranges.", + "semantic_description": "A simplified dataset showing major terrain features of Panama, including Volc\u00e1n Bar\u00fa (highest peak) and the Central Cordillera. Contains points for peaks and lines for ranges, with elevation attributes.", + "tags": [ + "terrain", + "elevation", + "mountains", + "volcano", + "geography" + ], + "data_type": "static", + "category": "climate", + "format": "geojson" + }, + "panama_national_indicators": { + "path": "socioeconomic/panama_national_indicators.geojson", + "description": "National socio-economic indicators from World Bank (2000-2024)", + "semantic_description": "Comprehensive national-level statistics for Panama including poverty rates, GDP, unemployment, health expenditure, maternal/child mortality, literacy rates, and school enrollment. Data sourced from World Bank Open Data API. Use this dataset for analyzing Panama's socio-economic development trends over time.", + "tags": [ + "socioeconomic", + "worldbank", + "poverty", + "gdp", + "employment", + "health", + "education", + "national", + "panama" + ], + "data_type": "static", + "category": "socioeconomic", + "format": "geojson" + }, + "province_socioeconomic": { + "path": "socioeconomic/province_socioeconomic.geojson", + "description": "Province-level socioeconomic indicators for Panama (2023)", + "semantic_description": "Socioeconomic data at the province level including Multidimensional Poverty Index (MPI), population from Censo 2023, average income, and disability rates. Shows dramatic geographic inequality: Ng\u00e4be-Bugl\u00e9 comarca has 93.4% poverty vs 15% in Panam\u00e1 province. Use for analyzing regional disparities in poverty, development, and demographics.", + "tags": [ + "socioeconomic", + "poverty", + "mpi", + "census", + "province", + "admin1", + "demographics", + "inequality", + "panama" + ], + "data_type": "static", + "category": "socioeconomic", + "format": "geojson" + }, + "panama_airports": { + "path": "global/airports/panama_airports.geojson", + "description": "Panama airports from OurAirports global database (91 airports)", + "semantic_description": "Comprehensive dataset of all airports in Panama including international, domestic, regional, and small airfields. Contains location, elevation, type (large/medium/small/heliport), runway information, and identifiers (ICAO, IATA codes). Updated daily from OurAirports open database. Use for aviation infrastructure analysis, accessibility studies, and transportation planning.", + "tags": [ + "infrastructure", + "transportation", + "airports", + "aviation", + "panama", + "ourairports" + ], + "data_type": "static", + "category": "infrastructure", + "format": "geojson", + "source": "OurAirports (davidmegginson/ourairports-data)", + "license": "Public Domain" + }, + "censo_2023": { + "path": "censo/censo_2023_enriched.csv", + "description": "Panama Census 2023: Demographics & Housing (Corregimiento Level)", + "semantic_description": "Detailed dataset from the 2023 National Census of Population and Housing (Part I & II). Contains granular data at the Corregimiento level (Admin 3) covering: housing types, water access, sanitation, electricity sources, internet/computer access, education levels, and population demographics. Enriched with 'adm3_pcode' to enable spatial joining with 'pan_admin3'. Use for demographic analysis, infrastructure planning, and social program targeting.", + "tags": [ + "census", + "demographics", + "housing", + "population", + "water", + "electricity", + "education", + "panama", + "2023" + ], + "data_type": "static", + "category": "socioeconomic", + "format": "csv", + "columns": [ + "adm3_pcode", + "cod_corr", + "nomb_prov", + "nomb_dist", + "nomb_corr", + "v1_tipo_vivienda__individual_permanente", + "v8_abastecimiento_de_agua__acueducto_publico_del_idaan", + "p13_acceso_internet__si", + "p3_edad_digitos__total" + ] + } +} \ No newline at end of file diff --git a/backend/data/catalog_schema.json b/backend/data/catalog_schema.json new file mode 100644 index 0000000000000000000000000000000000000000..c56a9332e158f79d8216804c65700e6f647e4895 --- /dev/null +++ b/backend/data/catalog_schema.json @@ -0,0 +1,145 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GeoQuery Data Catalog Entry", + "description": "Schema for dataset metadata in the GeoQuery platform catalog", + "type": "object", + "required": [ + "path", + "columns", + "category", + "format" + ], + "properties": { + "path": { + "type": "string", + "description": "Relative path to the data file from the data directory" + }, + "description": { + "type": "string", + "description": "Auto-generated basic description (e.g., 'Data from hdx/health.geojson')" + }, + "semantic_description": { + "type": [ + "string", + "null" + ], + "description": "LLM-generated rich description explaining the dataset's contents and use cases" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Searchable tags for categorization (e.g., ['health', 'facilities', 'infrastructure'])" + }, + "data_type": { + "type": "string", + "enum": [ + "static", + "semi-static", + "realtime" + ], + "description": "How frequently the data changes", + "default": "static" + }, + "update_frequency": { + "type": [ + "string", + "null" + ], + "enum": [ + null, + "yearly", + "monthly", + "weekly", + "daily", + "hourly", + "realtime" + ], + "description": "Expected update frequency for the dataset" + }, + "columns": { + "type": "array", + "items": { + "type": "string" + }, + "description": "List of column names in the dataset" + }, + "row_count": { + "type": [ + "integer", + "null" + ], + "description": "Number of features/rows in the dataset" + }, + "category": { + "type": "string", + "description": "Source category (base, osm, hdx, inec, custom)" + }, + "format": { + "type": "string", + "enum": [ + "geojson", + "shapefile", + "geoparquet", + "csv" + ], + "description": "File format of the source data" + }, + "geometry_type": { + "type": [ + "string", + "null" + ], + "enum": [ + null, + "Point", + "MultiPoint", + "LineString", + "MultiLineString", + "Polygon", + "MultiPolygon" + ], + "description": "Type of geometries in the dataset" + }, + "bbox": { + "type": [ + "array", + "null" + ], + "items": { + "type": "number" + }, + "minItems": 4, + "maxItems": 4, + "description": "Bounding box [minLon, minLat, maxLon, maxLat]" + }, + "source": { + "type": [ + "string", + "null" + ], + "description": "Original source of the data (e.g., 'OpenStreetMap', 'INEC Census 2023')" + }, + "license": { + "type": [ + "string", + "null" + ], + "description": "Data license (e.g., 'ODbL', 'CC-BY-4.0', 'Public Domain')" + }, + "last_indexed": { + "type": "string", + "format": "date-time", + "description": "ISO timestamp when the dataset was last indexed" + }, + "last_enriched": { + "type": [ + "string", + "null" + ], + "format": "date-time", + "description": "ISO timestamp when LLM enrichment was last run" + } + } +} \ No newline at end of file diff --git a/backend/data/censo/censo_2023_enriched.csv b/backend/data/censo/censo_2023_enriched.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b2d2db01f66cf2f8d725235a6a1c3d305e8a4b7 --- /dev/null +++ b/backend/data/censo/censo_2023_enriched.csv @@ -0,0 +1,700 @@ +adm3_pcode,cod_corr,nomb_prov,nomb_dist,nomb_corr,v1_tipo_vivienda__individual_permanente,v1_tipo_vivienda__individual_improvisada,v1_tipo_vivienda__apartamento,v1_tipo_vivienda__cuarto_en_casa_de_vecindad,v1_tipo_vivienda__centro_de_cuidado_de_personas_mayores_asilos,v1_tipo_vivienda__instituciones_de_protección_de_niñas_niños_y_adolescentes,v1_tipo_vivienda__cárceles_centros_de_custodia_o_cumplimiento_y_cuarteles,v1_tipo_vivienda__conventos_seminarios_o_viviendas_religiosas,v1_tipo_vivienda__trabajaderos,v1_tipo_vivienda__albergues_de_migrantes_o_refugiados,v1_tipo_vivienda__centros_de_apoyo_y_rehabilitación,v1_tipo_vivienda__otras,v1_tipo_vivienda__local_no_destinado_a_habitación_pero_usado_como_vivienda,v1_tipo_vivienda__indigente,v1_tipo_vivienda__damnificado,v11_servicio_sanitario_eliminacion_agua__conectado_a_alcantarillado,v11_servicio_sanitario_eliminacion_agua__conectado_a_tanque_séptico,v11_servicio_sanitario_eliminacion_agua__de_hueco_o_letrina,v11_servicio_sanitario_eliminacion_agua__no_tiene,v12_uso_sanitario_agua__exclusivo_de_la_vivienda,v12_uso_sanitario_agua__compartido_con_otras_viviendas,v13_lugar_depositar_excretas__monte,v13_lugar_depositar_excretas__río_o_quebrada,v13_lugar_depositar_excretas__mar,v13_lugar_depositar_excretas__usa_el_servicio_sanitario_del_vecino,v13_lugar_depositar_excretas__otro,v14_tipo_alumbrado__eléctrico_de_compañía_distribuidora,v14_tipo_alumbrado__eléctrico_de_la_comunidad,v14_tipo_alumbrado__eléctrico_propio_planta,v14_tipo_alumbrado__panel_solar_propio,v14_tipo_alumbrado__querosín_o_diésel,v14_tipo_alumbrado__vela,v14_tipo_alumbrado__linterna_o_lámpara_portátil,v14_tipo_alumbrado__gas,v14_tipo_alumbrado__otro,v15_eliminacion_basura__servicio_de_recolección_público,v15_eliminacion_basura__servicio_de_recolección_privado,v15_eliminacion_basura__incineración_o_quema,v15_eliminacion_basura__terreno_baldío,v15_eliminacion_basura__entierro,v15_eliminacion_basura__río_quebrada_lago_o_mar,v15_eliminacion_basura__otra_forma,v16_combustible_para_cocinar__gas,v16_combustible_para_cocinar__leña,v16_combustible_para_cocinar__electricidad,v16_combustible_para_cocinar__querosín,v16_combustible_para_cocinar__carbón,v16_combustible_para_cocinar__no_cocina,v2_condicion_vivienda__con_personas_presentes,v2_condicion_vivienda__con_personas_ausentes,v2_condicion_vivienda__de_veraneo_o_temporal,v2_condicion_vivienda__en_reparación_o_construcción,v2_condicion_vivienda__en_venta_o_alquiler,v2_condicion_vivienda__desocupada,v2_condicion_vivienda__deshabitada_o_abandonada,v2_condicion_vivienda__otro_motivo_de_desocupada_especifique,v3_tenencia_vivienda__hipotecada,v3_tenencia_vivienda__alquilada,v3_tenencia_vivienda__propia,v3_tenencia_vivienda__cedida,v3_tenencia_vivienda__sucesión_o_litigio,v3_tenencia_vivienda__invadida,v4_material_paredes__bloque_ladrillo_piedra_concreto,v4_material_paredes__madera_tablas_o_troza,v4_material_paredes__quincha_o_adobe,v4_material_paredes__metal_zinc_aluminio_otros,v4_material_paredes__palma_paja_penca_cañaza_bambú_o_palos,v4_material_paredes__otros_materiales,v4_material_paredes__sin_paredes,v5_material_techo__metal_zinc_aluminio_entre_otros,v5_material_techo__teja,v5_material_techo__otro_tipo_de_tejas_tejalit_panalit_techolit_entre_otras,v5_material_techo__losa_de_concreto,v5_material_techo__madera,v5_material_techo__palma_paja_o_penca,v5_material_techo__otros_materiales,v6_material_piso__mosaico_o_baldosa_mármol_o_parqué,v6_material_piso__pavimentado_concreto,v6_material_piso__ladrillo,v6_material_piso__tierra,v6_material_piso__madera,v6_material_piso__otros_materiales_caña_palos_desechos_entre_otros,v8_abastecimiento_de_agua__acueducto_público_del_idaan,v8_abastecimiento_de_agua__acueducto_público_de_la_comunidad,v8_abastecimiento_de_agua__acueducto_particular,v8_abastecimiento_de_agua__pozo_brocal_protegido,v8_abastecimiento_de_agua__pozo_brocal_no_protegido,v8_abastecimiento_de_agua__pozo_superficial_ojo_de_agua_o_manantial,v8_abastecimiento_de_agua__recogen_agua_de_lluvia,v8_abastecimiento_de_agua__río_quebrada_o_lago,v8_abastecimiento_de_agua__carro_cisterna,v8_abastecimiento_de_agua__agua_embotellada,v8_abastecimiento_de_agua__otra_vivienda_o_comunidad,v8_abastecimiento_de_agua__otra,v9_area__urbano,v9_area__rural,v10a_suministro_agua_días_semana_seca__promedio,v10b_suministro_agua_horas_dia_seca__promedio,v10c_suministro_agua_días_semana_lluviosa__promedio,v10d_suministro_agua_horas_dia_lluviosa__promedio,v17_numero_hogares_en_vivienda__promedio,v7a_cuartos__promedio,v7b_dormitorios__promedio,p1_relacion__jefe_a,p1_relacion__cónyuge_del_jefe_o_la_jefa,p1_relacion__hijo_a,p1_relacion__hijastro_a,p1_relacion__nieto_a_o_bisnieto_a,p1_relacion__padre_o_madre_del_jefe,p1_relacion__hermano_a,p1_relacion__sobrino_a,p1_relacion__suegro_a,p1_relacion__yerno_o_nuera,p1_relacion__cuñado_a,p1_relacion__otro_pariente,p1_relacion__no_pariente,p1_relacion__servicio_doméstico,p10_tipo_discapacidad__discapacidad_física,p10_tipo_discapacidad__discapacidad_visual,p10_tipo_discapacidad__discapacidad_auditiva,p10_tipo_discapacidad__discapacidad_intelectual,p10_tipo_discapacidad__discapacidad_mental,p10_tipo_discapacidad__discapacidad_visceral,p10_tipo_discapacidad__discapacidad_múltiple,p11_acceso_celular__sí,p11_acceso_celular__no,p11_acceso_celular__no_declarado,p12_acceso_computadora__sí,p12_acceso_computadora__no,p12_acceso_computadora__no_declarado,p13_acceso_internet__sí,p13_acceso_internet__no,p13_acceso_internet__no_declarado,p14_leer_y_escribir__sí,p14_leer_y_escribir__no,p14_leer_y_escribir__no_declarado,p15_estudios__sí,p15_estudios__no,p15_estudios__no_declarado,p15_estudios__pública_oficial,p15_estudios__privada_particular,p15_estudios__sí_alguna_vez,p15_estudios__nunca_ha_asistido,p15_estudios__no_declarado_2,p16_grado_estudios_mas_alto__ningún_grado,p16_grado_estudios_mas_alto__prekinder_o_prejardín,p16_grado_estudios_mas_alto__kinder_o_jardín,p16_grado_estudios_mas_alto__enseñanza_especial,p16_grado_estudios_mas_alto__primaria_1,p16_grado_estudios_mas_alto__primaria_2,p16_grado_estudios_mas_alto__primaria_3,p16_grado_estudios_mas_alto__primaria_4,p16_grado_estudios_mas_alto__primaria_5,p16_grado_estudios_mas_alto__primaria_6,p16_grado_estudios_mas_alto__vocacional_1,p16_grado_estudios_mas_alto__vocacional_2,p16_grado_estudios_mas_alto__vocacional_3,p16_grado_estudios_mas_alto__primer_ciclo_premedia_1,p16_grado_estudios_mas_alto__primer_ciclo_premedia_2,p16_grado_estudios_mas_alto__primer_ciclo_premedia_3,p16_grado_estudios_mas_alto__segundo_ciclo_media_4,p16_grado_estudios_mas_alto__segundo_ciclo_media_5,p16_grado_estudios_mas_alto__segundo_ciclo_media_6,p16_grado_estudios_mas_alto__superior_no_universitaria_1,p16_grado_estudios_mas_alto__superior_no_universitaria_2,p16_grado_estudios_mas_alto__superior_universitaria_1,p16_grado_estudios_mas_alto__superior_universitaria_2,p16_grado_estudios_mas_alto__superior_universitaria_3,p16_grado_estudios_mas_alto__superior_universitaria_4,p16_grado_estudios_mas_alto__superior_universitaria_5,p16_grado_estudios_mas_alto__superior_universitaria_6,p16_grado_estudios_mas_alto__especialidad_postgrado,p16_grado_estudios_mas_alto__maestría_1,p16_grado_estudios_mas_alto__maestría_2,p16_grado_estudios_mas_alto__doctorado_1,p16_grado_estudios_mas_alto__doctorado_2,p16_grado_estudios_mas_alto__doctorado_3,p16_grado_estudios_mas_alto__doctorado_4,p16_grado_estudios_mas_alto__no_declarado,p17_condición_laboral__ocupada,p17_condición_laboral__desocupada,p17_condición_laboral__no_económicamente_activa,p17_condición_laboral__no_declarado,p18_motivo_no_busca_trabajo__ya_consiguió_trabajo,p18_motivo_no_busca_trabajo__buscó_antes_y_espera_noticias,p18_motivo_no_busca_trabajo__se_cansó_de_buscar_trabajo,p18_motivo_no_busca_trabajo__jubilado_o_pensionado,p18_motivo_no_busca_trabajo__estudiante_solamente,p18_motivo_no_busca_trabajo__ama_de_casa_solamente_o_trabajador_del_hogar,p18_motivo_no_busca_trabajo__incapacitado_permanentemente_para_trabajar,p18_motivo_no_busca_trabajo__otro_motivo,p19_lugar_trabajo__empresa_o_institución_u_otro_lugar_de_trabajo,p19_lugar_trabajo__en_su_casa,p19_lugar_trabajo__casa_sitio_o_local_del_cliente,p19_lugar_trabajo__casa_de_familia_servicio_doméstico,p19_lugar_trabajo__en_la_calle_con_o_sin_sitio_fijo,p19_lugar_trabajo__puesto_en_mercado_artesanal_abasto_o_mariscos,p19_lugar_trabajo__en_finca_agropecuaria,p19_lugar_trabajo__en_el_mar_playa_río_o_lago,p19_lugar_trabajo__no_declarado,p2_sexo__hombre,p2_sexo__mujer,p20_categoria_de_ocupacion__empleado_del_gobierno,p20_categoria_de_ocupacion__empleado_de_una_empresa_privada,p20_categoria_de_ocupacion__empleado_del_servicio_doméstico,p20_categoria_de_ocupacion__por_cuenta_propia_o_independiente,p20_categoria_de_ocupacion__patrono_o_dueño,p20_categoria_de_ocupacion__miembro_de_cooperativa_de_producción,p20_categoria_de_ocupacion__trabajador_familiar,p20_categoria_de_ocupacion__no_declarado,p21_ingresos_programas_estado__red_de_oportunidades,p21_ingresos_programas_estado__120_a_los_65,p21_ingresos_programas_estado__angel_guardián,p21_ingresos_programas_estado__no_tiene_ingreso,p21_ingresos_programas_estado__no_declarado,p22_hijos_nacidos_vivos__no_declarado,p23_hijos_vivos_actualmente__no_declarado,p25_titulos_estudios_conseguidos__ningún_titulo,p25_titulos_estudios_conseguidos__títulos_de_secundaria,p25_titulos_estudios_conseguidos__títulos_de_vocacional,p25_titulos_estudios_conseguidos__títulos_no_universitarios,p25_titulos_estudios_conseguidos__carreras_técnicas,p25_titulos_estudios_conseguidos__títulos_de_licenciatura,p25_titulos_estudios_conseguidos__títulos_de_posgrado,p25_titulos_estudios_conseguidos__títulos_de_maestría,p25_titulos_estudios_conseguidos__títulos_de_doctorado,p25_titulos_estudios_conseguidos__no_declarado,p26_ocupacion_detallada__miembros_de_las_fuerzas_armadas_y_trabajadores_en_ocupaciones_no_identificables_o_no_declaradas,p26_ocupacion_detallada__directores_y_gerentes_de_los_sectores_publico_privado_y_de_organizaciones_de_interes_social,p26_ocupacion_detallada__profesionales_cientificos_e_intelectuales,p26_ocupacion_detallada__tecnicos_y_profesionales_de_nivel_medio,p26_ocupacion_detallada__empleados_de_oficina,p26_ocupacion_detallada__trabajadores_de_los_servicios_y_vendedores_de_comercios_y_mercados,p26_ocupacion_detallada__agricultores_y_trabajadores_agropecuarios_forestales_de_la_pesca_y_caza,p26_ocupacion_detallada__artesanos_y_trabajadores_de_la_mineria_la_construccion_la_industria_manufacturera_la_mecanica_y_ocupaciones_afines,p26_ocupacion_detallada__operadores_de_instalaciones_fijas_y_maquinas_ensambladores_conductores_y_operadores_de_maquinarias_moviles,p26_ocupacion_detallada__trabajadores_no_calificados_de_los_servicios_la_mineria_construccion_industria_manufacturera_transporte_y_otras_ocupaciones_elementales,p27_grupo_ingreso_persona__menos_de_100,p27_grupo_ingreso_persona__100_124,p27_grupo_ingreso_persona__125_174,p27_grupo_ingreso_persona__175_249,p27_grupo_ingreso_persona__250_399,p27_grupo_ingreso_persona__400_599,p27_grupo_ingreso_persona__600_799,p27_grupo_ingreso_persona__800_999,p27_grupo_ingreso_persona__1000_1499,p27_grupo_ingreso_persona__1500_1999,p27_grupo_ingreso_persona__2000_2499,p27_grupo_ingreso_persona__2500_2999,p27_grupo_ingreso_persona__3000_3999,p27_grupo_ingreso_persona__4000_4999,p27_grupo_ingreso_persona__5000_y_más,p27_grupo_ingreso_persona__no_declarado,p3_edad_digitos__0_0,p3_edad_digitos__1_0,p3_edad_digitos__2_0,p3_edad_digitos__3_0,p3_edad_digitos__4_0,p3_edad_digitos__5_0,p3_edad_digitos__6_0,p3_edad_digitos__7_0,p3_edad_digitos__8_0,p3_edad_digitos__9_0,p3_edad_digitos__10_0,p3_edad_digitos__11_0,p3_edad_digitos__12_0,p3_edad_digitos__13_0,p3_edad_digitos__14_0,p3_edad_digitos__15_0,p3_edad_digitos__16_0,p3_edad_digitos__17_0,p3_edad_digitos__18_0,p3_edad_digitos__19_0,p3_edad_digitos__20_0,p3_edad_digitos__21_0,p3_edad_digitos__22_0,p3_edad_digitos__23_0,p3_edad_digitos__24_0,p3_edad_digitos__25_0,p3_edad_digitos__26_0,p3_edad_digitos__27_0,p3_edad_digitos__28_0,p3_edad_digitos__29_0,p3_edad_digitos__30_0,p3_edad_digitos__31_0,p3_edad_digitos__32_0,p3_edad_digitos__33_0,p3_edad_digitos__34_0,p3_edad_digitos__35_0,p3_edad_digitos__36_0,p3_edad_digitos__37_0,p3_edad_digitos__38_0,p3_edad_digitos__39_0,p3_edad_digitos__40_0,p3_edad_digitos__41_0,p3_edad_digitos__42_0,p3_edad_digitos__43_0,p3_edad_digitos__44_0,p3_edad_digitos__45_0,p3_edad_digitos__46_0,p3_edad_digitos__47_0,p3_edad_digitos__48_0,p3_edad_digitos__49_0,p3_edad_digitos__50_0,p3_edad_digitos__51_0,p3_edad_digitos__52_0,p3_edad_digitos__53_0,p3_edad_digitos__54_0,p3_edad_digitos__55_0,p3_edad_digitos__56_0,p3_edad_digitos__57_0,p3_edad_digitos__58_0,p3_edad_digitos__59_0,p3_edad_digitos__60_0,p3_edad_digitos__61_0,p3_edad_digitos__62_0,p3_edad_digitos__63_0,p3_edad_digitos__64_0,p3_edad_digitos__65_0,p3_edad_digitos__66_0,p3_edad_digitos__67_0,p3_edad_digitos__68_0,p3_edad_digitos__69_0,p3_edad_digitos__70_0,p3_edad_digitos__71_0,p3_edad_digitos__72_0,p3_edad_digitos__73_0,p3_edad_digitos__74_0,p3_edad_digitos__75_0,p3_edad_digitos__76_0,p3_edad_digitos__77_0,p3_edad_digitos__78_0,p3_edad_digitos__79_0,p3_edad_digitos__80_0,p3_edad_digitos__81_0,p3_edad_digitos__82_0,p3_edad_digitos__83_0,p3_edad_digitos__84_0,p3_edad_digitos__85_0,p3_edad_digitos__86_0,p3_edad_digitos__87_0,p3_edad_digitos__88_0,p3_edad_digitos__89_0,p3_edad_digitos__90_0,p3_edad_digitos__91_0,p3_edad_digitos__92_0,p3_edad_digitos__93_0,p3_edad_digitos__94_0,p3_edad_digitos__95_0,p3_edad_digitos__96_0,p3_edad_digitos__97_0,p3_edad_digitos__98_0,p3_edad_digitos__99_0,p3_edad_digitos__100_0,p3_edad_digitos__101_0,p3_edad_digitos__102_0,p3_edad_digitos__103_0,p3_edad_digitos__104_0,p3_edad_digitos__105_0,p3_edad_digitos__106_0,p3_edad_digitos__107_0,p3_edad_digitos__108_0,p3_edad_digitos__109_0,p3_edad_digitos__110_0,p3_edad_digitos__111_0,p3_edad_digitos__112_0,p3_edad_digitos__113_0,p3_edad_digitos__115_0,p3_edad_digitos__116_0,p3_edad_digitos__124_0,p3_edad_digitos__no_declarada,p3a_grupos_edad__0_14,p3a_grupos_edad__15_64,p3a_grupos_edad__65_y_mas,p3a_grupos_edad__no_declarada,p3b_grupos_edad_quinquenal__0_4,p3b_grupos_edad_quinquenal__5_9,p3b_grupos_edad_quinquenal__10_14,p3b_grupos_edad_quinquenal__15_19,p3b_grupos_edad_quinquenal__20_24,p3b_grupos_edad_quinquenal__25_29,p3b_grupos_edad_quinquenal__30_34,p3b_grupos_edad_quinquenal__35_39,p3b_grupos_edad_quinquenal__40_44,p3b_grupos_edad_quinquenal__45_49,p3b_grupos_edad_quinquenal__50_54,p3b_grupos_edad_quinquenal__55_59,p3b_grupos_edad_quinquenal__60_64,p3b_grupos_edad_quinquenal__65_69,p3b_grupos_edad_quinquenal__70_74,p3b_grupos_edad_quinquenal__75_79,p3b_grupos_edad_quinquenal__80_84,p3b_grupos_edad_quinquenal__85_89,p3b_grupos_edad_quinquenal__90_94,p3b_grupos_edad_quinquenal__95_99,p3b_grupos_edad_quinquenal__100_y_más,p3b_grupos_edad_quinquenal__no_declarada,p4a_inscrito_registro_civil__en_el_registro_civil_de_panamá,p4a_inscrito_registro_civil__en_el_registro_civil_de_otro_país,p4a_inscrito_registro_civil__en_ambos,p4a_inscrito_registro_civil__no_está_registrado,p4a_inscrito_registro_civil__no_declarado,p4b_pais_ciudadania__de_este_país_panamá,p4b_pais_ciudadania__de_otro_país,p4b_pais_ciudadania__ambos,p4b_pais_ciudadania__no_tiene,p4b_pais_ciudadania__no_declarado,p5_estado_conyugal__unido_a,p5_estado_conyugal__separado_a_de_matrimonio,p5_estado_conyugal__separado_a_de_unión,p5_estado_conyugal__casado_a,p5_estado_conyugal__viudo_a,p5_estado_conyugal__divorciado_a,p5_estado_conyugal__soltero_a,p5_estado_conyugal__menor_de_15_años,p5_estado_conyugal__no_declarado,p6_donde_vivia_antes__en_este_mismo_lugar_poblado_barrio_o_barriada,p6_donde_vivia_antes__en_otro_lugar_poblado_barrio_o_barriada,p6_donde_vivia_antes__en_otro_país,p6_donde_vivia_antes__no_declarado,p7_grupo_indígena__kuna,p7_grupo_indígena__ngäbe,p7_grupo_indígena__buglé,p7_grupo_indígena__naso,p7_grupo_indígena__teribe,p7_grupo_indígena__bokota,p7_grupo_indígena__emberá,p7_grupo_indígena__wounaan,p7_grupo_indígena__bri_bri,p7_grupo_indígena__otro_grupo_indígena,p7_grupo_indígena__ninguno,p7_grupo_indígena__no_declarado,p8_grupo_afrodescendiente__afrodescendiente,p8_grupo_afrodescendiente__afropanameño_a,p8_grupo_afrodescendiente__moreno_a,p8_grupo_afrodescendiente__negro_a,p8_grupo_afrodescendiente__afrocolonial,p8_grupo_afrodescendiente__afroantillano_a,p8_grupo_afrodescendiente__otro_grupo_afrodescendiente_culiso_trigueño_mulato_canela_carabalí_costeño,p8_grupo_afrodescendiente__ninguno,p8_grupo_afrodescendiente__no_declarado,p9_seguro_social__asegurado_directo,p9_seguro_social__beneficiario,p9_seguro_social__jubilado_o_pensionado_por_vejez,p9_seguro_social__pensionado_por_enfermedad_o_accidente,p9_seguro_social__jubilado_o_pensionado_de_otro_país,p9_seguro_social__no_tiene,p9_seguro_social__no_declarado,p22_hijos_nacidos_vivos__promedio,p22_hijos_nacidos_vivos__pct_no_declarado,p23_hijos_vivos_actualmente__promedio,p23_hijos_vivos_actualmente__pct_no_declarado,p24_años_estudio_aprobados__promedio,h10_grupo_afrodescendiente_jefe_hogar__afrodescendiente,h10_grupo_afrodescendiente_jefe_hogar__afropanameño_a,h10_grupo_afrodescendiente_jefe_hogar__moreno_a,h10_grupo_afrodescendiente_jefe_hogar__negro_a,h10_grupo_afrodescendiente_jefe_hogar__afrocolonial,h10_grupo_afrodescendiente_jefe_hogar__afroantillano_a,h10_grupo_afrodescendiente_jefe_hogar__otro_grupo_afrodescendiente_culiso_trigueño_mulato_canela_carabalí_costeño,h10_grupo_afrodescendiente_jefe_hogar__ninguno,h10_grupo_afrodescendiente_jefe_hogar__no_declarado,h14_grupo_ingreso_hogar__menos_de_100,h14_grupo_ingreso_hogar__100_124,h14_grupo_ingreso_hogar__125_174,h14_grupo_ingreso_hogar__175_249,h14_grupo_ingreso_hogar__250_399,h14_grupo_ingreso_hogar__400_599,h14_grupo_ingreso_hogar__600_799,h14_grupo_ingreso_hogar__800_999,h14_grupo_ingreso_hogar__1000_1499,h14_grupo_ingreso_hogar__1500_1999,h14_grupo_ingreso_hogar__2000_2499,h14_grupo_ingreso_hogar__2500_2999,h14_grupo_ingreso_hogar__3000_3999,h14_grupo_ingreso_hogar__4000_4999,h14_grupo_ingreso_hogar__5000_y_más,h14_grupo_ingreso_hogar__no_declarado,h1a_bienes_estufa__sí,h1a_bienes_estufa__no,h1b_bienes_refrigeradora__sí,h1b_bienes_refrigeradora__no,h1c_bienes_lavadora__sí,h1c_bienes_lavadora__no,h1d_bienes_maquina_de_coser__sí,h1d_bienes_maquina_de_coser__no,h1e_bienes_abanico_electrico__sí,h1e_bienes_abanico_electrico__no,h1f_bienes_acondicionador_de_aire__sí,h1f_bienes_acondicionador_de_aire__no,h1g_bienes_radio__sí,h1g_bienes_radio__no,h1h_bienes_telefono_residencial__sí,h1h_bienes_telefono_residencial__no,h1i_bienes_telefono_celular_activo__sí,h1i_bienes_telefono_celular_activo__no,h1j_bienes_televisor__sí,h1j_bienes_televisor__no,h1k_bienes_conexion_tv_cable__sí,h1k_bienes_conexion_tv_cable__no,h1l_bienes_computadora_portatil_tableta__sí,h1l_bienes_computadora_portatil_tableta__no,h1m_bienes_acceso_internet__sí,h1m_bienes_acceso_internet__no,h1n_bienes_automovil__sí,h1n_bienes_automovil__no,h5a_actividad_cultivo_granos_basicos__sí,h5a_actividad_cultivo_granos_basicos__no,h5b_actividad_cria_ganado__sí,h5b_actividad_cria_ganado__no,h5c_actividad_silvicultura_apicultura_otras__sí,h5c_actividad_silvicultura_apicultura_otras__no,h6_tipo_hogar__unipersonal,h6_tipo_hogar__nuclear,h6_tipo_hogar__extenso,h6_tipo_hogar__compuesto,h6_tipo_hogar__colectivo,h7_sexo_jefe_hogar__hombre,h7_sexo_jefe_hogar__mujer,h8_edad_jefe_hogar__no_declarada,h9_grupo_indigena_jefe_hogar__kuna,h9_grupo_indigena_jefe_hogar__ngäbe,h9_grupo_indigena_jefe_hogar__buglé,h9_grupo_indigena_jefe_hogar__naso,h9_grupo_indigena_jefe_hogar__teribe,h9_grupo_indigena_jefe_hogar__bokota,h9_grupo_indigena_jefe_hogar__emberá,h9_grupo_indigena_jefe_hogar__wounaan,h9_grupo_indigena_jefe_hogar__bri_bri,h9_grupo_indigena_jefe_hogar__otro_grupo_indígena,h9_grupo_indigena_jefe_hogar__ninguno,h9_grupo_indigena_jefe_hogar__no_declarado,h12_num_hombres__promedio,h13_num_mujeres__promedio,h2_num_miembros_otro_pais__promedio,h3_num_miembros_diagnosticados_covid_19__promedio,h4_num_miembros_fallecer__promedio,h8_edad_jefe_hogar__promedio +PA010101,10102,Bocas del Toro,Bocas del Toro,Bastimentos,1114,7,12,4,0,0,0,0,2,0,0,7,3,0,0,0,362,62,214,412,12,9,131,39,30,5,266,0,27,250,0,60,33,0,2,170,123,328,5,8,1,3,594,38,0,0,0,6,638,0,221,103,58,93,24,0,0,34,552,51,1,0,100,520,0,3,4,11,0,586,0,0,1,15,34,2,33,93,0,6,503,3,0,225,97,6,30,1,163,57,0,57,2,0,0,1149,5.350931677018633,8.559006211180124,6.25776397515528,16.75465838509317,1.0015673981191222,3.2962382445141065,2.188087774294671,649,382,1108,78,250,4,30,15,3,36,6,2,26,0,11,10,5,6,4,4,5,1402,913,0,375,1940,0,1020,1295,0,1998,317,0,792,1523,0,740,52,1324,199,0,200,36,51,5,94,92,107,105,113,343,0,0,0,127,145,170,90,124,314,0,14,21,30,19,66,21,18,2,0,8,0,0,0,0,0,769,135,1048,0,1,89,30,90,475,444,20,19,507,53,80,9,51,4,30,110,0,1356,1233,63,435,10,305,19,3,8,1,66,24,4,1050,7,0,0,1439,376,0,16,13,98,2,8,0,0,2,50,34,43,28,175,81,157,63,271,1693,89,63,102,119,206,149,42,54,17,24,12,6,1,5,7,66.0,65.0,79.0,64.0,63.0,65.0,52.0,59.0,60.0,64.0,69.0,56.0,74.0,54.0,62.0,58.0,58.0,71.0,48.0,49.0,45.0,39.0,44.0,38.0,25.0,50.0,40.0,30.0,34.0,42.0,38.0,40.0,26.0,40.0,26.0,38.0,37.0,33.0,32.0,26.0,26.0,23.0,19.0,26.0,30.0,29.0,15.0,25.0,24.0,17.0,24.0,17.0,27.0,18.0,17.0,17.0,14.0,12.0,24.0,20.0,25.0,12.0,13.0,16.0,11.0,11.0,12.0,12.0,8.0,7.0,11.0,1.0,14.0,6.0,4.0,6.0,5.0,5.0,1.0,6.0,4.0,0.0,4.0,1.0,0.0,3.0,1.0,1.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,952,1508,129,0,337,300,315,284,191,196,170,166,124,110,103,87,77,50,36,23,9,6,3,2,0,0,2324,74,75,116,0,2324,85,64,116,0,736,13,178,249,40,6,415,952,0,1815,632,142,0,1,1560,15,2,0,1,0,0,0,2,1008,0,315,69,51,156,2,7,152,1837,0,310,426,76,1,21,1755,0,2.611353711790393,0.0,3.882352941176471,0.0,6.31981460023175,114,26,15,41,0,2,43,408,0,56,20,19,50,67,111,89,54,83,28,28,14,7,2,9,2,617,32,312,337,318,331,51,598,318,331,28,621,325,324,11,638,483,166,333,316,159,174,174,475,245,404,6,643,226,423,161,488,67,582,123,359,150,17,2,409,240,0,0,321,5,0,0,0,0,0,0,2,321,0,2.08294930875576,1.8940092165898617,1.6,1.1,1.1,46.28197226502312 +PA010103,10408,Bocas del Toro,Almirante,Cauchero,870,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,59,167,251,198,28,28,196,12,15,0,0,0,4,281,4,9,173,0,6,0,0,413,15,46,3,0,147,330,0,0,0,0,477,44,160,56,0,43,92,0,0,0,465,12,0,0,8,466,0,2,0,1,0,439,0,0,0,0,38,0,2,23,0,36,415,1,0,110,95,1,134,25,29,77,0,1,4,1,0,872,5.482926829268293,15.795121951219512,6.502439024390244,20.336585365853654,1.0041928721174005,3.6960167714884697,2.5220125786163523,479,331,1390,37,542,11,17,42,6,72,6,0,1,0,43,20,11,4,5,9,8,307,2287,0,26,2568,0,34,2560,0,1915,679,0,1049,1545,0,1041,8,994,551,0,570,36,44,4,150,126,169,168,163,473,0,1,0,90,121,178,62,96,123,0,1,3,1,2,5,6,2,0,0,0,0,0,0,0,0,653,29,1340,0,1,7,15,38,615,588,76,23,78,44,12,1,26,0,498,3,0,1431,1503,20,62,1,313,63,0,203,0,94,77,2,1112,106,0,0,1878,131,0,0,2,11,0,0,0,0,0,3,7,3,4,29,518,48,3,67,2455,116,64,66,50,33,25,10,9,0,0,0,0,0,0,106,75.0,75.0,111.0,79.0,94.0,93.0,99.0,107.0,89.0,90.0,84.0,106.0,94.0,74.0,86.0,78.0,78.0,79.0,61.0,61.0,51.0,38.0,46.0,34.0,27.0,30.0,27.0,26.0,33.0,33.0,36.0,22.0,32.0,29.0,39.0,24.0,33.0,27.0,29.0,34.0,20.0,19.0,21.0,22.0,12.0,26.0,29.0,19.0,25.0,13.0,19.0,14.0,14.0,26.0,19.0,11.0,15.0,12.0,14.0,13.0,18.0,7.0,14.0,8.0,7.0,8.0,5.0,11.0,13.0,3.0,8.0,10.0,8.0,6.0,12.0,6.0,9.0,8.0,3.0,9.0,9.0,5.0,3.0,1.0,7.0,1.0,0.0,2.0,0.0,0.0,1.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1356,1424,154,0,434,478,444,357,196,149,158,147,94,112,92,65,54,40,44,35,25,3,6,1,0,0,2761,4,0,169,0,2761,4,0,169,0,835,13,112,135,53,1,429,1356,0,2173,756,5,0,0,2792,11,0,0,0,0,0,0,0,131,0,0,23,23,2,0,0,53,2833,0,47,138,39,3,0,2707,0,3.353623188405797,0.0,5.293046357615894,0.0,4.058963871847308,0,7,8,1,0,0,9,454,0,79,35,62,76,102,57,24,24,13,3,1,0,0,1,0,2,239,240,13,466,22,457,83,396,9,470,4,475,75,404,4,475,107,372,21,458,8,13,6,473,14,465,3,476,382,97,326,153,6,473,35,228,215,1,0,327,152,0,0,448,0,0,0,0,0,0,0,0,31,0,2.987473903966597,3.137787056367432,0.0,1.0731707317073171,1.0731707317073171,49.954070981210855 +PA010104,10104,Bocas del Toro,Bocas del Toro,Punta Laurel,573,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,23,34,318,52,5,15,95,199,6,3,0,0,32,219,1,29,88,0,6,0,2,349,2,12,7,3,275,100,0,0,0,0,375,1,85,69,3,26,16,0,0,1,355,19,0,0,5,368,0,2,0,0,0,343,0,0,0,2,30,0,0,11,0,5,359,0,0,28,17,41,85,3,156,24,0,8,0,13,0,576,7.0,16.711111111111112,7.0,21.511111111111116,1.0,3.0933333333333333,2.045333333333333,376,250,939,72,237,6,10,18,3,34,6,5,23,0,9,8,0,4,4,1,2,645,1081,0,49,1677,0,273,1453,0,1378,348,0,718,1008,0,709,9,763,245,0,248,34,54,0,78,90,138,95,97,303,0,0,0,87,87,156,44,60,119,0,2,3,1,4,2,10,10,4,0,0,0,0,0,0,0,620,11,701,0,0,5,5,24,349,289,15,24,73,103,37,33,23,0,165,194,0,998,981,17,75,36,420,7,0,73,0,132,32,9,566,4,0,0,1177,128,0,1,1,21,4,0,0,0,0,3,3,8,3,61,269,189,15,80,1637,94,57,65,44,35,16,5,7,4,8,0,2,0,1,4,66.0,66.0,65.0,56.0,73.0,57.0,77.0,60.0,69.0,58.0,61.0,62.0,54.0,59.0,49.0,56.0,58.0,45.0,50.0,36.0,27.0,27.0,31.0,23.0,20.0,31.0,18.0,25.0,17.0,26.0,16.0,19.0,23.0,17.0,24.0,17.0,27.0,24.0,18.0,23.0,19.0,14.0,20.0,13.0,18.0,11.0,19.0,9.0,11.0,11.0,11.0,5.0,9.0,16.0,14.0,6.0,8.0,6.0,7.0,7.0,9.0,9.0,5.0,10.0,8.0,9.0,3.0,7.0,6.0,1.0,6.0,7.0,6.0,6.0,1.0,4.0,2.0,4.0,1.0,2.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,932,973,74,0,326,321,285,245,128,117,99,109,84,61,55,34,41,26,26,13,4,4,0,1,0,0,1885,14,10,70,0,1885,14,10,70,0,578,4,69,104,15,1,278,930,0,1424,523,32,0,1,1851,17,0,1,0,0,0,1,0,108,0,70,519,28,2,1,1,17,1341,0,46,99,8,3,15,1808,0,3.303353658536585,0.0,4.600467289719626,0.0,4.6442647801920165,24,81,8,2,1,1,9,250,0,60,17,35,61,75,53,36,14,10,2,6,0,1,2,2,1,322,54,49,327,50,326,41,335,23,353,6,370,110,266,0,376,163,213,57,319,18,39,21,355,46,330,3,373,207,169,166,210,6,370,39,208,119,10,0,240,136,0,1,324,6,0,0,0,0,0,1,0,44,0,2.654255319148936,2.609042553191489,0.0,1.0,1.0,44.76329787234042 +,10217,Bocas del Toro,Changuinola,Finca 60,1100,18,29,0,0,0,0,0,1,0,0,0,2,0,0,134,727,46,74,871,36,2,6,0,58,8,900,0,3,29,0,8,28,0,13,62,760,123,7,24,1,4,930,19,0,0,0,32,981,0,52,33,50,23,8,0,0,91,837,51,1,1,765,204,0,1,10,1,0,976,0,2,0,0,3,0,78,818,0,30,55,0,904,0,0,3,0,0,3,11,2,9,45,4,0,1150,6.991150442477876,23.10508849557522,6.981194690265487,23.06858407079646,1.0509683995922527,3.110091743119266,2.0774719673802244,1033,609,2092,126,873,31,101,148,8,205,30,21,51,1,48,46,8,12,39,47,24,3272,1509,0,1947,2834,0,3428,1353,0,4129,652,0,1747,3034,0,1666,81,2457,577,0,583,62,105,16,147,185,217,210,181,537,0,0,1,261,289,372,210,227,728,6,11,74,54,64,69,120,23,7,3,17,1,0,0,1,0,1434,312,2259,0,0,80,67,208,1070,894,46,41,1297,44,89,55,94,0,61,9,4,2779,2550,242,1098,58,232,15,0,4,4,51,27,33,1638,1,0,0,2826,935,1,12,33,175,6,16,1,0,4,29,98,58,45,265,61,97,68,1021,3287,146,99,149,275,615,428,157,111,42,15,2,1,0,1,1,136.0,129.0,153.0,130.0,136.0,124.0,139.0,137.0,119.0,121.0,114.0,128.0,123.0,125.0,108.0,113.0,112.0,121.0,109.0,125.0,109.0,125.0,88.0,122.0,99.0,98.0,97.0,85.0,79.0,80.0,74.0,65.0,83.0,62.0,60.0,65.0,58.0,63.0,55.0,57.0,49.0,65.0,70.0,45.0,43.0,42.0,41.0,51.0,56.0,49.0,49.0,41.0,47.0,38.0,33.0,29.0,30.0,27.0,29.0,27.0,23.0,27.0,29.0,27.0,16.0,18.0,8.0,15.0,12.0,14.0,7.0,11.0,11.0,19.0,19.0,9.0,7.0,6.0,9.0,18.0,9.0,7.0,1.0,1.0,7.0,0.0,2.0,2.0,5.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1922,3187,220,0,684,640,598,580,543,439,344,298,272,239,208,142,122,67,67,49,25,9,3,0,0,0,5252,11,7,59,0,5253,12,5,59,0,1491,9,470,402,71,5,961,1920,0,3925,1380,24,0,23,4413,14,20,9,0,0,0,0,23,827,0,25,43,126,10,0,1,85,5039,0,1035,2020,184,39,4,2047,0,2.3384694401643555,0.0,3.5430194805194803,0.0,6.380746856821167,10,9,26,7,0,1,22,958,0,21,6,14,24,64,150,164,119,197,113,75,46,29,6,3,0,976,57,759,274,733,300,145,888,773,260,63,970,495,538,56,977,888,145,742,291,387,355,244,789,509,524,121,912,182,851,163,870,120,913,144,440,425,24,1,670,363,0,10,761,4,4,2,0,0,0,0,8,244,0,2.6876208897485494,2.4661508704061896,1.3333333333333333,1.0638297872340423,1.0638297872340423,47.26331074540174 +PA010203,10203,Bocas del Toro,Changuinola,Guabito,2012,20,2,3,0,0,0,0,0,0,0,0,0,0,0,25,961,399,59,1341,44,5,7,0,43,4,959,0,3,199,4,179,94,0,6,113,445,795,12,72,6,1,1301,122,1,0,0,20,1444,6,203,79,71,198,36,0,9,58,1318,56,0,3,768,610,0,7,23,27,9,1421,0,1,0,0,19,3,148,741,0,132,420,3,919,0,2,64,9,1,197,12,11,217,12,0,1202,835,4.411509229098805,11.545059717698154,3.434310532030402,9.326818675352875,1.028393351800554,3.234764542936288,2.0810249307479225,1485,876,2901,168,719,33,94,77,8,138,13,18,43,0,45,36,11,27,11,15,7,3601,2249,0,1060,4790,0,3050,2800,0,4885,965,0,2163,3687,0,2056,107,2899,788,0,798,59,111,1,222,243,298,277,270,711,0,0,0,294,305,434,243,279,835,1,23,49,50,71,77,138,29,8,1,23,0,0,0,0,0,1709,164,2868,0,7,63,47,182,1313,1240,44,89,1133,129,160,41,129,2,207,2,1,3267,3306,363,891,46,435,19,2,47,1,130,71,17,2518,33,0,0,3435,1013,0,22,34,210,7,20,0,0,2,68,133,61,74,373,111,206,90,755,4600,229,147,238,347,362,253,129,128,51,32,8,8,5,3,33,165.0,188.0,183.0,187.0,186.0,196.0,200.0,179.0,180.0,168.0,166.0,153.0,158.0,154.0,153.0,141.0,147.0,153.0,120.0,126.0,104.0,128.0,118.0,125.0,83.0,130.0,101.0,103.0,83.0,76.0,79.0,77.0,76.0,70.0,81.0,70.0,82.0,72.0,78.0,57.0,78.0,62.0,57.0,39.0,45.0,58.0,61.0,52.0,50.0,53.0,63.0,49.0,64.0,59.0,50.0,37.0,37.0,34.0,48.0,47.0,27.0,28.0,25.0,30.0,22.0,20.0,24.0,23.0,21.0,16.0,21.0,18.0,16.0,19.0,15.0,8.0,11.0,15.0,11.0,8.0,9.0,6.0,6.0,5.0,2.0,5.0,5.0,5.0,2.0,3.0,2.0,1.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2616,3655,302,0,909,923,784,687,558,493,383,359,281,274,285,203,132,104,89,53,28,20,5,3,0,0,6174,125,112,162,0,6180,128,103,162,0,1823,44,410,509,85,15,1073,2614,0,2942,3198,433,0,4,4113,15,526,51,0,1,1,52,81,1729,0,171,113,199,89,4,13,488,5496,0,839,1551,170,18,4,3991,0,2.543117744610282,0.0,3.765044814340589,0.0,6.042446371519854,69,31,72,45,2,8,143,1115,0,111,68,74,138,208,246,184,112,150,76,57,17,24,8,11,1,1374,111,776,709,816,669,204,1281,777,708,143,1342,671,814,125,1360,1167,318,832,653,577,255,338,1147,929,556,250,1235,415,1070,331,1154,27,1458,209,820,431,25,0,829,656,0,2,712,5,146,19,0,1,1,18,18,563,0,2.2,2.2262626262626264,1.0769230769230769,1.0307692307692309,1.0307692307692309,46.01481481481481 +,10207,Bocas del Toro,Changuinola,Las Tablas,1223,11,0,0,0,0,0,0,0,0,0,7,0,0,0,275,400,93,153,724,44,8,100,0,43,2,697,0,10,68,4,78,62,0,2,0,435,406,32,48,0,0,854,61,1,0,0,5,921,3,153,38,67,30,22,0,0,61,796,58,0,6,566,332,0,7,15,0,1,899,0,1,0,0,19,2,76,626,0,76,142,1,0,820,0,25,10,18,2,34,0,2,10,0,762,479,6.741463414634146,22.26219512195122,6.646341463414634,21.353658536585368,1.017372421281216,3.554831704668838,2.526601520086862,944,548,2114,138,884,10,46,71,7,161,25,12,42,0,19,19,13,16,22,24,11,2634,1814,0,485,3963,0,2024,2424,0,3683,765,0,1774,2674,0,1705,69,2067,607,0,609,40,128,10,230,217,237,191,186,559,0,0,5,214,241,310,161,188,653,2,22,29,29,41,21,25,90,6,0,4,0,0,0,0,0,1124,272,2137,0,0,161,77,178,1045,859,32,23,800,69,59,22,60,0,250,0,13,2483,2519,139,808,27,217,27,0,42,13,104,39,15,2097,1,0,0,2605,774,6,25,15,102,2,4,0,0,13,46,49,25,49,149,165,86,51,763,3716,124,114,167,255,341,133,73,51,20,5,0,1,0,1,1,133.0,134.0,139.0,148.0,145.0,146.0,169.0,174.0,154.0,127.0,120.0,133.0,123.0,108.0,130.0,108.0,122.0,108.0,97.0,112.0,87.0,99.0,90.0,89.0,63.0,82.0,83.0,63.0,75.0,60.0,58.0,67.0,58.0,45.0,65.0,53.0,55.0,43.0,63.0,49.0,37.0,41.0,57.0,47.0,39.0,29.0,34.0,42.0,41.0,39.0,40.0,34.0,29.0,36.0,30.0,24.0,30.0,18.0,33.0,18.0,22.0,20.0,17.0,20.0,29.0,16.0,19.0,15.0,21.0,5.0,10.0,9.0,7.0,23.0,13.0,6.0,8.0,8.0,9.0,15.0,10.0,5.0,3.0,6.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2083,2700,219,0,699,770,614,547,428,363,293,263,221,185,169,123,108,76,62,46,25,5,4,1,0,0,4852,15,9,126,0,4853,15,8,126,0,1389,21,286,316,86,6,815,2083,0,3707,1260,35,0,16,3902,6,39,30,11,2,0,36,48,912,0,42,74,82,7,4,3,114,4676,0,670,1564,173,10,1,2584,0,2.6416152551878858,0.0,4.052205220522052,0.0,5.6987205117952815,12,19,23,3,1,2,35,849,0,72,31,52,71,139,187,119,86,93,48,20,11,5,1,2,0,895,49,570,374,572,372,165,779,460,484,42,902,370,574,31,913,726,218,527,417,406,121,184,760,435,509,152,792,125,819,137,807,4,940,121,428,371,24,0,646,298,0,5,605,4,10,4,5,1,0,11,11,288,0,2.630296610169492,2.6684322033898304,1.0,1.0727272727272728,1.0727272727272728,49.083686440677965 +,10208,Bocas del Toro,Changuinola,Cochigró,694,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,221,117,251,37,12,89,0,15,1,0,0,6,288,6,12,59,0,34,0,0,359,7,39,0,0,190,215,0,0,0,0,405,0,186,57,1,8,38,0,0,1,387,17,0,0,30,360,0,1,3,1,10,362,0,0,0,0,43,0,1,94,0,8,296,6,0,155,0,5,7,47,0,188,0,0,1,2,0,695,6.877419354838709,19.283870967741937,6.967741935483871,23.69032258064516,1.019753086419753,3.577777777777778,2.4617283950617286,413,243,972,42,308,11,13,15,2,57,4,2,3,0,14,16,2,8,19,3,4,828,1013,0,35,1806,0,213,1628,0,1438,403,0,716,1125,0,713,3,798,327,0,330,26,50,7,110,96,123,102,106,331,0,0,0,67,98,169,60,53,92,0,0,1,4,2,2,2,8,0,0,1,0,0,0,1,0,1105,6,353,0,0,4,0,12,242,56,15,28,75,65,37,13,47,0,864,9,0,1101,984,30,156,14,459,6,0,445,0,75,49,16,398,0,0,0,1351,98,0,0,3,10,0,1,1,0,0,5,13,4,4,34,810,54,20,167,1577,96,98,110,85,61,31,14,6,2,1,2,1,0,1,0,59.0,55.0,67.0,63.0,65.0,49.0,60.0,79.0,62.0,62.0,60.0,61.0,58.0,43.0,65.0,61.0,48.0,55.0,48.0,39.0,29.0,35.0,33.0,27.0,27.0,29.0,23.0,26.0,33.0,18.0,26.0,16.0,24.0,15.0,17.0,13.0,16.0,28.0,17.0,18.0,20.0,10.0,22.0,17.0,17.0,17.0,12.0,11.0,19.0,19.0,19.0,10.0,15.0,11.0,8.0,15.0,7.0,10.0,11.0,10.0,8.0,9.0,5.0,7.0,11.0,9.0,8.0,7.0,9.0,6.0,8.0,5.0,9.0,8.0,9.0,6.0,6.0,6.0,4.0,9.0,5.0,1.0,2.0,1.0,1.0,1.0,2.0,3.0,1.0,1.0,1.0,0.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,908,1041,136,0,309,312,287,251,151,129,98,92,86,78,63,53,40,39,39,31,10,8,6,1,2,0,2043,1,3,38,0,2043,1,3,38,0,631,5,63,101,38,4,336,907,0,1305,775,5,0,0,1597,3,197,16,0,1,0,9,1,261,0,7,13,25,4,0,0,20,2016,0,61,155,49,10,0,1810,0,3.3608247422680413,0.0,4.7722095671981775,0.0,4.319904076738609,4,3,13,3,0,0,12,378,0,22,17,31,59,96,66,48,38,21,5,5,3,1,0,1,0,262,151,19,394,36,377,59,354,21,392,1,412,131,282,0,413,215,198,56,357,16,40,8,405,99,314,17,396,374,39,245,168,12,401,66,205,139,3,0,277,136,0,0,277,0,54,8,0,1,0,0,0,73,0,2.665859564164649,2.3825665859564165,1.0,1.1176470588235294,1.1176470588235294,49.57142857142857 +,10209,Bocas del Toro,Changuinola,La Gloria,987,1,0,0,0,0,0,0,2,0,0,0,0,0,0,4,51,506,53,483,78,19,5,0,22,7,96,0,12,316,9,70,106,0,5,8,0,562,11,31,0,2,404,209,0,0,0,1,614,0,157,64,0,79,74,0,0,1,585,28,0,0,45,554,0,1,8,6,0,595,0,4,0,0,12,3,13,95,0,240,263,3,0,180,6,137,97,49,42,31,62,5,5,0,0,990,6.268817204301075,13.779569892473118,6.354838709677419,17.112903225806452,1.001628664495114,3.6498371335504887,2.623778501628665,615,371,1402,77,581,14,24,28,8,87,8,1,16,0,37,24,7,15,14,11,9,1226,1639,0,82,2783,0,860,2005,0,2316,549,0,1085,1780,0,1080,5,1366,414,0,415,28,92,9,130,139,175,161,132,487,0,0,0,141,168,249,117,128,225,2,5,7,9,11,5,7,19,1,0,3,0,0,0,0,0,662,90,1569,0,2,41,43,70,644,803,32,20,212,25,27,20,20,1,394,0,0,1585,1647,69,184,20,240,7,0,179,0,83,62,18,1559,0,0,0,2026,264,0,0,2,25,1,3,0,0,0,6,23,8,10,69,360,41,8,227,2719,108,45,90,117,74,47,11,11,8,1,0,0,0,1,0,97.0,96.0,84.0,90.0,91.0,85.0,92.0,98.0,88.0,90.0,101.0,104.0,93.0,65.0,104.0,68.0,84.0,60.0,70.0,69.0,56.0,66.0,53.0,50.0,51.0,40.0,38.0,41.0,32.0,49.0,38.0,39.0,26.0,34.0,35.0,37.0,27.0,32.0,44.0,20.0,21.0,17.0,34.0,20.0,23.0,23.0,21.0,27.0,19.0,25.0,32.0,16.0,33.0,18.0,21.0,17.0,18.0,22.0,16.0,18.0,16.0,9.0,16.0,19.0,15.0,6.0,14.0,12.0,9.0,3.0,6.0,11.0,6.0,20.0,15.0,6.0,8.0,4.0,9.0,14.0,7.0,2.0,4.0,3.0,3.0,7.0,1.0,2.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1378,1675,179,0,458,453,467,351,276,200,172,160,115,115,120,91,75,44,58,41,19,10,4,3,0,0,3139,2,5,86,0,3139,2,5,86,0,918,14,141,225,62,6,489,1377,0,2381,843,8,0,2,3089,2,21,2,0,0,1,4,4,107,0,5,4,21,2,0,0,17,3183,0,182,623,78,5,0,2344,0,3.1469353484466835,0.0,4.537760416666667,0.0,4.983601485148514,3,2,7,0,0,0,6,597,0,123,53,57,77,115,86,49,16,19,13,4,1,1,0,1,0,495,120,67,548,60,555,38,577,59,556,4,611,128,487,2,613,285,330,77,538,15,62,14,601,135,480,15,600,385,230,288,327,18,597,59,286,266,4,2,337,278,0,0,573,0,7,1,0,0,0,1,3,30,0,2.5688816855753647,2.6693679092382494,0.0,1.0588235294117647,1.0588235294117647,49.03577235772358 +,10501,Bocas del Toro,Comarca Naso Tjër Di,Área de la Comarca Naso Tjër Di,982,4,0,0,0,0,0,0,0,0,0,2,0,0,0,2,116,502,28,567,53,1,1,0,25,1,0,0,15,455,9,22,146,0,1,0,0,485,8,154,0,1,295,351,0,0,0,2,648,0,202,54,1,18,63,0,0,1,629,17,1,0,34,607,0,1,1,3,2,581,0,5,0,0,62,0,5,120,0,5,513,5,0,492,0,6,0,29,6,110,0,5,0,0,0,988,5.774390243902439,18.49390243902439,6.817073170731708,22.90650406504065,1.0092592592592593,3.2685185185185186,2.058641975308642,656,495,1580,74,318,14,12,10,8,68,4,5,7,0,28,11,5,25,11,2,9,1062,1790,0,99,2753,0,462,2390,0,2508,344,0,1123,1729,0,1090,33,1497,232,0,239,82,74,2,117,141,167,129,143,792,3,10,0,101,164,256,84,101,187,2,2,10,11,10,8,8,8,0,1,0,0,0,0,0,0,1308,36,956,0,4,17,5,19,534,363,29,11,125,84,72,8,23,0,1019,7,0,1652,1599,60,112,9,693,1,0,463,0,136,91,9,950,1,0,0,2053,225,0,0,4,18,0,0,0,0,0,8,20,13,11,64,1043,85,12,88,2658,181,154,63,65,43,43,22,17,2,2,0,0,0,0,1,101.0,97.0,97.0,104.0,85.0,101.0,97.0,100.0,97.0,72.0,77.0,96.0,104.0,69.0,72.0,95.0,72.0,70.0,68.0,51.0,67.0,46.0,56.0,58.0,50.0,64.0,40.0,46.0,54.0,39.0,41.0,48.0,37.0,38.0,38.0,29.0,32.0,40.0,30.0,32.0,29.0,31.0,29.0,36.0,19.0,15.0,33.0,25.0,29.0,15.0,27.0,16.0,22.0,17.0,12.0,18.0,9.0,10.0,18.0,14.0,17.0,13.0,19.0,15.0,15.0,8.0,19.0,10.0,9.0,7.0,10.0,7.0,11.0,10.0,8.0,4.0,8.0,4.0,2.0,3.0,1.0,0.0,2.0,1.0,7.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1369,1744,138,0,484,467,418,356,277,243,202,163,144,117,94,69,79,53,46,21,11,3,3,1,0,0,3176,1,3,71,0,3177,2,1,71,0,947,10,40,252,26,0,607,1369,0,2495,750,6,0,1,435,17,2749,1,0,0,0,1,0,47,0,2,27,10,2,0,0,45,3165,0,95,228,22,1,0,2905,0,2.905777777777778,0.0,4.344262295081967,0.0,5.049830821285759,0,7,2,0,0,0,11,636,0,118,52,82,80,123,69,53,29,34,7,5,1,1,0,0,0,467,189,51,605,68,588,92,564,13,643,4,652,97,559,0,656,241,415,86,570,35,51,25,631,72,584,18,638,521,135,482,174,7,649,63,431,157,5,0,482,174,0,0,61,1,583,1,0,0,0,1,0,9,0,2.518292682926829,2.4375,0.0,1.0,1.0,45.019817073170735 +PA010301,10301,Bocas del Toro,Chiriquí Grande,Chiriquí Grande,1377,1,3,0,0,0,0,0,0,0,0,0,2,0,0,134,342,164,233,590,50,5,200,12,15,1,586,0,12,82,3,43,146,0,1,578,2,268,9,11,5,0,797,70,0,0,0,6,873,16,227,117,4,106,38,0,1,115,748,9,0,0,273,595,0,5,0,0,0,859,2,0,0,0,11,1,80,235,0,19,539,0,0,749,11,1,0,10,41,53,0,6,2,0,603,780,4.522368421052631,8.576315789473684,4.3881578947368425,8.067105263157895,1.013745704467354,3.04581901489118,1.990836197021764,887,450,1647,59,552,19,69,71,1,99,14,13,10,0,24,19,8,6,8,3,2,1838,1599,0,346,3091,0,1190,2247,0,2929,508,0,1424,2013,0,1355,69,1571,442,0,460,30,75,0,135,129,157,137,177,420,2,1,0,133,152,243,118,177,446,1,2,57,47,68,59,58,131,4,1,17,0,0,0,0,0,830,264,1738,0,26,58,145,47,890,725,35,41,562,52,96,12,102,4,111,17,0,1896,1995,262,306,16,335,24,1,11,1,61,39,5,1759,10,0,0,1940,642,0,3,36,192,2,17,0,0,1,40,122,45,63,230,89,154,55,295,2934,111,46,101,139,130,137,82,92,65,28,5,6,0,5,10,111.0,121.0,118.0,104.0,115.0,95.0,105.0,113.0,87.0,90.0,100.0,121.0,100.0,65.0,90.0,81.0,91.0,95.0,95.0,81.0,98.0,71.0,73.0,68.0,66.0,73.0,76.0,50.0,66.0,49.0,54.0,43.0,42.0,46.0,48.0,47.0,39.0,40.0,51.0,30.0,43.0,27.0,34.0,29.0,40.0,32.0,27.0,23.0,26.0,35.0,35.0,27.0,26.0,20.0,22.0,13.0,18.0,20.0,19.0,19.0,26.0,14.0,21.0,18.0,13.0,17.0,13.0,14.0,20.0,6.0,4.0,3.0,4.0,8.0,7.0,8.0,5.0,11.0,6.0,3.0,8.0,3.0,4.0,1.0,3.0,0.0,1.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1535,2200,156,0,569,490,476,443,376,314,233,207,173,143,130,89,92,70,26,33,19,5,2,0,1,0,3762,40,4,85,0,3764,41,1,85,0,1183,7,186,251,50,14,668,1532,0,2678,1191,22,0,2,2906,11,3,1,0,0,0,0,5,963,0,51,110,107,25,1,8,238,3351,0,340,351,44,8,0,3148,0,2.4301075268817205,0.0,3.5423901940755878,0.0,6.382677974813673,13,31,42,11,0,5,78,707,0,175,55,45,69,82,79,90,62,78,65,29,19,20,9,7,1,819,68,437,450,428,459,85,802,473,414,61,826,218,669,23,864,644,243,417,470,279,138,181,706,336,551,115,772,73,814,28,859,4,883,149,430,299,9,0,461,426,0,0,564,4,1,0,0,0,0,0,4,314,0,2.137542277339346,2.2491544532130776,1.0,1.1111111111111112,1.1111111111111112,44.59188275084555 +PA010302,10302,Bocas del Toro,Chiriquí Grande,Miramar,311,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,126,23,24,147,2,2,9,6,7,0,128,0,0,17,0,10,14,0,4,56,4,105,1,6,1,0,136,33,2,0,0,2,173,40,60,25,3,9,7,0,0,5,158,10,0,0,54,118,1,0,0,0,0,163,0,0,0,0,10,0,21,45,0,4,103,0,0,157,6,3,0,0,1,6,0,0,0,0,0,317,6.92638036809816,23.8159509202454,6.938650306748467,23.79754601226994,1.0,3.1907514450867054,1.9595375722543356,173,100,314,21,87,5,10,7,1,11,0,0,0,0,9,3,0,0,5,1,0,338,324,0,68,594,0,221,441,0,525,137,0,226,436,0,217,9,314,122,0,125,6,11,1,23,19,46,33,32,130,0,0,0,24,21,43,13,13,75,0,1,1,7,4,3,3,24,1,0,3,0,0,0,0,0,178,25,345,0,2,7,11,10,147,160,12,16,62,27,22,3,12,0,59,8,2,360,369,31,39,3,106,2,0,12,2,6,14,0,367,1,0,0,426,92,0,0,5,22,1,2,0,0,1,4,10,8,9,25,75,22,10,39,532,55,22,17,24,21,22,14,11,5,2,0,2,0,1,1,19.0,15.0,17.0,16.0,22.0,18.0,30.0,12.0,17.0,15.0,24.0,21.0,13.0,20.0,15.0,18.0,21.0,16.0,16.0,14.0,10.0,16.0,7.0,15.0,6.0,11.0,9.0,10.0,7.0,6.0,7.0,4.0,10.0,6.0,12.0,7.0,6.0,3.0,9.0,6.0,9.0,7.0,11.0,5.0,6.0,11.0,7.0,5.0,7.0,6.0,8.0,6.0,8.0,3.0,10.0,7.0,6.0,2.0,8.0,7.0,7.0,5.0,4.0,6.0,5.0,2.0,4.0,3.0,2.0,2.0,1.0,2.0,2.0,2.0,1.0,3.0,1.0,1.0,1.0,4.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,274,418,37,0,89,92,93,85,54,43,39,31,38,36,35,30,27,13,8,10,3,2,1,0,0,0,702,4,1,22,0,702,4,1,22,0,225,2,8,68,14,3,135,274,0,494,231,4,0,1,440,19,0,0,0,0,0,0,2,267,0,16,36,27,6,0,2,20,622,0,58,77,10,1,0,583,0,2.8947368421052637,0.0,4.129729729729729,0.0,5.4348422496570645,5,10,9,3,0,1,5,140,0,35,14,7,17,24,21,9,15,11,7,6,2,3,0,1,1,151,22,94,79,93,80,39,134,93,80,10,163,40,133,5,168,117,56,66,107,47,19,29,144,66,107,39,134,23,150,24,149,2,171,30,91,52,0,0,99,74,0,1,78,6,0,0,0,0,0,0,2,86,0,2.0809248554913293,2.132947976878613,0.0,1.0,1.0,49.21965317919075 +PA010303,10303,Bocas del Toro,Chiriquí Grande,Punta Peña,1178,2,21,0,0,0,0,0,0,0,1,0,1,0,0,7,623,60,72,663,27,6,24,0,40,2,646,0,1,44,2,12,30,0,27,494,2,245,7,12,0,2,699,38,2,0,0,23,762,10,132,54,94,134,15,0,1,86,656,18,0,1,484,263,0,1,1,13,0,749,1,0,1,0,10,1,115,437,0,5,205,0,0,641,27,0,1,6,1,3,0,72,11,0,0,1203,5.758982035928144,14.54940119760479,6.366766467065868,18.33233532934132,1.0196850393700787,3.309711286089239,2.2230971128608923,778,396,1260,91,332,29,42,28,2,61,3,10,25,3,44,15,6,13,8,4,13,2014,755,0,680,2089,0,1746,1023,0,2341,428,0,1110,1659,0,1050,60,1347,312,0,315,54,72,4,109,110,120,99,91,359,0,0,3,111,108,176,78,96,472,1,5,36,56,65,49,79,72,5,3,20,0,0,0,1,0,920,103,1264,0,5,60,25,57,597,507,52,51,492,89,82,29,90,3,207,5,3,1487,1573,273,251,30,315,10,1,117,3,50,61,13,1142,5,0,0,1420,614,3,5,39,182,4,19,1,0,3,43,118,48,54,180,170,135,89,183,2065,165,69,93,137,113,130,96,89,66,18,6,7,0,1,5,73.0,79.0,66.0,73.0,98.0,70.0,78.0,88.0,82.0,66.0,63.0,67.0,69.0,71.0,66.0,73.0,59.0,69.0,47.0,66.0,60.0,52.0,52.0,70.0,37.0,55.0,57.0,43.0,46.0,35.0,39.0,36.0,45.0,45.0,33.0,46.0,36.0,42.0,42.0,34.0,32.0,34.0,32.0,26.0,33.0,20.0,27.0,22.0,26.0,21.0,28.0,22.0,29.0,18.0,26.0,25.0,24.0,13.0,14.0,24.0,16.0,12.0,13.0,14.0,15.0,13.0,15.0,19.0,8.0,10.0,7.0,8.0,8.0,7.0,6.0,11.0,4.0,4.0,2.0,3.0,7.0,4.0,8.0,1.0,2.0,5.0,1.0,2.0,7.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1109,1785,166,0,389,384,336,314,271,236,198,200,157,116,123,100,70,65,36,24,22,16,3,0,0,0,2987,14,4,55,0,2988,15,2,55,0,794,18,40,289,55,2,754,1108,0,2020,1008,32,0,1,1641,19,0,2,0,2,0,0,15,1380,0,87,30,75,19,3,0,190,2656,0,372,567,52,11,4,2054,0,2.500414937759336,0.0,3.684478371501272,0.0,6.78202614379085,38,13,25,10,1,0,71,620,0,104,40,35,59,90,74,81,67,87,66,28,13,21,6,4,2,739,39,523,255,517,261,185,593,545,233,82,696,254,524,30,748,707,71,443,335,302,141,233,545,556,222,173,605,148,630,187,591,10,768,139,409,215,15,1,438,340,0,0,323,3,0,2,0,0,0,0,6,444,0,1.908857509627728,2.019255455712452,1.0,1.0303030303030305,1.0303030303030305,45.95629820051414 +PA010304,10304,Bocas del Toro,Chiriquí Grande,Punta Róbalo,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,261,26,7,307,8,1,3,0,3,0,231,1,0,12,1,8,67,0,2,62,18,238,0,4,0,0,290,30,0,0,0,2,322,5,62,12,3,32,26,0,0,4,289,29,0,0,182,139,0,0,0,1,0,285,4,0,0,0,33,0,1,206,3,32,78,2,0,273,35,7,0,2,4,0,0,0,1,0,0,462,5.805194805194805,17.75974025974026,6.009740259740259,19.25,1.015527950310559,3.8260869565217392,2.170807453416149,327,186,734,40,218,10,16,16,1,32,6,2,9,0,4,4,0,2,3,2,3,611,796,0,93,1314,0,186,1221,0,1169,238,0,540,867,0,531,9,648,219,0,229,25,43,0,61,75,56,74,86,254,0,0,0,63,73,105,40,49,121,0,0,2,5,3,10,25,7,0,0,1,0,0,0,0,0,288,13,825,0,1,1,7,8,311,464,24,18,70,15,24,1,17,1,162,3,0,818,779,38,48,8,155,19,1,24,0,52,27,5,644,155,0,0,952,136,0,0,4,34,0,0,0,0,0,10,19,3,7,26,162,42,9,23,1141,76,49,40,40,28,28,12,9,15,3,0,0,0,1,155,41.0,44.0,45.0,60.0,32.0,59.0,54.0,47.0,55.0,34.0,52.0,44.0,32.0,39.0,40.0,49.0,36.0,40.0,32.0,17.0,30.0,27.0,19.0,24.0,18.0,28.0,26.0,27.0,18.0,20.0,26.0,19.0,18.0,17.0,11.0,15.0,12.0,13.0,16.0,13.0,25.0,10.0,16.0,14.0,12.0,9.0,8.0,10.0,19.0,13.0,17.0,13.0,9.0,12.0,7.0,8.0,16.0,8.0,6.0,7.0,8.0,6.0,5.0,10.0,6.0,9.0,4.0,7.0,4.0,6.0,3.0,5.0,2.0,2.0,4.0,6.0,1.0,2.0,2.0,6.0,4.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,678,845,74,0,222,249,207,174,118,119,91,69,77,59,58,45,35,30,16,17,7,2,2,0,0,0,1505,13,1,78,0,1506,13,0,78,0,482,1,63,56,26,9,282,678,0,1232,352,13,0,1,1183,3,1,0,0,0,0,0,63,346,0,1,3,9,6,1,0,97,1480,0,63,137,9,1,1,1386,0,2.803163444639719,0.0,4.2398921832884096,0.0,4.922980588603632,1,0,5,1,1,0,22,297,0,80,32,36,36,47,24,16,18,16,6,3,1,2,3,2,5,311,16,141,186,143,184,81,246,151,176,20,307,118,209,20,307,168,159,115,212,64,51,29,298,32,295,36,291,195,132,133,194,7,320,36,168,117,6,0,190,137,0,0,212,1,0,0,0,0,0,0,16,98,0,2.5015290519877675,2.382262996941896,0.0,1.0769230769230769,1.0769230769230769,47.53211009174312 +PA010305,10305,Bocas del Toro,Chiriquí Grande,Rambala,639,3,42,0,1,0,0,0,0,0,0,0,0,0,0,9,332,37,21,376,2,2,7,0,7,5,356,0,2,7,0,16,15,0,3,271,1,121,0,6,0,0,359,36,0,0,0,4,399,2,106,44,51,66,16,0,0,32,353,14,0,0,236,150,0,2,0,11,0,394,1,0,1,0,3,0,75,215,0,3,105,1,0,368,3,6,1,0,2,6,0,10,1,2,0,685,6.660377358490566,22.92183288409704,6.690026954177897,23.07277628032345,1.005012531328321,3.3659147869674184,2.298245614035088,401,198,585,22,60,16,18,16,1,14,4,5,25,0,21,7,2,4,8,2,8,759,513,0,287,985,0,631,641,0,1031,241,0,474,798,0,440,34,613,185,0,187,15,25,0,43,38,67,51,41,171,0,0,1,44,56,92,24,52,190,2,4,13,17,18,19,8,62,8,0,24,0,0,0,0,0,329,88,646,0,2,26,53,13,278,287,31,37,232,29,34,11,31,3,32,11,3,656,709,111,135,13,88,26,0,10,3,6,40,2,673,1,0,0,697,246,1,4,15,76,6,18,0,0,3,21,44,20,24,85,60,41,33,86,891,98,32,36,53,62,43,42,54,28,10,8,4,2,1,1,9.0,26.0,29.0,29.0,37.0,37.0,30.0,39.0,31.0,35.0,21.0,39.0,24.0,37.0,25.0,29.0,26.0,30.0,19.0,24.0,24.0,22.0,27.0,21.0,17.0,22.0,30.0,17.0,12.0,29.0,14.0,15.0,22.0,18.0,19.0,19.0,5.0,20.0,14.0,15.0,16.0,14.0,17.0,13.0,11.0,13.0,14.0,11.0,22.0,17.0,17.0,17.0,14.0,10.0,17.0,9.0,9.0,9.0,6.0,7.0,14.0,12.0,3.0,13.0,5.0,6.0,10.0,3.0,7.0,5.0,7.0,0.0,4.0,3.0,2.0,6.0,8.0,3.0,4.0,5.0,3.0,2.0,0.0,3.0,1.0,1.0,3.0,4.0,0.0,3.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,448,820,97,0,130,172,146,128,111,110,88,73,71,77,75,40,47,31,16,26,9,11,3,1,0,0,1335,11,3,16,0,1335,12,2,16,0,359,9,22,161,14,6,346,448,0,909,443,13,0,2,498,2,6,0,0,4,0,0,7,846,0,8,19,79,13,0,1,107,1138,0,169,218,13,3,0,962,0,2.3374777975133214,0.0,3.5571030640668524,0.0,6.876923076923077,3,5,28,7,0,0,38,320,0,96,26,14,24,47,33,27,24,40,18,20,7,16,4,4,1,371,30,280,121,277,124,76,325,262,139,64,337,147,254,32,369,294,107,226,175,169,57,109,292,178,223,107,294,47,354,56,345,6,395,82,225,92,2,1,220,181,0,1,118,1,1,0,0,0,0,0,1,279,0,1.6318407960199004,1.763681592039801,0.0,1.0,1.0,46.12219451371571 +,10306,Bocas del Toro,Chiriquí Grande,Bajo Cedro,464,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,151,71,106,205,17,5,65,0,36,0,136,0,23,87,0,37,43,0,2,15,0,277,19,14,3,0,275,53,0,0,0,0,328,2,76,35,6,5,16,0,0,1,313,14,0,0,48,279,0,0,1,0,0,321,0,0,0,0,7,0,2,84,0,8,234,0,0,197,74,2,12,9,12,18,0,1,2,1,0,468,4.619926199261992,13.649446494464945,6.18819188191882,20.210332103321036,1.0030487804878048,3.6310975609756095,2.356707317073171,329,223,851,35,305,7,7,13,2,61,0,2,18,0,17,11,1,7,11,4,6,436,1187,0,26,1597,0,44,1579,0,1262,361,0,696,927,0,694,2,666,261,0,262,28,55,10,67,89,82,65,89,252,3,3,0,72,87,134,49,68,177,0,2,1,6,9,5,6,2,0,0,0,0,0,0,0,0,398,67,836,0,1,39,23,23,410,348,47,8,62,9,13,1,15,3,316,8,0,937,916,41,53,1,277,2,1,52,0,86,47,8,761,9,0,0,1093,191,0,0,4,13,0,0,0,0,0,3,9,9,10,26,301,20,9,78,1521,102,43,45,50,40,18,6,14,2,2,0,1,0,0,9,69.0,53.0,58.0,50.0,46.0,66.0,54.0,61.0,53.0,42.0,59.0,60.0,51.0,46.0,54.0,41.0,50.0,47.0,51.0,41.0,32.0,31.0,28.0,35.0,19.0,23.0,24.0,15.0,20.0,21.0,15.0,14.0,22.0,16.0,18.0,14.0,18.0,21.0,20.0,13.0,25.0,18.0,13.0,26.0,16.0,20.0,18.0,13.0,12.0,13.0,17.0,11.0,12.0,4.0,7.0,4.0,8.0,9.0,10.0,7.0,4.0,3.0,10.0,9.0,3.0,5.0,6.0,3.0,3.0,4.0,2.0,2.0,3.0,9.0,9.0,3.0,6.0,5.0,8.0,8.0,3.0,3.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,822,941,90,0,276,276,270,230,145,103,85,86,98,76,51,38,29,21,25,30,9,3,1,0,1,0,1759,2,0,92,0,1759,2,0,92,0,570,1,57,71,35,7,290,822,0,1291,560,2,0,1,1493,30,1,0,0,1,0,0,0,327,0,0,35,30,1,0,0,238,1549,0,55,156,23,3,0,1616,0,3.264,0.0,4.615384615384615,0.0,4.856449001618996,0,14,15,0,0,0,56,244,0,51,32,32,43,62,38,22,17,17,7,3,3,2,0,0,0,312,17,93,236,98,231,54,275,67,262,2,327,91,238,10,319,148,181,93,236,17,76,7,322,8,321,16,313,202,127,187,142,1,328,30,165,124,10,0,203,126,0,1,235,3,1,0,0,0,0,0,0,89,0,2.8480243161094223,2.78419452887538,0.0,1.0869565217391304,1.0869565217391304,48.328267477203646 +,10402,Bocas del Toro,Almirante,Barrio Francés,787,0,18,6,0,0,0,0,0,0,0,1,1,0,0,55,453,31,117,527,12,1,4,87,23,2,614,0,0,17,1,18,2,0,4,476,14,160,3,1,1,1,616,12,2,0,1,25,656,4,58,27,2,21,43,0,0,75,542,37,2,0,336,267,0,1,0,52,0,654,0,1,0,0,0,1,263,172,0,4,216,1,539,0,0,1,1,1,17,0,0,63,33,1,803,10,6.4063079777365495,8.218923933209647,6.450834879406308,8.34508348794063,1.0396341463414631,3.614329268292683,2.068597560975609,684,275,838,53,200,23,29,28,0,35,3,15,9,0,30,20,3,30,6,17,24,1567,466,0,421,1612,0,1330,703,0,1876,157,0,735,1298,0,631,104,1195,103,0,105,36,35,5,66,49,75,77,85,185,0,1,0,94,118,179,89,136,420,1,4,38,49,46,34,57,24,4,2,17,0,1,1,0,0,667,79,1020,0,4,12,42,105,468,371,36,40,495,55,77,19,59,1,7,28,2,1044,1148,172,318,21,209,14,0,6,3,5,41,10,698,2,0,0,1068,538,0,5,23,110,4,17,1,0,3,28,81,34,54,152,29,150,39,176,1229,209,119,104,117,122,144,58,49,22,10,1,3,2,1,2,40.0,42.0,50.0,27.0,40.0,50.0,38.0,54.0,40.0,45.0,49.0,53.0,47.0,43.0,57.0,35.0,45.0,61.0,34.0,37.0,28.0,38.0,32.0,33.0,28.0,30.0,36.0,33.0,23.0,26.0,19.0,32.0,28.0,30.0,28.0,33.0,31.0,36.0,33.0,29.0,25.0,21.0,19.0,18.0,23.0,21.0,16.0,11.0,27.0,21.0,19.0,24.0,19.0,17.0,17.0,15.0,17.0,22.0,25.0,21.0,28.0,18.0,16.0,27.0,17.0,13.0,17.0,20.0,17.0,11.0,11.0,11.0,11.0,9.0,8.0,4.0,7.0,6.0,7.0,4.0,4.0,3.0,3.0,3.0,3.0,8.0,3.0,4.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,675,1322,195,0,199,227,249,212,159,148,137,162,106,96,96,100,106,78,50,28,16,18,4,1,0,0,2150,9,5,28,0,2150,10,4,28,0,513,34,41,198,58,9,665,674,0,1201,974,17,0,3,504,2,7,2,1,0,0,4,28,1641,0,534,138,218,319,0,17,467,499,0,342,604,115,5,7,1119,0,2.366883116883117,0.0,3.32695374800638,0.0,7.873175182481752,164,56,77,129,0,10,127,121,0,86,44,36,55,90,77,88,66,68,21,23,8,12,3,3,2,649,35,559,125,542,142,61,623,592,92,110,574,433,251,84,600,588,96,584,100,328,256,152,532,376,308,100,584,79,605,50,634,3,681,177,323,175,9,0,351,333,0,2,102,1,2,2,1,0,0,4,11,559,0,1.5263157894736843,1.6783625730994152,1.0,1.1,1.1,50.15350877192982 +,10407,Bocas del Toro,Almirante,Bajo Culubre,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,143,11,5,0,142,0,1,0,0,0,7,60,2,2,84,0,4,0,0,45,105,8,1,0,3,156,0,0,0,0,159,1,48,0,0,2,5,0,0,0,158,1,0,0,0,104,0,2,27,5,21,70,0,0,0,0,88,1,0,1,2,82,71,3,0,57,0,4,4,47,1,46,0,0,0,0,0,215,6.0,14.456140350877194,6.912280701754386,23.614035087719294,1.0,2.106918238993711,1.0628930817610065,159,77,519,15,136,6,15,21,0,12,3,0,0,0,9,15,3,2,1,0,1,133,688,0,2,819,0,2,819,0,390,431,0,330,491,0,330,0,175,316,0,316,13,36,0,68,64,50,51,37,52,0,0,0,22,24,27,12,11,36,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,310,0,294,0,0,0,0,1,153,102,6,32,11,3,0,1,0,0,295,0,0,457,506,7,7,1,153,1,0,141,0,25,9,0,473,0,0,0,566,37,0,0,0,1,0,0,0,0,0,4,2,0,3,5,289,0,0,7,921,16,3,8,6,2,5,2,0,0,0,0,0,0,0,0,29.0,33.0,46.0,34.0,27.0,38.0,31.0,45.0,40.0,36.0,31.0,38.0,32.0,35.0,28.0,27.0,30.0,22.0,18.0,13.0,18.0,16.0,11.0,17.0,20.0,12.0,12.0,8.0,8.0,10.0,8.0,7.0,1.0,6.0,8.0,6.0,9.0,4.0,11.0,9.0,8.0,7.0,7.0,4.0,4.0,5.0,0.0,5.0,3.0,4.0,7.0,4.0,2.0,1.0,4.0,3.0,5.0,4.0,3.0,4.0,9.0,3.0,2.0,3.0,5.0,3.0,1.0,3.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,4.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,523,417,23,0,169,190,164,110,82,50,30,39,30,17,18,19,22,10,1,9,2,0,1,0,0,0,854,0,0,109,0,854,0,0,109,0,236,2,23,13,21,8,137,523,0,654,309,0,0,1,949,10,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,961,0,2,1,1,0,0,959,0,3.305993690851735,0.0,5.502857142857143,0.0,2.4299065420560746,0,1,0,0,0,0,0,158,0,73,21,14,16,19,7,4,4,1,0,0,0,0,0,0,0,12,147,1,158,3,156,77,82,0,159,0,159,38,121,0,159,10,149,0,159,0,0,1,158,0,159,0,159,143,16,129,30,4,155,22,78,59,0,0,96,63,0,0,157,1,0,0,0,0,0,0,0,1,0,2.8742138364779874,3.1823899371069184,0.0,1.0,1.0,43.880503144654085 +,10409,Bocas del Toro,Almirante,Ceiba,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,37,220,34,6,28,117,0,22,53,1,0,4,94,3,1,133,0,24,0,0,92,137,17,14,0,6,254,0,0,0,0,260,21,61,4,0,45,21,0,0,0,259,1,0,0,0,244,0,1,8,1,6,104,1,0,0,0,147,8,0,0,1,140,118,1,0,123,7,25,22,17,0,65,0,0,0,1,0,412,6.630769230769231,23.384615384615383,6.653846153846154,23.87692307692308,1.0,2.011538461538461,0.9576923076923076,260,152,762,14,88,7,30,20,1,15,4,2,6,0,2,8,4,1,1,0,6,157,1010,0,4,1163,0,6,1161,0,768,399,0,485,682,0,483,2,358,324,0,324,15,35,4,94,49,77,75,76,204,0,0,0,62,39,31,23,17,32,0,0,3,4,0,0,2,1,0,0,0,0,0,0,0,0,636,1,242,0,0,0,0,0,181,51,8,2,16,10,3,0,1,1,597,9,0,720,641,6,39,0,287,0,0,305,0,38,16,2,566,5,0,0,837,39,0,0,0,3,0,0,0,0,0,1,4,0,2,5,584,10,0,31,1238,35,18,18,28,10,4,2,2,1,0,0,0,0,0,5,42.0,44.0,54.0,54.0,48.0,41.0,53.0,57.0,47.0,42.0,38.0,55.0,42.0,36.0,44.0,36.0,39.0,28.0,32.0,39.0,29.0,24.0,24.0,17.0,23.0,15.0,19.0,14.0,14.0,13.0,9.0,13.0,16.0,10.0,14.0,17.0,13.0,8.0,21.0,7.0,15.0,6.0,11.0,12.0,6.0,8.0,3.0,9.0,8.0,8.0,11.0,5.0,6.0,7.0,3.0,3.0,5.0,2.0,2.0,4.0,5.0,2.0,1.0,2.0,2.0,2.0,1.0,1.0,3.0,2.0,0.0,0.0,3.0,1.0,0.0,1.0,1.0,2.0,2.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,697,640,24,0,242,240,215,174,117,75,62,66,50,36,32,16,12,9,4,6,5,0,0,0,0,0,1211,0,0,150,0,1211,0,0,150,0,412,2,43,18,16,11,165,694,0,1133,228,0,0,1,1336,13,3,0,0,0,0,0,0,8,0,0,204,5,0,0,0,1,1151,0,3,14,0,0,0,1344,0,3.0,0.0,4.961538461538462,0.0,3.159441587068332,0,39,1,0,0,0,0,220,0,91,25,39,32,36,24,2,3,5,2,0,0,0,0,0,1,12,248,2,258,4,256,125,135,4,256,1,259,47,213,2,258,35,225,3,257,0,3,1,259,1,259,0,260,244,16,110,150,2,258,35,143,77,5,0,191,69,0,0,254,3,1,0,0,0,0,0,0,2,0,2.769230769230769,2.4653846153846155,1.0,1.0833333333333333,1.0833333333333333,39.45384615384615 +PA030103,20102,Coclé,Aguadulce,El Cristo,1159,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,785,148,20,924,14,0,0,0,20,0,946,0,1,0,0,0,9,0,2,742,3,152,50,8,0,3,931,10,0,0,0,17,958,3,88,13,4,61,33,0,32,37,860,21,8,0,935,1,3,16,1,2,0,956,0,2,0,0,0,0,468,472,1,17,0,0,503,415,39,0,0,0,0,0,0,1,0,0,0,1160,6.554858934169279,18.07941483803553,6.689655172413793,20.6478578892372,1.0083507306889352,3.640918580375783,2.049060542797495,966,569,999,47,287,36,32,22,3,86,12,13,8,5,51,15,5,10,19,1,18,2370,564,1,796,2138,1,1302,1632,1,2775,159,1,746,2189,0,620,126,2106,82,1,86,48,40,11,61,64,108,82,74,577,0,2,14,83,87,193,60,105,665,3,15,22,59,67,152,149,48,22,4,32,0,0,0,1,1,1024,127,1519,1,3,13,86,287,454,666,68,44,730,47,112,30,127,0,88,1,6,1558,1527,255,493,36,342,4,0,5,6,6,108,13,1205,9,0,0,1417,773,14,21,70,332,15,27,1,1,7,55,133,94,78,154,94,169,138,229,1606,160,55,136,236,261,282,118,127,40,19,10,13,4,9,9,39.0,37.0,45.0,29.0,43.0,45.0,54.0,32.0,42.0,48.0,33.0,45.0,34.0,36.0,41.0,41.0,46.0,39.0,44.0,34.0,43.0,42.0,31.0,49.0,39.0,54.0,54.0,40.0,47.0,45.0,40.0,44.0,45.0,41.0,33.0,36.0,37.0,33.0,45.0,41.0,30.0,40.0,41.0,25.0,30.0,38.0,40.0,46.0,42.0,35.0,47.0,46.0,50.0,43.0,52.0,35.0,45.0,38.0,41.0,38.0,35.0,39.0,35.0,32.0,31.0,23.0,31.0,29.0,21.0,25.0,26.0,23.0,20.0,14.0,21.0,21.0,18.0,29.0,18.0,16.0,12.0,11.0,18.0,10.0,10.0,8.0,13.0,12.0,7.0,5.0,8.0,4.0,4.0,3.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,603,2017,465,0,193,221,189,204,204,240,203,192,166,201,238,197,172,129,104,102,61,45,21,1,2,0,3050,24,9,1,1,3051,24,8,1,1,822,15,100,587,132,14,812,602,1,1755,1312,17,1,2,170,8,0,0,0,0,0,0,53,2851,1,26,10,337,9,2,2,445,2253,1,637,977,273,25,5,1167,1,1.96996996996997,0.0,2.6962025316455698,0.0,8.724473257698541,6,3,131,5,2,1,142,675,1,73,37,19,54,94,148,144,83,137,64,41,13,31,11,14,3,949,17,894,72,869,97,169,797,839,127,375,591,556,410,125,841,868,98,871,95,403,468,290,676,509,457,510,456,229,737,241,725,17,949,169,513,271,13,0,646,320,0,0,32,2,0,0,0,0,0,0,11,920,1,1.6128364389233951,1.5807453416149069,0.0,1.020408163265306,1.020408163265306,55.98447204968944 +PA030104,20103,Coclé,Aguadulce,El Roble,1819,5,50,2,0,0,0,0,3,0,0,0,0,0,0,8,1381,89,16,1418,60,0,0,0,16,0,1474,0,0,13,1,2,4,0,0,475,555,373,57,14,0,20,1460,10,0,0,0,24,1494,0,160,48,41,111,22,0,50,101,1299,41,3,0,1472,4,1,4,0,13,0,1484,1,5,0,0,4,0,666,820,1,7,0,0,1346,130,10,0,0,0,0,0,3,1,2,2,0,1879,6.943472409152086,21.302826379542395,6.97442799461642,22.67765814266487,1.0167336010709505,3.7556894243641232,2.4370816599732263,1519,867,1525,114,398,48,64,51,14,86,11,13,119,1,105,31,18,13,24,17,24,3935,660,0,1248,3347,0,2745,1850,0,4277,318,0,1252,3343,0,1079,173,3178,165,0,170,62,84,11,90,114,160,129,137,778,1,1,14,146,206,376,124,176,1071,0,15,58,103,101,157,194,56,23,3,34,0,0,0,1,0,1745,167,2256,0,11,49,29,464,750,909,79,54,1426,95,154,49,116,1,32,1,1,2425,2405,312,1110,59,370,16,0,7,1,3,128,23,1525,33,0,0,2336,1263,15,29,123,355,16,30,1,0,1,99,166,137,106,238,57,397,264,447,2301,263,136,216,321,427,617,185,182,94,36,4,8,3,4,33,50.0,52.0,56.0,77.0,60.0,77.0,86.0,63.0,76.0,65.0,78.0,71.0,63.0,65.0,66.0,63.0,59.0,73.0,69.0,83.0,72.0,81.0,81.0,70.0,74.0,77.0,86.0,69.0,77.0,69.0,65.0,79.0,59.0,72.0,72.0,68.0,57.0,52.0,55.0,70.0,59.0,65.0,52.0,63.0,63.0,57.0,45.0,64.0,60.0,70.0,55.0,51.0,60.0,60.0,60.0,56.0,48.0,45.0,62.0,47.0,57.0,53.0,55.0,45.0,63.0,45.0,50.0,33.0,39.0,43.0,29.0,30.0,38.0,32.0,31.0,23.0,22.0,25.0,21.0,19.0,21.0,26.0,13.0,19.0,15.0,18.0,12.0,14.0,11.0,4.0,4.0,4.0,5.0,1.0,1.0,3.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1005,3167,658,0,295,367,343,347,378,378,347,302,302,296,286,258,273,210,160,110,94,59,15,8,2,0,4742,40,39,9,0,4742,45,34,9,0,1337,46,63,799,184,25,1371,1005,0,2837,1943,50,0,5,186,26,2,1,0,2,1,0,23,4584,0,120,137,597,65,4,6,381,3520,0,1203,1406,450,63,2,1706,0,2.0279652844744454,0.0,2.823569951757409,0.0,8.452380952380953,50,56,255,33,3,5,130,987,0,89,55,31,81,127,183,255,146,263,126,56,38,38,13,10,8,1491,28,1416,103,1380,139,255,1264,1398,121,529,990,970,549,315,1204,1403,116,1403,116,751,652,535,984,923,596,785,734,253,1266,241,1278,14,1505,271,811,401,36,3,958,561,0,0,29,9,1,0,0,1,1,0,2,1476,0,1.5932982917214191,1.5801576872536136,1.0,1.0140845070422535,1.0140845070422535,53.99736668861093 +PA030105,20104,Coclé,Aguadulce,Pocrí,2939,6,142,13,1,0,6,0,0,0,0,0,3,0,0,221,2284,72,7,2542,35,0,0,0,7,0,2576,1,1,2,1,0,1,0,2,2487,35,38,6,9,0,9,2547,7,8,0,0,22,2584,0,165,82,127,97,45,0,728,343,1445,62,6,0,2564,2,1,16,0,1,0,2539,3,42,0,0,0,0,2009,567,1,6,1,0,2435,131,6,1,1,1,0,0,1,4,4,0,3110,0,6.721617418351477,19.57153965785381,6.857698289269052,21.77332814930016,1.0185758513931888,3.862229102167183,2.4678792569659445,2635,1445,2484,181,611,95,127,103,42,145,34,29,245,18,171,41,22,28,54,50,68,6818,1024,0,3549,4293,0,5999,1843,0,7556,286,0,2206,5636,0,1745,461,5480,156,0,162,89,103,10,126,147,188,141,180,828,0,1,22,196,251,580,213,312,1879,21,83,123,215,398,411,622,297,89,12,132,1,2,0,8,0,3376,348,3472,0,18,136,73,873,1362,928,129,180,2719,183,340,100,234,7,37,16,13,3972,4222,1079,1629,125,713,68,0,15,20,2,164,26,2362,158,0,0,2864,2424,26,111,321,1254,73,114,9,0,21,284,585,460,276,720,54,503,335,486,3348,433,259,348,572,653,878,482,544,278,119,40,32,19,31,158,81.0,81.0,106.0,84.0,99.0,97.0,98.0,115.0,122.0,115.0,105.0,139.0,100.0,103.0,98.0,124.0,104.0,105.0,96.0,124.0,137.0,120.0,124.0,118.0,142.0,129.0,117.0,125.0,107.0,103.0,114.0,118.0,131.0,125.0,114.0,118.0,116.0,123.0,109.0,122.0,119.0,117.0,111.0,117.0,94.0,98.0,118.0,84.0,119.0,100.0,116.0,111.0,110.0,113.0,116.0,104.0,100.0,87.0,97.0,94.0,85.0,91.0,94.0,79.0,62.0,69.0,75.0,59.0,71.0,53.0,46.0,61.0,68.0,61.0,59.0,60.0,49.0,48.0,44.0,35.0,41.0,35.0,32.0,17.0,15.0,25.0,17.0,29.0,11.0,9.0,13.0,20.0,10.0,2.0,5.0,3.0,3.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1543,5501,1150,0,451,547,545,553,641,581,602,588,558,519,566,482,411,327,295,236,140,91,50,9,2,0,8004,75,108,7,0,8008,97,82,7,0,1854,102,339,1701,292,127,2236,1543,0,3300,4798,96,0,21,76,2,0,0,0,2,0,1,216,7876,0,318,220,710,86,6,15,1691,5148,0,2331,2410,854,103,5,2491,0,1.7475675675675677,0.0,2.474941268598277,0.0,10.206980717598242,99,83,276,39,3,4,575,1556,0,102,70,37,100,201,232,312,243,468,310,197,118,115,44,60,23,2611,24,2539,96,2456,179,434,2201,2484,151,1314,1321,1556,1079,770,1865,2455,180,2508,127,2099,409,1271,1364,1986,649,1518,1117,244,2391,210,2425,33,2602,446,1422,699,68,7,1534,1101,0,7,24,1,0,0,0,0,0,1,70,2532,0,1.5034065102195306,1.5980317940953823,1.0,1.0336134453781514,1.0336134453781514,53.55825426944971 +PA030102,20105,Coclé,Aguadulce,Barrios Unidos,3630,26,167,24,0,0,0,0,0,0,0,0,1,0,0,1369,1662,31,31,2963,99,3,0,1,27,0,3078,2,0,4,0,2,7,0,0,2554,340,175,7,6,3,8,3008,12,10,0,0,63,3093,0,231,247,71,152,53,0,550,409,1996,112,13,13,3020,4,3,53,0,13,0,3061,4,26,0,1,0,1,1796,1281,0,16,0,0,3051,4,3,0,0,1,0,0,9,20,1,4,3546,302,6.844996729888816,20.580117724002616,6.906474820143885,21.465990843688687,1.017135467183964,3.596184933721306,2.406078241189783,3147,1716,3179,238,919,117,155,123,41,199,23,33,95,6,147,51,33,55,74,22,43,8238,1290,0,3201,6327,0,7192,2336,0,9006,522,0,2654,6874,0,2194,460,6659,215,0,226,152,136,41,170,217,291,240,223,1119,2,5,73,335,455,853,255,392,2149,3,14,204,281,447,429,393,246,73,18,83,0,1,1,1,0,4071,410,4149,0,32,152,96,892,1573,1419,161,104,2896,256,510,146,401,6,29,123,1,4902,5089,957,1865,157,1306,69,0,13,1,8,254,57,2842,33,0,0,4207,2864,75,45,355,966,54,62,2,0,1,229,460,427,279,871,174,738,463,839,4417,610,335,539,765,850,1074,509,469,216,75,35,33,5,26,33,116.0,94.0,124.0,129.0,140.0,151.0,141.0,163.0,142.0,161.0,150.0,161.0,129.0,122.0,139.0,136.0,144.0,138.0,147.0,138.0,149.0,146.0,145.0,176.0,173.0,184.0,154.0,161.0,143.0,141.0,140.0,152.0,150.0,146.0,129.0,121.0,118.0,126.0,136.0,119.0,129.0,128.0,112.0,141.0,130.0,105.0,141.0,120.0,106.0,130.0,114.0,144.0,124.0,139.0,162.0,139.0,119.0,106.0,123.0,121.0,117.0,102.0,103.0,104.0,102.0,84.0,92.0,87.0,90.0,81.0,71.0,68.0,54.0,55.0,56.0,57.0,50.0,42.0,43.0,43.0,39.0,24.0,32.0,24.0,21.0,28.0,20.0,18.0,17.0,15.0,10.0,5.0,6.0,4.0,9.0,4.0,2.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2062,6673,1256,0,603,758,701,703,789,783,717,620,640,602,683,608,528,434,304,235,140,98,34,10,1,0,9773,107,105,6,0,9775,118,92,6,0,2527,141,231,1612,344,80,2994,2062,0,3664,6252,75,0,15,109,3,0,0,0,3,0,0,92,9769,0,292,371,1023,66,18,30,1854,6337,0,2373,2867,906,122,6,3717,0,1.919836956521739,0.0,2.674244884702825,0.0,9.232309078170353,108,134,396,34,9,8,617,1841,0,136,98,68,155,267,370,395,342,510,333,187,80,120,37,40,8,3085,62,2973,174,2908,239,494,2653,2958,189,1272,1875,2015,1132,739,2408,2955,192,2943,204,2090,853,1169,1978,2351,796,1544,1603,349,2798,302,2845,24,3123,555,1640,871,81,0,1932,1215,0,7,26,1,0,0,0,1,0,0,35,3077,0,1.55767397521449,1.617095646647601,1.1,1.0509554140127388,1.0509554140127388,53.00063552589768 +,20106,Coclé,Aguadulce,Pueblos Unidos,1601,13,1,0,0,0,0,0,0,0,0,0,3,0,0,12,1061,170,19,1222,21,0,0,0,19,0,1211,0,11,19,2,0,19,0,0,499,145,370,191,35,1,21,1222,22,0,0,0,18,1262,1,147,51,38,82,34,0,39,42,1121,57,2,1,1215,4,1,34,1,7,0,1256,1,5,0,0,0,0,523,720,1,17,0,1,734,488,28,2,1,1,0,1,0,2,2,3,0,1618,6.9528,18.2904,6.9832,18.4952,1.0047543581616485,3.747226624405705,2.4865293185419968,1271,716,1412,74,297,38,69,32,9,78,11,11,30,7,76,22,11,29,13,17,36,3171,691,0,1021,2841,0,2214,1648,0,3601,261,0,1070,2792,0,888,182,2654,138,0,147,51,64,20,91,108,147,100,133,723,3,3,15,96,136,264,92,145,720,3,3,55,93,100,147,160,157,33,4,48,0,0,0,1,0,1331,154,2020,0,8,61,38,409,668,801,80,62,921,67,120,59,213,5,61,2,6,2083,1972,298,644,62,429,11,0,4,6,10,142,31,1366,8,0,0,1960,968,18,15,80,394,23,46,1,0,8,80,184,107,83,211,55,235,191,331,2010,257,165,198,311,296,333,142,167,88,44,11,9,7,9,8,36.0,48.0,55.0,54.0,55.0,63.0,60.0,65.0,56.0,58.0,71.0,61.0,56.0,57.0,47.0,65.0,66.0,55.0,64.0,53.0,54.0,47.0,58.0,65.0,56.0,60.0,63.0,52.0,51.0,56.0,57.0,43.0,54.0,57.0,41.0,41.0,44.0,50.0,37.0,61.0,61.0,44.0,48.0,51.0,51.0,48.0,38.0,47.0,43.0,57.0,55.0,49.0,55.0,49.0,56.0,54.0,45.0,46.0,45.0,51.0,48.0,47.0,37.0,45.0,36.0,49.0,42.0,41.0,37.0,36.0,34.0,33.0,35.0,35.0,21.0,30.0,22.0,34.0,21.0,27.0,18.0,18.0,26.0,10.0,16.0,6.0,11.0,10.0,8.0,4.0,10.0,5.0,3.0,6.0,0.0,0.0,2.0,0.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,842,2556,657,0,248,302,292,303,280,282,252,233,255,233,264,241,213,205,158,134,88,39,24,9,0,0,3995,34,23,3,0,3995,35,22,3,0,1031,31,71,680,154,31,1215,842,0,2495,1529,31,0,0,202,7,0,0,0,1,0,0,32,3813,0,48,90,255,22,1,5,472,3162,0,804,1136,378,53,5,1679,0,2.0712200817279625,0.0,2.867278797996661,0.0,8.582737361282367,22,34,93,9,1,2,160,950,0,97,50,49,82,117,141,177,125,165,94,68,35,37,9,21,1,1237,34,1164,107,1151,120,228,1043,1112,159,428,843,678,593,193,1078,1152,119,1120,151,670,450,442,829,864,407,613,658,239,1032,385,886,11,1260,229,679,332,31,0,841,430,0,0,33,2,0,0,0,0,0,0,10,1226,0,1.638867033831629,1.5515342250196695,1.4,1.0416666666666667,1.0416666666666667,56.17230527143981 +,20107,Coclé,Aguadulce,Virgen del Carmen,2535,5,128,0,0,0,0,0,0,0,0,0,0,0,0,467,1694,78,4,2186,53,0,0,0,4,0,2231,0,2,1,0,0,8,0,1,2070,47,98,22,6,0,0,2199,7,1,0,0,36,2243,1,130,62,77,107,48,0,704,226,1260,49,4,0,2196,7,2,37,0,1,0,2224,5,13,1,0,0,0,1125,1097,1,19,1,0,1718,401,48,59,0,0,0,0,0,15,0,2,2110,558,6.539455468389479,16.359944623904013,6.750807568066452,18.988001845869867,1.0285332144449395,3.6888096299598754,2.384306732055283,2307,1349,3063,136,524,89,93,76,22,130,25,20,54,2,69,20,15,34,32,30,47,6040,1321,0,2034,5327,0,4632,2729,0,6837,524,0,2323,5038,0,2114,209,4715,323,0,329,90,137,35,163,208,261,202,236,931,0,0,3,259,362,678,262,375,1488,9,8,114,200,249,307,246,107,23,11,62,1,0,0,5,0,2724,360,3398,0,12,219,56,366,1438,1451,117,26,2123,179,358,104,173,2,17,10,2,3873,4017,554,1577,121,693,19,1,1,2,14,117,37,2893,77,0,0,3636,1889,3,34,231,604,21,59,5,0,4,147,292,252,192,646,69,558,291,633,4205,403,263,330,473,684,667,257,305,134,50,12,17,7,6,77,135.0,121.0,138.0,135.0,136.0,148.0,139.0,145.0,169.0,142.0,154.0,147.0,150.0,131.0,130.0,150.0,134.0,137.0,125.0,147.0,128.0,133.0,125.0,158.0,135.0,145.0,140.0,132.0,126.0,120.0,130.0,125.0,141.0,138.0,126.0,117.0,105.0,109.0,123.0,97.0,117.0,92.0,108.0,97.0,87.0,84.0,87.0,85.0,80.0,70.0,79.0,82.0,82.0,91.0,79.0,70.0,77.0,74.0,83.0,68.0,85.0,62.0,69.0,53.0,45.0,47.0,37.0,28.0,47.0,30.0,23.0,23.0,29.0,20.0,11.0,20.0,20.0,15.0,21.0,23.0,20.0,11.0,12.0,11.0,11.0,15.0,6.0,8.0,3.0,7.0,1.0,5.0,3.0,2.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2120,5252,518,0,665,743,712,693,679,663,660,551,501,406,413,372,314,189,106,99,65,39,13,5,2,0,7798,41,41,10,0,7799,52,29,10,0,2252,68,254,1002,146,58,1990,2120,0,3854,3997,39,0,1,365,20,0,0,1,2,0,0,97,7404,0,125,382,768,41,4,16,962,5592,0,1766,2357,326,70,4,3367,0,1.9663259170174383,0.0,2.878937893789379,0.0,8.321419518377693,45,103,274,24,2,7,279,1573,0,166,67,52,122,219,311,356,213,356,192,88,55,57,16,21,16,2276,31,2155,152,2103,204,321,1986,2129,178,787,1520,1397,910,428,1879,2125,182,2099,208,1294,805,784,1523,1344,963,1026,1281,286,2021,211,2096,46,2261,326,1403,539,39,0,1326,981,0,1,67,2,0,0,0,0,0,0,23,2214,0,1.6788036410923275,1.741222366710013,1.3076923076923077,1.0263157894736843,1.0263157894736843,47.22973558734287 +PA030209,20108,Coclé,Aguadulce,El Hato de San Juan de Dios,551,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,200,192,18,368,25,0,0,0,18,0,400,0,0,3,0,0,2,0,6,3,30,322,16,35,0,5,357,43,1,0,0,10,411,1,47,26,0,24,44,0,2,5,387,17,0,0,386,0,1,9,0,15,0,411,0,0,0,0,0,0,61,340,0,10,0,0,0,399,9,0,0,0,0,0,0,0,2,1,0,553,6.887254901960785,17.605392156862745,6.946078431372549,17.975490196078432,1.0097323600973236,3.450121654501217,1.9464720194647205,415,244,468,21,137,10,20,13,4,40,1,5,6,0,20,7,4,12,7,3,7,864,436,0,84,1216,0,240,1060,0,1176,124,0,307,993,0,293,14,939,54,0,57,7,34,5,41,45,85,52,51,401,0,0,0,28,56,79,33,41,179,0,0,12,15,22,17,4,32,2,1,1,0,0,0,0,0,460,65,661,0,1,34,9,75,180,343,50,13,292,25,57,29,52,0,56,5,1,740,644,72,236,28,177,0,0,2,2,8,82,18,485,11,0,0,901,220,0,2,11,50,2,0,0,0,2,9,15,36,27,58,43,101,53,181,746,134,38,65,112,122,111,20,20,2,2,0,0,0,1,11,26.0,16.0,26.0,16.0,13.0,20.0,23.0,22.0,20.0,16.0,21.0,18.0,16.0,17.0,22.0,15.0,25.0,13.0,22.0,22.0,19.0,15.0,29.0,28.0,28.0,26.0,20.0,17.0,22.0,28.0,23.0,22.0,22.0,13.0,14.0,19.0,15.0,22.0,15.0,13.0,23.0,20.0,24.0,18.0,16.0,24.0,19.0,15.0,20.0,14.0,18.0,12.0,24.0,15.0,16.0,18.0,13.0,14.0,18.0,11.0,15.0,13.0,10.0,9.0,7.0,14.0,7.0,10.0,6.0,8.0,7.0,9.0,9.0,9.0,10.0,10.0,7.0,5.0,5.0,6.0,4.0,7.0,9.0,5.0,2.0,6.0,3.0,3.0,1.0,5.0,4.0,2.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,913,179,0,97,101,94,97,119,113,94,84,101,92,85,74,54,45,44,33,27,18,11,0,1,0,1376,2,2,4,0,1376,2,2,4,0,462,9,50,140,56,4,371,292,0,984,398,2,0,0,4,0,0,0,0,0,0,0,16,1364,0,6,11,36,0,0,0,16,1315,0,266,383,66,11,1,657,0,2.4166666666666665,0.0,3.274111675126904,0.0,6.667630057803469,3,3,20,0,0,0,4,385,0,32,39,19,37,50,62,57,38,45,16,14,2,1,0,1,2,397,18,351,64,349,66,37,378,354,61,41,374,262,153,10,405,346,69,347,68,79,268,53,362,89,326,129,286,180,235,157,258,6,409,77,208,124,6,0,299,116,0,0,0,0,0,0,0,0,0,0,5,410,0,1.783132530120482,1.5518072289156626,0.0,1.1333333333333333,1.1333333333333333,54.05542168674699 +PA030201,20201,Coclé,Antón,Antón,4385,13,64,33,0,0,0,0,0,0,0,3,0,0,0,627,1922,480,62,2881,148,1,0,0,61,0,2925,0,10,66,4,15,71,0,0,2016,38,935,19,67,0,16,2915,112,7,0,0,57,3091,0,739,145,213,211,96,0,188,299,2447,142,15,0,2971,13,46,30,1,30,0,3043,4,39,4,0,0,1,1571,1457,0,58,1,4,2226,572,236,7,2,3,0,3,0,11,24,7,2965,1533,6.679960448253131,21.58866183256427,6.7719182597231375,22.324653922214896,1.045939825299256,3.846975088967972,2.591717890650275,3236,1692,3740,203,1009,115,163,125,30,223,19,43,99,14,245,37,23,80,57,63,40,8302,1871,0,3172,7001,0,6047,4126,0,9596,577,0,2887,7286,0,2567,320,7091,195,0,218,155,173,48,220,245,275,237,266,1572,2,2,48,304,494,889,329,482,2298,5,41,134,211,280,443,330,251,82,14,111,0,1,0,13,0,3574,497,5086,0,18,249,78,762,1762,2057,260,245,2318,212,685,155,307,12,157,103,11,5300,5411,815,1525,185,1321,84,0,19,11,13,319,41,3822,240,0,0,4883,2839,51,68,185,945,69,104,13,0,18,240,445,283,175,853,239,665,277,876,5703,637,332,457,669,730,797,402,402,176,96,24,21,11,14,240,123.0,136.0,134.0,145.0,146.0,175.0,169.0,207.0,168.0,151.0,181.0,196.0,188.0,157.0,174.0,174.0,169.0,169.0,162.0,170.0,161.0,167.0,175.0,166.0,129.0,158.0,161.0,159.0,135.0,133.0,133.0,144.0,150.0,161.0,129.0,130.0,141.0,118.0,145.0,139.0,150.0,124.0,158.0,126.0,133.0,126.0,122.0,137.0,125.0,138.0,120.0,121.0,142.0,136.0,145.0,116.0,107.0,113.0,124.0,104.0,123.0,114.0,123.0,93.0,86.0,83.0,79.0,78.0,77.0,73.0,75.0,75.0,60.0,64.0,71.0,61.0,71.0,58.0,39.0,49.0,51.0,43.0,33.0,24.0,26.0,27.0,33.0,21.0,22.0,12.0,20.0,8.0,8.0,3.0,7.0,5.0,6.0,7.0,2.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2450,6884,1377,0,684,870,896,844,798,746,717,673,691,648,664,564,539,390,345,278,177,115,46,22,4,0,10445,165,95,6,0,10451,190,64,6,0,2903,56,277,1455,341,76,3153,2450,0,6200,4333,178,0,29,62,12,0,0,0,2,7,0,185,10414,0,801,369,779,65,22,41,2746,5888,0,1824,2349,750,59,31,5698,0,2.1099283076254616,0.0,2.978980891719745,0.0,8.87470824386145,250,133,309,35,9,11,841,1648,0,351,167,97,180,309,377,385,270,435,243,130,76,85,34,29,65,3143,93,2826,410,2585,651,499,2737,2714,522,724,2512,1785,1451,551,2685,2950,286,2921,315,1527,1394,1137,2099,1917,1319,1140,2096,589,2647,561,2675,49,3187,624,1613,916,83,0,1876,1360,0,9,21,1,0,0,0,2,2,0,51,3150,0,1.637824474660074,1.6721260815822003,1.0,1.056818181818182,1.056818181818182,54.084363411619286 +PA030203,20202,Coclé,Antón,Cabuya,915,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,448,168,25,582,34,0,0,0,25,0,324,0,29,144,34,11,99,0,0,1,3,526,1,54,0,56,487,128,0,6,0,20,641,0,216,42,0,26,4,0,1,1,632,6,1,0,581,2,47,7,0,4,0,639,0,1,0,0,1,0,83,520,0,38,0,0,0,548,49,9,0,18,0,2,0,0,10,5,3,926,6.698492462311558,22.97319932998325,6.929648241206031,23.678391959798997,1.015600624024961,3.223088923556942,2.145085803432137,651,336,738,28,194,18,40,14,3,34,1,5,29,1,48,37,17,23,17,21,32,1541,443,0,203,1781,0,1109,875,0,1879,105,0,403,1581,0,386,17,1531,50,0,50,20,23,3,48,49,78,78,62,723,0,0,0,46,60,158,32,63,324,4,9,20,32,19,29,31,19,1,0,3,0,0,0,0,0,1111,57,664,0,2,18,8,40,205,364,48,7,256,32,169,217,33,4,452,1,0,1118,974,59,228,214,528,0,0,135,0,16,168,14,387,4,0,0,1340,415,0,4,7,64,0,2,0,0,0,12,22,20,10,119,436,140,23,386,1115,192,154,143,147,141,109,47,34,4,1,0,1,0,0,4,30.0,24.0,27.0,27.0,22.0,27.0,21.0,28.0,22.0,32.0,27.0,26.0,26.0,31.0,18.0,22.0,25.0,38.0,36.0,30.0,36.0,38.0,35.0,46.0,39.0,43.0,28.0,33.0,35.0,35.0,30.0,26.0,32.0,27.0,20.0,26.0,19.0,20.0,30.0,33.0,25.0,29.0,27.0,24.0,22.0,26.0,19.0,28.0,25.0,22.0,22.0,24.0,23.0,29.0,23.0,24.0,22.0,29.0,13.0,23.0,22.0,18.0,21.0,28.0,19.0,18.0,21.0,17.0,14.0,16.0,16.0,26.0,15.0,10.0,17.0,17.0,15.0,13.0,15.0,8.0,8.0,9.0,10.0,6.0,11.0,6.0,5.0,9.0,6.0,6.0,7.0,2.0,4.0,0.0,2.0,0.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,388,1369,335,0,130,130,128,151,194,174,135,128,127,120,121,111,108,86,84,68,44,32,15,5,1,0,2079,1,8,4,0,2079,2,7,4,0,627,14,39,265,74,2,683,388,0,1342,745,5,0,2,3,0,0,0,0,0,0,0,58,2029,0,12,53,57,2,4,2,497,1465,0,229,337,83,4,2,1437,0,2.6500593119810203,0.0,3.6220338983050846,0.0,7.193116634799235,4,15,28,0,2,0,166,436,0,65,29,41,75,99,96,89,45,61,27,16,5,3,0,0,0,608,43,297,354,205,446,66,585,147,504,7,644,441,210,4,647,561,90,405,246,214,191,77,574,364,287,49,602,468,183,327,324,13,638,151,314,163,23,0,443,208,0,2,0,0,0,0,0,0,0,0,17,632,0,1.717357910906298,1.4961597542242704,0.0,1.0689655172413792,1.0689655172413792,56.94162826420891 +PA030204,20203,Coclé,Antón,El Chirú,2095,2,474,15,0,0,0,0,0,0,1,0,0,0,0,79,785,265,59,1001,128,0,0,0,59,0,1117,0,3,17,1,14,35,0,1,51,90,966,20,53,0,8,1109,61,6,2,0,10,1188,0,1127,80,67,101,23,0,21,31,1031,101,4,0,1151,10,4,12,0,11,0,1090,18,53,25,1,0,1,408,768,0,11,1,0,0,1057,107,2,0,14,1,0,0,4,1,2,711,1876,6.792955326460481,12.574742268041238,6.800687285223368,12.721649484536082,1.0185185185185186,3.569023569023569,2.4006734006734005,1210,644,1373,67,342,30,60,46,5,65,6,15,23,3,67,35,9,21,28,22,15,2812,852,0,577,3087,0,2103,1561,0,3391,273,0,947,2717,0,876,71,2619,98,0,102,52,79,31,67,109,132,99,99,770,0,0,1,116,178,349,108,184,731,4,12,36,54,59,76,68,95,7,2,38,0,0,0,6,0,1261,241,1747,0,6,118,67,227,556,818,70,76,823,76,220,121,78,10,99,11,2,1970,1919,164,717,141,367,20,0,29,2,13,143,19,1314,94,0,0,2057,876,4,12,46,205,6,37,6,0,3,54,93,64,49,256,103,286,73,521,2201,251,135,181,233,305,243,84,82,28,23,4,9,4,12,94,62.0,56.0,51.0,56.0,70.0,84.0,59.0,59.0,76.0,67.0,77.0,55.0,49.0,50.0,58.0,56.0,60.0,64.0,68.0,63.0,67.0,59.0,72.0,51.0,56.0,58.0,73.0,61.0,50.0,57.0,58.0,55.0,45.0,53.0,45.0,47.0,46.0,47.0,51.0,51.0,36.0,49.0,56.0,49.0,42.0,37.0,34.0,44.0,48.0,49.0,48.0,49.0,59.0,62.0,45.0,50.0,47.0,48.0,34.0,35.0,36.0,28.0,37.0,32.0,33.0,34.0,30.0,25.0,20.0,16.0,30.0,23.0,19.0,19.0,21.0,22.0,16.0,15.0,25.0,18.0,19.0,10.0,11.0,8.0,16.0,7.0,12.0,10.0,4.0,12.0,5.0,1.0,4.0,0.0,1.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,929,2500,460,0,295,345,289,311,305,299,256,242,232,212,263,214,166,125,112,96,64,45,11,7,0,0,3756,63,66,4,0,3759,82,44,4,0,1085,20,76,515,149,11,1104,929,0,2287,1518,84,0,7,35,4,1,1,1,1,0,0,57,3782,0,231,336,637,87,11,16,1485,1086,0,631,834,213,22,17,2172,0,2.3308504034761017,0.0,3.1989389920424403,0.0,7.952687066083826,74,99,236,34,4,5,438,320,0,137,73,57,91,125,172,151,88,137,50,36,14,10,5,17,47,1173,37,1032,178,913,297,128,1082,982,228,188,1022,666,544,58,1152,1104,106,1080,130,392,688,243,967,698,512,341,869,483,727,410,800,17,1193,229,663,304,14,1,722,488,0,0,9,2,1,0,1,0,0,0,16,1181,0,1.6267547481420317,1.5846407927332782,1.5,1.0461538461538462,1.0461538461538462,52.44214876033058 +PA030205,20204,Coclé,Antón,El Retiro,1395,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,707,181,39,872,17,1,0,0,38,0,782,0,13,48,18,6,50,0,11,2,2,865,12,46,0,1,814,100,3,0,0,11,928,0,349,94,3,10,17,0,0,5,873,49,1,0,893,0,15,13,0,7,0,911,0,16,0,0,0,1,135,774,0,19,0,0,0,886,19,1,2,0,0,1,0,1,17,1,0,1401,6.653038674033149,16.827624309392267,6.914917127071823,19.028729281767955,1.0172413793103448,3.3566810344827585,2.2607758620689653,944,504,1029,80,209,28,43,24,3,42,6,10,13,2,41,31,17,30,15,33,26,2196,595,0,338,2453,0,1574,1217,0,2609,182,0,716,2075,0,674,42,2004,71,0,73,40,55,11,55,68,96,96,77,875,1,3,4,94,110,242,61,102,485,9,6,29,34,45,67,28,10,4,2,9,0,0,0,0,0,1109,120,1286,0,0,53,7,142,426,582,81,55,412,151,243,158,88,0,150,2,0,1530,1407,81,418,144,476,6,0,79,0,11,183,11,876,54,0,0,1782,601,4,9,9,98,3,9,0,0,1,28,31,30,32,210,200,209,69,419,1660,294,113,154,186,209,138,58,47,13,8,0,3,0,0,54,33.0,42.0,32.0,39.0,48.0,46.0,54.0,49.0,41.0,38.0,38.0,55.0,50.0,49.0,45.0,51.0,40.0,42.0,43.0,30.0,45.0,51.0,46.0,52.0,36.0,58.0,51.0,48.0,40.0,45.0,31.0,41.0,51.0,32.0,36.0,40.0,19.0,35.0,45.0,35.0,41.0,33.0,29.0,35.0,28.0,31.0,32.0,39.0,37.0,31.0,37.0,35.0,35.0,34.0,35.0,29.0,35.0,36.0,37.0,34.0,21.0,35.0,28.0,32.0,23.0,26.0,25.0,18.0,20.0,16.0,27.0,14.0,18.0,19.0,18.0,17.0,12.0,12.0,19.0,12.0,12.0,13.0,11.0,13.0,10.0,11.0,10.0,11.0,4.0,9.0,9.0,6.0,3.0,4.0,3.0,4.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,659,1865,413,0,194,228,237,206,230,242,191,174,166,170,176,171,139,105,96,72,59,45,25,9,2,0,2907,21,3,6,0,2907,22,2,6,0,944,9,61,308,91,5,860,659,0,1906,1013,18,0,7,15,7,1,0,0,1,0,0,34,2872,0,98,133,268,23,3,4,1019,1389,0,372,570,155,10,4,1826,0,2.3903654485049834,0.0,3.309638554216868,0.0,7.348995573714675,22,44,89,9,2,2,356,420,0,92,76,59,93,161,152,100,62,72,34,13,8,7,1,1,13,921,23,708,236,608,336,94,850,573,371,50,894,435,509,9,935,866,78,757,187,147,610,135,809,404,540,217,727,596,348,503,441,26,918,217,497,217,13,0,652,292,0,1,2,2,1,0,0,1,0,0,11,926,0,1.6207627118644068,1.4904661016949152,0.0,1.0689655172413792,1.0689655172413792,54.58050847457627 +PA030206,20205,Coclé,Antón,El Valle,3429,12,1,13,0,0,0,0,0,0,0,12,2,0,0,10,1825,142,76,1918,59,0,1,0,75,0,1939,0,1,31,6,29,47,0,0,1274,42,535,4,98,0,100,1885,122,10,2,0,34,2053,2,1063,109,89,96,43,0,11,88,1748,200,6,0,1997,9,3,33,2,9,0,1948,33,65,3,2,0,2,950,1044,1,56,1,1,984,865,168,6,0,18,0,1,0,6,4,1,3199,270,6.913237481408031,22.824987605354487,6.9871095686663365,23.898363906792262,1.046760837798344,3.713589868485144,2.451047247929859,2163,1140,2700,109,900,40,143,88,10,196,20,17,67,2,141,51,16,30,47,31,53,5888,1354,0,1510,5732,0,4729,2513,0,6831,411,0,1879,5363,0,1717,162,5180,183,0,188,95,121,38,111,179,248,220,202,1578,0,2,12,227,288,670,199,290,1700,4,15,77,116,116,173,137,169,13,1,44,0,1,0,8,0,3133,320,3115,0,12,136,27,349,1176,1354,166,70,1115,213,766,930,176,74,109,12,5,3871,3724,187,1077,945,1069,74,7,36,5,16,288,29,2166,174,0,0,3981,1985,13,34,81,416,10,41,7,0,4,134,123,102,120,612,306,598,130,1324,3946,677,312,464,669,637,314,151,121,55,33,13,15,5,9,174,86.0,93.0,96.0,78.0,119.0,122.0,117.0,100.0,122.0,94.0,139.0,109.0,112.0,123.0,124.0,112.0,136.0,128.0,102.0,138.0,120.0,135.0,134.0,141.0,127.0,142.0,147.0,136.0,80.0,100.0,89.0,96.0,99.0,103.0,110.0,105.0,103.0,111.0,93.0,92.0,105.0,86.0,104.0,100.0,88.0,86.0,92.0,93.0,91.0,79.0,96.0,88.0,95.0,84.0,88.0,94.0,90.0,92.0,84.0,87.0,77.0,65.0,76.0,69.0,67.0,70.0,56.0,60.0,55.0,51.0,55.0,44.0,55.0,45.0,40.0,39.0,43.0,24.0,39.0,21.0,15.0,27.0,21.0,15.0,16.0,25.0,9.0,19.0,10.0,10.0,5.0,7.0,6.0,6.0,7.0,1.0,3.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1634,5055,906,0,472,555,607,616,657,605,497,504,483,441,451,447,354,292,239,166,94,73,31,11,0,0,7335,114,140,6,0,7341,155,93,6,0,2097,37,1076,965,236,36,1517,1631,0,4755,2679,161,0,25,28,13,5,0,0,2,0,1,115,7406,0,109,217,183,17,7,6,1169,5887,0,1049,1166,358,11,44,4967,0,2.076590487955528,0.0,3.0521371535932365,0.0,8.203554970375247,40,77,60,5,4,1,414,1562,0,205,107,102,158,249,375,249,170,234,104,64,23,28,13,18,50,2062,101,1744,419,1374,789,372,1791,830,1333,115,2048,905,1258,246,1917,1974,189,1798,365,1029,769,574,1589,1406,757,433,1730,384,1779,363,1800,165,1998,395,931,782,55,0,1325,838,0,7,12,5,3,0,0,2,0,1,25,2108,0,1.7896440129449838,1.72168284789644,1.1,1.0588235294117647,1.0588235294117647,54.48173832639852 +PA030207,20206,Coclé,Antón,Juan Díaz,1411,16,0,0,0,0,0,0,0,0,0,0,3,0,0,1,543,434,52,881,97,0,0,0,52,0,834,0,15,64,6,4,95,0,12,28,14,893,7,61,0,27,866,142,4,1,0,17,1030,0,262,78,1,32,24,0,5,10,942,71,2,0,932,3,21,47,0,27,0,1013,1,11,1,1,1,2,196,782,0,50,1,1,0,916,25,19,1,32,0,0,0,5,25,7,0,1430,5.926673751328374,11.113708820403826,6.537725823591924,14.364505844845908,1.0009708737864078,3.145631067961165,1.9718446601941748,1034,577,1452,76,195,28,31,17,11,52,11,6,24,2,59,28,5,14,17,61,27,2634,647,0,808,2473,0,2016,1265,0,3047,234,0,1068,2213,0,1014,54,2110,103,0,110,35,69,17,87,94,141,96,111,835,0,0,5,98,151,225,93,156,610,1,6,38,42,58,51,69,54,12,1,13,0,0,0,3,0,1165,134,1588,0,3,50,19,132,639,690,99,28,621,124,255,99,52,4,111,2,2,1797,1719,137,620,108,345,17,0,40,3,30,108,11,1437,4,0,0,1923,738,5,9,43,147,7,12,3,0,3,29,52,62,35,274,124,234,63,423,2044,269,156,179,218,206,238,92,64,23,15,1,4,1,2,4,57.0,58.0,63.0,57.0,56.0,48.0,78.0,66.0,67.0,79.0,65.0,90.0,70.0,70.0,69.0,52.0,57.0,54.0,61.0,47.0,59.0,61.0,57.0,57.0,65.0,62.0,61.0,61.0,54.0,48.0,55.0,50.0,62.0,49.0,44.0,44.0,36.0,48.0,47.0,45.0,31.0,55.0,46.0,46.0,42.0,40.0,49.0,42.0,41.0,35.0,38.0,49.0,40.0,25.0,34.0,36.0,36.0,28.0,30.0,18.0,22.0,24.0,29.0,23.0,22.0,28.0,24.0,15.0,21.0,13.0,12.0,30.0,12.0,12.0,7.0,15.0,14.0,7.0,11.0,9.0,8.0,4.0,6.0,4.0,7.0,6.0,6.0,4.0,6.0,2.0,5.0,2.0,2.0,2.0,2.0,1.0,1.0,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,993,2217,306,0,291,338,364,271,299,286,260,220,220,207,186,148,120,101,73,56,29,24,13,8,2,0,3469,22,17,8,0,3469,24,15,8,0,1060,19,67,327,101,13,938,991,0,2180,1313,23,0,3,18,2,0,2,0,0,1,0,59,3431,0,40,136,268,13,4,0,727,2328,0,484,715,122,19,2,2174,0,2.312278211497516,0.0,3.340788072417465,0.0,7.440273037542662,10,54,105,6,1,0,242,616,0,116,83,52,80,129,130,151,84,101,44,29,12,10,6,4,0,978,56,744,290,602,432,113,921,642,392,56,978,600,434,20,1014,933,101,795,239,280,515,207,827,674,360,229,805,565,469,495,539,13,1021,188,606,223,17,0,640,394,0,0,4,1,0,0,0,0,0,0,12,1017,0,1.7379110251450678,1.6624758220502902,1.0,1.0,1.0,49.516441005802704 +PA030208,20207,Coclé,Antón,Río Hato,7612,29,2302,38,0,0,0,0,0,0,1,1,4,0,0,295,3354,1068,269,4358,359,1,0,0,268,0,4740,0,8,59,17,36,96,0,30,1547,344,2807,104,157,0,27,4651,137,29,0,1,168,4986,0,3870,258,487,234,146,0,96,409,4182,285,7,7,4817,22,63,53,1,30,0,4622,50,154,155,3,2,0,1936,2955,3,80,8,4,2334,2148,351,10,1,36,0,0,0,43,59,4,3737,6250,6.50155183116077,16.76494930684875,6.528657148768881,18.111524932753984,1.01323706377858,3.3215002005615726,2.1768953068592056,5056,2714,5619,408,1184,118,176,139,32,230,44,74,142,14,248,71,48,90,86,96,44,12512,2579,0,3664,11427,0,10409,4682,0,14208,883,0,4243,10848,0,3820,423,10471,377,0,397,209,258,73,302,379,417,401,434,3094,2,2,27,491,697,1370,549,771,3159,28,65,189,245,346,468,288,260,49,8,108,1,1,0,3,0,6140,899,6483,0,25,417,129,810,2550,2374,330,419,3189,467,1247,856,498,39,124,428,5,8156,7794,624,2608,906,2465,105,13,126,6,41,551,52,4670,187,0,0,8257,3895,30,73,197,920,43,104,3,0,10,327,343,322,216,1490,706,1107,297,2221,8442,1187,556,691,964,1230,1205,550,434,184,136,45,57,19,63,187,208.0,211.0,235.0,205.0,242.0,252.0,248.0,268.0,299.0,260.0,290.0,276.0,239.0,263.0,252.0,266.0,273.0,271.0,240.0,245.0,281.0,253.0,264.0,265.0,265.0,270.0,272.0,247.0,211.0,216.0,221.0,235.0,204.0,229.0,241.0,218.0,228.0,227.0,206.0,225.0,219.0,206.0,197.0,225.0,204.0,213.0,240.0,197.0,211.0,201.0,204.0,184.0,181.0,188.0,175.0,144.0,159.0,171.0,150.0,145.0,122.0,151.0,113.0,122.0,104.0,105.0,119.0,93.0,131.0,99.0,104.0,93.0,78.0,85.0,74.0,77.0,76.0,67.0,58.0,55.0,54.0,49.0,33.0,29.0,33.0,21.0,26.0,28.0,17.0,21.0,15.0,9.0,11.0,10.0,5.0,7.0,6.0,2.0,2.0,4.0,4.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3748,10499,1703,0,1101,1327,1320,1295,1328,1216,1130,1104,1051,1062,932,769,612,547,434,333,198,113,50,21,7,0,15040,555,312,43,0,15051,657,199,43,0,4626,101,984,1966,493,82,3950,3748,0,9539,5832,579,0,125,291,18,1,0,1,7,0,0,190,15317,0,792,1105,2153,183,30,38,5400,6249,0,2515,3149,711,77,138,9360,0,2.1319896954083952,0.0,3.047469066366704,0.0,8.207335423197492,289,377,745,77,15,21,1720,1812,0,453,269,195,344,531,696,651,428,617,327,165,89,99,43,83,62,4838,218,4287,769,3777,1279,594,4462,4216,840,899,4157,2589,2467,462,4594,4649,407,4462,594,2235,2227,1414,3642,3442,1614,1381,3675,1403,3653,1131,3925,52,5004,1104,2686,1166,100,2,3274,1782,0,23,70,5,0,0,0,3,0,0,54,4901,0,1.612495057334915,1.5409252669039146,1.1923076923076923,1.0579710144927537,1.0579710144927537,50.76048259493671 +PA030209,20208,Coclé,Antón,San Juan de Dios,1838,8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,678,610,95,1210,78,0,0,0,95,0,972,0,4,153,13,35,195,0,11,7,7,1135,15,173,0,46,931,429,1,1,0,21,1383,0,266,89,11,55,47,0,3,7,1319,53,1,0,1181,15,123,41,2,21,0,1374,1,5,0,1,2,0,117,1068,0,198,0,0,0,1230,18,36,17,54,1,3,0,4,16,4,0,1851,6.519230769230769,20.450320512820515,6.9006410256410255,23.037660256410252,1.007230657989877,3.1843817787418653,1.992769342010123,1393,811,2415,67,521,26,85,56,12,110,22,10,9,1,53,49,21,35,19,49,16,3321,1881,0,562,4640,0,1965,3237,0,4812,390,0,1470,3732,0,1439,31,3566,166,0,169,38,106,22,144,162,200,211,192,1767,0,1,2,149,183,480,138,171,709,0,5,56,64,53,97,46,31,1,0,4,0,0,0,1,0,1508,275,2829,0,2,85,32,123,930,1569,118,89,571,265,237,299,119,13,208,3,2,2856,2682,119,578,294,489,17,3,214,3,59,271,13,2535,22,0,0,3543,897,3,8,31,128,0,1,1,0,3,20,51,35,41,276,306,218,76,757,4052,448,169,176,232,177,158,41,39,11,8,2,0,0,3,22,83.0,83.0,84.0,86.0,94.0,87.0,106.0,107.0,93.0,103.0,96.0,118.0,100.0,121.0,101.0,128.0,97.0,115.0,91.0,107.0,110.0,101.0,109.0,99.0,114.0,111.0,108.0,88.0,77.0,79.0,80.0,83.0,58.0,81.0,81.0,79.0,64.0,63.0,71.0,68.0,63.0,64.0,53.0,65.0,68.0,58.0,60.0,73.0,47.0,55.0,55.0,56.0,35.0,67.0,50.0,48.0,33.0,46.0,40.0,47.0,45.0,34.0,26.0,40.0,34.0,42.0,29.0,24.0,32.0,27.0,24.0,31.0,14.0,28.0,28.0,35.0,20.0,20.0,21.0,17.0,26.0,15.0,15.0,6.0,15.0,10.0,18.0,17.0,5.0,11.0,0.0,3.0,2.0,3.0,4.0,2.0,1.0,0.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1462,3524,552,0,430,496,536,538,533,463,383,345,313,293,263,214,179,154,125,113,77,61,12,7,3,0,5504,9,13,12,0,5505,12,9,12,0,1512,7,84,551,153,8,1762,1461,0,3857,1670,11,0,9,26,1,0,0,0,2,0,0,26,5474,0,25,265,60,1,0,1,450,4736,0,502,823,122,18,4,4069,0,2.5111607142857144,0.0,3.8008474576271194,0.0,6.789093535572409,4,61,20,0,0,0,165,1143,0,378,120,112,117,192,161,117,65,63,27,22,11,1,1,3,3,1257,136,737,656,556,837,160,1233,344,1049,25,1368,797,596,7,1386,1102,291,847,546,291,556,146,1247,504,889,109,1284,781,612,625,768,38,1355,222,736,427,8,0,911,482,0,0,9,0,0,0,0,1,0,0,3,1380,0,2.050251256281407,1.925340990667624,1.0,1.0476190476190477,1.0476190476190477,52.17731514716439 +PA030210,20209,Coclé,Antón,Santa Rita,1285,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,561,293,40,839,16,3,0,0,37,0,755,0,5,40,10,8,47,0,30,3,2,796,9,67,0,18,736,152,0,0,0,7,895,0,271,80,2,24,29,0,0,7,867,21,0,0,813,1,40,26,0,15,0,886,1,5,0,1,2,0,147,690,0,58,0,0,0,852,15,0,0,9,0,0,0,4,13,2,0,1301,5.739331026528259,16.71049596309112,6.021914648212226,17.807381776239907,1.012290502793296,3.345251396648045,2.011173184357542,906,452,954,27,269,45,61,36,3,53,4,8,12,0,49,15,2,13,21,25,14,2153,549,0,457,2245,0,1224,1478,0,2566,136,0,628,2074,0,595,33,1996,78,0,81,30,33,7,54,57,84,84,87,793,0,0,8,57,110,232,80,80,572,1,5,14,21,35,69,55,33,10,0,9,0,0,0,1,0,853,144,1470,0,7,110,19,189,400,730,103,48,427,89,165,68,147,1,79,1,0,1444,1386,106,329,65,430,16,0,31,0,17,194,12,1051,10,0,0,1633,625,9,7,31,147,5,9,1,0,2,27,53,42,42,180,178,156,58,259,1740,280,88,121,182,134,155,61,30,17,6,3,1,0,2,10,24.0,26.0,38.0,40.0,44.0,35.0,40.0,41.0,33.0,42.0,47.0,40.0,41.0,33.0,47.0,42.0,40.0,31.0,32.0,36.0,35.0,35.0,44.0,36.0,44.0,43.0,37.0,42.0,41.0,38.0,47.0,38.0,39.0,33.0,31.0,39.0,30.0,39.0,39.0,30.0,38.0,36.0,37.0,36.0,32.0,32.0,34.0,37.0,30.0,41.0,37.0,37.0,31.0,33.0,36.0,33.0,26.0,33.0,36.0,36.0,36.0,34.0,25.0,37.0,30.0,26.0,22.0,27.0,31.0,23.0,22.0,16.0,25.0,16.0,14.0,26.0,14.0,14.0,20.0,15.0,12.0,16.0,16.0,10.0,22.0,14.0,11.0,10.0,7.0,5.0,8.0,5.0,4.0,2.0,1.0,1.0,3.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,571,1794,465,0,172,191,208,181,194,201,188,177,179,174,174,164,162,129,93,89,76,47,20,10,1,0,2816,7,7,0,0,2816,7,7,0,0,810,13,97,362,128,10,839,571,0,1722,1097,11,0,5,15,0,1,0,0,3,0,0,86,2720,0,20,46,78,5,4,4,1121,1552,0,354,591,180,16,4,1685,0,2.407830342577488,0.0,3.363095238095238,0.0,7.788339222614841,10,19,29,3,1,2,396,446,0,177,89,38,96,124,90,96,59,71,35,11,7,4,2,2,5,872,34,671,235,532,374,124,782,509,397,26,880,536,370,10,896,801,105,719,187,316,403,141,765,370,536,136,770,513,393,465,441,17,889,186,445,264,11,0,462,444,0,1,4,0,0,0,0,1,0,0,28,872,0,1.5938189845474613,1.5298013245033113,1.0,1.0185185185185186,1.0185185185185186,56.20088300220751 +PA030202,20210,Coclé,Antón,Caballero,1598,11,0,0,0,0,0,0,1,0,0,0,0,0,0,4,435,690,57,1074,55,2,0,0,55,0,938,0,7,84,6,14,126,0,11,88,2,957,13,117,0,9,920,253,0,0,0,13,1186,0,273,103,7,13,27,0,0,3,1140,42,1,0,1051,9,72,24,2,28,0,1179,1,1,0,1,4,0,146,964,1,73,2,0,0,1132,6,5,0,25,0,1,0,1,12,4,0,1610,6.648506151142355,22.57469244288225,6.811072056239016,23.18365553602812,1.009274873524452,3.139123102866779,2.025295109612141,1197,650,1692,44,313,20,63,44,8,67,10,10,18,0,40,32,14,22,16,44,14,2633,1260,0,218,3675,0,2036,1857,0,3674,219,0,1027,2866,0,996,31,2749,117,0,121,36,75,14,81,111,135,145,135,1317,0,1,3,102,109,369,110,143,652,3,2,32,47,36,50,37,19,4,2,1,0,0,1,0,0,1426,85,1982,0,0,28,19,97,665,1026,118,76,440,46,168,219,84,11,512,1,6,2151,1985,75,521,227,454,24,1,178,7,44,297,14,1235,4,0,0,2604,771,3,11,17,83,3,1,0,0,7,16,27,21,20,224,412,202,54,528,2703,419,163,154,286,195,123,52,21,12,1,0,1,0,2,4,65.0,56.0,67.0,55.0,65.0,62.0,65.0,66.0,69.0,73.0,73.0,71.0,85.0,71.0,64.0,75.0,72.0,73.0,73.0,67.0,78.0,66.0,66.0,76.0,62.0,79.0,71.0,78.0,57.0,66.0,60.0,68.0,64.0,59.0,55.0,46.0,39.0,54.0,55.0,40.0,67.0,50.0,56.0,37.0,48.0,53.0,41.0,49.0,42.0,50.0,43.0,44.0,33.0,50.0,32.0,37.0,36.0,33.0,42.0,31.0,40.0,34.0,31.0,28.0,22.0,25.0,27.0,26.0,29.0,23.0,27.0,23.0,21.0,21.0,18.0,31.0,19.0,21.0,22.0,18.0,20.0,8.0,14.0,15.0,13.0,13.0,14.0,9.0,8.0,5.0,8.0,6.0,7.0,2.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1007,2628,501,0,308,335,364,360,348,351,306,234,258,235,202,179,155,130,110,111,70,49,27,3,1,0,4116,8,3,9,0,4116,8,3,9,0,1282,14,538,373,137,11,776,1005,0,2832,1296,8,0,3,4,20,0,0,1,0,0,0,43,4065,0,12,60,131,4,0,0,1272,2657,0,392,659,103,9,1,2972,0,2.582331730769231,0.0,3.738812785388128,0.0,6.990087040618955,5,18,52,1,0,0,370,751,0,183,110,76,151,193,170,127,82,62,27,11,3,0,0,2,0,1116,81,744,453,567,630,91,1106,336,861,21,1176,606,591,24,1173,981,216,850,347,375,475,79,1118,540,657,88,1109,833,364,488,709,46,1151,222,552,409,14,1,749,448,0,1,2,8,0,0,1,0,0,0,8,1177,0,1.7954924874791318,1.6569282136894825,1.0,1.0192307692307692,1.0192307692307692,52.91729323308271 +PA030303,20301,Coclé,La Pintada,La Pintada,1703,6,59,12,0,0,0,1,0,0,0,1,1,0,0,43,991,232,33,1235,31,0,1,0,32,0,1135,0,0,110,1,5,48,0,0,751,20,465,19,30,0,14,1173,91,6,0,0,29,1299,0,238,85,43,69,46,0,4,61,1182,45,7,0,1215,10,38,9,5,22,0,1283,3,11,0,0,2,0,419,849,2,29,0,0,697,545,30,8,2,2,0,2,0,1,7,5,831,952,6.379716981132075,20.29638364779874,6.620283018867925,21.88679245283019,1.0069284064665127,3.8352578906851424,2.5658198614318706,1310,747,1556,46,458,42,94,64,10,103,13,14,36,4,88,44,19,31,25,6,9,3406,893,0,997,3302,0,2387,1912,0,4095,204,0,1131,3168,0,1014,117,3063,105,0,106,51,67,15,74,94,176,143,130,901,0,2,3,104,198,413,100,195,891,4,25,38,39,111,173,127,72,14,2,30,0,0,0,1,0,1624,118,2171,0,6,54,34,251,722,985,112,101,807,273,254,98,138,5,139,0,2,2342,2155,314,596,104,568,57,0,73,4,33,244,19,1743,8,0,0,2382,1038,4,30,77,344,11,26,1,0,8,47,147,108,85,253,209,344,154,387,2464,449,171,244,298,212,246,156,151,57,24,3,7,2,5,8,42.0,35.0,60.0,61.0,59.0,64.0,56.0,74.0,67.0,66.0,67.0,73.0,65.0,66.0,77.0,67.0,66.0,70.0,70.0,64.0,53.0,80.0,71.0,69.0,63.0,81.0,62.0,64.0,50.0,63.0,64.0,61.0,45.0,54.0,51.0,58.0,64.0,59.0,53.0,69.0,44.0,61.0,58.0,62.0,58.0,55.0,41.0,53.0,54.0,57.0,58.0,60.0,41.0,60.0,54.0,56.0,37.0,50.0,57.0,54.0,41.0,43.0,39.0,54.0,53.0,41.0,31.0,35.0,50.0,25.0,29.0,34.0,28.0,36.0,24.0,36.0,21.0,24.0,39.0,25.0,20.0,17.0,27.0,15.0,24.0,16.0,14.0,8.0,7.0,16.0,9.0,10.0,4.0,8.0,8.0,5.0,4.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,932,2871,694,0,257,327,348,337,336,320,275,303,283,260,273,254,230,182,151,145,103,61,39,11,2,0,4427,39,25,6,0,4429,42,20,6,0,1174,17,81,702,155,13,1423,932,0,2428,2022,47,0,22,34,2,2,0,0,2,1,0,230,4204,0,60,116,238,13,10,9,2254,1797,0,756,1140,257,9,6,2329,0,2.1251325556733827,0.0,3.0431372549019606,0.0,8.357349344007115,22,40,94,6,4,2,672,470,0,142,84,50,118,172,158,143,95,147,87,45,25,22,9,8,3,1256,54,1060,250,938,372,203,1107,961,349,143,1167,607,703,126,1184,1177,133,996,314,871,125,375,935,645,665,357,953,458,852,458,852,16,1294,206,672,415,17,1,812,498,0,6,9,1,1,0,0,2,0,0,70,1221,0,1.786422578184592,1.6437833714721586,1.5,1.077922077922078,1.077922077922078,56.1 +PA030301,20302,Coclé,La Pintada,El Harino,2308,3,6,0,0,0,0,0,1,0,0,0,0,0,0,5,883,625,72,1442,71,0,2,0,70,0,1028,0,11,386,4,4,146,0,6,544,9,944,13,70,3,2,1269,286,3,2,0,25,1585,1,495,93,12,66,65,0,3,11,1505,63,3,0,1247,242,54,21,12,9,0,1560,5,7,1,1,11,0,228,1131,1,133,89,3,0,1225,253,6,2,54,1,38,0,2,3,1,0,2318,6.742895805142084,21.63870094722598,6.912043301759134,23.35791610284168,1.0321766561514196,3.593059936908517,2.3287066246056782,1636,922,2301,84,459,55,84,46,17,90,18,17,20,3,93,39,19,17,23,12,19,3887,1513,0,464,4936,0,2273,3127,0,4991,409,0,1356,4044,0,1289,67,3774,270,0,274,51,98,3,125,188,281,250,239,1591,0,0,7,168,210,485,136,183,738,0,6,35,58,62,108,70,21,7,0,6,0,0,0,0,0,1950,124,2697,0,6,65,27,137,829,1460,144,127,664,328,283,119,124,7,503,8,6,2989,2763,155,673,128,880,22,1,177,6,104,367,41,2137,65,0,0,3646,859,7,14,54,183,3,5,0,0,6,29,80,56,49,272,593,348,137,504,3686,500,252,285,280,243,177,124,83,34,11,5,4,2,1,65,69.0,89.0,101.0,93.0,101.0,108.0,109.0,91.0,101.0,119.0,100.0,97.0,89.0,103.0,101.0,115.0,115.0,112.0,94.0,108.0,105.0,101.0,113.0,100.0,101.0,99.0,92.0,70.0,86.0,72.0,88.0,74.0,72.0,72.0,68.0,63.0,75.0,67.0,73.0,68.0,81.0,55.0,63.0,51.0,66.0,58.0,63.0,67.0,70.0,64.0,65.0,67.0,48.0,59.0,55.0,59.0,66.0,40.0,53.0,44.0,54.0,53.0,44.0,51.0,38.0,39.0,42.0,39.0,30.0,43.0,32.0,30.0,28.0,29.0,19.0,30.0,21.0,32.0,26.0,22.0,24.0,19.0,9.0,15.0,24.0,18.0,15.0,8.0,10.0,4.0,8.0,5.0,6.0,5.0,1.0,2.0,1.0,2.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1471,3637,644,0,453,528,490,544,520,419,374,346,316,322,294,262,240,193,138,131,91,55,25,8,3,0,5726,8,10,8,0,5726,11,7,8,0,1610,28,316,589,175,13,1552,1469,0,4181,1563,8,0,11,22,3,0,0,0,0,1,0,21,5694,0,42,160,156,9,6,2,538,4839,0,519,893,142,14,3,4181,0,2.4526086956521738,0.0,3.607712765957447,0.0,6.680806675938804,10,47,56,3,1,1,203,1315,0,281,155,133,173,222,193,122,100,141,52,21,15,10,6,5,7,1522,114,932,704,927,709,251,1385,704,932,26,1610,731,905,16,1620,1420,216,914,722,749,165,194,1442,898,738,237,1399,745,891,598,1038,18,1618,306,881,430,19,1,1120,516,0,1,6,0,0,0,0,0,1,0,8,1620,0,1.8259010384850336,1.6878436163714112,1.0,1.0337078651685394,1.0337078651685394,52.119804400978 +PA030302,20303,Coclé,La Pintada,El Potrero,1574,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,987,77,16,1057,9,1,0,0,15,0,997,0,2,41,1,6,33,0,2,433,14,572,4,58,0,1,1032,43,0,0,0,7,1082,1,293,81,4,69,52,0,1,11,1031,35,4,0,1044,12,8,10,1,7,0,1069,0,12,0,0,1,0,183,876,0,23,0,0,0,1057,14,4,3,1,0,1,0,0,1,1,0,1582,5.666666666666667,17.793650793650794,6.754435107376284,22.428571428571427,1.0083179297597042,3.487985212569316,2.205175600739372,1091,611,1150,108,297,31,33,20,12,54,10,9,22,2,75,27,18,14,18,23,17,2558,726,0,445,2839,0,897,2387,0,3053,231,0,835,2449,0,780,55,2328,121,0,123,36,39,8,66,102,167,137,109,930,0,2,3,94,111,295,92,128,537,1,2,26,36,62,72,49,47,1,1,8,0,0,0,0,0,1128,141,1731,0,9,90,19,177,574,746,65,169,499,102,130,69,169,3,232,2,7,1790,1660,121,419,83,552,8,0,22,8,41,235,14,1189,4,0,0,2153,629,3,6,37,164,1,7,0,0,8,34,61,50,42,159,301,185,120,309,2047,340,141,165,255,165,154,80,60,23,7,3,4,1,1,4,37.0,47.0,39.0,43.0,40.0,54.0,45.0,50.0,45.0,50.0,62.0,57.0,53.0,57.0,60.0,63.0,50.0,51.0,51.0,52.0,50.0,55.0,57.0,53.0,61.0,60.0,42.0,57.0,38.0,54.0,46.0,34.0,42.0,56.0,46.0,34.0,28.0,37.0,42.0,39.0,38.0,46.0,43.0,31.0,42.0,48.0,48.0,39.0,49.0,44.0,51.0,39.0,44.0,40.0,50.0,33.0,27.0,36.0,37.0,31.0,40.0,38.0,38.0,41.0,33.0,29.0,20.0,25.0,28.0,26.0,23.0,22.0,30.0,19.0,13.0,23.0,20.0,26.0,24.0,20.0,13.0,22.0,14.0,19.0,16.0,14.0,7.0,9.0,5.0,5.0,7.0,7.0,1.0,5.0,4.0,1.0,1.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,739,2204,507,0,206,244,289,267,276,251,224,180,200,228,224,164,190,128,107,113,84,40,24,6,5,0,3427,17,5,1,0,3427,17,5,1,0,1040,11,117,404,112,10,1017,739,0,2118,1321,11,0,1,1,1,0,0,0,0,0,0,8,3439,0,18,49,168,9,2,1,136,3067,0,455,866,181,19,1,1928,0,2.4483714483714483,0.0,3.377889447236181,0.0,7.333913043478261,10,17,75,5,1,1,54,928,0,127,102,73,125,166,165,98,65,73,49,24,8,10,4,1,1,1073,18,878,213,835,256,157,934,844,247,64,1027,510,581,12,1079,987,104,771,320,547,224,170,921,345,746,276,815,472,619,375,716,12,1079,223,568,283,17,0,800,291,0,1,0,0,0,0,0,0,0,0,6,1084,0,1.640696608615949,1.5215398716773605,1.0,1.0,1.0,55.87901008249312 +PA030305,20304,Coclé,La Pintada,Llano Grande,1462,8,3,4,0,0,0,0,0,0,0,0,0,0,0,1,569,473,68,971,72,1,1,0,66,0,823,0,7,130,2,0,139,0,10,370,8,613,21,84,0,15,887,185,2,1,0,36,1111,0,170,88,18,60,30,0,0,13,1046,50,2,0,800,79,91,22,7,112,0,1081,0,2,0,0,26,2,205,777,1,125,2,1,0,1008,26,3,0,46,0,9,0,1,8,10,0,1477,6.1228239845261125,19.458413926499038,6.551257253384913,21.54158607350097,1.026102610261026,3.215121512151215,1.9657965796579655,1140,725,1582,98,307,34,45,25,9,95,8,11,34,1,53,20,11,28,18,10,13,2361,1511,0,399,3473,0,1260,2612,0,3569,303,0,1035,2837,0,961,74,2687,150,0,152,60,65,3,93,132,208,172,169,1097,0,0,2,101,145,386,110,132,560,1,1,22,45,47,70,69,16,5,2,6,0,0,0,1,0,1352,102,2001,0,3,22,21,75,652,1113,116,45,500,372,124,91,126,6,180,0,31,2108,2006,96,436,99,557,9,0,202,31,121,302,20,1791,156,0,0,2607,666,4,5,18,148,1,5,1,0,32,27,41,36,29,146,344,340,98,361,2532,457,144,131,180,134,115,84,101,46,21,3,6,1,3,156,63.0,52.0,65.0,62.0,69.0,77.0,72.0,68.0,73.0,58.0,76.0,84.0,65.0,65.0,74.0,71.0,77.0,68.0,56.0,94.0,65.0,72.0,80.0,86.0,62.0,76.0,66.0,81.0,51.0,66.0,60.0,59.0,54.0,50.0,44.0,50.0,59.0,43.0,52.0,57.0,51.0,59.0,46.0,47.0,50.0,36.0,34.0,49.0,42.0,30.0,64.0,45.0,44.0,43.0,47.0,37.0,34.0,30.0,35.0,37.0,37.0,34.0,41.0,26.0,29.0,32.0,20.0,20.0,26.0,25.0,19.0,24.0,27.0,19.0,20.0,21.0,21.0,22.0,16.0,13.0,19.0,14.0,11.0,17.0,11.0,9.0,11.0,11.0,5.0,6.0,7.0,3.0,6.0,2.0,3.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1023,2626,465,0,311,348,364,366,365,340,267,261,253,191,243,173,167,123,109,93,72,42,21,5,0,0,4083,19,10,2,0,4083,21,8,2,0,1257,19,35,511,127,7,1135,1023,0,2652,1452,10,0,2,9,0,1,1,0,4,0,0,212,3885,0,31,141,150,1,4,0,569,3218,0,447,709,71,6,6,2875,0,2.4141048824593128,0.0,3.470856102003643,0.0,6.862177929022849,10,44,51,0,1,0,165,869,0,221,127,71,112,133,119,81,49,79,56,35,15,18,9,5,10,1067,73,668,472,611,529,113,1027,575,565,42,1098,499,641,88,1052,864,276,675,465,561,114,149,991,354,786,206,934,478,662,468,672,11,1129,165,660,292,23,0,856,284,0,0,1,0,1,1,0,0,0,0,64,1073,0,1.849122807017544,1.7596491228070177,2.0,1.0483870967741935,1.0483870967741935,52.64385964912281 +PA030306,20305,Coclé,La Pintada,Piedras Gordas,1829,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,606,96,1131,61,1,0,0,95,0,853,0,6,281,2,5,124,0,17,285,7,847,19,58,0,72,955,299,1,2,0,31,1288,0,333,82,1,58,71,0,0,3,1246,39,0,0,962,222,66,15,10,13,0,1269,1,1,2,3,11,1,122,980,1,143,42,0,0,1088,91,6,2,60,0,22,0,0,17,2,0,1833,5.686174724342664,16.55640373197625,6.157760814249364,19.28837998303647,1.0124223602484472,3.4479813664596275,2.2135093167701863,1304,757,1916,86,400,35,50,50,10,88,8,7,1,1,63,40,27,28,21,13,25,2877,1528,0,305,4100,0,792,3613,0,4052,353,0,1268,3137,0,1229,39,2974,163,0,164,45,91,5,140,144,280,200,176,1398,0,0,0,131,151,392,124,123,659,4,13,20,25,38,39,30,10,0,0,2,0,0,1,0,0,1399,127,2393,0,4,74,23,64,818,1267,70,174,475,191,130,81,75,5,519,3,10,2501,2212,91,503,85,522,10,1,267,10,116,347,28,1759,268,0,0,3077,743,0,4,23,70,1,1,0,0,11,17,20,24,32,127,523,231,72,469,3150,427,126,156,184,147,105,65,67,15,3,0,0,0,0,268,80.0,75.0,79.0,74.0,68.0,77.0,93.0,99.0,68.0,81.0,96.0,88.0,84.0,86.0,99.0,90.0,112.0,96.0,84.0,80.0,88.0,92.0,94.0,83.0,96.0,71.0,79.0,71.0,49.0,64.0,51.0,59.0,64.0,58.0,51.0,53.0,55.0,73.0,71.0,58.0,59.0,56.0,38.0,39.0,48.0,45.0,51.0,42.0,39.0,43.0,48.0,37.0,52.0,42.0,43.0,37.0,39.0,40.0,43.0,25.0,41.0,35.0,47.0,38.0,37.0,31.0,27.0,20.0,31.0,30.0,30.0,25.0,14.0,20.0,22.0,20.0,27.0,23.0,30.0,17.0,31.0,14.0,22.0,15.0,19.0,12.0,9.0,11.0,10.0,10.0,5.0,4.0,7.0,3.0,5.0,3.0,2.0,7.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1247,2906,560,0,376,418,453,462,453,334,283,310,240,220,222,184,198,139,111,117,101,52,24,16,0,0,4695,3,2,13,0,4695,3,2,13,0,1422,19,221,426,153,7,1218,1247,0,3159,1550,4,0,5,20,1,4,0,0,1,0,0,107,4575,0,22,161,393,2,0,3,1688,2444,0,425,929,71,9,0,3279,0,2.656353591160221,0.0,3.816072908036454,0.0,6.424570337364736,7,39,119,2,0,2,529,606,0,303,144,100,151,148,133,88,73,79,39,12,2,2,0,0,30,1173,131,729,575,723,581,169,1135,470,834,9,1295,518,786,9,1295,1046,258,696,608,488,208,89,1215,209,1095,165,1139,815,489,649,655,12,1292,247,705,350,2,0,961,343,0,2,2,0,2,0,0,0,0,0,33,1265,0,1.9179447852760736,1.696319018404908,1.0,1.1097560975609757,1.1097560975609757,53.40490797546012 +PA030304,20306,Coclé,La Pintada,Las Lomas,1099,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,130,11,657,17,0,0,0,11,0,529,0,6,53,11,2,82,0,2,12,0,627,11,35,0,0,542,137,1,0,0,5,685,0,296,55,1,31,34,0,0,2,657,26,0,0,568,80,13,15,1,8,0,685,0,0,0,0,0,0,34,567,0,71,13,0,0,572,103,1,1,4,0,4,0,0,0,0,0,1102,6.767407407407408,23.245925925925928,6.940740740740741,23.675555555555555,1.0116788321167882,3.611678832116788,2.487591240875912,693,335,880,39,240,10,47,36,2,41,4,3,20,0,40,17,11,15,9,1,17,1292,897,0,129,2060,0,730,1459,0,1995,194,0,576,1613,0,562,14,1508,105,0,107,18,41,0,74,91,161,107,96,625,0,0,0,68,93,191,54,75,293,0,5,13,14,12,10,8,22,3,0,7,0,0,0,1,0,850,21,1104,0,1,10,2,68,388,516,62,70,138,57,61,25,27,13,550,0,0,1230,1120,37,148,27,609,7,2,39,2,60,247,28,382,28,0,0,1587,337,0,5,2,35,2,6,1,0,2,6,21,9,12,70,528,96,24,103,1239,437,150,218,129,52,40,20,25,6,3,0,2,1,0,28,42.0,53.0,28.0,38.0,37.0,30.0,43.0,33.0,35.0,36.0,51.0,45.0,35.0,42.0,53.0,43.0,48.0,45.0,39.0,37.0,43.0,42.0,38.0,33.0,45.0,33.0,29.0,29.0,23.0,22.0,50.0,30.0,27.0,28.0,23.0,22.0,28.0,25.0,28.0,20.0,19.0,17.0,20.0,26.0,21.0,21.0,27.0,24.0,24.0,24.0,23.0,24.0,25.0,21.0,25.0,13.0,28.0,18.0,28.0,22.0,27.0,19.0,19.0,19.0,20.0,25.0,17.0,20.0,18.0,17.0,21.0,16.0,21.0,22.0,15.0,15.0,18.0,14.0,13.0,14.0,7.0,7.0,7.0,4.0,6.0,9.0,12.0,11.0,9.0,8.0,4.0,3.0,2.0,2.0,3.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,601,1384,365,0,198,177,226,212,201,136,158,123,103,120,118,109,104,97,95,74,31,49,14,3,2,0,2342,2,1,5,0,2342,2,1,5,0,734,12,119,160,93,5,626,601,0,1597,752,1,0,1,8,0,0,0,0,2,0,1,16,2322,0,8,141,120,5,6,0,357,1713,0,125,338,74,4,0,1809,0,2.875402792696026,0.0,4.173202614379085,0.0,6.273617021276595,2,40,33,3,4,0,135,476,0,40,82,49,124,146,107,47,37,36,6,10,4,1,0,3,1,657,36,435,258,429,264,90,603,325,368,5,688,303,390,3,690,346,347,374,319,337,37,39,654,134,559,77,616,482,211,355,338,7,686,168,322,189,14,0,474,219,0,0,1,0,0,0,0,1,0,0,5,686,0,1.774891774891775,1.616161616161616,1.0,1.024390243902439,1.024390243902439,57.24242424242424 +,20307,Coclé,La Pintada,Llano Norte,1622,2,0,0,0,0,0,0,2,0,0,0,0,0,0,3,451,689,34,1083,60,1,0,0,33,0,526,0,22,453,7,7,157,0,5,391,2,711,9,55,3,6,859,302,0,0,0,16,1177,1,288,46,10,79,23,0,1,18,1117,41,0,0,598,552,0,3,1,23,0,1132,0,2,0,5,37,1,165,730,0,129,153,0,0,845,165,14,1,64,7,70,1,0,10,0,0,1626,5.322772277227723,15.452475247524752,5.8297029702970296,17.585148514851486,1.0518266779949024,3.2650807136788447,2.073067119796092,1238,923,2085,141,220,33,23,19,7,71,17,10,33,2,41,29,8,16,6,2,24,2740,1704,0,228,4216,0,1829,2615,0,3932,512,0,1217,3227,0,1165,52,2948,279,0,289,65,89,12,136,181,232,198,208,1303,0,0,0,120,199,509,89,126,515,4,10,14,29,22,52,26,11,2,0,3,0,0,0,0,0,1653,105,2075,0,3,37,30,10,712,1191,55,107,533,299,118,38,77,3,653,7,2,2545,2277,60,656,53,633,65,0,261,2,124,151,23,2155,100,0,0,3128,589,0,9,14,89,1,3,0,0,6,27,29,28,40,100,638,232,178,480,3515,272,154,131,148,101,117,106,120,29,18,5,4,1,1,100,103.0,88.0,91.0,96.0,121.0,106.0,96.0,84.0,107.0,97.0,118.0,92.0,94.0,100.0,92.0,108.0,88.0,85.0,79.0,96.0,97.0,109.0,114.0,95.0,87.0,79.0,97.0,82.0,81.0,73.0,71.0,63.0,64.0,63.0,65.0,66.0,42.0,63.0,51.0,59.0,59.0,53.0,43.0,56.0,50.0,54.0,43.0,66.0,32.0,58.0,43.0,38.0,33.0,32.0,36.0,31.0,27.0,33.0,41.0,40.0,21.0,30.0,29.0,24.0,34.0,30.0,18.0,21.0,24.0,27.0,17.0,16.0,27.0,8.0,19.0,12.0,14.0,16.0,16.0,11.0,7.0,6.0,12.0,11.0,13.0,5.0,7.0,3.0,2.0,3.0,1.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1485,2983,354,0,499,490,496,456,502,412,326,281,261,253,182,172,138,120,87,69,49,20,9,0,0,0,4789,7,5,21,0,4789,7,5,21,0,1605,14,82,493,77,1,1066,1484,0,2861,1954,7,0,0,50,3,1,1,0,0,0,0,52,4715,0,8,730,192,8,12,1,1172,2699,0,443,498,11,1,0,3869,0,2.605099150141643,0.0,3.7796901893287433,0.0,6.012650352550809,1,172,65,2,5,1,322,670,0,308,93,96,96,132,112,82,75,122,35,32,13,15,4,1,22,1076,162,496,742,548,690,160,1078,430,808,15,1223,445,793,34,1204,942,296,528,710,459,69,78,1160,453,785,178,1060,705,533,769,469,10,1228,141,836,238,23,2,1039,199,0,0,11,0,1,0,0,0,0,0,11,1215,0,2.052419354838709,1.836290322580645,0.0,1.088235294117647,1.088235294117647,47.29967689822294 +PA030402,20403,Coclé,Natá,El Caño,1567,6,0,0,0,0,0,0,1,0,0,0,1,0,0,5,793,275,49,1046,27,2,0,0,47,0,1039,0,0,18,0,5,54,0,6,547,21,517,9,22,0,6,1082,25,2,0,0,13,1122,3,215,70,18,103,42,0,12,21,1039,47,2,1,1083,0,12,26,0,1,0,1118,1,3,0,0,0,0,325,772,0,25,0,0,368,716,5,4,0,10,0,0,0,3,10,6,0,1575,5.963269054178145,11.917355371900827,6.2387511478420565,14.439853076216712,1.0204991087344029,3.575757575757576,2.2816399286987523,1146,576,1136,66,279,33,68,46,7,46,9,8,20,0,76,22,16,19,37,36,20,2567,721,1,702,2586,1,1564,1724,1,3023,265,1,898,2391,0,800,98,2263,127,1,133,47,44,8,79,108,152,117,86,744,1,2,3,97,155,279,90,103,578,7,19,33,60,83,67,110,58,7,1,16,0,0,1,0,1,1019,97,1874,1,10,25,31,278,560,895,72,69,666,57,179,37,44,0,117,1,6,1722,1718,212,500,49,265,52,2,21,6,6,208,23,1219,30,0,0,1945,736,3,13,67,206,6,14,0,1,6,37,97,73,68,175,195,128,111,226,1881,313,129,177,277,190,193,97,90,31,23,3,1,3,2,30,29.0,36.0,38.0,48.0,35.0,55.0,42.0,56.0,57.0,53.0,52.0,62.0,45.0,63.0,45.0,62.0,57.0,44.0,50.0,56.0,40.0,62.0,45.0,61.0,49.0,47.0,38.0,44.0,31.0,41.0,40.0,33.0,41.0,30.0,36.0,51.0,37.0,39.0,57.0,45.0,48.0,33.0,34.0,29.0,42.0,34.0,45.0,44.0,50.0,45.0,41.0,39.0,35.0,52.0,58.0,43.0,42.0,38.0,41.0,34.0,46.0,39.0,29.0,48.0,28.0,46.0,27.0,28.0,35.0,32.0,28.0,31.0,28.0,26.0,24.0,26.0,23.0,18.0,23.0,16.0,25.0,20.0,19.0,13.0,14.0,11.0,11.0,7.0,6.0,6.0,4.0,3.0,4.0,1.0,4.0,1.0,4.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,716,2153,571,0,186,263,267,269,257,201,180,229,186,218,225,198,190,168,137,106,91,41,16,9,3,0,3414,11,12,2,1,3414,12,11,2,1,891,18,36,476,137,12,1153,716,1,2272,1156,11,1,15,28,0,0,0,0,1,0,0,9,3386,1,122,143,405,31,7,6,479,2246,1,587,1074,243,43,3,1489,1,2.264705882352941,0.0,3.175662414131501,0.0,7.823255813953488,32,45,150,20,5,3,167,724,0,159,100,39,106,152,133,127,91,107,60,37,11,13,3,2,5,1125,21,967,179,870,276,156,990,928,218,185,961,620,526,86,1060,991,155,937,209,488,449,251,895,520,626,372,774,246,900,341,805,3,1143,266,581,280,19,1,758,388,0,1,9,0,0,0,0,1,0,0,3,1132,0,1.5013077593722757,1.4978204010462075,1.0,1.1176470588235294,1.1176470588235294,56.48342059336824 +PA030403,20404,Coclé,Natá,Guzmán,479,3,0,0,0,0,0,0,0,0,0,0,1,0,0,2,54,239,24,279,16,2,0,0,22,0,57,0,11,117,1,1,131,0,1,0,0,295,2,21,0,1,269,40,0,0,0,10,319,0,125,12,0,6,20,0,0,3,316,0,0,0,285,7,8,11,1,7,0,318,0,0,0,0,1,0,13,285,0,21,0,0,0,216,64,2,2,27,0,4,0,0,3,1,0,483,5.546428571428572,16.485714285714284,6.921428571428572,23.692857142857143,1.0031347962382444,3.0689655172413794,1.9310344827586208,321,145,350,22,90,6,8,11,1,11,0,3,10,0,11,13,6,0,1,8,21,478,439,0,17,900,0,212,705,0,781,136,0,214,703,0,210,4,611,92,0,93,7,18,2,43,51,60,40,50,272,0,1,0,30,28,79,23,20,81,0,2,2,1,3,4,2,5,0,0,0,0,0,0,0,0,146,11,641,0,1,1,2,20,126,457,25,13,100,5,29,9,1,0,10,0,2,508,470,18,91,11,32,1,0,1,2,22,85,11,519,0,0,0,697,88,0,1,2,10,0,0,0,0,2,3,2,2,8,29,28,27,8,48,719,94,16,41,37,31,25,7,7,0,1,0,0,0,0,0,9.0,20.0,21.0,11.0,15.0,19.0,27.0,28.0,14.0,16.0,19.0,21.0,11.0,18.0,12.0,19.0,15.0,20.0,15.0,12.0,13.0,16.0,15.0,20.0,13.0,17.0,13.0,17.0,13.0,15.0,20.0,16.0,11.0,12.0,10.0,11.0,15.0,10.0,10.0,13.0,10.0,9.0,8.0,14.0,7.0,8.0,8.0,9.0,5.0,10.0,9.0,8.0,12.0,4.0,8.0,15.0,11.0,10.0,8.0,12.0,9.0,4.0,14.0,9.0,6.0,3.0,8.0,11.0,2.0,6.0,8.0,4.0,6.0,7.0,4.0,6.0,4.0,10.0,5.0,6.0,2.0,4.0,7.0,3.0,2.0,2.0,2.0,4.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,261,588,129,0,76,104,81,81,77,75,69,59,48,40,41,56,42,30,29,31,18,11,7,2,1,0,976,2,0,0,0,976,2,0,0,0,310,4,10,49,49,1,294,261,0,651,326,1,0,0,0,5,0,0,0,0,0,0,9,964,0,0,0,20,0,1,0,41,916,0,88,198,17,3,0,672,0,3.028720626631854,0.0,3.977941176470588,0.0,5.360940695296524,0,0,9,0,1,0,17,294,0,106,51,11,38,36,29,24,10,13,1,1,0,0,0,0,0,299,22,45,276,74,247,22,299,48,273,0,321,118,203,0,321,167,154,76,245,61,15,6,315,65,256,23,298,219,102,177,144,0,321,90,149,76,6,0,226,95,0,0,0,1,0,0,0,0,0,0,1,319,0,1.5825545171339563,1.4641744548286604,1.0,1.0,1.0,53.45794392523364 +PA030404,20405,Coclé,Natá,Las Huacas,612,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,65,319,28,368,18,16,0,0,12,0,160,0,7,79,2,0,152,0,14,0,2,388,15,7,0,2,241,170,0,0,0,3,414,0,122,29,4,25,25,0,0,1,402,10,1,0,310,35,9,42,1,17,0,414,0,0,0,0,0,0,17,270,0,124,3,0,0,222,16,8,3,134,0,29,0,0,0,2,0,619,6.361344537815126,22.138655462184875,6.445378151260504,23.676470588235293,1.0072463768115942,3.1714975845410627,1.9565217391304348,417,227,716,9,130,20,24,12,5,11,5,2,3,0,17,7,5,7,6,0,8,647,802,0,33,1416,0,296,1153,0,1170,279,0,444,1005,0,419,25,799,206,0,208,13,26,15,44,84,105,76,84,297,0,0,0,45,51,137,43,44,139,2,3,7,5,4,8,5,4,0,0,0,0,0,0,0,0,511,41,723,0,5,12,9,13,294,345,21,50,77,40,22,23,15,0,359,0,0,847,734,22,79,24,334,3,0,74,0,81,110,14,524,56,0,0,1098,159,0,2,3,13,0,0,0,0,2,5,10,4,6,37,368,21,17,82,1238,96,61,37,46,23,13,5,3,1,2,0,0,0,0,56,37.0,25.0,35.0,35.0,32.0,19.0,29.0,31.0,30.0,33.0,40.0,43.0,26.0,33.0,36.0,36.0,44.0,36.0,26.0,36.0,29.0,42.0,21.0,29.0,32.0,17.0,17.0,27.0,20.0,10.0,21.0,17.0,14.0,15.0,13.0,15.0,24.0,10.0,15.0,17.0,21.0,13.0,18.0,20.0,14.0,17.0,20.0,22.0,18.0,13.0,15.0,13.0,11.0,12.0,10.0,9.0,16.0,10.0,14.0,12.0,9.0,13.0,10.0,12.0,8.0,16.0,11.0,11.0,9.0,11.0,14.0,7.0,10.0,7.0,9.0,12.0,6.0,7.0,2.0,2.0,7.0,3.0,5.0,1.0,3.0,0.0,1.0,2.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,484,933,164,0,164,142,178,178,153,91,80,81,86,90,61,61,52,58,47,29,19,8,1,2,0,0,1577,0,0,4,0,1577,0,0,4,0,496,1,33,57,33,0,477,484,0,1267,314,0,0,0,1,0,0,0,0,0,0,0,10,1570,0,4,1,10,1,0,4,41,1520,0,70,183,15,2,1,1310,0,3.0085616438356166,0.0,4.347258485639687,0.0,5.151802656546489,1,1,3,1,0,0,16,395,0,118,44,56,57,68,27,16,8,7,0,5,1,0,0,0,10,358,59,107,310,144,273,48,369,71,346,1,416,109,308,0,417,129,288,143,274,72,71,12,405,30,387,28,389,322,95,228,189,3,414,97,202,115,3,0,300,117,0,0,0,0,0,0,0,0,0,0,0,417,0,2.031175059952038,1.7601918465227815,1.0,1.0434782608695652,1.0434782608695652,51.65707434052758 +PA030406,20406,Coclé,Natá,Toza,1030,2,0,0,0,0,0,0,1,0,0,0,0,0,0,1,452,279,33,711,21,2,0,0,31,0,643,0,0,50,3,0,60,0,9,274,11,425,35,19,0,1,697,46,0,0,0,22,765,0,118,80,5,48,16,0,0,10,732,22,1,0,713,3,10,32,0,7,0,765,0,0,0,0,0,0,143,593,0,29,0,0,0,695,46,9,0,5,0,1,0,1,8,0,0,1033,4.659919028340081,9.986504723346828,5.219973009446694,12.554655870445345,1.015686274509804,3.3816993464052287,1.9973856209150327,777,444,831,55,190,16,28,7,12,41,8,3,25,0,47,13,4,13,24,14,15,1673,616,0,292,1997,0,562,1727,0,2054,235,0,645,1644,0,592,53,1515,129,0,137,43,44,12,62,99,111,78,80,629,0,0,3,66,104,152,65,78,285,0,1,16,58,48,67,29,8,2,2,10,0,0,0,0,0,750,117,1171,0,5,47,25,139,390,546,52,44,439,54,74,34,160,1,76,2,0,1235,1202,130,368,35,292,4,8,2,1,18,107,22,975,7,0,0,1509,354,3,5,63,94,2,8,0,0,1,22,48,36,35,129,65,143,81,307,1423,200,94,122,187,137,150,54,34,23,6,0,0,0,0,7,36.0,41.0,42.0,29.0,36.0,49.0,43.0,37.0,43.0,43.0,40.0,45.0,30.0,37.0,44.0,41.0,52.0,38.0,32.0,45.0,35.0,38.0,40.0,43.0,33.0,44.0,39.0,37.0,29.0,29.0,38.0,29.0,40.0,22.0,29.0,28.0,25.0,40.0,29.0,35.0,41.0,28.0,26.0,21.0,34.0,24.0,16.0,34.0,29.0,20.0,42.0,25.0,33.0,31.0,35.0,26.0,25.0,22.0,29.0,23.0,25.0,22.0,26.0,13.0,16.0,21.0,14.0,19.0,16.0,14.0,22.0,12.0,18.0,20.0,14.0,13.0,10.0,16.0,11.0,7.0,12.0,6.0,5.0,7.0,9.0,1.0,3.0,4.0,2.0,2.0,1.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,595,1556,286,0,184,215,196,208,189,178,158,157,150,123,166,125,102,84,86,57,39,12,4,3,1,0,2429,2,5,1,0,2430,5,1,1,0,775,11,44,280,65,6,661,595,0,1689,743,5,0,1,4,0,0,0,0,1,0,0,18,2413,0,50,43,196,14,2,3,196,1933,0,416,764,143,14,0,1100,0,2.393541876892028,0.0,3.1912798874824198,0.0,6.743947476405417,15,16,75,6,2,0,72,591,0,103,66,35,74,125,102,103,53,64,21,12,10,7,2,0,0,754,23,594,183,586,191,80,697,598,179,133,644,413,364,37,740,641,136,581,196,180,401,132,645,194,583,204,573,270,507,244,533,10,767,176,402,189,10,1,536,241,0,0,1,0,0,0,0,1,0,0,6,769,0,1.5874035989717223,1.544987146529563,1.0,1.0285714285714285,1.0285714285714285,52.24839124839125 +,20407,Coclé,Natá,Villarreal,828,5,3,0,0,0,0,0,2,0,0,0,0,0,0,4,473,156,17,625,8,5,0,0,12,0,622,0,1,5,0,0,17,0,5,140,6,403,75,18,0,8,603,31,0,0,0,16,650,0,95,33,3,20,35,0,5,15,603,24,3,0,621,0,7,13,0,9,0,649,0,0,0,1,0,0,127,511,1,11,0,0,0,585,32,11,1,1,0,3,2,1,4,10,0,838,5.46677471636953,11.39870340356564,5.484602917341977,11.779578606158832,1.015384615384615,3.4123076923076923,2.116923076923077,660,377,658,53,140,25,22,23,8,21,3,6,25,0,56,18,4,8,22,25,15,1453,472,0,286,1639,0,962,963,0,1782,143,0,504,1421,0,467,37,1345,76,0,78,25,29,8,48,66,92,77,54,476,1,0,1,59,67,156,52,71,354,1,1,12,27,36,74,32,11,6,1,10,0,0,0,0,0,649,69,1031,0,4,25,10,158,298,516,42,17,392,57,109,51,45,2,51,4,0,1032,989,102,342,55,173,23,0,14,2,2,91,17,669,13,0,0,1183,409,1,8,31,104,6,7,0,0,2,28,30,40,28,147,23,145,67,208,1028,166,102,119,161,126,157,57,52,20,10,1,5,2,2,13,25.0,19.0,30.0,22.0,21.0,33.0,26.0,37.0,30.0,29.0,24.0,35.0,18.0,33.0,34.0,27.0,33.0,29.0,32.0,27.0,25.0,37.0,32.0,35.0,28.0,32.0,30.0,35.0,26.0,22.0,24.0,22.0,25.0,25.0,31.0,21.0,31.0,20.0,30.0,22.0,28.0,29.0,27.0,23.0,20.0,28.0,17.0,30.0,20.0,32.0,17.0,36.0,31.0,23.0,28.0,23.0,22.0,31.0,29.0,26.0,25.0,18.0,18.0,19.0,21.0,19.0,19.0,13.0,11.0,14.0,10.0,17.0,11.0,10.0,10.0,15.0,16.0,10.0,15.0,10.0,14.0,8.0,9.0,10.0,11.0,4.0,8.0,2.0,2.0,2.0,1.0,1.0,3.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,416,1322,283,0,117,155,144,148,157,145,127,124,127,127,135,131,101,76,58,66,52,18,10,2,1,0,2010,7,1,3,0,2011,7,0,3,0,635,5,29,245,86,7,598,416,0,1269,746,6,0,0,36,5,0,0,0,0,0,0,11,1969,0,29,22,99,5,2,1,91,1772,0,322,591,140,28,3,937,0,2.205574912891986,0.0,3.063973063973064,0.0,7.50519544779812,10,4,44,3,1,1,32,565,0,55,43,29,65,91,87,83,51,63,40,23,9,10,4,3,4,635,25,583,77,573,87,92,568,565,95,94,566,346,314,15,645,557,103,563,97,189,374,129,531,326,334,255,405,212,448,221,439,9,651,142,346,158,14,2,478,182,0,0,8,1,0,0,0,0,0,0,3,648,0,1.5589123867069483,1.4939577039274925,1.0,1.0526315789473684,1.0526315789473684,54.34242424242424 +PA030505,20501,Coclé,Olá,Olá,668,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,174,16,446,14,0,0,0,16,0,369,0,2,40,0,0,52,0,13,267,2,195,1,11,0,0,434,37,0,0,0,5,476,0,129,19,0,24,24,0,0,5,454,17,0,0,436,8,6,19,0,7,0,474,0,1,0,0,1,0,98,346,0,31,0,1,0,433,27,3,0,5,0,6,0,1,1,0,0,672,6.480434782608696,19.76086956521739,6.7043478260869565,22.85,1.012605042016807,3.588235294117647,2.149159663865546,482,242,498,17,142,9,25,11,5,29,1,7,4,0,19,12,4,0,18,3,7,1045,358,0,353,1050,0,524,879,0,1264,139,0,356,1047,0,325,31,939,108,0,111,7,14,0,44,60,71,56,44,337,0,1,0,33,56,117,27,41,210,4,10,22,23,27,23,17,35,5,0,8,0,0,0,0,0,467,53,769,0,1,16,27,72,226,390,32,49,285,21,43,19,24,0,118,0,0,782,690,111,187,19,179,3,0,11,0,21,131,6,463,3,0,0,904,269,0,13,31,61,4,7,0,0,0,12,39,21,33,102,136,65,26,86,851,157,41,63,100,88,69,42,33,11,10,3,1,0,0,3,14.0,19.0,18.0,18.0,18.0,11.0,19.0,21.0,23.0,22.0,33.0,18.0,23.0,14.0,23.0,23.0,21.0,17.0,25.0,20.0,33.0,18.0,24.0,18.0,23.0,19.0,16.0,21.0,28.0,21.0,20.0,23.0,29.0,15.0,23.0,15.0,14.0,18.0,14.0,14.0,17.0,15.0,26.0,13.0,13.0,18.0,14.0,22.0,14.0,22.0,19.0,19.0,14.0,20.0,23.0,19.0,18.0,15.0,17.0,15.0,19.0,21.0,15.0,17.0,12.0,13.0,17.0,14.0,17.0,4.0,14.0,14.0,9.0,10.0,6.0,11.0,11.0,7.0,7.0,8.0,11.0,4.0,11.0,3.0,10.0,3.0,4.0,3.0,3.0,2.0,2.0,3.0,0.0,3.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,294,949,229,0,87,96,111,106,116,105,110,75,84,90,95,84,84,65,53,44,39,15,9,3,1,0,1462,3,6,1,0,1462,3,6,1,0,444,12,22,158,51,3,488,294,0,688,779,5,0,2,3,0,0,0,0,0,0,0,12,1455,0,19,13,244,7,0,1,599,589,0,247,404,74,9,0,738,0,2.5476973684210527,0.0,3.4013921113689096,0.0,7.181385869565218,7,7,99,1,0,0,188,180,0,80,54,26,41,53,66,44,29,43,16,14,6,5,4,1,0,465,17,344,138,331,151,76,406,321,161,34,448,230,252,35,447,406,76,312,170,113,199,94,388,140,342,106,376,203,279,163,319,1,481,108,241,129,4,0,301,181,0,1,2,0,0,0,0,0,0,0,5,474,0,1.6224066390041494,1.4315352697095436,1.0,1.0,1.0,55.96265560165975 +PA030501,20502,Coclé,Olá,El Copé,616,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,113,289,18,399,4,0,0,0,18,0,228,0,0,58,0,0,127,0,8,94,0,309,2,16,0,0,300,112,0,0,0,9,421,0,120,40,0,17,26,0,0,1,411,9,0,0,339,13,0,50,0,19,0,421,0,0,0,0,0,0,12,345,0,63,1,0,0,349,23,0,0,5,0,10,0,0,29,5,0,624,5.17741935483871,14.236559139784946,6.129032258064516,17.309139784946236,1.002375296912114,3.2209026128266034,2.040380047505938,422,233,659,17,116,8,9,12,4,14,1,5,3,0,17,10,0,3,7,3,2,846,561,0,185,1222,0,467,940,0,1204,203,0,429,978,0,417,12,825,153,0,154,24,22,4,63,77,110,67,81,318,0,0,0,36,50,94,30,42,182,1,0,2,4,22,6,5,13,0,0,0,0,0,0,0,0,451,29,746,0,2,7,15,12,257,446,22,9,164,49,25,39,10,0,186,1,0,800,703,57,140,40,212,11,0,14,0,26,128,8,464,0,0,0,991,195,0,1,16,23,0,0,0,0,0,10,8,7,10,65,210,41,18,111,1075,156,33,53,74,49,31,22,6,2,2,0,0,0,0,0,26.0,20.0,28.0,22.0,34.0,27.0,22.0,30.0,27.0,41.0,34.0,43.0,22.0,29.0,28.0,26.0,30.0,27.0,21.0,31.0,25.0,27.0,34.0,23.0,29.0,18.0,29.0,20.0,22.0,28.0,24.0,19.0,23.0,18.0,21.0,16.0,11.0,14.0,15.0,20.0,21.0,16.0,18.0,14.0,9.0,10.0,19.0,14.0,12.0,15.0,15.0,12.0,15.0,15.0,14.0,5.0,7.0,13.0,17.0,9.0,14.0,11.0,10.0,8.0,10.0,11.0,8.0,10.0,7.0,9.0,7.0,7.0,15.0,6.0,10.0,9.0,8.0,8.0,9.0,9.0,3.0,7.0,4.0,5.0,4.0,5.0,5.0,2.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,433,894,176,0,130,147,156,135,138,117,105,76,78,70,71,51,53,45,45,43,23,15,4,1,0,0,1501,0,0,2,0,1501,0,0,2,0,462,1,4,116,28,1,458,433,0,1087,416,0,0,0,0,0,0,0,0,0,0,0,15,1488,0,3,3,184,3,0,0,318,992,0,168,306,12,1,0,1016,0,2.8700173310225305,0.0,4.186486486486486,0.0,5.5968063872255485,0,1,54,1,0,0,96,270,0,94,62,34,51,56,35,34,19,25,7,3,2,0,0,0,0,378,44,185,237,196,226,59,363,147,275,2,420,122,300,2,420,269,153,171,251,150,21,17,405,100,322,44,378,263,159,237,185,4,418,93,214,113,2,0,273,149,0,0,0,0,0,0,0,0,0,0,3,419,0,1.895734597156398,1.6658767772511849,0.0,1.0,1.0,52.84123222748815 +PA030502,20503,Coclé,Olá,El Palmar,778,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,283,3,403,12,1,0,0,2,0,12,0,15,175,1,7,208,0,0,1,1,353,21,37,3,2,178,239,0,0,0,1,418,0,222,45,0,45,56,0,0,1,407,10,0,0,222,127,7,60,1,1,0,416,0,0,0,2,0,0,9,290,2,93,24,0,0,295,101,0,0,20,1,1,0,0,0,0,0,786,6.916666666666667,23.893939393939394,6.96969696969697,23.904040404040405,1.0,3.2464114832535884,2.098086124401914,418,235,421,41,103,13,13,6,1,23,2,2,18,0,31,16,6,2,4,3,35,623,584,0,59,1148,0,340,867,0,1031,176,0,284,923,0,279,5,798,125,0,132,10,25,0,26,77,103,54,75,338,0,0,0,43,41,118,21,29,72,5,0,2,4,8,8,6,8,1,0,1,0,0,0,0,0,554,3,530,0,2,1,0,23,173,266,39,29,49,13,20,23,18,21,413,0,0,685,611,25,47,23,434,7,0,21,0,59,127,11,192,26,0,0,972,88,0,0,1,24,1,1,0,0,0,9,10,1,6,44,383,26,15,63,659,194,82,133,103,42,29,8,10,4,4,1,1,0,0,26,20.0,16.0,26.0,27.0,17.0,23.0,26.0,20.0,11.0,23.0,26.0,32.0,20.0,25.0,23.0,25.0,22.0,13.0,23.0,11.0,21.0,16.0,21.0,17.0,20.0,20.0,14.0,18.0,10.0,18.0,13.0,14.0,12.0,10.0,17.0,17.0,11.0,12.0,18.0,14.0,15.0,11.0,13.0,4.0,15.0,12.0,10.0,13.0,9.0,12.0,10.0,15.0,9.0,14.0,13.0,18.0,16.0,16.0,8.0,14.0,15.0,21.0,18.0,23.0,13.0,19.0,12.0,18.0,19.0,13.0,14.0,7.0,7.0,10.0,8.0,8.0,8.0,8.0,5.0,7.0,5.0,6.0,3.0,5.0,4.0,7.0,3.0,5.0,4.0,1.0,3.0,2.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,335,744,217,0,106,103,126,94,95,80,66,72,58,56,61,72,90,81,46,36,23,20,8,2,1,0,1289,0,0,7,0,1289,0,0,7,0,485,2,87,82,60,5,240,335,0,744,552,0,0,0,1,1,2,1,0,0,0,0,3,1288,0,1,10,155,2,4,0,343,781,0,38,150,27,4,1,1076,0,3.036,0.0,3.9273743016759775,0.0,5.302469135802469,1,5,51,1,2,0,99,259,0,18,39,35,67,95,68,36,18,23,5,3,4,4,0,0,3,371,47,18,400,65,353,44,374,7,411,2,416,292,126,6,412,198,220,86,332,59,27,4,414,20,398,37,381,372,46,340,78,4,414,101,204,103,10,0,332,86,0,0,1,0,1,0,0,0,0,0,1,415,0,1.638755980861244,1.4617224880382775,1.0,1.0384615384615383,1.0384615384615383,56.645933014354064 +PA030503,20504,Coclé,Olá,El Picacho,200,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,71,11,117,6,1,0,0,10,0,83,0,1,18,2,1,24,0,5,56,1,65,6,6,0,0,116,16,0,0,0,2,134,0,42,10,0,7,14,0,0,0,126,8,0,0,123,3,3,4,0,1,0,134,0,0,0,0,0,0,18,110,0,5,1,0,0,120,11,1,0,0,0,1,0,0,1,0,0,207,6.877862595419847,22.251908396946565,6.969465648854962,23.53435114503817,1.0149253731343284,3.283582089552239,1.7611940298507462,136,63,93,14,20,2,4,5,1,4,1,0,2,1,7,0,1,2,5,0,1,233,103,0,48,288,0,90,246,0,304,32,0,71,265,0,69,2,238,27,0,29,5,4,0,10,12,21,13,18,105,0,0,0,15,4,24,8,10,37,0,0,2,5,5,4,2,3,0,0,0,0,0,0,0,0,127,4,168,0,0,1,1,18,36,98,11,5,58,11,7,13,5,0,36,0,0,201,145,13,50,9,52,3,0,3,0,5,32,6,91,2,0,0,241,42,0,3,6,7,0,0,0,0,0,6,2,4,2,16,45,21,6,29,198,38,12,21,32,17,16,5,4,1,0,0,0,0,0,2,3.0,1.0,0.0,6.0,7.0,5.0,6.0,6.0,8.0,5.0,4.0,6.0,3.0,5.0,4.0,4.0,2.0,3.0,4.0,4.0,8.0,5.0,3.0,2.0,5.0,4.0,6.0,3.0,4.0,5.0,4.0,6.0,8.0,7.0,1.0,5.0,2.0,4.0,6.0,5.0,7.0,9.0,4.0,5.0,4.0,4.0,1.0,2.0,1.0,4.0,5.0,4.0,5.0,2.0,4.0,4.0,2.0,6.0,6.0,6.0,4.0,5.0,6.0,2.0,5.0,3.0,5.0,6.0,1.0,4.0,5.0,1.0,3.0,3.0,2.0,2.0,0.0,2.0,6.0,2.0,0.0,2.0,1.0,1.0,3.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,69,217,60,0,17,30,22,17,23,22,26,22,29,12,20,24,22,19,14,12,7,6,1,1,0,0,345,1,0,0,0,345,1,0,0,0,108,1,3,46,9,1,109,69,0,186,159,1,0,1,0,1,0,0,0,0,0,0,3,341,0,1,10,103,0,0,0,120,112,0,47,80,19,1,0,199,0,3.0,0.0,3.5416666666666665,0.0,6.297687861271676,0,5,46,0,0,0,39,46,0,23,19,10,12,25,18,13,4,8,2,1,1,0,0,0,0,126,10,72,64,69,67,23,113,70,66,7,129,36,100,1,135,106,30,74,62,12,62,16,120,55,81,37,99,76,60,60,76,4,132,48,61,24,3,0,108,28,0,0,0,0,0,0,0,0,0,0,1,135,0,1.4779411764705883,1.0661764705882353,0.0,1.0,1.0,55.14705882352941 +PA030504,20505,Coclé,Olá,La Pava,747,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,273,250,17,510,15,1,0,0,16,0,396,0,1,30,0,0,114,0,1,214,0,319,0,6,0,3,486,44,0,0,0,12,542,0,132,31,2,23,17,0,0,3,524,13,2,0,483,8,5,37,0,9,0,539,0,1,0,0,2,0,67,429,0,44,2,0,0,502,16,0,0,16,0,1,0,1,6,0,0,754,6.926640926640927,15.077220077220078,6.986486486486487,16.95173745173745,1.0166051660516606,3.234317343173432,2.162361623616236,551,296,543,50,125,21,12,8,5,28,3,4,36,1,53,11,7,10,24,57,13,1091,519,0,155,1455,0,692,918,0,1365,245,0,381,1229,0,346,35,1055,174,0,174,15,17,7,54,72,70,70,69,392,0,1,9,36,53,120,37,49,225,2,1,29,24,24,15,21,12,8,2,2,0,0,0,0,0,463,48,954,0,1,27,3,84,241,564,50,15,275,44,69,34,14,1,57,1,1,872,811,59,262,39,123,3,0,8,2,15,118,20,683,7,0,0,1091,298,9,2,16,43,4,2,0,0,2,8,14,20,15,71,87,59,37,198,1024,164,52,73,122,91,93,31,16,5,4,1,0,0,0,7,24.0,16.0,15.0,18.0,20.0,23.0,18.0,28.0,31.0,25.0,21.0,30.0,23.0,16.0,27.0,26.0,28.0,24.0,33.0,38.0,33.0,28.0,31.0,27.0,26.0,28.0,25.0,22.0,24.0,19.0,28.0,25.0,29.0,14.0,19.0,21.0,19.0,20.0,23.0,21.0,19.0,20.0,25.0,23.0,20.0,25.0,31.0,21.0,25.0,28.0,21.0,14.0,24.0,16.0,13.0,18.0,17.0,20.0,11.0,12.0,16.0,11.0,16.0,14.0,19.0,20.0,10.0,12.0,14.0,13.0,20.0,12.0,16.0,9.0,14.0,13.0,8.0,9.0,10.0,9.0,4.0,2.0,6.0,2.0,5.0,5.0,7.0,3.0,1.0,3.0,1.0,1.0,2.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,335,1110,238,0,93,125,117,149,145,118,115,104,107,130,88,78,76,69,71,49,19,19,6,3,2,0,1679,3,1,0,0,1679,3,1,0,0,549,0,12,160,54,4,569,335,0,800,881,2,0,1,2,0,0,0,0,0,0,0,9,1671,0,25,10,99,0,2,0,511,1036,0,257,422,64,21,1,918,0,2.3617021276595747,0.0,3.291060291060291,0.0,6.532976827094474,8,3,37,0,1,0,178,324,0,105,65,25,45,69,72,59,41,41,14,6,1,3,1,0,4,526,25,350,201,313,238,77,474,350,201,17,534,254,297,6,545,399,152,323,228,175,148,80,471,134,417,109,442,217,334,142,409,2,549,122,294,126,9,7,375,176,0,0,1,0,0,0,0,0,0,0,4,546,0,1.5627240143369177,1.4534050179211468,1.0,1.0476190476190477,1.0476190476190477,53.50635208711434 +PA030606,20601,Coclé,Penonomé,Penonomé,9092,8,681,99,0,2,15,2,5,0,0,10,9,0,0,3847,3402,261,37,7296,214,0,0,0,37,0,7437,0,11,68,2,4,25,0,0,7103,62,304,21,36,2,19,7418,39,62,0,0,28,7547,5,1035,245,477,459,112,0,2062,1266,3955,239,24,1,7454,16,30,15,2,30,0,6476,93,961,8,6,0,3,5639,1879,1,24,3,1,7098,264,55,2,1,5,0,0,0,100,16,6,8562,1361,6.732371578805447,21.41364433059188,6.715653229068357,21.32587299447216,1.016562872664635,3.9014177819000926,2.5109314959586597,7690,4259,8934,404,1819,342,332,286,124,452,81,105,923,85,383,148,83,150,122,184,122,21671,3045,0,12358,12358,0,19552,5164,0,23620,1096,0,7693,17023,0,5715,1978,16572,451,0,489,342,363,46,428,466,664,532,512,2386,3,7,90,633,830,1778,628,1022,4824,21,263,440,754,1015,1907,1757,1212,360,65,798,0,8,6,67,0,11104,977,10346,0,55,296,116,2030,4508,2529,269,1010,8423,715,1213,425,905,35,156,15,18,12650,13186,3382,4690,466,2865,369,7,94,32,22,436,67,6449,300,0,0,8820,6885,102,339,670,4529,272,738,72,0,42,1083,2446,1158,790,2429,192,1306,833,1802,10980,1280,781,1130,1613,1916,2292,1368,1804,1064,601,229,212,109,157,300,258.0,258.0,283.0,321.0,367.0,370.0,386.0,381.0,391.0,394.0,432.0,403.0,373.0,362.0,397.0,354.0,407.0,353.0,407.0,399.0,410.0,408.0,441.0,411.0,450.0,455.0,467.0,440.0,360.0,385.0,375.0,380.0,396.0,379.0,391.0,335.0,380.0,384.0,360.0,339.0,404.0,369.0,371.0,359.0,324.0,357.0,329.0,363.0,303.0,312.0,339.0,341.0,342.0,299.0,315.0,272.0,301.0,299.0,262.0,268.0,257.0,244.0,245.0,200.0,210.0,223.0,176.0,184.0,174.0,160.0,162.0,147.0,143.0,133.0,125.0,129.0,110.0,103.0,95.0,91.0,81.0,72.0,80.0,69.0,63.0,59.0,45.0,41.0,49.0,38.0,18.0,25.0,17.0,23.0,23.0,11.0,15.0,9.0,7.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5376,17551,2909,0,1487,1922,1967,1920,2120,2107,1921,1798,1827,1664,1636,1402,1156,917,710,528,365,232,106,45,6,0,24558,718,541,19,0,24581,837,399,19,0,5458,269,762,5037,775,295,7868,5372,0,8346,16930,560,0,59,143,17,3,0,0,19,1,2,416,25176,0,1276,993,1228,171,72,72,5039,16985,0,6715,6573,2183,138,45,10182,0,1.7051415667882577,0.0,2.548865153538051,0.0,10.418563245084378,428,330,442,69,29,33,1652,4707,0,212,117,121,263,470,649,775,589,1297,916,703,439,498,257,321,45,7643,47,7313,377,6848,842,1517,6173,6826,864,2761,4929,3907,3783,2117,5573,7413,277,7050,640,5949,1101,4347,3343,6331,1359,4106,3584,1190,6500,957,6733,109,7581,1243,4250,1956,241,25,4585,3105,0,14,44,3,2,0,0,6,0,1,121,7499,0,1.6396629941672067,1.7091380427738172,1.1724137931034482,1.0301204819277108,1.0301204819277108,52.01391417425228 +PA030601,20602,Coclé,Penonomé,Cañaveral,3730,42,3,6,0,0,0,0,3,0,0,0,2,0,0,122,1943,485,74,2342,208,1,0,0,73,0,2448,0,3,57,7,11,57,0,41,1913,54,551,34,53,1,18,2471,104,11,2,0,36,2624,0,570,223,153,169,42,0,115,142,2264,94,5,4,2471,38,43,46,1,25,0,2578,2,43,0,0,1,0,1033,1529,0,59,2,1,945,1482,115,12,4,5,0,1,0,7,53,0,1165,2621,6.129032258064516,18.47678992918961,6.426042486231314,19.904799370574352,1.0209603658536586,3.5701219512195124,2.348704268292683,2681,1542,3434,179,821,103,136,113,31,167,40,27,47,3,153,66,42,82,37,86,85,7280,1522,0,2438,6364,0,5839,2963,0,8223,579,0,2666,6136,0,2406,260,5896,240,0,260,114,147,33,204,241,347,226,267,1604,4,6,16,251,362,748,264,417,1569,5,46,190,228,295,340,329,106,99,8,74,0,0,1,1,0,3632,364,3842,0,6,154,43,484,1555,1361,218,224,2120,342,676,194,404,36,149,17,1,4642,4682,648,1515,206,1464,51,0,54,1,38,427,59,2506,10,0,0,4526,2237,16,58,165,693,68,74,1,0,2,148,336,250,232,873,161,816,288,890,4727,785,372,463,634,646,748,320,347,156,65,24,16,2,9,10,130.0,122.0,138.0,132.0,154.0,150.0,153.0,157.0,187.0,163.0,155.0,178.0,131.0,157.0,139.0,156.0,149.0,154.0,134.0,150.0,142.0,148.0,196.0,161.0,156.0,161.0,171.0,150.0,155.0,157.0,124.0,115.0,126.0,127.0,109.0,116.0,116.0,120.0,123.0,119.0,115.0,107.0,106.0,112.0,98.0,118.0,101.0,120.0,117.0,94.0,103.0,90.0,110.0,96.0,133.0,103.0,94.0,109.0,70.0,92.0,85.0,73.0,80.0,67.0,68.0,47.0,59.0,80.0,55.0,64.0,59.0,49.0,60.0,58.0,41.0,52.0,38.0,40.0,50.0,47.0,45.0,17.0,31.0,21.0,29.0,21.0,19.0,16.0,12.0,14.0,4.0,12.0,9.0,5.0,7.0,4.0,6.0,3.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2246,5996,1082,0,676,810,760,743,803,794,601,594,538,550,532,468,373,305,267,227,143,82,37,20,1,0,9210,63,36,15,0,9212,66,31,15,0,2577,69,758,1259,265,32,2120,2244,0,4949,4333,42,0,60,76,5,1,1,0,4,0,0,185,8992,0,274,459,937,55,70,29,3003,4497,0,1614,2256,483,59,12,4900,0,2.1324015247776367,0.0,3.033980582524272,0.0,8.423745173745173,86,149,303,21,28,10,921,1163,0,122,124,104,187,309,334,315,212,443,223,129,64,62,27,23,1,2600,81,2335,346,2124,557,443,2238,2241,440,349,2332,1288,1393,328,2353,2491,190,2236,445,1622,614,872,1809,1837,844,875,1806,735,1946,759,1922,45,2636,419,1382,841,39,3,1662,1019,0,15,18,0,0,1,0,1,0,0,53,2593,0,1.7295081967213115,1.7444113263785397,1.0,1.0234375,1.0234375,52.33233867959717 +PA030603,20603,Coclé,Penonomé,Coclé,2518,12,0,0,0,0,0,0,0,0,0,0,0,0,0,257,1117,293,55,1600,67,2,0,0,53,0,1672,0,1,22,0,7,13,0,7,1543,20,140,4,14,0,1,1668,27,6,0,0,21,1722,1,333,95,133,199,47,0,255,84,1340,41,1,1,1675,8,6,17,2,14,0,1632,14,73,0,1,0,2,820,882,0,20,0,0,35,1473,188,15,0,1,0,0,0,5,5,0,1131,1399,6.756485849056604,15.94811320754717,6.912735849056604,17.85141509433962,1.0145180023228804,3.683507549361208,2.346689895470383,1747,1082,2198,125,343,33,61,47,19,80,17,10,42,7,75,36,20,54,21,41,13,4570,845,0,1517,3898,0,3854,1561,0,4998,417,0,1708,3707,0,1493,215,3552,155,0,163,107,104,16,148,143,221,141,169,1019,1,2,8,180,204,458,172,199,959,3,20,57,149,144,282,199,70,19,1,56,0,0,0,1,0,2089,159,2504,0,2,61,23,245,971,1051,61,176,1312,104,211,71,185,4,281,37,1,2906,2905,378,1166,77,532,40,2,9,2,32,173,33,2257,15,0,0,2783,1218,8,30,124,527,11,50,1,0,2,98,232,142,77,403,131,305,267,591,3302,383,179,257,323,349,357,221,227,98,40,24,23,3,10,15,94.0,98.0,99.0,105.0,106.0,119.0,96.0,131.0,118.0,93.0,113.0,90.0,104.0,95.0,83.0,98.0,123.0,66.0,82.0,80.0,88.0,85.0,82.0,86.0,116.0,87.0,130.0,101.0,104.0,118.0,110.0,102.0,109.0,84.0,96.0,85.0,82.0,94.0,69.0,68.0,86.0,74.0,58.0,65.0,51.0,67.0,53.0,66.0,48.0,71.0,57.0,69.0,51.0,76.0,50.0,59.0,61.0,59.0,54.0,54.0,49.0,39.0,30.0,41.0,41.0,30.0,30.0,23.0,27.0,33.0,39.0,13.0,28.0,18.0,21.0,21.0,20.0,17.0,18.0,11.0,21.0,18.0,17.0,11.0,10.0,8.0,15.0,11.0,5.0,4.0,5.0,5.0,1.0,1.0,2.0,3.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1544,3774,493,0,502,557,485,449,457,540,501,398,334,305,303,287,200,143,119,87,77,43,14,9,1,0,5673,96,37,5,0,5675,105,26,5,0,1684,40,462,793,161,19,1108,1544,0,3234,2525,52,0,8,26,2,0,0,0,2,0,0,42,5731,0,181,80,712,47,2,10,1752,3027,0,1151,1524,244,25,3,2864,0,2.071247892074199,0.0,2.9495327102803737,0.0,8.110308036482532,66,29,256,27,1,6,543,819,0,127,106,76,130,210,217,224,128,213,121,73,38,38,22,21,3,1714,33,1549,198,1461,286,260,1487,1545,202,347,1400,915,832,178,1569,1630,117,1523,224,826,697,543,1204,1292,455,768,979,202,1545,299,1448,25,1722,277,1050,377,43,0,1175,572,0,3,11,2,0,0,0,0,0,0,11,1720,0,1.663423010875787,1.6628506010303377,1.0,1.0307692307692309,1.0307692307692309,48.60961648540355 +PA030602,20604,Coclé,Penonomé,Chiguirí Arriba,2053,7,1,1,0,0,0,0,1,0,0,2,1,0,0,0,358,1267,87,1493,132,0,0,0,87,0,990,0,20,413,9,13,260,0,7,2,6,1471,15,194,4,20,1005,652,0,1,0,54,1712,0,224,53,4,47,22,0,0,8,1632,68,3,1,1166,449,31,16,25,25,0,1660,2,4,0,0,46,0,70,1242,1,386,12,1,0,1218,260,69,3,114,0,11,0,0,37,0,0,2066,6.321380243572395,19.484438430311236,6.860622462787551,23.13599458728011,1.0075934579439252,3.258761682242991,2.0957943925233646,1728,1053,2950,96,912,28,100,79,9,175,24,11,19,1,76,65,21,33,33,43,27,4366,2335,0,324,6377,0,1776,4925,0,6147,554,0,1831,4870,0,1802,29,4594,276,0,286,71,135,19,160,209,351,272,257,2537,0,0,0,156,186,702,162,200,847,1,6,12,19,37,40,23,7,1,0,5,0,0,0,0,0,3361,93,2451,0,2,45,16,28,901,1211,161,150,438,270,179,247,108,4,2184,5,5,3737,3448,75,538,244,1600,12,1,965,5,203,399,44,1373,805,0,0,4904,904,0,7,14,71,0,5,0,0,5,18,37,41,35,242,2030,320,83,643,4238,644,459,272,295,220,158,45,27,9,3,3,3,0,4,805,131.0,109.0,127.0,117.0,140.0,146.0,125.0,150.0,122.0,113.0,162.0,140.0,145.0,133.0,134.0,151.0,138.0,188.0,148.0,129.0,148.0,148.0,104.0,129.0,129.0,118.0,116.0,127.0,109.0,105.0,112.0,105.0,95.0,82.0,84.0,80.0,89.0,93.0,101.0,88.0,100.0,84.0,74.0,59.0,65.0,69.0,85.0,75.0,74.0,76.0,62.0,63.0,64.0,63.0,67.0,51.0,65.0,65.0,56.0,43.0,51.0,50.0,46.0,42.0,38.0,38.0,40.0,35.0,51.0,33.0,41.0,27.0,35.0,32.0,31.0,32.0,32.0,13.0,18.0,19.0,23.0,29.0,26.0,18.0,17.0,14.0,16.0,13.0,7.0,14.0,9.0,6.0,6.0,2.0,2.0,1.0,4.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1994,4503,688,0,624,656,714,754,658,575,478,451,382,379,319,280,227,197,166,114,113,64,25,5,4,0,7151,8,0,26,0,7151,8,0,26,0,2307,15,333,507,205,7,1817,1994,0,5270,1909,6,0,4,14,9,0,0,0,5,1,1,250,6901,0,12,576,197,1,4,1,3053,3341,0,315,777,41,11,2,6039,0,2.686907686907687,0.0,3.9808951965065504,0.0,6.187613082811413,4,159,52,0,1,0,738,774,0,260,110,197,251,297,221,137,73,102,36,16,6,3,1,4,11,1504,224,655,1073,534,1194,220,1508,320,1408,14,1714,715,1013,17,1711,1435,293,758,970,502,256,83,1645,397,1331,93,1635,1192,536,866,862,25,1703,256,877,576,19,1,1259,469,0,0,2,1,0,0,0,2,0,0,49,1674,0,2.1613649508386352,1.994216310005784,1.0,1.021978021978022,1.021978021978022,52.7019675925926 +PA030604,20605,Coclé,Penonomé,El Coco,4247,14,130,0,0,1,8,0,0,0,0,0,4,0,0,1375,1708,137,51,3194,26,0,1,0,50,0,3167,0,4,76,0,0,24,0,0,2191,63,854,33,112,0,18,3160,49,18,0,0,44,3271,0,458,219,183,224,36,0,1108,334,1719,103,6,1,3158,3,7,40,0,63,0,3023,8,231,4,0,0,5,2065,1172,0,34,0,0,946,2051,213,4,2,3,0,2,6,32,4,8,2395,2009,6.860436137071651,19.25264797507788,6.937383177570093,19.932710280373836,1.0171201467441149,3.602568022011617,2.2696423112198105,3331,1888,3841,379,619,97,166,138,36,154,65,34,301,15,128,48,29,74,49,72,56,9094,1273,0,3839,6528,0,8326,2041,0,9760,607,0,3495,6872,0,2954,541,6642,230,0,251,169,236,27,226,268,338,264,282,1422,2,1,16,299,446,843,293,414,2193,9,48,181,275,340,464,472,335,54,18,165,0,2,4,10,0,4868,305,3929,0,6,75,23,433,1893,1177,125,301,3354,314,458,211,662,14,104,20,2,5334,5730,912,2470,212,1454,70,0,19,2,37,202,40,2782,60,0,0,4509,2883,16,85,205,1186,43,164,11,0,3,255,536,399,297,1335,113,720,399,1116,4877,555,468,548,673,856,1301,530,635,290,118,45,52,20,36,60,174.0,148.0,187.0,188.0,215.0,200.0,226.0,208.0,205.0,211.0,191.0,188.0,182.0,182.0,181.0,191.0,162.0,160.0,178.0,161.0,180.0,149.0,194.0,178.0,169.0,207.0,203.0,231.0,217.0,203.0,230.0,202.0,237.0,215.0,235.0,182.0,179.0,183.0,188.0,182.0,161.0,142.0,121.0,129.0,124.0,116.0,130.0,115.0,110.0,128.0,108.0,107.0,106.0,105.0,96.0,89.0,93.0,98.0,84.0,68.0,84.0,74.0,75.0,86.0,66.0,60.0,53.0,58.0,41.0,58.0,38.0,34.0,29.0,30.0,23.0,32.0,22.0,26.0,31.0,14.0,18.0,18.0,19.0,14.0,23.0,19.0,20.0,13.0,10.0,6.0,10.0,5.0,5.0,5.0,3.0,2.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2886,7431,747,0,912,1050,924,852,870,1061,1119,914,677,599,522,432,385,270,154,125,92,68,28,7,3,0,10697,255,102,10,0,10699,265,90,10,0,3089,79,719,1391,255,51,2595,2885,0,4029,6894,141,0,43,106,18,1,2,0,30,8,0,224,10632,0,345,536,1082,110,34,17,4207,4733,0,2779,3079,455,51,16,4684,0,1.8030366933783213,0.0,2.6762149983907304,0.0,8.909074475777295,138,175,373,44,17,11,1282,1291,0,38,41,66,124,215,337,458,373,663,394,232,135,131,36,73,11,3272,59,3059,272,2847,484,495,2836,2981,350,860,2471,1948,1383,612,2719,3213,118,3041,290,1921,1120,1482,1849,2684,647,1453,1878,650,2681,703,2628,35,3296,548,1966,699,118,9,2109,1222,0,10,33,4,1,2,0,6,1,0,58,3216,0,1.597005988023952,1.715568862275449,1.2307692307692308,1.0813953488372092,1.0813953488372092,46.33743620534374 +,20613,Coclé,Penonomé,General Victoriano Lorenzo,3110,6,8,0,0,0,0,0,0,0,0,0,1,0,0,0,1494,791,84,2193,92,0,0,0,84,0,2130,0,1,101,20,10,80,0,27,393,27,1699,47,179,0,24,2135,200,0,2,0,32,2369,1,484,102,17,107,44,0,13,50,2199,103,4,0,2136,43,100,36,7,47,0,2340,1,17,1,2,7,1,561,1720,0,85,2,1,165,1858,215,10,1,84,0,0,0,8,26,2,0,3125,5.018766756032171,13.390974084003574,5.911081322609473,17.663985701519213,1.0173068805403125,3.4968341072182354,2.229210637399747,2411,1337,3170,134,834,86,132,99,18,186,20,28,34,7,137,123,33,54,70,293,77,6535,1535,0,1569,6501,0,4866,3204,0,7575,495,0,2299,5771,0,2148,151,5582,189,0,192,122,133,33,172,183,333,227,241,1848,0,2,3,236,319,749,199,324,1452,5,13,126,164,192,336,240,116,37,13,58,0,1,0,1,0,3022,371,3861,0,9,181,58,434,1393,1691,215,128,1616,238,670,242,275,18,216,2,5,4280,4216,459,1254,277,1173,38,0,76,5,44,449,46,2595,13,0,0,4494,1935,5,20,102,608,32,56,2,0,5,99,255,161,171,585,299,626,204,988,4637,783,324,439,614,536,536,215,213,87,50,18,16,4,11,13,92.0,105.0,122.0,107.0,124.0,124.0,147.0,140.0,130.0,151.0,142.0,143.0,127.0,156.0,136.0,123.0,149.0,136.0,115.0,139.0,138.0,139.0,146.0,146.0,124.0,151.0,145.0,162.0,125.0,125.0,96.0,115.0,137.0,107.0,132.0,100.0,98.0,103.0,119.0,107.0,104.0,90.0,117.0,95.0,92.0,96.0,91.0,95.0,94.0,106.0,92.0,100.0,107.0,113.0,104.0,86.0,84.0,82.0,90.0,79.0,89.0,68.0,63.0,63.0,67.0,54.0,74.0,63.0,61.0,60.0,51.0,50.0,55.0,63.0,59.0,44.0,44.0,43.0,44.0,36.0,49.0,23.0,38.0,19.0,24.0,27.0,16.0,12.0,10.0,13.0,13.0,10.0,18.0,6.0,7.0,5.0,5.0,4.0,2.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1946,5444,1106,0,550,692,704,662,693,708,587,527,498,482,516,421,350,312,278,211,153,78,54,16,4,0,8442,20,28,6,0,8442,24,24,6,0,2258,35,508,1171,296,18,2266,1944,0,5213,3267,16,0,4,29,15,0,0,0,3,0,0,70,8375,0,116,100,314,8,6,14,1675,6263,0,1283,1923,442,37,9,4802,0,2.2210818307905686,0.0,3.2214345287739783,0.0,8.175729755178908,41,25,106,2,3,3,536,1695,0,194,147,112,176,328,314,314,189,282,140,86,44,33,20,25,6,2340,71,1951,460,1675,736,391,2020,1562,849,133,2278,1170,1241,46,2365,2251,160,1876,535,1042,834,593,1818,1645,766,578,1833,1130,1281,1088,1323,31,2380,396,1239,741,35,0,1637,774,0,0,5,3,0,0,0,1,0,0,13,2389,0,1.7751970136872668,1.7486520116134383,1.0,1.053030303030303,1.053030303030303,54.51928660306927 +PA030607,20607,Coclé,Penonomé,Río Grande,1529,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1042,30,15,1042,33,0,0,0,15,0,1064,0,1,7,2,0,14,0,2,535,372,159,2,19,0,3,1051,22,4,0,0,13,1090,0,222,88,24,71,36,0,35,67,901,84,3,0,1035,6,6,7,2,34,0,1062,5,18,0,2,0,3,390,687,0,12,1,0,366,685,33,1,1,1,0,1,0,1,0,1,0,1531,6.942804428044281,19.748154981549817,6.958487084870849,22.369926199261997,1.015596330275229,3.763302752293578,2.4201834862385323,1107,582,1158,82,270,40,55,54,17,63,12,12,48,5,87,17,13,31,13,18,32,2901,426,0,1115,2212,0,2274,1053,0,3137,190,0,905,2422,0,804,101,2344,78,0,85,41,48,12,65,87,97,84,89,667,2,6,15,98,136,266,90,122,604,5,25,52,114,82,253,88,29,21,3,38,0,0,1,2,0,1399,164,1466,0,1,56,28,268,521,487,66,124,911,69,190,58,147,0,159,8,1,1796,1709,286,732,69,362,67,0,26,1,11,142,19,1027,22,0,0,1697,853,15,30,48,331,17,36,2,0,1,105,141,93,80,252,62,220,177,432,1603,261,161,182,296,334,285,130,108,68,26,9,14,5,1,22,51.0,38.0,46.0,43.0,56.0,44.0,45.0,51.0,61.0,41.0,51.0,47.0,50.0,43.0,43.0,44.0,43.0,62.0,48.0,47.0,77.0,61.0,51.0,45.0,72.0,62.0,59.0,54.0,54.0,51.0,49.0,54.0,33.0,35.0,32.0,33.0,35.0,42.0,37.0,45.0,49.0,36.0,34.0,38.0,33.0,44.0,41.0,44.0,42.0,48.0,49.0,50.0,51.0,47.0,43.0,39.0,46.0,44.0,46.0,31.0,41.0,34.0,36.0,30.0,27.0,25.0,22.0,31.0,32.0,32.0,31.0,30.0,33.0,22.0,24.0,32.0,28.0,22.0,18.0,17.0,19.0,21.0,11.0,15.0,12.0,10.0,9.0,9.0,5.0,7.0,6.0,2.0,3.0,1.0,6.0,2.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,710,2248,547,0,234,242,234,244,306,280,203,192,190,219,240,206,168,142,140,117,78,40,18,7,5,0,3431,32,40,2,0,3432,43,28,2,0,903,27,271,537,142,18,897,710,0,1765,1701,39,0,4,47,3,0,2,0,0,0,0,86,3363,0,101,171,477,27,17,8,961,1743,0,701,955,293,21,2,1533,0,2.165656565656566,0.0,2.930608365019012,0.0,8.682453637660485,35,62,179,11,6,1,317,496,0,56,59,43,54,113,165,145,103,159,83,46,19,31,14,13,4,1087,20,1009,98,944,163,164,943,1009,98,225,882,639,468,119,988,1053,54,981,126,681,300,358,749,714,393,470,637,192,915,250,857,9,1098,227,545,299,36,0,724,383,0,1,7,1,0,1,0,0,0,0,29,1068,0,1.6224028906955736,1.5438121047877145,1.0,1.018181818181818,1.018181818181818,55.3026196928636 +PA030608,20608,Coclé,Penonomé,Río Indio,1369,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,894,24,855,74,0,0,0,24,0,90,0,10,637,27,10,178,0,1,1,2,846,14,87,2,1,338,605,1,2,1,6,953,0,321,42,0,32,22,0,1,1,925,26,0,0,54,887,5,2,3,2,0,867,3,1,0,5,77,0,5,424,1,394,129,0,0,317,285,13,28,271,1,29,0,0,9,0,0,1370,6.397009966777409,20.64119601328904,6.956810631229236,23.538205980066444,1.0104931794333682,3.291710388247639,2.0724029380902413,963,711,1908,72,229,23,35,11,7,43,4,10,9,1,25,14,7,6,15,3,16,1678,2018,0,80,3616,0,638,3058,0,3404,292,0,1155,2541,0,1144,11,2373,168,0,170,56,73,2,121,115,235,153,156,1420,2,0,1,112,138,516,66,103,210,1,3,12,7,8,5,5,3,1,0,2,0,0,0,0,0,1900,14,1250,0,0,4,3,8,467,626,46,103,143,53,27,33,21,1,1625,8,0,2218,1808,40,424,35,926,3,0,483,0,204,183,15,1046,106,0,0,2906,241,1,0,3,11,0,2,0,0,0,9,10,8,9,106,1285,43,15,429,3159,313,163,82,78,60,41,8,7,4,2,1,1,0,1,106,71.0,86.0,81.0,92.0,84.0,85.0,80.0,106.0,73.0,104.0,100.0,97.0,88.0,104.0,91.0,117.0,111.0,89.0,88.0,78.0,59.0,71.0,65.0,57.0,42.0,53.0,41.0,47.0,34.0,38.0,42.0,45.0,35.0,34.0,53.0,41.0,39.0,42.0,41.0,56.0,44.0,42.0,40.0,53.0,42.0,42.0,40.0,34.0,43.0,39.0,34.0,42.0,36.0,42.0,32.0,31.0,37.0,37.0,27.0,26.0,36.0,23.0,26.0,33.0,30.0,27.0,24.0,20.0,20.0,23.0,26.0,13.0,21.0,22.0,10.0,17.0,14.0,14.0,10.0,15.0,13.0,11.0,12.0,5.0,9.0,5.0,5.0,1.0,6.0,3.0,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1342,2329,355,0,414,448,480,483,294,213,209,219,221,198,186,158,148,114,92,70,50,20,7,2,0,0,3995,3,0,28,0,3995,3,0,28,0,1213,11,94,362,94,4,908,1340,0,2559,1465,2,0,4,2,0,0,1,0,1,0,0,37,3981,0,7,207,48,2,2,0,469,3291,0,61,128,10,2,1,3824,0,3.259259259259259,0.0,4.847380410022779,0.0,5.599354197714853,3,56,14,0,1,0,131,758,0,199,96,136,169,164,93,44,28,20,6,4,0,1,2,1,0,644,319,79,884,76,887,175,788,34,929,0,963,531,432,12,951,569,394,250,713,88,162,2,961,10,953,10,953,871,92,812,151,15,948,134,611,209,9,0,851,112,0,1,0,0,0,1,0,1,0,0,8,952,0,2.3032191069574246,1.877466251298027,0.0,1.0444444444444445,1.0444444444444445,51.782969885773625 +PA030609,20609,Coclé,Penonomé,Toabré,2853,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,749,1208,94,1860,97,2,1,0,91,0,1264,0,27,478,10,13,254,0,5,5,43,1740,48,196,3,16,1507,512,1,3,0,28,2051,0,542,128,11,76,51,0,5,31,1958,56,1,0,1340,363,196,28,12,112,0,1957,7,17,0,1,55,14,243,1491,3,291,16,7,0,1543,198,34,3,231,2,5,0,7,23,5,0,2860,5.745548535324526,16.313612866168867,6.744974152785756,21.45318782309018,1.0126767430521697,3.2974158946855194,2.10580204778157,2078,1211,2990,119,598,66,105,58,14,129,23,17,30,2,108,64,15,34,39,23,25,4703,2279,0,595,6387,0,2840,4142,0,6520,462,0,1908,5074,0,1827,81,4836,238,0,246,77,120,8,178,229,400,242,287,2227,0,2,13,178,283,722,189,254,910,1,6,67,60,76,78,35,63,13,2,16,0,0,0,0,0,3371,116,2730,0,4,34,35,153,1015,1216,160,186,850,358,329,209,181,2,1536,4,0,3955,3485,182,1072,206,1428,20,1,558,2,168,478,38,1441,246,0,0,4877,1095,13,7,50,153,6,16,0,0,3,35,74,49,71,335,1328,417,123,1052,4349,710,432,402,453,397,219,104,86,26,6,2,3,1,4,246,114.0,107.0,113.0,124.0,115.0,111.0,139.0,144.0,129.0,127.0,142.0,136.0,135.0,130.0,143.0,145.0,151.0,136.0,112.0,124.0,125.0,120.0,135.0,115.0,111.0,117.0,99.0,129.0,82.0,110.0,83.0,102.0,98.0,89.0,85.0,105.0,78.0,102.0,84.0,112.0,78.0,92.0,74.0,94.0,76.0,74.0,77.0,68.0,71.0,89.0,84.0,59.0,74.0,77.0,77.0,71.0,75.0,71.0,75.0,63.0,67.0,57.0,60.0,65.0,47.0,68.0,47.0,44.0,51.0,55.0,46.0,40.0,45.0,33.0,60.0,44.0,47.0,36.0,30.0,28.0,32.0,31.0,34.0,22.0,20.0,32.0,15.0,21.0,14.0,13.0,7.0,10.0,6.0,12.0,8.0,2.0,6.0,2.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1909,4564,967,0,573,650,686,668,606,537,457,481,414,379,371,355,296,265,224,185,139,95,43,15,1,0,7388,18,10,24,0,7391,19,6,24,0,2225,26,315,749,240,11,1967,1907,0,4675,2749,16,0,14,19,1,0,0,0,0,0,1,436,6969,0,44,439,267,7,14,7,1717,4945,0,616,1159,192,16,5,5452,0,2.6267123287671232,0.0,3.782005141388175,0.0,6.703763440860215,13,125,110,2,7,1,519,1301,0,220,124,159,235,415,317,194,115,164,54,31,20,10,4,4,11,1873,205,1076,1002,939,1139,261,1817,808,1270,52,2026,1062,1016,27,2051,1690,388,1130,948,820,310,200,1878,748,1330,261,1817,1360,718,1180,898,44,2034,384,1123,550,21,0,1527,551,0,5,6,0,0,0,0,0,0,0,117,1950,0,1.903272377285852,1.6770933589990376,1.0,1.0810810810810811,1.0810810810810811,54.21992300288739 +PA030610,20610,Coclé,Penonomé,Tulú,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,473,15,475,18,0,0,0,15,0,94,0,3,280,1,0,130,0,0,1,0,465,12,28,2,0,131,375,1,0,0,1,508,0,153,16,1,17,13,0,0,0,497,11,0,0,35,466,1,2,2,2,0,470,0,0,0,0,38,0,1,182,4,250,71,0,0,323,56,1,4,102,0,19,0,0,3,0,0,708,6.762532981530343,23.21635883905013,7.0,24.0,1.0,3.40748031496063,2.2381889763779528,508,368,1047,38,188,15,16,13,1,36,4,5,2,0,20,23,6,5,9,3,11,831,1243,0,27,2047,0,307,1767,0,1845,229,0,617,1457,0,610,7,1331,126,0,130,27,26,0,93,99,127,89,115,728,0,0,0,71,77,236,31,59,132,0,1,8,8,9,5,1,0,1,0,1,0,0,0,0,0,1264,7,508,0,0,1,0,0,269,160,31,48,38,450,22,23,7,0,727,3,0,1209,1032,19,278,20,728,0,1,224,0,88,84,5,382,22,0,0,1613,157,0,1,2,6,0,0,0,0,0,0,6,4,5,29,500,443,6,278,1844,158,70,52,36,31,15,7,4,0,2,0,0,0,0,22,38.0,41.0,53.0,35.0,56.0,49.0,37.0,57.0,47.0,49.0,45.0,57.0,55.0,65.0,52.0,58.0,43.0,38.0,40.0,43.0,43.0,46.0,38.0,39.0,25.0,39.0,27.0,32.0,20.0,24.0,21.0,31.0,16.0,29.0,18.0,23.0,20.0,31.0,29.0,22.0,24.0,27.0,21.0,24.0,20.0,27.0,17.0,28.0,24.0,20.0,32.0,21.0,15.0,24.0,26.0,17.0,17.0,15.0,14.0,12.0,16.0,16.0,16.0,18.0,25.0,19.0,19.0,10.0,7.0,12.0,8.0,11.0,11.0,7.0,10.0,8.0,15.0,5.0,7.0,7.0,5.0,5.0,4.0,1.0,3.0,1.0,3.0,6.0,4.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,736,1311,194,0,223,239,274,222,191,142,115,125,116,116,118,75,91,67,47,42,18,15,4,0,1,0,2226,1,0,14,0,2226,1,0,14,0,600,1,42,252,65,2,545,734,0,1404,836,1,0,1,5,0,0,0,0,0,0,1,13,2221,0,0,78,50,0,0,1,643,1469,0,28,65,4,0,0,2144,0,3.1345911949685537,0.0,4.796747967479675,0.0,5.467202141900937,0,19,12,0,0,0,151,326,0,85,50,69,86,108,58,15,15,16,3,3,0,0,0,0,0,330,178,33,475,46,462,34,474,26,482,0,508,275,233,3,505,268,240,126,382,70,56,1,507,3,505,5,503,454,54,409,99,5,503,68,301,137,2,0,457,51,0,0,0,0,0,0,0,0,0,0,1,507,0,2.37992125984252,2.031496062992126,0.0,1.037037037037037,1.037037037037037,52.881889763779526 +PA040201,30101,Colón,Colón,Barrio Norte,481,53,4326,752,4,1,0,1,0,0,0,1,12,12,23,4480,19,19,38,3895,623,0,0,0,8,30,4554,0,0,0,0,0,0,0,2,4556,0,0,0,0,0,0,4342,0,75,0,0,139,4556,7,405,93,164,336,51,0,99,903,2236,936,6,376,4309,242,0,2,0,3,0,3670,32,33,783,36,0,2,3704,600,0,0,250,2,4376,63,1,0,0,0,0,0,0,115,1,0,5666,0,6.856531531531531,20.405405405405407,6.847747747747747,20.40675675675676,1.0085601404741,2.6788849868305533,1.5491659350307287,4630,1705,4217,214,544,113,153,139,29,75,34,68,372,27,201,65,39,38,110,17,50,10251,1341,0,4155,7437,0,10208,1384,0,11072,520,0,3720,7872,0,2882,838,7630,242,0,260,170,193,27,229,235,276,255,280,507,3,4,50,345,552,946,486,740,3417,9,34,290,350,356,432,224,733,53,9,115,1,0,0,11,0,4628,851,4895,0,7,381,137,872,2115,1382,218,308,3964,299,347,103,535,12,1,20,2,5929,6391,1086,2693,117,1197,163,2,21,4,3,96,20,3881,433,0,0,4223,4609,55,41,135,1148,41,111,11,0,3,446,382,468,571,1401,21,566,400,1221,5496,691,265,442,663,888,1575,658,654,249,131,51,62,21,41,433,166.0,169.0,172.0,221.0,195.0,209.0,171.0,224.0,214.0,205.0,184.0,236.0,182.0,180.0,208.0,197.0,200.0,178.0,179.0,188.0,160.0,188.0,209.0,183.0,180.0,225.0,237.0,187.0,166.0,179.0,166.0,190.0,174.0,199.0,168.0,169.0,182.0,176.0,157.0,156.0,170.0,146.0,148.0,174.0,137.0,129.0,151.0,155.0,164.0,148.0,150.0,168.0,153.0,151.0,171.0,137.0,138.0,137.0,115.0,141.0,123.0,108.0,112.0,103.0,93.0,105.0,88.0,96.0,70.0,70.0,81.0,45.0,59.0,61.0,69.0,55.0,63.0,41.0,48.0,38.0,32.0,25.0,24.0,26.0,23.0,16.0,20.0,19.0,10.0,21.0,6.0,4.0,10.0,6.0,2.0,6.0,3.0,2.0,1.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,2936,8115,1251,18,923,1023,990,942,920,994,897,840,775,747,793,668,539,429,315,245,130,86,28,13,5,18,10589,1057,665,9,0,10626,1192,493,9,0,2312,231,1657,1939,434,166,2645,2936,0,6883,3995,1442,0,245,9,3,0,0,0,6,1,0,65,11991,0,2377,1080,1331,719,47,102,3456,3208,0,2594,2154,862,43,32,6635,0,1.8249127319492928,0.0,2.632107023411371,0.0,9.666964285714286,935,427,539,356,25,68,1218,1062,0,416,185,113,208,373,445,766,420,697,375,196,92,128,59,62,60,4457,173,4291,339,2960,1670,339,4291,4329,301,1956,2674,2632,1998,838,3792,4309,321,4295,335,2558,1737,1555,3075,3940,690,1230,3400,30,4600,31,4599,33,4597,1419,2232,869,110,19,2368,2262,0,52,6,0,0,0,0,1,1,0,18,4552,0,1.2753280275328027,1.3747042374704237,1.53125,1.045801526717557,1.045801526717557,48.580777537796976 +PA040202,30102,Colón,Colón,Barrio Sur,65,0,2716,253,0,1,0,0,0,0,0,5,2,1,0,2412,0,0,0,2209,203,0,0,0,0,0,2411,0,0,0,0,0,0,0,1,2412,0,0,0,0,0,0,2283,0,51,0,0,78,2412,8,198,20,88,247,61,0,12,550,1118,555,12,165,2347,65,0,0,0,0,0,2291,20,6,72,23,0,0,1518,771,0,0,123,0,2409,0,0,0,0,0,0,0,0,3,0,0,3043,0,6.738895807388958,21.0195101701951,6.742631797426318,21.084682440846823,1.0095356550580432,2.527363184079602,1.3975953565505803,2442,912,2225,170,304,57,85,89,23,28,25,21,79,3,115,30,15,21,33,17,22,5664,449,0,2652,3461,0,5052,1061,0,5759,354,0,2058,4055,0,1708,350,3934,121,0,133,106,118,13,122,145,156,138,156,297,0,1,29,198,312,496,263,313,1816,4,16,173,218,201,174,238,177,34,14,50,0,0,2,0,0,2618,473,2312,0,5,180,54,353,1167,632,76,84,2066,196,289,33,374,28,2,5,2,3120,3343,519,1558,42,848,23,0,3,2,4,81,14,1537,25,0,0,2245,2478,34,19,60,488,30,49,0,0,2,171,198,241,316,954,7,300,219,683,2796,478,205,314,402,512,879,367,287,97,40,22,20,7,12,25,73.0,94.0,93.0,90.0,119.0,113.0,106.0,118.0,134.0,120.0,135.0,107.0,108.0,129.0,113.0,103.0,99.0,95.0,98.0,110.0,97.0,105.0,83.0,102.0,118.0,115.0,116.0,92.0,76.0,71.0,90.0,106.0,107.0,94.0,91.0,111.0,91.0,106.0,77.0,104.0,104.0,91.0,95.0,82.0,67.0,71.0,77.0,89.0,72.0,82.0,80.0,61.0,75.0,66.0,90.0,72.0,68.0,75.0,53.0,74.0,59.0,45.0,52.0,41.0,49.0,51.0,38.0,50.0,26.0,31.0,34.0,37.0,33.0,23.0,34.0,28.0,31.0,18.0,14.0,18.0,12.0,10.0,7.0,17.0,4.0,8.0,8.0,7.0,5.0,3.0,3.0,4.0,3.0,2.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1652,4247,564,0,469,591,592,505,505,470,488,489,439,391,372,342,246,196,161,109,50,31,15,2,0,0,5688,486,281,8,0,5698,517,240,8,0,1265,136,475,862,198,63,1812,1652,0,2864,3151,448,0,306,11,1,1,3,0,0,0,0,48,6093,0,1344,622,687,468,52,67,1577,1646,0,1395,1331,364,19,10,3344,0,1.830682219865677,0.0,2.64186295503212,0.0,9.443911496209193,505,230,275,220,24,41,542,605,0,102,94,65,150,261,256,397,269,402,228,100,39,35,12,18,7,2368,74,2248,194,1334,1108,170,2272,2282,160,976,1466,1435,1007,372,2070,2284,158,2229,213,1383,846,782,1660,1651,791,547,1895,26,2416,23,2419,16,2426,754,1211,429,48,2,1350,1092,0,68,5,1,0,2,0,0,0,0,27,2339,0,1.2765957446808511,1.3678396072013093,1.6071428571428572,1.0169491525423728,1.0169491525423728,48.058968058968055 +PA040203,30103,Colón,Colón,Buena Vista,6778,103,110,51,0,0,0,0,1,0,2,1,6,0,0,659,3862,1027,202,5061,487,6,0,0,180,16,5645,0,9,25,5,26,28,0,12,3528,0,2114,39,33,3,33,5536,109,8,1,0,96,5750,7,362,378,167,214,164,0,203,324,5031,171,6,15,5492,119,3,106,2,26,2,5527,16,164,29,4,8,2,2355,3241,0,143,11,0,4141,1038,48,46,16,24,1,36,246,102,48,4,2224,4828,4.060264013774631,14.929787641094318,4.229959823990817,15.547541610866654,1.0165217391304349,3.1768695652173915,1.9598260869565216,5852,3231,7796,462,1007,117,161,135,34,242,40,28,113,3,298,136,33,112,92,229,154,14547,3404,0,4284,13667,0,11396,6555,0,16622,1329,0,6104,11847,0,5379,725,11200,647,0,698,286,404,55,487,472,639,525,563,2222,1,6,34,646,943,1510,583,803,4268,32,38,252,391,445,786,365,326,47,12,104,2,0,0,6,0,5778,1437,8357,0,25,738,254,740,3574,3539,271,233,4805,200,871,122,767,13,137,2,21,9539,9682,991,3968,156,1645,83,3,43,49,15,276,58,8311,136,0,0,8455,5406,35,57,238,1232,44,99,6,0,52,318,534,556,485,1221,115,1240,966,1728,11099,1353,320,624,835,1285,1615,772,734,244,109,34,35,14,12,136,302.0,277.0,326.0,365.0,387.0,400.0,406.0,404.0,389.0,393.0,372.0,427.0,332.0,356.0,365.0,339.0,324.0,327.0,313.0,312.0,310.0,315.0,346.0,322.0,338.0,355.0,396.0,300.0,304.0,288.0,271.0,301.0,281.0,289.0,299.0,252.0,250.0,265.0,247.0,259.0,267.0,244.0,268.0,242.0,212.0,221.0,201.0,212.0,236.0,231.0,227.0,204.0,207.0,202.0,192.0,210.0,206.0,159.0,146.0,148.0,147.0,122.0,149.0,115.0,89.0,103.0,81.0,101.0,81.0,89.0,64.0,71.0,56.0,57.0,49.0,61.0,52.0,43.0,40.0,37.0,27.0,33.0,38.0,26.0,16.0,25.0,19.0,20.0,13.0,19.0,5.0,9.0,14.0,3.0,2.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5501,12460,1260,0,1657,1992,1852,1615,1631,1643,1441,1273,1233,1101,1032,869,622,455,297,233,140,96,33,5,1,0,18868,185,124,44,0,18876,197,104,44,0,4307,239,1130,3086,436,76,4449,5498,0,9805,9247,169,0,119,408,58,2,1,2,53,2,2,209,18365,0,1456,1518,693,358,78,76,3335,11707,0,3691,4044,702,68,8,10708,0,2.0817650050864698,0.0,3.052225862401233,0.0,8.214140783518028,469,498,247,146,35,32,1095,3330,0,750,346,182,321,496,636,902,502,751,413,225,126,105,41,30,19,5710,142,5195,657,4714,1138,674,5178,4995,857,983,4869,2508,3344,381,5471,5365,487,4845,1007,2364,2481,1557,4295,3401,2451,2017,3835,1398,4454,799,5053,54,5798,1065,3634,1087,66,3,3641,2211,0,32,112,26,1,1,1,11,0,1,68,5599,0,1.629205807002562,1.6536293766011956,1.16,1.05,1.05,47.24982911825017 +PA040204,30104,Colón,Colón,Cativá,12295,61,614,7,0,0,0,1,0,0,0,0,15,1,0,2608,7498,390,122,10198,298,2,0,0,102,18,10597,0,1,3,0,5,1,0,11,10002,32,550,13,7,1,13,10487,9,27,0,0,95,10618,0,458,667,599,352,283,0,916,1092,8306,269,18,17,10454,57,0,103,1,3,0,9599,26,942,45,4,0,2,8099,2405,0,98,14,2,9929,163,0,3,3,0,2,7,19,453,37,2,12296,698,5.539734443123266,15.841260404280618,5.550039635354737,15.95798652397939,1.0235449237144472,3.54558297231117,2.2698248257675644,10883,5842,13953,1017,2991,296,451,424,137,538,104,114,242,8,473,225,71,131,143,79,146,30124,4651,0,14080,20695,0,26947,7828,0,32947,1828,0,12200,22575,0,9866,2334,21614,961,0,998,511,600,98,781,845,947,815,896,2878,0,14,108,1117,1580,2573,1106,1572,9285,50,85,723,949,1097,1821,1141,1266,292,41,549,1,5,4,27,0,12093,1359,17311,0,51,709,200,2625,7454,6248,446,538,10116,552,1011,187,1124,47,16,17,74,17900,19100,2567,7465,217,2637,145,6,26,81,8,305,59,12454,75,0,0,13291,12263,121,131,562,3606,238,520,31,0,81,859,1590,1369,1349,2520,49,1628,1500,2507,19513,2097,784,1115,1638,2632,3565,1832,2119,830,398,153,135,51,63,75,509.0,510.0,582.0,624.0,667.0,626.0,647.0,678.0,721.0,673.0,753.0,687.0,649.0,690.0,658.0,657.0,668.0,644.0,631.0,610.0,646.0,588.0,647.0,628.0,622.0,694.0,653.0,524.0,500.0,437.0,490.0,502.0,506.0,571.0,515.0,496.0,458.0,502.0,484.0,498.0,499.0,462.0,494.0,479.0,432.0,443.0,449.0,378.0,461.0,432.0,449.0,412.0,428.0,358.0,420.0,383.0,383.0,333.0,336.0,322.0,331.0,294.0,286.0,292.0,245.0,250.0,276.0,207.0,214.0,186.0,194.0,198.0,193.0,178.0,191.0,147.0,108.0,120.0,100.0,117.0,101.0,70.0,71.0,56.0,58.0,47.0,50.0,44.0,28.0,29.0,21.0,23.0,12.0,14.0,15.0,13.0,5.0,8.0,4.0,1.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,9674,23972,3354,0,2892,3345,3437,3210,3131,2808,2584,2438,2366,2163,2067,1757,1448,1133,954,592,356,198,85,31,5,0,35868,728,323,81,0,35885,765,269,81,0,7071,373,935,6836,1076,274,10765,9670,0,18493,17900,607,0,2078,178,15,7,2,1,26,1,3,548,34141,0,6534,3758,2454,1536,177,239,11348,10954,0,8369,9022,2580,110,47,16872,0,1.962956045324368,0.0,2.834850333114385,0.0,9.329648648648648,2080,1090,811,618,71,92,3230,2891,0,1015,348,233,430,728,1025,1412,1017,1778,1023,688,388,407,207,166,3,10757,126,10247,636,8892,1991,1496,9387,10370,513,3650,7233,6192,4691,3103,7780,10293,590,10020,863,6900,3120,4406,6477,7993,2890,4356,6527,1098,9785,428,10455,154,10729,1758,6273,2664,188,2,6532,4351,0,345,54,9,3,1,1,7,1,3,164,10295,0,1.6444648598989435,1.7547083141938449,1.16,1.061269146608315,1.061269146608315,49.98704401359919 +PA040205,30105,Colón,Colón,Ciricito,1187,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,441,42,730,92,0,0,0,39,3,715,0,13,89,13,5,26,0,3,608,0,254,0,2,0,0,812,48,0,0,0,4,864,0,178,71,5,40,34,0,0,13,830,21,0,0,687,164,0,10,1,1,1,849,3,5,1,1,5,0,137,635,0,70,21,1,0,548,12,77,16,9,2,74,0,112,14,0,0,1192,5.858928571428572,11.225,6.728571428571429,15.342857142857143,1.03125,3.328703703703704,2.076388888888889,891,574,1245,76,246,15,35,17,6,47,9,1,12,0,49,28,7,9,17,8,14,2447,493,0,278,2662,0,2127,813,0,2742,198,0,906,2034,0,872,34,1943,91,0,98,43,62,0,69,103,133,108,133,764,2,1,1,121,122,266,78,120,551,3,9,19,27,23,31,5,37,5,1,5,0,0,0,0,0,1110,167,1333,0,0,66,48,49,528,627,59,70,599,82,99,15,72,9,326,31,0,1691,1483,143,561,16,408,20,4,81,0,17,170,12,644,4,0,0,1892,639,2,4,16,49,3,5,0,0,0,25,38,32,64,198,274,138,107,401,1600,511,185,166,155,179,230,65,53,18,4,0,3,0,1,4,48.0,52.0,63.0,71.0,43.0,53.0,53.0,62.0,74.0,45.0,74.0,65.0,67.0,73.0,64.0,58.0,48.0,56.0,52.0,51.0,56.0,42.0,53.0,56.0,57.0,58.0,53.0,47.0,51.0,52.0,41.0,50.0,48.0,50.0,44.0,41.0,38.0,36.0,47.0,35.0,32.0,29.0,36.0,44.0,44.0,40.0,30.0,36.0,32.0,31.0,32.0,38.0,27.0,38.0,29.0,15.0,32.0,24.0,26.0,29.0,24.0,26.0,19.0,18.0,19.0,16.0,17.0,20.0,14.0,12.0,16.0,20.0,21.0,9.0,10.0,14.0,14.0,9.0,12.0,15.0,9.0,6.0,5.0,7.0,7.0,4.0,5.0,3.0,8.0,7.0,5.0,1.0,2.0,4.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,907,1970,297,0,277,287,343,265,264,261,233,197,185,169,164,126,106,79,76,64,34,27,14,3,0,0,3145,7,13,9,0,3145,8,12,9,0,937,19,266,369,75,4,597,907,0,1863,1299,12,0,12,7,2,0,0,0,3,0,0,139,3011,0,99,480,186,34,3,1,402,1969,0,396,449,60,3,1,2265,0,2.505280259951259,0.0,3.668316831683169,0.0,6.903276622558286,31,149,60,17,1,0,129,504,0,48,53,45,72,131,130,126,96,102,44,20,12,9,2,1,0,862,29,634,257,611,280,116,775,678,213,46,845,408,483,15,876,822,69,678,213,158,520,102,789,507,384,188,703,374,517,302,589,9,882,145,510,227,9,0,684,207,0,3,3,1,0,0,0,1,0,0,45,838,0,1.897867564534231,1.6644219977553312,1.0,1.048780487804878,1.048780487804878,50.34006734006734 +PA040208,30108,Colón,Colón,Limón,2101,9,32,13,0,0,0,0,11,0,1,0,2,0,0,11,1232,376,26,1509,110,0,0,0,24,2,1534,0,11,46,20,7,25,0,2,1134,0,481,2,24,1,3,1563,59,6,0,0,17,1645,1,271,137,5,73,23,0,0,93,1518,34,0,0,1508,74,4,53,3,1,2,1592,2,30,2,3,16,0,849,677,6,89,22,2,919,264,3,98,11,103,2,50,91,78,23,3,0,2169,3.525295109612141,4.305227655986509,3.523608768971332,4.501686340640809,1.02370820668693,3.291793313069909,1.9817629179331304,1686,955,2145,128,346,48,47,29,13,70,9,16,51,3,72,24,18,24,37,11,19,4284,895,0,1246,3933,0,3205,1974,0,4855,324,0,1701,3478,0,1494,207,3296,182,0,192,57,105,5,129,144,198,151,176,654,0,2,7,174,274,450,155,237,1226,16,27,90,111,120,121,62,226,19,6,43,0,0,0,2,0,1798,369,2388,0,13,181,66,242,1021,952,87,86,1401,67,252,43,258,36,32,7,8,2822,2724,309,1113,49,540,46,18,15,14,119,101,19,1780,58,0,0,2479,1603,7,28,76,306,13,41,2,0,15,89,156,159,137,423,44,408,307,429,2959,480,116,219,255,376,490,252,206,74,43,7,7,1,3,58,92.0,96.0,71.0,108.0,98.0,99.0,113.0,101.0,130.0,83.0,119.0,112.0,100.0,102.0,112.0,97.0,74.0,83.0,89.0,76.0,99.0,100.0,93.0,95.0,85.0,101.0,103.0,99.0,85.0,77.0,88.0,75.0,84.0,64.0,84.0,78.0,82.0,78.0,70.0,76.0,77.0,70.0,68.0,66.0,67.0,64.0,75.0,67.0,73.0,62.0,74.0,55.0,68.0,47.0,71.0,47.0,63.0,38.0,44.0,52.0,44.0,48.0,27.0,41.0,37.0,31.0,39.0,26.0,19.0,35.0,20.0,18.0,22.0,24.0,21.0,24.0,18.0,11.0,19.0,15.0,13.0,7.0,8.0,14.0,4.0,5.0,5.0,2.0,3.0,5.0,3.0,6.0,4.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,1536,3580,427,3,465,526,545,419,472,465,395,384,348,341,315,244,197,150,105,87,46,20,18,1,0,3,5432,69,30,15,0,5433,73,25,15,0,1331,58,430,901,159,28,1104,1535,0,3135,2349,62,0,23,40,7,0,0,1,89,0,0,48,5338,0,618,586,230,103,31,12,1786,2180,0,1066,1236,232,19,5,2988,0,2.1422202407489968,0.0,3.097609561752988,0.0,8.361702127659575,205,180,84,45,12,6,530,624,0,141,103,46,98,148,212,230,173,241,147,60,24,37,12,6,6,1630,56,1445,241,1283,403,215,1471,1415,271,311,1375,737,949,138,1548,1565,121,1375,311,592,783,451,1235,1266,420,580,1106,352,1334,116,1570,19,1667,323,974,370,19,12,1107,579,0,6,15,5,0,0,1,21,0,0,16,1622,0,1.661955241460542,1.6042402826855124,1.181818181818182,1.046875,1.046875,48.21589561091341 +PA040209,30109,Colón,Colón,Nueva Providencia,3060,67,0,0,0,0,0,0,4,0,1,18,5,0,0,0,1801,615,53,2275,141,1,0,0,51,1,2433,0,5,5,6,5,5,0,10,692,38,1562,18,18,0,141,2429,10,3,1,0,26,2469,1,123,233,97,148,56,0,3,208,2188,66,1,3,2348,33,0,87,0,1,0,2411,3,47,8,0,0,0,959,1423,0,77,9,1,1107,531,0,78,7,35,6,12,560,120,8,5,0,3155,3.1807081807081805,6.6361416361416365,3.2344322344322345,6.794871794871795,1.014985824220332,3.1190765492102064,1.8671526933981368,2529,1511,3490,301,496,45,74,64,21,113,31,15,44,0,92,45,14,19,33,52,37,6519,1524,0,1651,6392,0,5527,2516,0,7435,608,0,2725,5318,0,2472,253,4975,343,0,352,109,187,14,230,270,290,257,248,1173,0,1,9,260,426,708,257,408,1982,10,15,81,94,108,183,120,183,19,11,37,0,0,0,1,0,2883,397,3586,0,10,187,50,184,1581,1537,71,213,2117,96,430,106,366,7,34,5,10,4373,4361,352,1889,115,758,42,1,4,10,7,104,21,3024,164,0,0,4010,2298,8,14,50,432,16,37,1,0,11,131,172,168,250,587,21,585,427,928,4834,667,164,280,403,561,973,325,231,80,33,9,4,1,5,164,158.0,161.0,165.0,207.0,184.0,203.0,192.0,199.0,219.0,180.0,178.0,174.0,172.0,162.0,162.0,157.0,157.0,137.0,148.0,149.0,160.0,156.0,164.0,149.0,138.0,166.0,169.0,151.0,139.0,136.0,146.0,147.0,150.0,141.0,126.0,120.0,111.0,149.0,131.0,118.0,117.0,117.0,107.0,119.0,102.0,109.0,96.0,96.0,103.0,85.0,102.0,85.0,76.0,84.0,82.0,66.0,62.0,59.0,69.0,65.0,48.0,45.0,39.0,55.0,30.0,39.0,35.0,27.0,35.0,23.0,25.0,27.0,19.0,17.0,18.0,12.0,16.0,15.0,7.0,10.0,6.0,4.0,9.0,6.0,4.0,4.0,2.0,1.0,3.0,3.0,3.0,3.0,4.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0,2716,5633,385,0,875,993,848,748,767,761,710,629,562,489,429,321,217,159,106,60,29,13,11,4,3,0,8431,161,108,34,0,8435,167,98,34,0,2314,75,557,1128,141,40,1763,2716,0,3778,4838,118,0,48,169,15,0,1,0,68,1,0,100,8332,0,544,291,158,100,508,35,2499,4599,0,1668,1898,179,17,2,4970,0,2.0715328467153284,0.0,3.1181244364292158,0.0,7.716968170368674,177,89,62,43,208,19,713,1218,0,150,127,70,121,243,274,490,282,367,182,80,44,22,11,7,36,2497,32,2284,245,2080,449,307,2222,2253,276,303,2226,1332,1197,92,2437,2364,165,2204,325,484,1720,530,1999,1774,755,770,1759,318,2211,143,2386,31,2498,437,1564,506,22,5,1689,840,0,19,38,4,0,1,0,10,1,0,29,2427,0,1.7257300710339385,1.7209944751381216,1.1875,1.0185185185185186,1.0185185185185186,44.84618426255437 +PA040210,30110,Colón,Colón,Puerto Pilón,5787,34,594,9,1,0,0,0,0,0,0,0,21,0,0,2654,2484,210,98,5012,336,1,39,10,42,6,5372,0,6,32,14,5,7,1,9,5080,13,336,1,1,5,10,5332,43,16,0,0,55,5446,13,168,196,265,278,58,0,1006,445,3811,180,1,3,5343,54,0,41,7,0,1,5128,16,292,4,1,5,0,4222,1149,4,49,20,2,5008,115,8,25,34,12,3,24,68,82,62,5,6070,376,5.917559929838238,16.34808029623855,6.04307152601832,16.711946988891054,1.0157914065369078,3.490451707675358,2.270840984208593,5553,2939,6996,541,1284,110,187,173,78,246,40,39,96,3,224,86,32,84,115,13,55,15350,1890,0,7423,9817,0,15115,2125,0,16222,1018,0,6332,10908,0,5185,1147,10614,294,0,356,296,331,47,406,415,433,413,416,1224,3,6,50,544,774,1326,654,793,4454,8,14,451,540,738,951,598,630,114,23,224,0,1,3,4,0,6747,947,7476,0,9,468,113,1061,3716,2289,183,227,5226,451,745,108,844,9,29,13,5,8816,9469,1498,3730,114,2012,52,1,17,6,10,191,40,5108,24,0,0,6340,6346,55,50,262,1808,96,208,5,0,7,460,829,669,782,1420,36,1085,1053,1353,8693,1499,509,728,946,1098,1871,974,1130,441,193,65,67,18,29,24,215.0,260.0,290.0,280.0,323.0,344.0,328.0,365.0,354.0,356.0,333.0,359.0,316.0,360.0,355.0,333.0,355.0,324.0,329.0,283.0,294.0,305.0,301.0,293.0,285.0,330.0,311.0,234.0,237.0,215.0,234.0,247.0,240.0,264.0,234.0,242.0,232.0,264.0,255.0,273.0,281.0,266.0,277.0,235.0,242.0,244.0,238.0,241.0,266.0,200.0,236.0,236.0,212.0,194.0,214.0,190.0,175.0,173.0,165.0,167.0,160.0,157.0,148.0,144.0,128.0,97.0,100.0,93.0,79.0,84.0,70.0,73.0,75.0,55.0,60.0,66.0,55.0,49.0,45.0,45.0,36.0,30.0,32.0,24.0,30.0,21.0,25.0,19.0,18.0,11.0,10.0,7.0,10.0,6.0,4.0,6.0,2.0,0.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4838,12103,1344,0,1368,1747,1723,1624,1478,1327,1219,1266,1301,1189,1092,870,737,453,333,260,152,94,37,13,2,0,17876,202,184,23,0,17883,225,154,23,0,3294,325,1737,3455,508,168,3961,4837,0,9366,8746,173,0,187,59,9,0,0,0,81,25,2,304,17618,0,4585,1822,1507,1105,74,171,4435,4586,0,4279,4447,1065,54,21,8419,0,1.9084835497289805,0.0,2.7897151596253105,0.0,9.491058244462677,1377,541,501,450,31,90,1319,1244,0,205,199,135,276,448,508,739,539,964,606,390,188,171,82,79,3,5458,95,5183,370,4561,992,656,4897,5231,322,1830,3723,3409,2144,1328,4225,5222,331,5160,393,3291,1869,2342,3211,4852,701,2426,3127,162,5391,117,5436,34,5519,936,3220,1343,54,1,3295,2258,0,35,21,1,0,0,0,18,9,1,72,5396,0,1.587324450846237,1.704897371263954,1.2162162162162162,1.0452261306532664,1.0452261306532664,49.22186205654601 +PA040211,30111,Colón,Colón,Sabanitas,6623,16,1371,31,0,1,0,1,0,0,0,1,1,0,0,2827,3540,463,71,6519,311,0,0,0,48,23,6854,0,3,6,4,6,9,0,19,6134,19,724,2,6,1,15,6762,22,30,0,0,87,6901,11,201,238,272,294,124,0,465,771,5345,296,14,10,6802,18,0,78,0,3,0,5530,104,284,981,2,0,0,4969,1865,2,62,2,1,6072,366,97,46,7,76,4,41,111,55,15,11,6417,1628,5.803672532517215,17.05692425401683,5.847895944912012,17.16954858454476,1.026807709027677,3.626286045500652,2.241559194319664,7088,3532,8814,650,1927,214,325,334,58,328,70,59,228,3,372,121,92,130,100,233,97,19253,2992,0,7012,15233,0,16229,6016,0,20922,1323,0,7704,14541,0,6468,1236,13896,645,0,676,297,423,57,502,555,642,547,620,1998,7,2,132,660,913,1699,681,1080,6510,20,86,345,405,565,831,660,853,135,20,298,1,1,5,19,0,7662,1727,10170,0,60,782,301,1618,4512,3505,315,220,6710,342,718,148,903,25,18,18,25,11489,12141,1605,5037,168,1912,98,2,19,66,8,253,62,7809,432,0,0,8641,7952,145,97,286,2047,112,263,16,0,76,511,869,863,926,1826,50,1152,1045,2071,12116,1387,580,808,1108,1692,2366,1217,1062,442,186,84,70,35,45,432,315.0,323.0,351.0,396.0,436.0,427.0,435.0,450.0,488.0,450.0,470.0,463.0,430.0,410.0,416.0,371.0,409.0,417.0,396.0,393.0,347.0,396.0,430.0,458.0,393.0,402.0,410.0,328.0,304.0,310.0,316.0,326.0,358.0,365.0,334.0,314.0,349.0,352.0,328.0,290.0,321.0,304.0,301.0,283.0,256.0,283.0,278.0,265.0,265.0,242.0,281.0,249.0,233.0,267.0,249.0,207.0,229.0,230.0,213.0,215.0,201.0,193.0,186.0,177.0,151.0,179.0,176.0,138.0,128.0,133.0,126.0,101.0,128.0,112.0,113.0,88.0,85.0,85.0,73.0,68.0,47.0,52.0,42.0,44.0,41.0,42.0,25.0,34.0,30.0,18.0,25.0,16.0,16.0,8.0,5.0,5.0,7.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6260,15175,2195,0,1821,2250,2189,1986,2024,1754,1699,1633,1465,1333,1279,1094,908,754,580,399,226,149,70,15,2,0,22949,360,266,55,0,22958,380,237,55,0,4486,296,1399,3975,715,220,6280,6259,0,9224,14122,284,0,486,206,12,0,7,2,86,4,1,500,22326,0,3536,2125,1686,1106,173,189,6059,8756,0,5120,5524,1633,96,30,11227,0,2.021453287197232,0.0,2.89361074221632,0.0,9.120736352094797,1107,658,540,418,82,73,1824,2386,0,697,245,180,316,502,757,932,665,1113,713,352,195,215,86,101,17,6977,111,6641,447,5856,1232,899,6189,6613,475,2093,4995,3903,3185,1556,5532,6723,365,6547,541,3544,3003,2495,4593,5231,1857,2487,4601,656,6432,305,6783,82,7006,1264,3833,1819,172,2,3969,3119,0,108,79,8,0,5,0,22,0,0,168,6698,0,1.6204513399153735,1.7124118476727783,1.2258064516129032,1.042207792207792,1.042207792207792,50.02186794582393 +PA040212,30112,Colón,Colón,Salamanca,2022,40,6,0,0,0,0,0,6,0,1,0,1,0,0,6,1171,310,59,1409,78,3,0,0,56,0,1433,0,11,62,7,8,21,0,4,613,37,873,0,18,0,5,1465,53,1,0,0,27,1546,0,287,108,38,52,37,0,0,54,1434,58,0,0,1397,84,0,55,2,8,0,1502,3,33,1,1,6,0,363,1110,0,63,9,1,26,1213,109,5,2,3,0,11,0,169,5,3,0,2076,5.516320474777448,18.041543026706236,6.473293768545994,22.589020771513358,1.0226390685640363,3.054980595084088,1.8745148771021996,1582,886,1893,157,258,34,43,24,16,68,6,6,69,1,66,63,11,45,13,73,49,3389,1324,0,587,4126,0,2248,2465,0,4257,456,0,1431,3282,0,1335,96,3018,264,0,266,66,101,1,113,160,217,172,140,900,0,1,11,147,200,476,154,202,887,5,3,81,112,83,71,67,58,9,4,5,1,0,0,0,0,1422,343,2343,0,4,144,52,147,840,1166,85,105,892,112,226,29,167,1,242,15,4,2599,2444,183,818,38,565,32,2,35,15,15,200,21,1792,3,0,0,2709,1166,12,10,46,155,5,5,0,0,15,40,77,120,73,223,192,303,213,509,2810,843,119,161,212,325,269,123,104,42,23,5,0,1,3,3,81.0,89.0,82.0,78.0,90.0,100.0,106.0,105.0,104.0,100.0,106.0,87.0,77.0,97.0,88.0,103.0,89.0,81.0,74.0,90.0,68.0,84.0,94.0,85.0,78.0,80.0,91.0,70.0,80.0,79.0,75.0,76.0,78.0,72.0,60.0,76.0,60.0,69.0,74.0,67.0,48.0,74.0,56.0,62.0,51.0,50.0,56.0,54.0,62.0,62.0,57.0,54.0,49.0,61.0,44.0,51.0,42.0,40.0,47.0,33.0,50.0,35.0,38.0,32.0,33.0,25.0,30.0,28.0,37.0,33.0,25.0,24.0,17.0,27.0,23.0,20.0,15.0,14.0,12.0,11.0,16.0,15.0,6.0,7.0,10.0,6.0,10.0,8.0,7.0,3.0,3.0,3.0,8.0,3.0,5.0,2.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1390,3194,459,0,420,515,455,437,409,400,361,346,291,284,265,213,188,153,116,72,54,34,22,7,1,0,4976,48,4,15,0,4976,48,4,15,0,1266,66,441,747,127,16,990,1390,0,2789,2215,39,0,14,76,7,1,1,0,27,6,0,54,4857,0,234,357,218,59,54,3,1018,3100,0,665,1009,145,10,3,3211,0,2.3356819325616507,0.0,3.296817172464841,0.0,7.328177672020622,75,123,92,20,26,2,330,914,0,198,172,71,152,190,208,185,111,152,65,33,21,13,5,4,1,1534,48,1304,278,1253,329,181,1401,1229,353,128,1454,545,1037,29,1553,1271,311,1164,418,495,669,247,1335,695,887,424,1158,471,1111,288,1294,13,1569,341,923,288,30,7,1071,511,0,5,24,1,0,1,0,11,1,0,15,1524,0,1.6356198867212084,1.538074260541221,1.6666666666666667,1.069767441860465,1.069767441860465,48.86725663716814 +PA040213,30113,Colón,Colón,San Juan,7868,77,139,27,0,0,0,0,11,0,1,0,2,0,0,66,5467,846,272,5943,436,2,0,0,256,14,6574,0,6,19,9,16,26,1,0,5545,6,1038,12,19,2,29,6441,51,15,0,0,144,6651,19,359,466,218,261,137,0,15,510,5907,206,10,3,6472,58,0,115,0,5,1,6482,24,133,11,0,1,0,2621,3926,0,94,10,0,6406,63,35,11,6,16,0,16,7,46,34,11,6697,1428,5.935731857318573,21.17650676506765,6.073185731857318,21.59517220172202,1.02135017290633,3.09622613140881,1.9282814614343708,6795,3855,8872,742,1139,153,181,167,48,278,54,61,149,5,362,99,48,142,82,203,141,17496,3467,0,4732,16231,0,15068,5895,0,19558,1405,0,7086,13877,0,6150,936,13135,742,0,772,283,444,26,548,583,736,629,639,2348,3,5,43,693,1082,1988,684,1120,5564,17,37,316,441,431,616,346,401,52,16,93,1,1,3,2,0,6720,1374,10258,0,46,592,147,792,4276,4661,318,211,5263,301,1117,127,795,29,76,10,152,11320,11179,1055,4317,159,2031,72,7,68,161,18,412,40,8361,56,0,0,9950,6818,48,57,237,1111,42,88,1,0,184,292,587,549,480,1535,121,1552,1153,1641,13159,1937,528,765,1048,1282,1773,803,735,257,87,28,22,10,9,56,362.0,358.0,390.0,426.0,426.0,386.0,446.0,471.0,449.0,433.0,449.0,486.0,429.0,395.0,448.0,366.0,398.0,398.0,384.0,394.0,405.0,358.0,357.0,405.0,373.0,426.0,404.0,373.0,346.0,348.0,355.0,344.0,360.0,364.0,315.0,312.0,301.0,325.0,306.0,307.0,312.0,265.0,301.0,270.0,227.0,258.0,242.0,266.0,249.0,260.0,265.0,269.0,258.0,253.0,245.0,207.0,182.0,199.0,217.0,172.0,175.0,149.0,147.0,145.0,121.0,122.0,95.0,100.0,96.0,94.0,74.0,75.0,75.0,63.0,63.0,71.0,54.0,54.0,45.0,48.0,53.0,29.0,25.0,40.0,31.0,19.0,27.0,20.0,17.0,16.0,10.0,10.0,13.0,7.0,8.0,4.0,3.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6354,14678,1467,0,1962,2185,2207,1940,1898,1897,1738,1551,1375,1275,1290,977,737,507,350,272,178,99,48,13,0,0,22001,310,145,43,0,22005,331,120,43,0,5103,288,1330,3628,473,79,5245,6353,0,11880,10328,291,0,74,276,25,11,8,5,407,36,1,259,21397,0,1108,1413,1248,197,66,55,3479,14933,0,3966,4925,772,84,15,12737,0,2.0780823413781806,0.0,3.0288808664259927,0.0,8.233077025645585,359,431,464,77,20,22,1170,4252,0,886,400,267,448,685,754,978,593,839,431,246,117,92,23,23,11,6614,181,6033,762,5583,1212,827,5968,6005,790,1155,5640,2872,3923,627,6168,6373,422,5669,1126,3292,2377,1914,4881,5382,1413,2212,4583,1905,4890,1053,5742,151,6644,1200,4204,1311,80,12,4449,2346,0,23,79,10,3,3,3,101,10,1,95,6467,0,1.6629939767886,1.6422800058763038,1.2,1.0456273764258557,1.0456273764258557,47.2831493745401 +PA040214,30114,Colón,Colón,Santa Rosa,496,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,306,63,9,368,6,0,0,0,8,1,372,0,0,2,2,2,5,0,0,37,31,314,0,0,0,1,368,6,1,0,0,8,383,2,41,21,7,26,17,0,0,11,366,5,1,0,363,9,0,11,0,0,0,382,0,0,0,0,1,0,144,227,0,12,0,0,20,351,1,3,0,1,0,4,0,0,3,0,0,497,4.067204301075269,13.38978494623656,5.416666666666667,19.887096774193548,1.010443864229765,3.177545691906005,2.093994778067885,387,231,481,40,41,5,9,12,3,13,4,1,5,0,13,2,0,2,6,2,7,931,217,0,221,927,0,893,255,0,1054,94,0,347,801,0,318,29,763,38,0,38,23,22,0,35,45,47,30,34,205,0,0,4,62,52,98,29,42,290,0,11,2,12,12,34,11,4,0,1,5,0,0,0,0,0,388,104,521,0,0,28,65,37,214,230,24,16,310,2,50,8,33,0,26,1,4,628,604,114,223,8,68,3,0,3,15,1,29,6,469,26,0,0,627,313,4,9,12,43,0,5,0,0,15,15,18,43,35,47,4,58,81,176,728,50,11,14,37,139,136,47,29,11,2,1,1,0,0,26,17.0,23.0,21.0,23.0,16.0,23.0,20.0,30.0,24.0,22.0,20.0,22.0,23.0,33.0,28.0,21.0,20.0,20.0,17.0,26.0,17.0,18.0,28.0,23.0,20.0,27.0,19.0,15.0,20.0,16.0,12.0,18.0,15.0,19.0,18.0,19.0,18.0,15.0,20.0,20.0,19.0,13.0,14.0,17.0,12.0,10.0,13.0,13.0,17.0,15.0,24.0,12.0,11.0,16.0,13.0,18.0,15.0,12.0,9.0,11.0,4.0,6.0,4.0,11.0,5.0,6.0,6.0,7.0,4.0,4.0,3.0,5.0,7.0,5.0,6.0,1.0,6.0,2.0,2.0,2.0,3.0,2.0,4.0,2.0,3.0,2.0,3.0,0.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,345,795,92,0,100,119,126,104,106,97,82,92,75,68,76,65,30,27,26,13,14,9,3,0,0,0,1203,23,4,2,0,1203,23,4,2,0,370,4,13,153,14,2,331,345,0,778,428,26,0,1,0,9,0,0,0,0,0,0,0,1222,0,6,2,18,1,2,0,19,1184,0,269,283,35,4,0,641,0,2.1214574898785425,0.0,3.0424242424242425,0.0,7.496753246753247,2,2,9,1,1,0,11,361,0,50,21,7,11,22,69,68,34,56,24,12,4,5,0,1,3,376,11,338,49,314,73,39,348,306,81,56,331,179,208,6,381,334,53,321,66,242,79,97,290,269,118,136,251,71,316,38,349,5,382,81,234,68,4,0,254,133,0,1,0,1,0,0,0,0,0,0,0,385,0,1.6227390180878554,1.5607235142118865,1.0,1.125,1.125,47.82428940568475 +PA040206,30115,Colón,Colón,Cristóbal Este,13792,18,9477,18,0,2,0,0,0,0,0,1,11,0,0,14062,4662,345,93,18820,249,7,14,0,65,7,19127,0,2,13,0,10,5,0,5,18723,124,309,2,2,1,1,18905,32,83,0,2,140,19162,41,661,2153,499,555,234,0,7311,1728,9418,511,22,172,18835,238,1,84,0,4,0,12611,248,5679,619,0,0,5,16185,2711,0,103,163,0,18441,58,9,1,0,0,3,0,94,535,18,3,23255,64,5.87281175707802,17.992003457964124,5.881510698076507,18.18575751026583,1.0132554013151027,3.5718609748460493,2.367915666423129,19428,9401,25534,1361,4576,640,841,859,227,771,214,191,730,43,774,304,102,308,273,107,181,55970,4751,0,25438,35283,0,52911,7810,0,57462,3259,0,22517,38204,0,18480,4037,36865,1339,0,1463,931,1264,211,1486,1561,1696,1548,1750,3909,9,43,196,2022,2910,4984,2251,3281,16029,45,115,1333,1669,1962,2442,1747,2582,340,107,770,3,4,5,53,0,23162,3319,26486,0,58,1489,410,3404,13414,8658,529,481,18500,1854,2054,366,2633,88,17,71,45,30599,34217,5349,12766,406,6686,276,5,87,53,26,514,168,16801,911,0,0,23482,21858,206,158,734,5444,295,735,55,0,52,1949,2471,2332,2669,6053,105,3003,2465,5382,31844,4869,1533,2297,2882,3984,7393,3212,3062,1233,682,266,304,122,222,911,925.0,992.0,1022.0,1156.0,1156.0,1242.0,1261.0,1380.0,1420.0,1295.0,1419.0,1408.0,1270.0,1281.0,1282.0,1175.0,1230.0,1116.0,1068.0,1069.0,981.0,974.0,1077.0,1022.0,999.0,1164.0,1197.0,908.0,890.0,771.0,836.0,980.0,977.0,1039.0,998.0,908.0,935.0,959.0,962.0,937.0,893.0,784.0,804.0,780.0,735.0,785.0,669.0,729.0,725.0,688.0,715.0,702.0,705.0,663.0,651.0,627.0,614.0,639.0,659.0,609.0,579.0,523.0,492.0,450.0,438.0,418.0,351.0,344.0,381.0,289.0,263.0,250.0,255.0,217.0,213.0,193.0,179.0,158.0,135.0,124.0,104.0,82.0,75.0,60.0,65.0,48.0,56.0,42.0,35.0,24.0,23.0,15.0,17.0,11.0,7.0,14.0,12.0,5.0,4.0,2.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,18509,41830,4477,0,5251,6598,6660,5658,5053,4930,4830,4701,3996,3596,3436,3148,2482,1783,1198,789,386,205,73,37,6,0,61323,2056,1327,110,0,61378,2225,1103,110,0,12592,675,6144,10487,1634,499,14285,18500,0,15932,47541,1343,0,2309,121,17,0,4,0,40,2,4,552,61767,0,12597,8950,6722,3979,386,591,18800,12791,0,14443,14301,3507,153,77,32335,0,1.9170783345095272,0.0,2.791481382266274,0.0,9.200968896568748,4005,2478,2135,1599,133,281,5299,3498,0,926,728,619,1057,1526,1724,2735,1996,3107,1878,1083,597,663,308,415,54,19237,191,18507,921,15945,3483,1946,17482,18539,889,7686,11742,11944,7484,5050,14378,18476,952,18512,916,11747,6765,7244,12184,15746,3682,6904,12524,1129,18299,345,19083,299,19129,3457,10427,4960,584,2,9493,9935,0,418,48,8,0,1,0,15,1,3,162,18772,0,1.5748327328872878,1.7610396294390118,1.25,1.0379888268156423,1.0379888268156423,47.83384805435454 +PA040104,30201,Colón,Chagres,Nuevo Chagres,309,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,145,20,7,159,7,0,0,0,7,0,164,0,0,5,1,1,2,0,0,118,1,54,0,0,0,0,169,3,0,0,0,1,173,0,66,40,9,20,6,0,0,4,139,29,0,1,166,1,0,5,1,0,0,57,0,113,0,0,3,0,60,109,0,2,1,1,0,151,11,0,0,2,0,1,0,5,3,0,0,314,3.740740740740741,8.493827160493828,3.8395061728395055,8.722222222222221,1.0289017341040465,3.23699421965318,2.1965317919075145,178,89,197,34,44,4,6,2,1,5,0,2,5,0,6,0,1,4,4,0,0,419,103,0,59,463,0,380,142,0,480,42,0,188,334,0,179,9,319,15,0,15,10,15,2,17,14,24,14,13,70,0,1,0,15,19,41,22,30,121,0,3,9,8,12,13,9,19,0,0,6,0,0,0,0,0,260,6,180,0,0,5,0,20,109,28,1,22,127,38,50,4,16,0,22,4,0,294,273,68,64,5,113,1,0,10,0,5,17,5,84,0,0,0,246,161,0,3,6,24,0,6,0,0,0,10,11,16,14,50,30,40,24,71,268,30,25,45,59,32,64,13,14,9,3,2,2,0,1,0,14.0,6.0,13.0,12.0,12.0,13.0,14.0,12.0,12.0,13.0,12.0,11.0,10.0,10.0,8.0,13.0,8.0,13.0,8.0,6.0,6.0,10.0,6.0,4.0,7.0,9.0,11.0,12.0,12.0,8.0,7.0,9.0,10.0,6.0,5.0,12.0,6.0,7.0,6.0,8.0,10.0,11.0,7.0,3.0,6.0,6.0,5.0,3.0,5.0,4.0,3.0,6.0,5.0,5.0,3.0,2.0,7.0,4.0,9.0,6.0,3.0,6.0,6.0,3.0,2.0,6.0,5.0,3.0,0.0,4.0,3.0,2.0,1.0,3.0,7.0,1.0,2.0,3.0,2.0,0.0,0.0,4.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,172,339,56,0,57,64,51,48,33,52,37,39,37,23,22,28,20,18,16,8,7,3,2,2,0,0,561,5,1,0,0,561,5,1,0,0,179,8,66,43,15,3,81,172,0,288,278,1,0,6,0,0,0,0,1,1,0,0,11,548,0,39,27,50,51,1,2,209,188,0,95,111,22,1,1,337,0,2.515837104072398,0.0,3.467532467532468,0.0,8.056437389770723,16,10,14,17,1,1,66,53,0,1,1,2,15,30,27,29,16,27,12,3,8,5,1,1,0,173,5,146,32,135,43,16,162,154,24,33,145,76,102,1,177,170,8,137,41,81,56,22,156,147,31,47,131,36,142,29,149,0,178,41,90,43,4,0,124,54,0,4,0,0,0,0,0,1,0,0,1,172,0,1.651685393258427,1.5337078651685394,1.0,1.0,1.0,50.12359550561798 +PA040101,30202,Colón,Chagres,Achiote,381,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,115,15,224,41,4,0,0,11,0,196,0,0,45,4,3,31,0,1,96,0,172,0,12,0,0,247,23,2,1,0,7,280,0,66,30,5,6,5,0,0,5,254,21,0,0,179,92,0,6,2,0,1,264,0,10,0,0,6,0,59,142,0,39,40,0,0,147,35,2,0,59,0,33,0,0,4,0,0,392,5.615384615384615,8.54945054945055,6.65934065934066,12.423076923076923,1.0178571428571428,2.878571428571429,1.8035714285714288,285,160,349,38,53,3,13,4,3,17,5,3,5,0,15,7,1,5,7,0,7,612,251,0,71,792,0,496,367,0,769,94,0,266,597,0,252,14,556,41,0,41,13,20,0,36,36,38,37,38,177,0,0,1,26,28,67,22,46,179,0,0,6,8,8,10,3,21,1,0,1,0,0,0,0,0,470,36,254,0,1,20,0,15,138,72,25,4,193,48,35,11,18,0,190,1,0,492,446,66,202,12,163,3,0,50,0,5,43,4,75,0,0,0,522,203,1,4,6,23,0,1,0,0,0,15,18,14,20,84,88,53,31,183,458,66,69,71,74,68,70,26,23,8,4,1,0,0,0,0,17.0,14.0,19.0,25.0,13.0,15.0,25.0,18.0,19.0,13.0,20.0,22.0,16.0,13.0,18.0,16.0,11.0,26.0,14.0,16.0,15.0,20.0,18.0,16.0,18.0,15.0,28.0,17.0,11.0,16.0,14.0,14.0,13.0,13.0,10.0,10.0,10.0,10.0,8.0,7.0,9.0,9.0,10.0,9.0,16.0,14.0,11.0,13.0,9.0,8.0,5.0,9.0,9.0,14.0,8.0,11.0,6.0,4.0,7.0,4.0,4.0,6.0,6.0,3.0,10.0,10.0,5.0,6.0,5.0,8.0,3.0,3.0,0.0,3.0,5.0,3.0,7.0,1.0,1.0,4.0,2.0,2.0,1.0,3.0,4.0,3.0,0.0,3.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,267,580,89,2,88,90,89,83,87,87,64,45,53,55,45,32,29,34,14,16,12,8,4,1,0,2,914,2,9,13,0,914,2,9,13,0,266,5,101,125,16,0,158,267,0,473,460,5,0,2,20,1,0,0,0,0,0,0,8,907,0,13,42,21,13,0,3,297,549,0,123,134,16,3,0,662,0,2.625698324022346,0.0,3.7796610169491527,0.0,6.878464818763327,3,12,10,8,0,1,94,157,0,3,9,16,30,43,54,27,32,31,19,9,4,5,3,0,0,261,24,179,106,176,109,32,253,190,95,27,258,150,135,6,279,240,45,168,117,115,53,38,247,114,171,63,222,163,122,152,133,3,282,69,144,67,5,0,223,62,0,1,7,1,0,0,0,0,0,0,2,274,0,1.7263157894736842,1.5649122807017544,0.0,1.0,1.0,49.44561403508772 +PA040102,30203,Colón,Chagres,El Guabo,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,244,7,383,34,0,0,0,7,0,336,0,1,50,9,3,23,0,2,81,0,327,0,16,0,0,364,52,0,3,0,5,424,0,72,17,1,15,6,0,0,3,412,9,0,0,263,156,0,3,1,0,1,416,0,1,0,0,7,0,20,293,0,55,56,0,0,231,83,5,19,63,1,12,0,6,4,0,0,535,5.414012738853503,15.254777070063694,6.777070063694268,20.88853503184713,1.0141509433962264,2.900943396226415,1.7735849056603774,430,260,574,59,126,13,20,11,8,30,6,2,14,0,14,17,4,9,11,0,4,881,544,0,77,1348,0,522,903,0,1285,140,0,412,1013,0,404,8,940,73,0,75,26,25,2,42,39,63,57,63,416,0,0,0,39,55,121,35,49,240,2,2,15,7,14,23,6,4,2,0,3,0,0,0,0,0,514,12,698,0,0,10,2,17,237,380,30,34,184,32,33,10,22,1,238,1,2,820,733,51,218,10,189,7,0,46,2,17,113,9,427,5,0,0,906,281,0,2,5,27,1,2,0,0,2,10,9,9,14,72,141,33,29,207,1020,140,69,69,67,59,83,13,17,6,3,2,0,0,0,5,36.0,35.0,25.0,32.0,44.0,31.0,27.0,37.0,30.0,32.0,32.0,37.0,32.0,21.0,23.0,26.0,25.0,23.0,20.0,27.0,21.0,29.0,33.0,25.0,23.0,23.0,34.0,21.0,25.0,20.0,19.0,16.0,20.0,21.0,28.0,19.0,26.0,16.0,22.0,13.0,27.0,11.0,11.0,15.0,14.0,10.0,13.0,18.0,17.0,11.0,10.0,10.0,19.0,13.0,14.0,14.0,22.0,16.0,13.0,12.0,19.0,8.0,9.0,14.0,10.0,7.0,14.0,8.0,7.0,7.0,11.0,9.0,6.0,9.0,7.0,7.0,2.0,5.0,10.0,6.0,8.0,2.0,4.0,3.0,4.0,2.0,3.0,2.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,474,925,154,0,172,157,145,121,131,123,104,96,78,69,66,77,60,43,42,30,21,10,7,1,0,0,1530,3,2,18,0,1530,3,2,18,0,455,7,99,172,43,2,301,474,0,950,602,1,0,2,1,1,0,0,0,0,0,0,16,1533,0,6,104,26,9,1,0,207,1200,0,129,201,18,1,0,1204,0,2.6695652173913045,0.0,3.708955223880597,0.0,6.513844172569221,0,36,11,4,0,0,70,309,0,49,36,37,48,78,54,46,27,23,16,9,3,3,0,0,1,399,31,266,164,226,204,48,382,287,143,8,422,202,228,5,425,356,74,248,182,156,92,34,396,186,244,50,380,243,187,240,190,1,429,75,237,109,9,0,330,100,0,0,0,0,0,0,0,0,0,0,6,424,0,1.9069767441860463,1.7046511627906975,0.0,1.1428571428571428,1.1428571428571428,50.181395348837206 +PA040103,30204,Colón,Chagres,La Encantada,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,568,20,590,44,0,0,0,20,0,48,0,7,450,28,2,119,0,0,11,0,615,8,20,0,0,443,204,0,0,0,7,654,0,195,31,0,13,11,0,0,1,646,7,0,0,127,525,1,1,0,0,0,638,0,7,0,0,9,0,8,314,1,159,172,0,0,227,152,30,4,190,2,37,0,4,8,0,0,904,6.406332453825858,20.445910290237467,6.95778364116095,23.62532981530343,1.003058103975535,3.2522935779816518,1.9938837920489296,656,445,1007,58,105,13,4,2,4,21,2,3,13,0,29,16,4,6,9,2,3,1135,1005,0,31,2109,0,602,1538,0,1951,189,0,632,1508,0,625,7,1405,103,0,104,27,47,3,79,94,139,101,121,778,0,0,0,63,89,176,48,60,181,1,1,4,7,4,5,3,4,0,0,1,0,0,0,0,0,816,6,1010,0,0,4,1,14,375,535,19,67,67,46,19,1,9,0,680,0,0,1240,1093,45,208,2,450,0,0,117,0,90,156,15,338,16,0,0,1621,195,0,1,5,9,0,1,0,0,0,2,9,8,12,33,451,28,7,272,1721,222,115,101,59,38,38,8,11,2,1,0,0,0,1,16,52.0,47.0,45.0,49.0,48.0,42.0,58.0,61.0,56.0,43.0,54.0,57.0,50.0,48.0,48.0,45.0,38.0,47.0,44.0,34.0,45.0,44.0,28.0,35.0,37.0,33.0,27.0,30.0,27.0,26.0,15.0,34.0,22.0,18.0,29.0,25.0,17.0,33.0,22.0,23.0,33.0,20.0,31.0,24.0,27.0,19.0,27.0,22.0,22.0,26.0,19.0,21.0,18.0,26.0,19.0,22.0,14.0,20.0,25.0,26.0,21.0,21.0,16.0,17.0,16.0,23.0,19.0,17.0,12.0,8.0,15.0,13.0,8.0,9.0,8.0,7.0,10.0,14.0,5.0,7.0,12.0,13.0,11.0,3.0,6.0,6.0,2.0,3.0,2.0,0.0,4.0,2.0,0.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,758,1330,245,0,241,260,257,208,189,143,118,120,135,116,103,107,91,79,53,43,45,13,11,1,0,0,2305,2,2,24,0,2306,3,0,24,0,771,6,110,200,68,1,419,758,0,1348,983,2,0,0,11,1,0,0,0,2,0,0,8,2311,0,5,79,25,2,1,0,332,1889,0,45,123,16,1,0,2148,0,3.234093637454982,0.0,4.480836236933798,0.0,5.51650235747964,3,29,9,1,1,0,103,510,0,107,68,84,115,131,74,34,17,15,5,5,0,0,0,1,0,560,96,76,580,85,571,74,582,43,613,3,653,294,362,4,652,427,229,155,501,34,121,10,646,128,528,26,630,549,107,552,104,5,651,115,429,107,5,0,548,108,0,0,4,0,0,0,0,1,0,0,2,649,0,1.8902439024390243,1.666158536585366,0.0,1.0,1.0,51.86128048780488 +PA040105,30205,Colón,Chagres,Palmas Bellas,861,5,0,0,0,0,0,0,0,0,0,0,1,0,0,0,368,222,39,541,49,0,0,0,39,0,569,0,3,30,4,4,16,0,3,338,0,272,12,6,1,0,563,48,5,0,0,13,629,0,143,54,9,26,5,0,1,9,587,30,1,1,535,71,0,10,0,12,1,509,1,113,1,0,4,1,231,335,0,29,34,0,0,454,1,12,13,16,41,25,0,48,18,1,0,867,1.9714285714285715,8.397802197802198,2.476923076923077,9.826373626373629,1.0079491255961843,3.3322734499205087,2.0508744038155804,635,356,832,50,141,22,21,13,2,34,4,8,33,0,31,28,4,15,15,6,9,1617,387,0,289,1715,0,1443,561,0,1838,166,0,640,1364,0,589,51,1267,97,0,99,22,33,12,50,57,79,62,73,270,0,0,0,75,108,165,82,131,490,5,6,15,28,39,40,32,22,4,0,5,0,0,0,0,0,949,93,718,0,0,74,3,56,374,233,15,40,465,122,126,19,95,1,178,5,0,1093,1058,191,327,20,427,9,0,37,0,13,102,22,477,0,0,0,1073,564,0,6,27,83,2,5,0,0,0,30,35,59,39,221,138,148,69,303,1047,160,108,114,182,147,185,83,70,31,10,6,4,1,3,0,30.0,37.0,45.0,35.0,48.0,36.0,34.0,49.0,39.0,38.0,40.0,47.0,42.0,43.0,37.0,41.0,40.0,40.0,43.0,29.0,39.0,38.0,23.0,26.0,39.0,38.0,49.0,34.0,31.0,22.0,34.0,36.0,35.0,24.0,29.0,20.0,29.0,31.0,33.0,29.0,29.0,28.0,28.0,27.0,20.0,24.0,20.0,29.0,26.0,16.0,20.0,23.0,19.0,15.0,24.0,23.0,10.0,26.0,23.0,22.0,14.0,14.0,23.0,17.0,12.0,7.0,16.0,11.0,8.0,11.0,11.0,8.0,16.0,6.0,10.0,6.0,8.0,4.0,3.0,11.0,5.0,5.0,8.0,3.0,2.0,2.0,1.0,1.0,3.0,1.0,5.0,1.0,4.0,1.0,1.0,2.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,600,1364,186,1,195,196,209,193,165,174,158,142,132,115,101,104,80,53,51,32,23,8,12,6,1,1,2131,4,4,12,0,2131,4,4,12,0,646,25,189,227,61,9,394,600,0,1345,799,7,0,1,5,3,0,0,0,0,1,0,34,2107,0,42,177,141,87,4,14,1288,398,0,331,389,64,5,1,1361,0,2.486766398158803,0.0,3.509433962264151,0.0,7.775918177591818,17,52,46,39,3,7,368,103,0,8,18,20,36,83,101,84,72,101,48,29,16,10,1,7,0,591,44,492,143,437,198,55,580,527,108,94,541,266,369,38,597,583,52,471,164,336,135,123,512,442,193,117,518,231,404,217,418,8,627,122,334,157,22,0,432,203,1,0,2,3,0,0,0,0,1,0,10,619,0,1.721259842519685,1.6661417322834646,1.0,1.1153846153846154,1.1153846153846154,49.78864353312303 +PA040106,30206,Colón,Chagres,Piña,402,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,78,35,237,18,2,0,0,32,1,268,0,0,5,3,1,13,0,0,136,0,146,8,0,0,0,266,12,2,0,0,10,290,0,83,23,1,9,3,0,0,1,268,21,0,0,242,31,1,8,0,8,0,197,0,92,0,0,1,0,72,186,0,18,14,0,0,204,35,4,4,24,11,3,0,3,1,1,0,409,4.397489539748954,12.97907949790795,6.937238493723849,23.774058577405857,1.0034482758620689,3.279310344827586,2.093103448275862,291,156,323,21,63,2,4,8,0,7,4,3,6,0,22,3,6,1,6,2,7,607,218,0,62,763,0,553,272,0,742,83,0,230,595,0,216,14,558,37,0,37,15,19,1,24,28,31,47,26,134,1,3,5,27,46,84,32,42,150,4,3,4,15,20,16,4,6,0,0,1,0,0,0,0,0,448,9,276,0,0,2,0,31,129,83,7,26,169,64,60,9,40,0,88,27,0,470,418,71,125,9,227,0,0,25,0,6,30,9,127,0,0,0,505,193,5,3,7,19,0,1,0,0,0,10,12,14,18,92,75,47,25,164,467,51,61,58,58,54,69,43,15,8,3,0,0,0,1,0,12.0,18.0,15.0,18.0,21.0,13.0,14.0,14.0,19.0,11.0,27.0,18.0,11.0,12.0,17.0,13.0,14.0,10.0,10.0,14.0,17.0,15.0,15.0,14.0,14.0,18.0,18.0,15.0,11.0,14.0,8.0,13.0,5.0,17.0,16.0,9.0,6.0,11.0,6.0,6.0,9.0,10.0,16.0,10.0,10.0,13.0,8.0,11.0,12.0,8.0,9.0,11.0,13.0,9.0,10.0,10.0,10.0,8.0,8.0,10.0,8.0,7.0,8.0,8.0,8.0,6.0,4.0,9.0,8.0,5.0,6.0,6.0,5.0,8.0,5.0,2.0,3.0,2.0,4.0,2.0,4.0,2.0,2.0,1.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,240,553,95,0,84,71,85,61,75,76,59,38,55,52,52,46,39,32,30,13,11,4,1,3,1,0,882,4,2,0,0,882,4,2,0,0,203,5,101,151,28,3,157,240,0,506,381,1,0,5,3,1,0,0,0,3,0,0,7,869,0,31,3,110,46,1,1,400,296,0,129,200,32,4,2,521,0,2.6489675516224187,0.0,3.404858299595141,0.0,7.177927927927928,10,2,37,22,0,0,134,86,0,12,12,17,23,40,42,39,33,46,17,4,3,2,0,1,0,277,14,225,66,208,83,21,270,242,49,43,248,139,152,5,286,263,28,217,74,114,103,24,267,232,59,55,236,123,168,91,200,1,290,73,154,58,6,0,206,85,0,1,0,1,0,0,0,2,0,0,5,282,0,1.6151202749140894,1.436426116838488,0.0,1.0,1.0,51.89003436426117 +PA040107,30207,Colón,Chagres,Salud,1005,3,6,0,0,0,0,0,0,0,0,0,0,0,0,9,342,306,31,610,47,0,0,1,28,2,502,0,6,82,8,7,77,0,6,175,0,483,21,4,0,5,604,77,1,1,0,5,688,0,207,59,23,24,13,0,0,13,642,32,1,0,443,211,0,2,1,31,0,528,0,143,1,1,14,1,162,357,0,56,113,0,0,460,16,15,54,85,2,20,0,25,11,0,0,1014,4.401260504201681,14.067226890756302,5.044117647058823,16.281512605042018,1.004360465116279,3.143895348837209,2.052325581395349,691,454,1057,108,139,7,6,17,4,33,7,2,13,0,43,14,3,16,8,10,9,1663,662,0,210,2115,0,1514,811,0,2048,277,0,780,1545,0,763,17,1456,89,0,102,38,62,7,74,90,95,99,114,515,0,0,1,71,118,203,56,119,417,0,0,31,21,23,15,20,27,3,2,2,0,0,0,0,0,1168,35,789,0,0,30,0,63,454,195,16,61,412,257,116,7,65,2,332,2,0,1339,1199,211,373,7,536,5,0,61,0,31,75,16,538,1,0,0,1430,492,1,0,13,51,3,2,0,0,0,20,30,26,24,194,271,129,60,449,1400,166,102,164,276,137,162,62,45,16,2,2,1,0,2,1,62.0,52.0,49.0,50.0,58.0,51.0,63.0,51.0,56.0,54.0,60.0,54.0,60.0,50.0,53.0,48.0,48.0,72.0,50.0,43.0,39.0,44.0,38.0,40.0,41.0,40.0,37.0,41.0,25.0,35.0,30.0,36.0,38.0,35.0,41.0,25.0,33.0,34.0,29.0,29.0,36.0,29.0,25.0,20.0,26.0,27.0,30.0,25.0,22.0,24.0,24.0,21.0,26.0,29.0,16.0,12.0,21.0,18.0,21.0,16.0,13.0,15.0,19.0,11.0,15.0,12.0,18.0,9.0,14.0,18.0,9.0,14.0,6.0,6.0,11.0,6.0,4.0,7.0,10.0,7.0,8.0,10.0,4.0,2.0,8.0,3.0,4.0,4.0,3.0,0.0,1.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,823,1512,203,0,271,275,277,261,202,178,180,150,136,128,116,88,73,71,46,34,32,14,5,1,0,0,2526,5,5,2,0,2526,5,5,2,0,801,10,174,251,45,3,431,823,0,1443,1089,6,0,10,11,5,0,0,0,18,0,0,61,2433,0,57,103,81,27,1,7,1360,902,0,208,320,77,1,2,1930,0,2.65249734325186,0.0,3.921824104234528,0.0,6.693459416863672,21,35,33,11,0,4,357,230,0,7,21,18,49,140,141,104,57,88,32,14,10,8,0,2,0,630,61,432,259,390,301,64,627,432,259,70,621,236,455,13,678,596,95,405,286,369,36,79,612,537,154,107,584,344,347,311,380,6,685,121,418,142,10,0,545,146,0,4,1,2,0,0,0,7,0,0,20,657,0,1.9377713458755428,1.735166425470333,1.25,1.0625,1.0625,48.98408104196816 +PA040304,30301,Colón,Donoso,Miguel de La Borda,1078,0,0,1,0,0,0,0,7,0,0,2,1,0,0,0,241,350,62,545,46,1,0,1,38,22,176,0,8,339,8,7,110,0,5,142,16,460,12,21,2,0,459,187,0,0,0,7,653,0,240,72,9,49,56,0,0,6,615,31,1,0,186,467,0,0,0,0,0,281,0,299,1,5,66,1,47,241,0,32,333,0,0,419,35,8,23,52,0,101,0,1,14,0,0,1089,6.552863436123348,23.090308370044053,6.68942731277533,23.3215859030837,1.010719754977029,3.165390505359877,2.090352220520674,663,453,984,64,118,9,20,15,3,29,15,4,31,0,35,19,1,17,8,4,12,1404,814,0,162,2056,0,1008,1210,0,2002,216,0,718,1500,0,693,25,1394,106,0,113,38,42,3,73,62,97,105,124,688,0,0,1,84,118,196,54,82,252,4,1,14,15,14,16,13,6,1,1,1,0,0,0,0,0,822,33,1069,0,2,7,9,28,404,562,37,38,149,71,48,2,49,0,505,16,7,1317,1091,88,138,2,408,42,0,162,7,56,119,14,702,7,0,0,1584,302,2,4,9,22,0,1,0,0,2,13,13,17,30,85,368,66,24,237,1751,188,113,84,89,51,66,16,31,4,4,2,1,0,1,7,34.0,47.0,52.0,57.0,41.0,52.0,41.0,57.0,52.0,51.0,66.0,66.0,45.0,58.0,52.0,46.0,48.0,37.0,35.0,33.0,32.0,38.0,31.0,37.0,32.0,33.0,31.0,32.0,28.0,40.0,42.0,29.0,37.0,27.0,26.0,20.0,34.0,34.0,31.0,22.0,29.0,25.0,34.0,30.0,23.0,25.0,23.0,29.0,28.0,25.0,28.0,29.0,24.0,16.0,26.0,23.0,16.0,20.0,16.0,18.0,20.0,21.0,20.0,22.0,13.0,12.0,12.0,12.0,15.0,25.0,14.0,10.0,16.0,7.0,7.0,10.0,12.0,9.0,5.0,7.0,6.0,5.0,3.0,3.0,2.0,1.0,4.0,2.0,4.0,2.0,4.0,3.0,1.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,771,1418,218,1,231,253,287,199,170,164,161,141,141,130,123,93,96,76,54,43,19,13,9,4,0,1,2388,2,11,7,0,2390,2,9,7,0,807,12,82,227,59,0,450,771,0,1339,1067,2,0,5,47,11,4,6,4,0,2,0,60,2269,0,79,150,68,25,0,5,1268,813,0,106,163,27,3,2,2107,0,3.1204250295159386,0.0,4.2571912013536375,0.0,6.120431893687708,23,43,28,12,0,3,334,220,0,144,65,70,102,90,69,36,19,33,8,14,3,6,0,1,0,561,102,210,453,247,416,123,540,189,474,16,647,169,494,13,650,450,213,236,427,174,62,37,626,182,481,27,636,426,237,386,277,3,660,119,400,136,8,7,549,114,0,4,12,2,1,2,2,0,0,0,16,624,0,1.9656716417910447,1.628358208955224,0.0,1.0384615384615383,1.0384615384615383,51.01508295625943 +PA040301,30302,Colón,Donoso,Coclé del Norte,1366,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,541,148,703,65,37,58,1,52,0,0,0,59,571,11,20,243,0,12,26,4,692,39,92,10,53,532,371,0,0,0,13,916,0,263,56,1,78,54,2,0,6,888,22,0,0,104,787,3,1,8,1,12,665,0,87,0,11,153,0,75,206,2,109,508,16,0,489,97,6,8,121,6,179,0,0,10,0,0,1370,6.249146757679181,20.281569965870307,6.928327645051194,23.5443686006826,1.0065502183406114,2.9224890829694323,1.7631004366812226,922,685,2156,115,197,23,32,44,6,71,14,6,30,0,47,19,10,4,23,4,9,1613,2215,0,118,3710,0,634,3194,0,3115,713,0,1220,2608,0,1180,40,2115,493,0,503,53,112,5,179,189,248,221,231,1104,1,2,2,120,162,340,70,98,148,0,0,8,7,10,8,2,3,0,0,2,0,0,0,0,0,1330,32,1754,0,5,4,5,10,645,1023,46,30,150,82,42,14,46,3,827,193,1,2275,2026,35,189,13,861,24,2,233,1,59,58,9,2030,313,0,0,2926,176,2,0,3,7,0,2,0,0,1,8,10,7,25,69,769,64,37,372,3311,259,99,92,66,48,47,33,26,3,3,1,0,0,0,313,98.0,130.0,132.0,113.0,131.0,96.0,124.0,118.0,113.0,130.0,120.0,130.0,106.0,104.0,116.0,108.0,100.0,94.0,95.0,87.0,81.0,58.0,79.0,70.0,66.0,60.0,50.0,68.0,76.0,50.0,55.0,64.0,54.0,56.0,40.0,54.0,36.0,52.0,39.0,54.0,47.0,53.0,46.0,47.0,26.0,22.0,28.0,33.0,29.0,32.0,27.0,25.0,31.0,22.0,24.0,34.0,29.0,22.0,23.0,19.0,18.0,11.0,11.0,26.0,16.0,6.0,16.0,10.0,9.0,20.0,13.0,14.0,13.0,8.0,9.0,6.0,6.0,10.0,6.0,8.0,7.0,3.0,10.0,3.0,1.0,3.0,2.0,4.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1761,2347,193,0,604,581,576,484,354,304,269,235,219,144,129,127,82,61,57,36,24,12,3,0,0,0,4149,9,11,132,0,4149,10,10,132,0,1374,11,85,224,57,3,789,1758,0,2509,1782,10,0,8,901,52,0,0,6,0,1,0,13,3320,0,49,37,66,9,0,0,325,3815,0,93,115,12,2,0,4079,0,2.9316901408450704,0.0,4.65162037037037,0.0,4.5019762845849804,21,14,17,4,0,0,77,789,0,282,98,84,116,95,69,38,32,36,10,5,1,1,1,0,54,649,273,130,792,230,692,187,735,95,827,4,918,234,688,0,922,478,444,245,677,143,102,23,899,133,789,12,910,559,363,514,408,21,901,116,603,181,22,0,788,134,0,0,167,12,0,0,0,0,0,0,4,739,0,2.4674620390455533,2.1973969631236443,1.0,1.0,1.0,45.399132321041215 +PA040302,30303,Colón,Donoso,El Guásimo,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,709,28,683,65,1,5,0,22,0,0,0,8,417,11,14,314,0,12,0,0,675,41,58,2,0,198,575,0,0,0,3,776,0,210,33,0,40,42,0,0,4,758,14,0,0,17,758,0,1,0,0,0,662,1,2,0,10,101,0,6,89,0,82,599,0,0,266,104,4,45,124,4,229,0,0,0,0,0,1101,6.010810810810811,19.67837837837838,6.981081081081081,23.975675675675674,1.006443298969072,3.106958762886598,1.972938144329897,781,571,1845,57,116,24,23,24,7,39,2,1,4,0,33,25,20,4,17,3,7,1009,2120,0,30,3099,0,481,2648,0,2751,378,0,1064,2065,0,1060,4,1886,179,0,181,72,76,1,131,151,228,143,173,1093,0,0,1,92,146,357,45,60,163,0,0,3,2,3,2,2,3,1,0,0,0,0,0,0,0,1118,31,1427,0,0,0,26,8,548,706,40,125,53,101,40,4,16,0,893,37,0,1913,1581,44,137,13,684,38,0,227,1,136,141,13,1167,1,0,0,2396,170,1,1,1,6,1,0,0,0,1,10,12,4,10,48,626,33,8,397,2744,263,135,118,113,59,30,11,9,5,4,1,1,0,0,1,72.0,104.0,82.0,107.0,86.0,87.0,77.0,113.0,91.0,99.0,87.0,103.0,87.0,93.0,78.0,95.0,91.0,74.0,77.0,71.0,50.0,43.0,48.0,44.0,50.0,52.0,42.0,61.0,42.0,36.0,45.0,45.0,36.0,26.0,35.0,43.0,34.0,46.0,35.0,32.0,37.0,32.0,40.0,33.0,36.0,29.0,24.0,33.0,27.0,30.0,39.0,25.0,33.0,31.0,25.0,17.0,22.0,18.0,23.0,18.0,19.0,15.0,18.0,19.0,14.0,16.0,13.0,14.0,18.0,9.0,14.0,13.0,13.0,7.0,4.0,17.0,7.0,9.0,11.0,5.0,1.0,6.0,6.0,4.0,7.0,3.0,1.0,1.0,5.0,4.0,2.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,1366,1910,215,3,451,467,448,408,235,233,187,190,178,143,153,98,85,70,51,49,24,14,5,2,0,3,3476,2,0,16,0,3476,2,0,16,0,970,3,83,300,63,1,708,1366,0,2059,1433,2,0,4,11,0,0,0,0,1,0,0,20,3458,0,3,101,11,4,1,0,781,2593,0,39,88,14,0,0,3353,0,3.3389529724933453,0.0,5.121037463976945,0.0,4.997996565540928,0,26,4,0,0,0,208,543,0,105,88,90,126,184,98,40,19,14,9,4,1,2,0,1,0,368,413,26,755,61,720,106,675,18,763,1,780,287,494,0,781,322,459,77,704,46,31,2,779,143,638,5,776,666,115,613,168,2,779,106,531,140,4,0,680,101,2,2,4,0,0,0,0,1,0,0,6,768,0,2.449423815620998,2.0243277848911654,1.0,1.0,1.0,48.04749679075738 +PA040303,30304,Colón,Donoso,Gobea,367,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,143,85,18,213,15,0,0,0,17,1,150,0,3,60,11,4,17,0,1,68,0,171,4,1,0,2,198,44,0,0,1,3,246,0,77,26,0,3,15,0,0,3,231,11,1,0,145,100,0,0,0,1,0,114,0,129,2,0,1,0,62,115,0,15,54,0,0,146,34,6,7,29,1,12,0,7,4,0,0,370,6.455555555555556,21.988888888888887,6.977777777777778,24.0,1.008130081300813,3.402439024390244,2.3008130081300813,249,153,350,19,95,4,5,5,3,20,6,1,16,1,9,5,3,5,0,5,4,635,219,0,81,773,0,429,425,0,787,67,0,272,582,0,244,28,549,33,0,33,17,14,1,26,17,49,36,43,225,0,0,2,41,46,74,20,32,132,1,2,7,9,11,9,3,2,0,0,0,0,0,0,2,0,328,33,389,0,0,8,19,12,158,180,27,12,84,46,39,5,17,0,152,1,0,502,425,48,118,5,143,13,1,16,0,6,35,4,239,2,0,0,570,157,2,0,7,12,0,0,2,0,0,6,8,8,8,47,100,37,11,136,580,88,60,52,45,45,22,11,11,4,3,4,0,0,0,2,15.0,20.0,23.0,15.0,20.0,18.0,15.0,20.0,16.0,15.0,25.0,24.0,21.0,17.0,18.0,13.0,17.0,21.0,19.0,17.0,17.0,17.0,14.0,20.0,23.0,13.0,11.0,8.0,15.0,5.0,13.0,12.0,15.0,8.0,17.0,11.0,12.0,11.0,7.0,14.0,7.0,13.0,8.0,8.0,14.0,8.0,9.0,6.0,8.0,12.0,5.0,8.0,10.0,8.0,4.0,6.0,9.0,10.0,9.0,10.0,5.0,6.0,5.0,7.0,9.0,9.0,6.0,14.0,5.0,4.0,2.0,2.0,6.0,2.0,8.0,8.0,3.0,3.0,2.0,2.0,0.0,0.0,2.0,4.0,2.0,3.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,282,554,91,0,93,84,105,87,91,52,65,55,50,43,35,44,32,38,20,18,8,5,2,0,0,0,916,4,3,4,0,916,4,3,4,0,318,8,34,60,22,2,201,282,0,424,501,2,0,7,2,0,3,0,1,3,0,0,17,894,0,55,113,74,24,0,1,472,188,0,63,104,16,0,0,744,0,2.807121661721068,0.0,3.891774891774892,0.0,6.568500539374326,19,34,29,10,0,0,115,42,0,26,23,22,27,45,30,21,16,13,14,4,4,2,0,0,1,230,19,143,106,127,122,30,219,131,118,16,233,116,133,2,247,207,42,138,111,117,21,26,223,156,93,38,211,127,122,141,108,4,245,53,124,62,10,2,202,47,0,2,1,0,1,0,0,2,0,0,4,239,0,2.0,1.6932270916334662,0.0,1.0,1.0,50.95180722891566 +PA040305,30305,Colón,Donoso,Río Indio,457,0,3,0,0,0,0,1,0,0,0,0,2,0,0,0,137,161,14,274,24,0,0,1,13,0,184,0,0,106,12,0,9,0,1,100,0,200,0,12,0,0,247,64,0,0,0,1,312,0,75,22,19,19,13,0,0,9,294,9,0,0,194,117,0,0,0,1,0,211,0,97,0,1,3,0,56,161,0,23,72,0,0,50,17,94,0,23,25,39,0,30,34,0,0,463,4.522388059701493,16.52238805970149,5.776119402985074,19.71641791044776,1.0064102564102564,3.4166666666666665,2.1474358974358974,316,196,448,40,83,8,12,8,1,15,6,1,10,0,22,13,2,5,18,1,3,689,361,0,89,961,0,572,478,0,957,93,0,363,687,0,343,20,646,41,0,41,6,19,11,31,36,44,41,60,226,0,0,0,36,50,97,21,52,207,1,0,8,10,17,18,5,13,0,0,0,0,0,0,0,0,385,70,470,0,1,29,27,13,214,184,25,34,159,26,42,1,23,0,182,5,1,600,544,85,117,2,203,18,1,12,1,13,63,5,202,1,0,0,643,238,1,1,8,34,0,0,0,0,1,4,11,24,17,53,142,42,30,131,715,101,59,52,59,50,52,14,26,9,4,0,1,1,0,1,23.0,19.0,33.0,19.0,21.0,15.0,17.0,32.0,18.0,22.0,31.0,31.0,21.0,19.0,20.0,20.0,24.0,19.0,25.0,22.0,24.0,19.0,14.0,19.0,26.0,19.0,16.0,19.0,18.0,11.0,16.0,13.0,13.0,21.0,11.0,11.0,10.0,15.0,9.0,14.0,19.0,7.0,7.0,15.0,8.0,10.0,8.0,13.0,19.0,10.0,8.0,8.0,13.0,12.0,10.0,6.0,21.0,10.0,8.0,12.0,8.0,4.0,11.0,11.0,9.0,4.0,10.0,5.0,7.0,11.0,5.0,5.0,2.0,5.0,4.0,6.0,9.0,4.0,0.0,9.0,6.0,3.0,2.0,1.0,0.0,2.0,2.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,341,695,108,0,115,104,122,110,102,83,74,59,56,60,51,57,43,37,21,28,12,9,1,0,0,0,1130,6,2,6,0,1130,6,2,6,0,335,6,47,129,23,0,263,341,0,708,431,5,0,3,5,0,0,0,0,0,1,1,15,1119,0,54,86,77,35,2,5,560,325,0,101,140,15,2,0,886,0,2.648275862068965,0.0,3.967857142857143,0.0,6.962412587412588,19,23,25,17,2,3,143,84,0,39,16,17,42,56,37,27,18,28,17,5,6,4,1,1,0,283,33,167,149,159,157,48,268,168,148,43,273,102,214,2,314,245,71,178,138,113,65,41,275,192,124,64,252,155,161,136,180,5,311,55,179,79,3,1,259,57,0,2,3,0,0,0,0,0,0,0,2,309,0,1.892744479495268,1.7160883280757098,0.0,1.0,1.0,50.901898734177216 +PA040401,30402,Colón,Portobelo,Cacique,207,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,6,5,93,2,0,1,0,4,0,93,0,1,6,0,0,0,0,0,43,0,52,0,2,0,3,94,2,1,0,0,3,100,0,82,15,1,6,4,0,0,1,83,16,0,0,90,8,1,1,0,0,0,64,1,35,0,0,0,0,62,33,0,1,4,0,0,74,3,2,0,6,0,1,0,14,0,0,0,208,5.311688311688312,7.818181818181818,6.831168831168832,23.20779220779221,1.01,3.92,2.79,101,64,96,6,27,1,0,7,2,3,1,0,0,0,9,0,0,1,1,0,2,239,48,0,68,219,0,227,60,0,270,17,0,87,200,0,82,5,194,6,0,6,5,5,0,9,8,7,9,11,53,0,0,0,8,18,19,11,9,64,0,0,6,4,15,7,5,4,0,1,3,0,0,0,0,0,134,4,119,0,0,3,0,11,48,51,7,2,66,17,8,1,10,0,11,22,0,166,142,26,41,1,66,0,0,1,0,0,11,0,56,0,0,0,148,85,0,1,2,18,0,3,0,0,0,5,6,9,3,41,21,12,12,29,138,22,13,20,29,23,28,7,12,5,1,5,0,0,5,0,8.0,4.0,5.0,4.0,3.0,6.0,6.0,8.0,4.0,3.0,9.0,7.0,3.0,7.0,5.0,3.0,3.0,5.0,4.0,3.0,4.0,6.0,4.0,8.0,2.0,5.0,5.0,7.0,2.0,2.0,2.0,8.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,2.0,3.0,4.0,3.0,5.0,3.0,2.0,5.0,2.0,6.0,1.0,4.0,2.0,5.0,6.0,4.0,5.0,4.0,5.0,2.0,1.0,3.0,2.0,3.0,4.0,2.0,6.0,5.0,4.0,2.0,1.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,82,191,35,0,24,27,31,18,24,21,23,19,18,16,21,17,14,18,5,2,4,3,2,1,0,0,291,8,8,1,0,291,9,7,1,0,107,2,27,41,7,1,41,82,0,146,147,15,0,2,0,0,0,0,0,0,0,0,7,299,0,27,31,16,19,0,0,163,52,0,50,43,11,0,2,202,0,2.221311475409836,0.0,3.1341463414634148,0.0,8.14935064935065,6,10,8,6,0,0,54,17,0,1,0,6,3,15,20,16,8,15,6,5,2,0,0,4,0,98,3,84,17,76,25,15,86,89,12,42,59,50,51,1,100,97,4,85,16,66,19,32,69,83,18,46,55,67,34,35,66,2,99,23,54,24,0,0,76,25,0,0,0,0,0,0,0,0,0,0,3,98,0,1.6435643564356437,1.405940594059406,0.0,0.0,0.0,50.75247524752475 +PA040402,30403,Colón,Portobelo,Puerto Lindo o Garrote,478,8,5,0,0,0,0,0,0,0,0,2,2,0,0,5,287,26,13,304,14,1,1,0,11,0,326,0,2,0,0,0,3,0,0,200,0,123,0,8,0,0,318,8,1,0,0,4,331,0,94,23,13,14,16,0,0,27,281,23,0,0,311,13,0,5,0,1,1,286,2,29,13,1,0,0,140,176,1,12,2,0,0,319,5,0,0,0,0,1,0,4,2,0,0,495,6.719135802469136,23.608024691358025,6.848765432098766,23.83333333333333,1.0060422960725075,3.205438066465257,2.1540785498489425,337,182,320,54,60,7,20,11,3,9,2,2,4,0,17,3,5,4,7,1,1,773,166,0,174,765,0,692,247,0,866,73,0,263,676,0,252,11,641,35,0,37,17,20,1,31,30,38,44,36,165,0,0,0,32,42,101,27,30,192,0,1,8,6,15,25,10,18,9,0,3,0,0,0,1,0,451,26,354,0,0,22,2,24,152,154,16,8,267,34,50,10,19,2,45,46,0,524,487,53,224,8,170,3,0,15,0,0,25,4,233,1,0,0,541,225,1,2,8,44,6,3,1,0,0,21,7,24,10,89,39,73,64,150,469,74,50,57,65,117,75,43,37,7,12,1,1,0,2,1,20.0,15.0,15.0,22.0,18.0,16.0,19.0,21.0,15.0,19.0,20.0,21.0,17.0,18.0,19.0,18.0,15.0,18.0,14.0,12.0,20.0,11.0,13.0,20.0,20.0,21.0,24.0,18.0,16.0,18.0,12.0,13.0,15.0,16.0,9.0,13.0,12.0,11.0,15.0,16.0,14.0,9.0,13.0,15.0,11.0,9.0,10.0,11.0,13.0,15.0,11.0,10.0,12.0,16.0,9.0,5.0,10.0,15.0,12.0,8.0,6.0,10.0,10.0,2.0,5.0,9.0,4.0,3.0,4.0,4.0,8.0,5.0,3.0,6.0,3.0,3.0,2.0,2.0,6.0,0.0,3.0,1.0,2.0,2.0,2.0,3.0,2.0,1.0,0.0,2.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,275,651,85,0,90,90,95,77,84,97,65,67,62,58,58,50,33,24,25,13,10,8,5,0,0,0,933,48,24,6,0,933,51,21,6,0,347,7,86,95,25,8,168,275,0,468,492,51,0,0,20,0,0,0,0,1,0,0,1,989,0,22,35,188,52,0,0,134,580,0,123,111,22,1,3,751,0,2.19240506329114,0.0,3.1203007518796992,0.0,7.416419386745797,10,14,44,24,0,0,41,204,0,12,13,11,23,40,53,47,32,46,23,17,5,8,1,2,0,328,9,310,27,293,44,35,302,306,31,85,252,133,204,10,327,314,23,262,75,240,22,73,264,213,124,121,216,79,258,84,253,0,337,92,169,72,4,0,230,107,0,0,6,0,0,0,0,0,0,0,1,330,0,1.5548961424332344,1.4451038575667656,1.5,1.0,1.0,47.97329376854599 +PA040403,30404,Colón,Portobelo,Isla Grande,652,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,300,12,15,311,1,8,0,0,7,0,315,0,1,9,0,0,2,0,0,237,0,81,4,4,1,0,320,1,0,0,0,6,327,0,247,36,3,18,21,0,0,23,273,31,0,0,298,20,0,2,0,7,0,240,0,76,8,1,2,0,155,165,0,4,3,0,0,196,6,5,0,0,0,2,0,117,0,1,0,656,3.4603960396039604,10.915841584158416,3.658415841584159,12.227722772277229,1.0061162079510704,3.287461773700306,2.220183486238532,333,149,327,31,94,3,6,8,1,20,2,2,12,0,21,7,1,2,6,1,0,710,203,0,97,816,0,550,363,0,840,73,0,265,648,0,254,11,619,29,0,30,18,16,8,15,33,44,32,34,172,0,0,4,40,30,89,29,37,208,1,1,10,8,17,12,5,15,2,0,3,0,0,0,0,0,453,25,324,0,4,11,3,18,146,137,12,11,242,25,51,50,33,0,18,56,0,504,484,50,182,46,177,20,0,0,0,2,32,5,241,1,0,0,513,243,6,2,5,29,1,3,0,0,0,19,3,13,10,104,19,76,60,174,473,99,49,76,80,87,71,25,20,2,5,0,0,0,0,1,19.0,24.0,15.0,17.0,18.0,17.0,19.0,16.0,24.0,17.0,16.0,23.0,11.0,17.0,16.0,22.0,12.0,12.0,10.0,17.0,13.0,16.0,21.0,18.0,20.0,19.0,19.0,19.0,15.0,14.0,14.0,12.0,18.0,19.0,12.0,16.0,17.0,10.0,6.0,12.0,15.0,11.0,10.0,9.0,13.0,8.0,9.0,4.0,10.0,12.0,11.0,15.0,12.0,14.0,11.0,9.0,16.0,11.0,12.0,3.0,10.0,5.0,9.0,3.0,11.0,7.0,9.0,7.0,6.0,6.0,4.0,3.0,3.0,5.0,5.0,4.0,1.0,4.0,2.0,3.0,5.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,269,636,83,0,93,93,83,73,88,86,75,61,58,43,63,51,38,35,20,14,10,3,0,1,0,0,945,36,6,1,0,947,37,3,1,0,305,5,136,86,23,4,160,269,0,555,410,23,0,1,3,0,0,0,0,0,0,0,6,978,0,252,15,103,35,1,6,373,203,0,99,129,20,1,0,739,0,2.307888040712468,0.0,3.1977611940298507,0.0,7.350202429149798,84,7,30,13,1,4,118,76,0,15,30,12,28,44,52,55,32,36,11,10,1,3,0,0,0,325,8,298,35,265,68,17,316,296,37,106,227,137,196,11,322,305,28,269,64,261,8,40,293,231,102,59,274,69,264,60,273,1,332,98,142,81,12,0,201,132,0,1,2,0,0,0,0,0,0,0,3,327,0,1.5135135135135136,1.4534534534534536,0.0,1.0,1.0,49.28528528528528 +PA040404,30405,Colón,Portobelo,María Chiquita,1190,1,291,0,0,0,3,0,0,0,0,0,0,0,0,13,809,42,15,838,26,2,0,0,12,1,852,4,1,6,1,4,11,0,0,609,4,230,1,4,0,31,847,16,2,0,0,14,879,0,354,68,101,50,30,0,3,93,724,55,0,4,839,25,1,13,1,0,0,444,6,425,2,0,1,1,501,355,0,17,6,0,11,736,30,2,1,2,1,14,48,32,2,0,0,1485,5.667953667953668,18.868725868725868,5.806949806949807,19.474903474903478,1.023890784982935,3.369738339021616,2.156996587030717,900,502,1213,84,176,11,28,8,4,30,14,3,130,0,39,20,9,3,18,1,7,2327,576,0,712,2191,0,2029,874,0,2678,225,0,1092,1811,0,968,124,1719,92,0,100,38,52,5,86,89,99,88,104,321,0,0,6,135,156,300,99,141,720,1,1,36,47,64,79,65,45,8,4,14,0,0,0,0,0,1027,153,1350,0,5,70,45,146,669,467,24,44,766,61,156,30,96,2,26,2,0,1597,1506,183,631,32,277,15,0,1,0,5,39,7,921,28,0,0,1439,850,6,4,38,175,6,12,0,0,0,41,79,54,83,228,18,198,151,328,1721,154,101,138,180,197,329,109,83,31,21,6,3,1,1,28,44.0,59.0,40.0,57.0,49.0,59.0,63.0,67.0,76.0,59.0,80.0,54.0,60.0,61.0,54.0,54.0,70.0,71.0,77.0,67.0,70.0,57.0,39.0,34.0,52.0,57.0,47.0,46.0,29.0,45.0,37.0,46.0,45.0,52.0,45.0,34.0,45.0,46.0,38.0,32.0,32.0,41.0,29.0,38.0,37.0,35.0,39.0,25.0,41.0,30.0,38.0,32.0,34.0,28.0,32.0,40.0,18.0,33.0,32.0,26.0,29.0,21.0,23.0,23.0,15.0,20.0,10.0,17.0,16.0,18.0,11.0,14.0,8.0,12.0,4.0,5.0,12.0,9.0,5.0,8.0,4.0,9.0,6.0,3.0,3.0,1.0,4.0,1.0,3.0,2.0,2.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,882,2006,214,1,249,324,309,339,252,224,225,195,177,170,164,149,111,81,49,39,25,11,5,2,2,1,3025,49,10,19,0,3025,51,8,19,0,660,27,149,486,62,14,824,881,0,1612,1455,36,0,26,48,4,0,0,3,47,1,0,17,2957,0,361,336,275,166,5,5,857,1098,0,574,690,143,10,6,1680,0,2.099180327868853,0.0,3.050931677018633,0.0,8.149210441508218,120,79,81,59,1,4,234,322,0,39,39,32,64,114,106,141,83,140,66,31,18,17,4,4,2,865,35,807,93,698,202,101,799,810,90,172,728,428,472,102,798,821,79,789,111,485,304,261,639,620,280,300,600,142,758,86,814,11,889,175,534,170,21,3,580,320,1,9,11,4,0,0,0,7,0,0,9,860,0,1.7685492801771872,1.6677740863787376,1.6,1.0571428571428572,1.0571428571428572,49.35817575083426 +PA040504,30501,Colón,Santa Isabel,Palenque,381,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,154,4,5,156,2,4,0,0,1,0,156,0,1,3,0,0,3,0,0,151,0,10,0,2,0,0,158,1,2,0,0,2,163,0,151,14,20,7,27,0,0,14,120,29,0,0,156,5,0,0,0,2,0,62,0,100,0,0,1,0,86,72,0,4,1,0,0,155,1,0,0,0,0,2,0,5,0,0,0,384,5.391025641025641,15.935897435897436,5.910256410256411,18.58333333333333,1.012269938650307,3.6134969325153374,2.5276073619631902,166,77,181,20,30,3,9,5,3,5,4,1,4,0,11,5,1,5,0,0,3,339,134,0,61,412,0,291,182,0,428,45,0,142,331,0,141,1,308,23,0,23,4,7,0,14,17,18,17,13,61,0,0,1,23,30,39,22,43,110,1,3,3,3,4,3,1,11,1,0,1,0,0,0,0,0,236,4,175,0,0,1,2,16,88,50,14,7,98,26,48,24,23,0,15,4,0,250,258,36,74,22,100,2,0,4,0,0,24,6,101,0,0,0,273,119,2,3,1,15,2,0,0,0,0,11,3,5,17,58,11,37,14,84,236,41,34,38,33,62,31,12,11,4,1,1,1,1,2,0,9.0,10.0,9.0,7.0,7.0,9.0,9.0,13.0,10.0,10.0,11.0,7.0,12.0,11.0,10.0,7.0,9.0,14.0,11.0,6.0,7.0,7.0,7.0,9.0,4.0,9.0,10.0,1.0,10.0,5.0,13.0,5.0,7.0,6.0,9.0,9.0,5.0,6.0,4.0,3.0,8.0,5.0,3.0,4.0,4.0,4.0,9.0,8.0,4.0,6.0,5.0,9.0,8.0,4.0,10.0,4.0,3.0,6.0,1.0,7.0,3.0,5.0,3.0,1.0,3.0,2.0,4.0,9.0,4.0,5.0,3.0,1.0,5.0,0.0,2.0,1.0,1.0,2.0,3.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,144,310,54,0,42,51,51,47,34,35,40,27,24,31,36,21,15,24,11,8,5,5,0,1,0,0,481,24,2,1,0,481,24,2,1,0,143,1,53,57,20,0,90,144,0,245,243,20,0,31,10,0,0,0,0,6,4,0,0,457,0,16,35,60,67,12,2,206,110,0,73,76,15,2,1,341,0,2.2548076923076925,0.0,3.197183098591549,0.0,7.624015748031496,7,11,22,35,8,2,54,27,0,7,9,7,15,18,34,21,16,26,6,1,1,1,1,2,0,162,4,138,28,129,37,22,144,147,19,42,124,75,91,6,160,136,30,126,40,119,7,24,142,113,53,37,129,39,127,25,141,0,166,47,80,38,1,1,105,61,0,3,5,0,0,0,0,1,0,0,0,157,0,1.497005988023952,1.5449101796407183,0.0,1.0,1.0,50.63253012048193 +PA040501,30502,Colón,Santa Isabel,Cuango,256,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,148,7,12,145,10,2,1,0,8,1,152,0,0,9,0,1,4,0,1,153,0,13,0,1,0,0,157,4,0,0,0,6,167,0,57,18,2,12,3,0,0,14,138,15,0,0,151,15,0,0,1,0,0,52,0,112,1,0,1,1,57,101,0,4,5,0,0,163,0,0,0,0,0,3,0,0,1,0,0,259,6.987730061349693,11.282208588957054,6.94478527607362,11.153374233128837,1.0,3.51497005988024,2.4850299401197606,167,95,212,59,44,2,9,12,0,11,8,5,0,0,3,3,0,2,3,0,2,479,86,0,50,515,0,470,95,0,497,68,0,191,374,0,187,4,342,32,0,32,14,20,2,21,23,29,22,31,79,0,0,0,41,31,67,22,26,84,0,4,2,1,2,3,3,3,0,0,3,0,0,0,0,0,202,30,239,0,0,21,0,15,99,99,8,18,102,15,53,3,8,0,48,3,0,330,294,20,114,4,74,4,0,16,0,1,15,4,223,2,0,0,365,89,0,3,3,11,0,0,0,0,0,6,0,7,8,29,37,42,9,94,381,34,22,36,44,48,29,14,9,3,1,0,1,0,0,2,11.0,15.0,17.0,16.0,12.0,14.0,20.0,16.0,21.0,11.0,15.0,10.0,14.0,18.0,16.0,12.0,13.0,7.0,11.0,13.0,16.0,7.0,18.0,9.0,10.0,13.0,10.0,8.0,9.0,7.0,11.0,8.0,11.0,4.0,7.0,8.0,7.0,11.0,4.0,4.0,9.0,6.0,8.0,6.0,4.0,6.0,1.0,4.0,3.0,4.0,6.0,6.0,4.0,5.0,1.0,5.0,7.0,3.0,6.0,4.0,2.0,4.0,2.0,2.0,1.0,8.0,4.0,4.0,0.0,3.0,2.0,2.0,4.0,4.0,4.0,1.0,1.0,0.0,1.0,0.0,1.0,2.0,2.0,2.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,226,347,51,0,71,82,73,56,60,47,41,34,33,18,22,25,11,19,16,3,9,3,1,0,0,0,578,29,9,8,0,578,30,8,8,0,193,2,20,46,10,0,127,226,0,301,300,23,0,8,8,1,0,0,0,129,5,0,3,470,0,19,3,31,75,1,1,303,191,0,62,57,16,0,0,489,0,2.8401826484018264,0.0,3.7987012987012982,0.0,6.189102564102564,6,0,6,25,1,1,79,49,0,8,11,11,14,22,33,16,14,22,13,2,0,1,0,0,0,160,7,134,33,129,38,19,148,136,31,25,142,71,96,2,165,148,19,105,62,100,5,16,151,122,45,25,142,58,109,37,130,7,160,35,89,43,0,0,131,36,0,3,4,0,0,0,0,28,1,0,2,129,0,1.9760479041916168,1.7604790419161678,1.5,1.0,1.0,48.5748502994012 +PA040502,30503,Colón,Santa Isabel,Miramar,215,1,0,0,0,0,0,0,4,0,0,0,6,0,0,0,107,3,10,108,2,6,0,0,3,1,110,8,0,2,0,0,0,0,0,98,0,21,0,1,0,0,115,1,1,0,0,3,120,0,67,10,2,8,9,0,0,16,92,12,0,0,103,10,0,1,0,6,0,41,1,77,0,0,0,1,57,57,0,3,2,1,0,113,0,5,0,0,0,1,0,1,0,0,0,226,6.442477876106195,21.495575221238937,6.398230088495575,21.469026548672566,1.025,3.4916666666666667,2.333333333333333,129,64,100,31,14,2,2,5,0,4,1,1,36,0,5,0,1,2,1,0,0,336,33,0,86,283,0,291,78,0,334,35,0,97,272,0,94,3,255,17,0,17,10,7,1,6,16,13,8,19,64,0,0,2,19,17,42,9,19,78,0,0,1,3,1,3,4,7,1,0,1,0,0,1,0,0,200,15,109,0,0,5,3,12,50,41,0,6,127,15,29,9,8,0,13,14,0,241,148,20,128,9,54,4,0,0,0,0,5,2,89,1,0,0,220,85,2,1,1,12,1,2,0,0,0,16,3,7,6,53,8,30,5,87,154,31,18,20,64,42,21,13,10,7,6,0,2,0,0,1,4.0,7.0,7.0,2.0,3.0,10.0,8.0,6.0,10.0,8.0,6.0,13.0,6.0,6.0,4.0,4.0,6.0,3.0,7.0,5.0,10.0,4.0,4.0,8.0,3.0,6.0,9.0,5.0,10.0,7.0,5.0,5.0,5.0,10.0,12.0,4.0,3.0,5.0,8.0,4.0,11.0,5.0,5.0,4.0,3.0,2.0,3.0,6.0,6.0,5.0,5.0,1.0,3.0,5.0,3.0,7.0,3.0,4.0,3.0,7.0,4.0,7.0,3.0,3.0,2.0,2.0,3.0,3.0,4.0,2.0,0.0,3.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,100,262,27,0,23,42,35,25,29,37,37,24,28,22,17,24,19,14,5,1,5,0,2,0,0,0,337,39,12,1,0,338,40,10,1,0,147,0,17,40,9,1,75,100,0,111,246,32,0,30,26,0,0,0,0,5,0,0,7,321,0,36,26,22,19,5,1,173,107,0,75,26,13,0,0,275,0,2.4471544715447155,0.0,3.261363636363636,0.0,7.352185089974293,11,6,7,12,4,1,61,27,0,3,7,6,4,26,19,15,11,15,8,4,2,0,2,1,0,125,4,110,19,101,28,7,122,111,18,53,76,48,81,7,122,120,9,98,31,92,6,32,97,90,39,37,92,45,84,23,106,3,126,40,64,19,6,4,104,25,0,9,0,0,0,0,0,2,0,0,3,115,0,1.8120300751879697,1.112781954887218,0.0,1.0,1.0,49.44961240310077 +PA040503,30504,Colón,Santa Isabel,Nombre de Dios,709,4,4,0,0,0,0,0,0,0,0,0,0,0,0,3,340,26,26,361,8,10,1,1,14,0,367,0,1,13,0,1,13,0,0,298,0,95,1,1,0,0,374,12,2,0,0,7,395,1,219,38,14,31,19,0,1,39,307,45,1,2,357,37,0,1,0,0,0,296,3,94,2,0,0,0,134,235,0,14,10,2,0,212,9,3,0,3,1,14,0,151,1,1,0,717,5.208144796380091,17.95022624434389,5.230769230769231,17.88235294117647,1.0050632911392403,3.4835443037974683,2.3518987341772157,397,194,348,47,67,9,11,10,0,13,5,5,21,0,11,2,2,1,9,1,2,814,216,0,100,930,0,719,311,0,899,131,0,279,751,0,260,19,677,74,0,76,19,21,0,21,26,37,45,49,165,0,0,0,47,49,101,44,59,163,0,0,14,18,24,19,8,20,2,0,2,1,0,0,0,0,379,47,486,0,3,28,9,26,162,259,24,15,178,32,49,7,36,2,100,12,0,602,525,64,164,6,146,21,0,15,0,3,51,3,381,18,0,0,639,217,0,3,17,32,2,2,0,0,0,23,16,18,16,59,74,47,32,141,634,88,58,48,88,74,56,19,27,10,5,0,0,0,2,18,29.0,20.0,24.0,24.0,28.0,22.0,18.0,18.0,12.0,20.0,22.0,26.0,16.0,21.0,17.0,15.0,18.0,20.0,14.0,23.0,16.0,20.0,27.0,18.0,17.0,19.0,15.0,15.0,20.0,16.0,15.0,14.0,13.0,14.0,6.0,14.0,13.0,17.0,7.0,15.0,14.0,12.0,9.0,9.0,17.0,12.0,17.0,11.0,9.0,14.0,13.0,12.0,10.0,12.0,11.0,17.0,9.0,11.0,8.0,12.0,11.0,5.0,12.0,7.0,4.0,7.0,7.0,10.0,12.0,6.0,10.0,7.0,6.0,5.0,2.0,8.0,6.0,5.0,3.0,9.0,4.0,4.0,7.0,2.0,2.0,3.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,317,679,131,0,125,90,102,90,98,85,62,66,61,63,58,57,39,42,30,31,19,6,1,2,0,0,1099,8,11,9,0,1099,13,6,9,0,349,3,10,120,38,2,288,317,0,499,613,15,0,7,116,1,0,0,0,17,1,0,4,981,0,79,9,27,10,1,0,503,498,0,133,125,33,1,1,834,0,2.5454545454545454,0.0,3.3289473684210527,0.0,7.067435669920142,41,5,6,5,0,0,165,175,0,49,32,30,40,55,56,43,19,37,16,11,1,1,1,2,4,382,15,321,76,303,94,36,361,332,65,73,324,159,238,15,382,345,52,278,119,247,31,60,337,276,121,96,301,107,290,97,300,2,395,120,191,74,12,0,272,125,0,2,25,1,0,0,0,6,0,0,1,362,0,1.5163727959697733,1.3224181360201512,0.0,1.0,1.0,50.40050377833753 +PA040505,30505,Colón,Santa Isabel,Palmira,232,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,86,18,24,101,3,9,3,0,12,0,80,0,5,21,2,4,12,0,4,78,0,43,2,4,0,1,113,12,1,1,0,1,128,0,50,11,6,29,9,0,0,6,97,25,0,0,84,41,0,2,1,0,0,78,0,46,1,0,3,0,36,72,0,12,8,0,0,109,1,2,0,1,1,12,0,2,0,0,0,233,7.0,24.0,6.954545454545454,23.818181818181817,1.0,3.328125,2.2734375,128,56,151,4,33,1,10,8,0,8,0,2,3,0,3,5,1,0,1,0,2,230,137,0,9,358,0,210,157,0,325,42,0,108,259,0,107,1,222,37,0,40,6,3,0,19,19,19,10,14,77,0,0,0,20,24,33,9,15,44,1,2,1,6,3,0,0,2,0,0,0,0,0,0,0,0,189,3,122,0,0,0,3,4,54,48,4,12,22,27,15,1,12,0,94,19,0,215,189,12,37,1,123,2,0,15,0,0,6,0,93,0,0,0,253,58,1,0,0,2,0,0,0,0,0,8,0,4,3,21,86,16,0,54,269,19,14,26,43,15,12,1,1,2,1,0,1,0,0,0,7.0,11.0,8.0,11.0,9.0,5.0,5.0,13.0,13.0,8.0,10.0,10.0,11.0,5.0,6.0,5.0,10.0,3.0,9.0,10.0,10.0,7.0,8.0,6.0,11.0,7.0,6.0,5.0,6.0,2.0,6.0,2.0,4.0,2.0,5.0,8.0,5.0,5.0,9.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,2.0,5.0,1.0,2.0,3.0,4.0,1.0,2.0,3.0,5.0,1.0,6.0,3.0,3.0,1.0,2.0,4.0,3.0,1.0,3.0,1.0,3.0,2.0,3.0,2.0,1.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,132,236,36,0,46,44,42,37,42,26,19,31,19,20,13,15,14,13,11,7,2,3,0,0,0,0,354,26,13,11,0,354,27,12,11,0,120,1,4,28,4,1,114,132,0,223,157,24,0,18,5,2,0,0,0,73,0,0,3,303,0,16,13,54,57,1,5,161,97,0,11,23,7,0,0,363,0,2.4,0.0,3.381443298969072,0.0,5.735148514851486,8,3,7,20,0,2,58,30,0,18,6,11,18,24,23,11,7,5,3,0,1,1,0,0,0,118,10,77,51,76,52,11,117,81,47,19,109,27,101,4,124,84,44,73,55,70,3,3,125,55,73,16,112,72,56,45,83,3,125,35,55,35,3,0,95,33,0,5,1,1,0,0,0,14,0,0,1,106,0,1.6796875,1.4765625,0.0,1.0,1.0,47.921875 +PA040506,30506,Colón,Santa Isabel,Playa Chiquita,90,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,43,10,5,51,2,4,0,0,0,1,41,0,1,9,1,0,3,0,3,44,0,12,0,1,0,1,53,4,0,0,0,1,58,0,18,8,0,6,2,0,0,4,41,13,0,0,47,10,0,0,0,0,1,18,1,36,0,0,1,2,5,45,0,3,5,0,0,42,4,5,0,0,0,6,0,1,0,0,0,93,7.0,23.93478260869565,7.0,24.0,1.0344827586206895,4.0344827586206895,2.706896551724138,60,22,64,9,19,0,6,5,1,2,2,0,6,0,7,1,1,2,3,2,1,153,26,0,19,160,0,120,59,0,160,19,0,53,126,0,51,2,117,9,0,9,2,3,1,5,9,5,8,11,33,0,0,2,5,12,9,10,10,30,2,0,0,2,3,2,1,3,1,1,0,0,0,0,0,0,89,5,63,0,0,1,2,3,26,22,5,7,23,8,32,1,1,0,25,3,0,108,88,11,30,1,46,1,0,4,0,2,4,4,37,0,0,0,110,38,2,0,1,4,2,0,0,0,0,5,6,1,2,6,14,28,9,23,99,6,10,15,26,15,12,7,2,1,2,0,1,0,0,0,4.0,3.0,6.0,4.0,2.0,3.0,0.0,7.0,5.0,5.0,4.0,6.0,2.0,2.0,1.0,1.0,4.0,2.0,3.0,2.0,2.0,5.0,4.0,2.0,2.0,7.0,1.0,3.0,1.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,1.0,2.0,1.0,2.0,0.0,2.0,7.0,0.0,2.0,2.0,1.0,0.0,3.0,3.0,2.0,1.0,5.0,0.0,2.0,1.0,3.0,3.0,2.0,1.0,2.0,2.0,4.0,2.0,3.0,4.0,5.0,0.0,1.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,54,122,20,0,19,20,15,12,15,14,19,9,11,9,10,10,13,13,2,1,2,2,0,0,0,0,184,4,3,5,0,184,4,3,5,0,57,1,4,15,5,1,59,54,0,105,86,5,0,1,5,0,1,0,0,15,0,0,5,169,0,102,0,0,1,0,0,43,50,0,17,22,5,0,1,151,0,2.514705882352941,0.0,3.7777777777777777,0.0,6.954081632653061,28,0,0,0,0,0,14,18,0,0,0,3,6,7,9,12,12,5,3,1,1,1,0,0,0,57,3,45,15,41,19,2,58,44,16,4,56,11,49,0,60,51,9,35,25,33,2,8,52,43,17,11,49,28,32,18,42,1,59,20,23,13,4,1,41,19,0,0,1,0,1,0,0,2,0,0,3,53,0,1.7704918032786885,1.4426229508196722,0.0,1.0,1.0,52.21666666666667 +PA040507,30507,Colón,Santa Isabel,Santa Isabel,208,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,2,13,84,0,5,0,1,6,1,91,0,0,4,0,0,1,0,1,1,0,6,90,0,0,0,92,2,0,0,0,3,97,0,61,10,3,30,8,0,0,6,77,14,0,0,88,8,0,0,0,1,0,35,0,62,0,0,0,0,57,36,0,1,3,0,0,92,2,0,0,0,0,2,0,1,0,0,0,209,6.702127659574468,22.5,6.6063829787234045,22.46808510638298,1.0,3.618556701030928,2.577319587628866,97,43,81,11,26,2,3,1,2,3,1,2,3,1,11,2,0,4,0,0,4,180,74,0,28,226,0,142,112,0,232,22,0,73,181,0,69,4,164,17,0,17,6,7,1,8,5,14,12,12,57,0,0,1,10,13,27,7,7,34,0,0,2,4,2,5,1,2,0,0,0,0,0,0,0,0,125,7,83,0,0,1,5,10,38,26,3,6,29,22,15,1,11,0,30,23,0,128,148,27,14,1,84,2,0,3,0,1,8,1,59,0,0,0,162,46,2,0,2,3,0,0,0,0,0,10,2,4,5,20,40,11,0,40,139,14,17,16,38,15,20,4,6,3,3,1,0,0,0,0,4.0,2.0,7.0,9.0,8.0,6.0,6.0,7.0,2.0,10.0,12.0,8.0,4.0,4.0,3.0,3.0,2.0,2.0,2.0,1.0,2.0,4.0,3.0,5.0,3.0,4.0,5.0,3.0,4.0,8.0,3.0,1.0,5.0,3.0,2.0,3.0,1.0,1.0,4.0,1.0,3.0,1.0,4.0,1.0,0.0,4.0,3.0,4.0,1.0,3.0,4.0,2.0,4.0,2.0,3.0,5.0,3.0,1.0,5.0,3.0,7.0,2.0,2.0,2.0,1.0,0.0,2.0,2.0,4.0,4.0,4.0,2.0,3.0,1.0,2.0,0.0,3.0,3.0,1.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,92,145,39,0,30,31,31,10,17,24,14,10,9,15,15,17,14,12,12,9,5,0,0,0,1,0,264,3,5,4,0,264,3,5,4,0,84,0,2,25,13,2,58,92,0,141,132,3,0,23,3,0,0,0,0,1,0,0,4,245,0,1,4,24,12,0,0,217,18,0,18,25,10,0,2,221,0,3.0727272727272728,0.0,3.8395061728395055,0.0,6.2898550724637685,1,3,4,7,0,0,75,7,0,7,3,4,9,17,15,14,10,8,5,2,1,2,0,0,0,93,4,69,28,79,18,6,91,90,7,18,79,62,35,0,97,68,29,73,24,69,4,4,93,42,55,20,77,47,50,21,76,1,96,30,41,22,4,0,57,40,0,4,2,0,0,0,0,1,0,0,1,89,0,1.3195876288659794,1.5257731958762886,0.0,1.0,1.0,52.49484536082474 +PA040508,30508,Colón,Santa Isabel,Viento Frío,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,8,9,186,1,6,0,0,2,1,181,0,0,7,1,0,7,0,0,177,0,18,0,1,0,0,189,4,0,0,0,3,196,0,104,6,4,19,7,0,0,7,158,31,0,0,184,12,0,0,0,0,0,52,0,144,0,0,0,0,107,84,0,3,1,1,0,191,2,0,0,0,0,2,0,1,0,0,0,336,7.0,9.424870466321243,7.0,9.424870466321243,1.0,3.872448979591837,2.6020408163265305,196,92,198,35,40,4,5,5,3,6,1,0,2,0,8,1,1,0,1,1,1,458,76,0,22,512,0,426,108,0,495,39,0,167,367,0,160,7,351,16,0,16,8,9,1,14,19,17,25,17,115,0,0,0,29,30,46,28,27,91,0,0,4,10,5,9,9,3,0,0,1,1,0,0,0,0,173,45,248,0,0,9,34,27,102,106,13,0,60,16,32,1,19,0,70,10,0,309,278,25,53,1,127,1,0,1,0,0,26,0,159,0,0,0,333,111,0,1,5,14,1,1,0,0,0,9,4,12,6,26,41,30,11,79,339,69,16,43,32,35,28,12,7,3,2,1,0,0,0,0,13.0,16.0,12.0,12.0,8.0,10.0,9.0,19.0,12.0,10.0,12.0,11.0,13.0,11.0,14.0,8.0,14.0,10.0,9.0,6.0,9.0,11.0,7.0,8.0,11.0,8.0,10.0,13.0,10.0,8.0,8.0,8.0,12.0,6.0,7.0,6.0,9.0,7.0,6.0,6.0,14.0,5.0,5.0,3.0,5.0,8.0,2.0,7.0,9.0,1.0,7.0,5.0,2.0,2.0,3.0,5.0,5.0,2.0,6.0,2.0,3.0,4.0,2.0,4.0,7.0,6.0,5.0,5.0,6.0,5.0,5.0,0.0,1.0,8.0,6.0,1.0,1.0,4.0,1.0,4.0,2.0,1.0,1.0,0.0,1.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,182,335,70,0,61,60,61,47,46,49,41,34,32,27,19,20,20,27,20,11,5,7,0,0,0,0,577,2,1,7,0,577,2,1,7,0,159,0,3,68,6,1,168,182,0,358,228,1,0,0,3,1,0,0,0,0,0,0,0,583,0,87,19,6,15,0,1,50,409,0,38,67,27,1,0,454,0,2.333333333333333,0.0,3.236111111111111,0.0,7.088586030664395,29,9,4,5,0,1,17,131,0,11,21,17,32,30,26,21,12,15,2,8,1,0,0,0,0,189,7,165,31,148,48,12,184,164,32,43,153,80,116,0,196,174,22,152,44,147,5,23,173,157,39,42,154,78,118,47,149,2,194,60,95,39,2,0,148,48,0,0,0,1,0,0,0,0,0,0,0,195,0,1.576530612244898,1.4183673469387754,0.0,1.0,1.0,49.46938775510204 +,30601,Colón,Omar Torrijos Herrera,San José del General,653,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,290,171,10,436,25,1,0,0,9,0,363,0,5,70,1,3,24,0,5,385,0,64,0,21,0,1,443,22,0,0,0,6,471,0,70,41,39,28,22,0,0,26,431,14,0,0,347,121,1,2,0,0,0,467,1,0,0,1,2,0,116,287,0,23,44,1,0,433,11,1,2,3,4,11,0,3,3,0,0,671,5.966216216216216,11.826576576576576,6.574324324324325,14.68018018018018,1.0169851380042465,3.6772823779193207,2.4012738853503186,479,342,733,51,116,17,28,9,12,40,16,3,17,2,9,9,11,6,1,2,4,1371,314,0,309,1376,0,914,771,0,1495,190,0,521,1164,0,462,59,1041,123,0,124,22,38,1,45,65,64,62,59,256,0,0,0,62,91,191,61,88,331,0,1,9,25,21,34,15,14,1,0,5,0,0,0,0,0,643,30,780,0,2,14,10,20,296,420,37,7,405,27,78,13,24,2,99,13,0,954,911,99,335,15,125,10,2,75,0,24,37,7,1050,0,0,0,996,375,0,1,11,64,1,5,0,0,0,20,17,44,63,55,94,77,82,221,1214,94,30,52,78,79,138,76,73,13,10,1,3,4,0,0,40.0,39.0,48.0,53.0,38.0,37.0,41.0,47.0,32.0,37.0,28.0,33.0,23.0,28.0,40.0,32.0,34.0,35.0,35.0,36.0,38.0,36.0,45.0,41.0,41.0,37.0,34.0,46.0,36.0,24.0,34.0,26.0,36.0,22.0,20.0,29.0,31.0,20.0,19.0,26.0,20.0,22.0,21.0,20.0,13.0,19.0,15.0,23.0,24.0,17.0,14.0,15.0,15.0,17.0,20.0,15.0,10.0,11.0,17.0,11.0,11.0,10.0,11.0,10.0,8.0,10.0,4.0,9.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,2.0,3.0,3.0,6.0,3.0,5.0,4.0,3.0,1.0,1.0,2.0,4.0,3.0,0.0,3.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,564,1202,99,0,218,194,152,172,201,177,138,125,96,98,81,64,50,31,20,17,14,12,4,1,0,0,1840,15,0,10,0,1840,15,0,10,0,677,4,12,142,24,1,441,564,0,1076,781,8,0,0,82,1,0,0,0,0,0,0,7,1775,0,2,13,49,0,0,0,95,1706,0,351,331,19,3,0,1161,0,2.185289957567185,0.0,3.1265822784810124,0.0,6.886327077747989,0,5,14,0,0,0,37,423,0,68,22,13,29,37,46,60,43,88,31,21,7,10,1,3,0,465,14,334,145,334,145,102,377,297,182,29,450,165,314,0,479,440,39,271,208,237,34,118,361,174,305,115,364,147,332,197,282,6,473,49,287,128,15,0,350,129,0,0,11,0,0,0,0,0,0,0,1,467,0,1.9916492693110648,1.9018789144050103,0.0,1.0,1.0,45.1106471816284 +,30602,Colón,Omar Torrijos Herrera,Nueva Esperanza,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,89,17,103,9,2,10,0,5,0,0,0,1,90,0,5,32,0,1,1,0,105,0,23,0,0,57,72,0,0,0,0,129,0,40,3,0,7,4,0,0,0,129,0,0,0,3,121,0,0,5,0,0,109,0,0,0,1,19,0,0,26,0,32,71,0,0,79,9,4,22,1,1,11,2,0,0,0,0,183,5.6477272727272725,15.579545454545457,6.454545454545454,20.0,1.0,3.86046511627907,2.604651162790698,129,100,441,13,103,4,16,24,4,45,10,0,0,0,0,2,1,2,1,1,1,326,416,0,20,722,0,45,697,0,525,217,0,217,525,0,215,2,304,221,0,222,4,14,1,32,23,28,38,36,144,0,0,0,35,31,61,10,14,38,1,1,2,1,3,2,1,0,0,0,0,0,0,0,0,0,200,23,388,0,2,12,7,0,145,231,7,5,74,20,7,0,23,2,95,0,0,477,412,6,73,0,71,11,0,60,0,20,6,2,539,0,0,0,562,41,0,1,2,5,0,0,0,0,0,2,3,1,2,16,63,38,10,88,719,60,22,8,12,17,19,10,15,7,0,0,0,0,0,0,28.0,39.0,44.0,36.0,32.0,25.0,21.0,20.0,16.0,17.0,26.0,15.0,23.0,28.0,19.0,27.0,23.0,21.0,26.0,24.0,21.0,17.0,22.0,23.0,16.0,18.0,16.0,12.0,18.0,12.0,12.0,10.0,15.0,6.0,7.0,9.0,7.0,8.0,7.0,4.0,8.0,8.0,6.0,9.0,5.0,1.0,5.0,10.0,4.0,10.0,4.0,3.0,6.0,9.0,3.0,0.0,3.0,3.0,3.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,389,486,14,0,179,99,111,121,99,76,50,35,36,30,25,11,3,4,6,1,2,1,0,0,0,0,787,0,0,102,0,787,0,0,102,0,312,0,16,18,11,1,142,389,0,324,565,0,0,0,797,0,0,0,0,0,0,0,0,92,0,5,61,19,4,0,0,13,787,0,49,5,0,0,0,835,0,2.571428571428572,0.0,4.0989010989010985,0.0,3.6794150731158606,2,12,4,3,0,0,3,105,0,22,7,8,9,16,16,14,6,19,7,2,1,0,2,0,0,82,47,10,119,16,113,71,58,7,122,0,129,33,96,0,129,83,46,14,115,12,2,5,124,15,114,2,127,68,61,70,59,2,127,4,61,64,0,0,93,36,0,0,106,0,0,0,0,0,0,0,0,23,0,3.697674418604651,3.193798449612403,1.0,1.1111111111111112,1.1111111111111112,41.51162790697674 +PA040213,30603,Colón,Omar Torrijos Herrera,San Juan de Turbe,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,132,5,182,21,0,0,0,5,0,0,0,18,163,0,0,26,0,1,92,0,85,1,30,0,0,170,38,0,0,0,0,208,0,22,19,2,7,5,0,0,0,199,7,0,2,99,107,0,0,0,1,1,204,0,3,0,0,1,0,42,109,0,27,30,0,0,140,43,0,0,2,6,15,0,0,2,0,0,263,5.890710382513661,20.114754098360656,6.562841530054645,22.3551912568306,1.0048076923076923,3.5528846153846154,1.9855769230769231,209,158,334,27,29,8,5,7,0,10,8,3,8,1,9,3,1,0,6,0,4,517,208,0,75,650,0,195,530,0,615,110,0,210,515,0,191,19,415,100,0,100,9,8,0,26,31,35,39,31,206,1,0,0,27,30,48,18,25,67,0,0,7,6,4,4,0,1,1,0,0,0,0,1,0,0,285,17,310,0,1,12,3,7,135,150,10,8,152,74,7,20,13,1,35,0,0,400,407,24,142,26,50,1,0,59,0,20,13,6,161,0,0,0,521,83,0,1,1,5,0,1,0,0,0,6,11,3,12,19,77,45,32,97,527,40,33,23,31,22,52,31,37,6,2,3,0,0,0,0,22.0,23.0,18.0,19.0,29.0,21.0,15.0,19.0,13.0,16.0,21.0,16.0,13.0,14.0,19.0,7.0,17.0,15.0,18.0,23.0,13.0,17.0,15.0,16.0,16.0,19.0,23.0,10.0,18.0,9.0,16.0,12.0,13.0,12.0,11.0,11.0,13.0,7.0,9.0,9.0,9.0,9.0,13.0,6.0,5.0,6.0,4.0,10.0,2.0,8.0,7.0,6.0,6.0,2.0,6.0,5.0,6.0,6.0,5.0,4.0,8.0,5.0,6.0,0.0,2.0,2.0,1.0,3.0,5.0,2.0,3.0,2.0,4.0,0.0,0.0,3.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,278,495,34,0,111,84,83,80,77,79,64,49,42,30,27,26,21,13,9,9,1,2,0,0,0,0,796,0,0,11,0,796,0,0,11,0,303,4,37,55,9,0,121,278,0,405,402,0,0,10,82,0,0,0,0,0,0,0,4,711,0,1,93,34,2,1,0,37,639,0,135,88,7,0,0,577,0,2.261437908496732,0.0,3.4973262032085564,0.0,5.234200743494424,1,24,18,1,1,0,10,154,0,21,12,10,8,26,18,23,22,37,15,10,2,5,0,0,0,193,16,39,170,98,111,31,178,36,173,2,207,98,111,0,209,182,27,87,122,73,14,29,180,56,153,48,161,133,76,153,56,5,204,23,141,42,3,0,176,33,0,3,12,0,0,0,0,0,0,0,0,194,0,1.9138755980861244,1.947368421052632,1.0,1.0,1.0,42.82775119617225 +PA020101,40101,Chiriquí,Alanje,Alanje,1020,23,21,27,0,0,0,1,4,0,0,0,2,0,0,12,713,45,98,730,40,31,28,0,37,2,772,0,1,15,0,5,69,0,6,750,3,105,5,5,0,0,781,55,5,0,0,27,868,0,77,49,18,62,17,0,2,84,710,71,1,0,773,46,0,7,21,3,18,829,1,3,0,1,21,13,173,607,0,83,5,0,407,326,79,6,0,16,0,4,0,2,20,8,0,1098,6.801724137931035,21.092364532019705,6.902709359605911,21.58128078817734,1.0345622119815667,3.184331797235023,2.08294930875576,900,465,1177,84,256,15,33,53,9,64,11,10,109,0,62,29,12,14,15,4,19,2269,664,0,638,2295,0,1936,997,0,2498,435,0,830,2103,0,784,46,1785,318,0,322,35,63,13,95,80,127,112,101,430,0,0,0,101,117,298,107,113,510,0,23,24,30,43,102,40,21,8,1,17,0,0,0,0,0,1142,52,1383,0,1,23,21,129,517,600,71,66,756,63,125,48,73,1,111,8,3,1650,1536,158,640,51,294,26,5,11,3,3,80,20,1135,5,0,0,1758,598,0,25,23,151,5,17,0,0,3,31,72,53,49,156,52,161,167,450,1743,205,114,168,251,250,235,76,75,36,18,5,4,0,1,5,69.0,73.0,60.0,51.0,65.0,59.0,57.0,74.0,49.0,52.0,63.0,66.0,49.0,45.0,54.0,63.0,58.0,54.0,55.0,58.0,50.0,49.0,57.0,60.0,56.0,47.0,37.0,56.0,51.0,41.0,40.0,37.0,48.0,53.0,36.0,31.0,39.0,41.0,42.0,41.0,38.0,45.0,44.0,38.0,35.0,30.0,38.0,34.0,34.0,37.0,40.0,27.0,40.0,45.0,43.0,35.0,25.0,29.0,25.0,29.0,28.0,21.0,31.0,32.0,21.0,26.0,17.0,17.0,17.0,10.0,16.0,6.0,13.0,22.0,9.0,8.0,10.0,9.0,6.0,10.0,8.0,3.0,5.0,6.0,5.0,5.0,6.0,7.0,2.0,7.0,0.0,1.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,886,2044,256,0,318,291,277,288,272,232,214,194,200,173,195,143,133,87,66,43,27,27,6,0,0,0,3111,19,17,39,0,3111,19,17,39,0,957,14,266,242,95,9,719,884,0,1717,1445,24,0,3,916,41,0,1,1,0,0,0,0,2224,0,50,140,486,29,6,9,558,1908,0,613,661,116,25,0,1771,0,2.2334132693844926,0.0,3.167452830188679,0.0,6.850910232266164,16,41,177,12,3,2,165,484,0,68,41,32,51,122,133,140,87,101,49,29,21,14,5,2,3,822,78,702,198,689,211,121,779,719,181,239,661,439,461,81,819,756,144,698,202,410,288,185,715,507,393,298,602,149,751,117,783,8,892,178,469,240,13,5,548,352,0,1,189,7,0,1,0,0,0,0,0,702,0,1.8232044198895028,1.6972375690607735,1.1428571428571428,1.0344827586206895,1.0344827586206895,49.763333333333335 +PA020102,40102,Chiriquí,Alanje,Divalá,1148,11,5,73,0,0,0,0,0,0,0,0,9,0,0,1,726,218,23,843,102,10,1,0,12,0,883,0,0,26,0,9,47,0,3,685,10,252,3,17,1,0,905,38,0,0,0,25,968,3,101,29,45,71,20,0,1,94,733,138,2,0,869,18,0,4,72,5,0,961,0,3,0,0,3,1,159,744,0,64,1,0,559,69,180,6,118,2,0,2,0,24,8,0,832,414,6.266089108910891,19.3960396039604,6.382425742574258,18.544554455445542,1.008264462809917,3.1167355371900825,1.851239669421488,985,514,1203,121,436,12,41,45,8,74,10,9,37,1,59,23,7,24,24,9,8,2218,991,0,393,2816,0,1559,1650,0,2703,506,0,918,2291,0,863,55,1866,425,0,428,13,57,11,85,127,135,133,146,511,0,0,6,113,167,247,104,145,487,2,9,34,51,49,54,53,27,6,1,8,0,0,0,0,0,890,185,1727,0,5,109,15,212,619,754,70,72,507,27,88,29,55,1,318,6,1,1824,1672,144,619,29,216,9,1,13,1,29,99,32,1286,7,0,0,2015,604,6,14,34,116,6,7,0,0,1,17,48,35,33,175,97,108,83,478,2226,201,105,174,309,216,99,66,56,16,7,2,7,2,3,7,78.0,62.0,75.0,72.0,94.0,67.0,68.0,57.0,71.0,50.0,70.0,79.0,51.0,69.0,69.0,68.0,72.0,63.0,64.0,64.0,46.0,56.0,60.0,62.0,42.0,53.0,35.0,51.0,50.0,53.0,40.0,43.0,54.0,45.0,33.0,33.0,40.0,42.0,39.0,42.0,29.0,33.0,45.0,37.0,37.0,35.0,38.0,32.0,38.0,28.0,36.0,34.0,50.0,33.0,33.0,41.0,34.0,33.0,38.0,29.0,34.0,33.0,28.0,29.0,23.0,25.0,28.0,18.0,11.0,21.0,19.0,19.0,20.0,23.0,18.0,12.0,13.0,19.0,14.0,8.0,12.0,11.0,8.0,11.0,4.0,5.0,5.0,11.0,3.0,2.0,4.0,2.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1032,2110,354,0,381,313,338,331,266,242,215,196,181,171,186,175,147,103,99,66,46,26,11,2,1,0,3434,9,8,45,0,3434,9,8,45,0,949,26,378,373,96,12,631,1031,0,2021,1454,21,0,6,890,21,0,0,0,0,0,0,0,2579,0,14,24,193,8,1,2,506,2748,0,425,928,203,11,2,1927,0,2.5870870870870872,0.0,3.585339168490153,0.0,6.447940503432494,3,12,70,5,1,1,197,696,0,102,65,59,85,176,170,98,66,81,30,17,6,9,5,5,2,944,41,744,241,696,289,166,819,788,197,107,878,495,490,13,972,853,132,742,243,227,515,155,830,450,535,199,786,227,758,235,750,3,982,226,453,281,25,0,699,286,0,0,177,7,0,0,0,0,0,0,0,801,0,1.851776649746193,1.69746192893401,1.2,1.0277777777777777,1.0277777777777777,53.29035532994924 +PA020103,40103,Chiriquí,Alanje,El Tejar,752,4,0,40,0,0,0,0,0,0,0,0,0,0,0,3,540,47,28,555,35,8,15,0,5,0,574,0,1,8,0,3,31,0,1,410,1,177,1,29,0,0,584,28,0,0,0,6,618,1,38,17,43,32,47,0,8,75,510,22,3,0,571,23,0,6,17,0,1,605,1,0,0,0,12,0,161,415,0,39,2,1,1,582,11,0,15,0,0,2,0,0,6,1,0,796,6.956228956228956,20.803030303030305,6.971380471380472,22.09259259259259,1.011326860841424,3.2281553398058254,2.074433656957929,625,344,781,71,138,16,24,26,6,39,7,8,28,0,15,19,9,17,9,6,17,1521,442,0,349,1614,0,1253,710,0,1702,261,0,564,1399,0,491,73,1223,176,0,186,21,32,8,50,81,73,64,67,313,1,1,3,69,86,170,61,89,328,1,5,22,44,43,38,37,44,10,1,13,0,0,1,1,0,696,63,982,0,5,28,15,126,358,421,58,19,479,42,76,36,51,1,51,19,0,1079,1034,110,392,38,213,0,1,0,1,5,58,19,837,2,0,0,1150,447,3,4,8,105,10,13,1,0,1,17,50,31,43,99,34,124,107,253,1183,116,60,87,208,139,186,48,51,19,7,2,3,0,2,2,35.0,41.0,37.0,37.0,42.0,34.0,39.0,43.0,34.0,30.0,31.0,45.0,39.0,38.0,41.0,26.0,34.0,38.0,30.0,44.0,31.0,36.0,53.0,41.0,38.0,35.0,33.0,26.0,28.0,29.0,30.0,24.0,27.0,28.0,28.0,21.0,21.0,16.0,26.0,28.0,29.0,39.0,31.0,18.0,26.0,19.0,20.0,29.0,17.0,19.0,26.0,20.0,36.0,28.0,25.0,18.0,22.0,28.0,23.0,13.0,21.0,16.0,11.0,10.0,17.0,15.0,9.0,17.0,14.0,9.0,9.0,15.0,13.0,11.0,9.0,14.0,7.0,8.0,6.0,6.0,8.0,4.0,4.0,9.0,6.0,4.0,4.0,3.0,1.0,3.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,566,1332,215,0,192,180,194,172,199,151,137,112,143,104,135,104,75,64,57,41,31,15,6,1,0,0,2085,5,7,16,0,2085,5,7,16,0,592,9,199,208,74,6,459,566,0,1138,970,5,0,1,534,3,0,0,0,0,0,0,0,1575,0,10,68,233,12,4,0,92,1694,0,390,515,112,17,1,1078,0,2.2187134502923977,0.0,3.173076923076923,0.0,7.259346900141979,6,24,91,3,3,0,41,457,0,38,30,15,40,106,91,106,50,71,42,15,7,10,1,3,0,603,22,501,124,464,161,115,510,507,118,130,495,308,317,33,592,557,68,495,130,185,310,144,481,385,240,231,394,212,413,225,400,6,619,114,334,156,21,0,405,220,0,0,124,2,0,0,0,0,0,0,0,499,0,1.7264,1.6544,1.0,1.0,1.0,50.9056 +PA020104,40104,Chiriquí,Alanje,Guarumal,1028,43,104,11,0,0,0,0,0,0,0,0,5,0,0,20,714,49,58,767,16,24,1,0,20,13,765,0,1,8,1,8,46,1,11,407,12,401,1,20,0,0,768,55,6,0,0,12,841,0,217,58,13,38,19,0,12,36,715,70,7,1,785,6,1,8,34,5,2,806,5,2,2,0,22,4,189,600,0,50,1,1,223,363,211,7,4,0,0,1,0,2,14,16,0,1191,6.3023839397741535,19.355081555834374,6.973651191969887,22.764115432873275,1.028537455410226,3.3198573127229487,1.9607609988109396,870,454,924,100,189,20,55,33,7,39,10,0,40,2,56,8,15,8,15,9,10,1997,559,0,499,2057,0,1611,945,0,2328,228,0,694,1862,0,630,64,1706,156,0,160,32,27,0,81,83,115,86,95,511,0,3,1,84,108,190,98,123,352,0,3,63,60,63,50,57,80,7,4,19,0,0,0,1,0,901,106,1312,0,2,45,37,84,470,617,90,51,429,36,124,34,146,3,210,11,1,1429,1314,140,418,42,330,48,1,10,5,6,133,14,1141,9,0,0,1559,542,1,4,26,160,7,19,1,0,5,19,59,39,33,131,114,115,125,367,1563,220,75,162,210,173,157,58,55,38,12,3,4,0,4,9,49.0,45.0,49.0,44.0,46.0,53.0,29.0,37.0,39.0,33.0,40.0,46.0,45.0,48.0,36.0,37.0,60.0,45.0,45.0,47.0,48.0,41.0,52.0,57.0,35.0,45.0,32.0,48.0,37.0,28.0,43.0,42.0,26.0,19.0,25.0,29.0,26.0,34.0,36.0,19.0,27.0,46.0,30.0,25.0,35.0,34.0,38.0,31.0,43.0,29.0,45.0,42.0,31.0,45.0,37.0,35.0,44.0,29.0,31.0,24.0,26.0,24.0,29.0,25.0,16.0,22.0,26.0,15.0,20.0,21.0,21.0,18.0,19.0,15.0,13.0,17.0,11.0,9.0,11.0,18.0,4.0,6.0,6.0,5.0,9.0,4.0,6.0,4.0,11.0,4.0,1.0,1.0,3.0,3.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,639,1777,327,0,233,191,215,234,233,190,155,144,163,175,200,163,120,104,86,66,30,29,9,3,0,0,2693,13,12,25,0,2694,13,11,25,0,795,5,97,293,92,4,818,639,0,1774,948,21,0,1,456,13,0,0,0,0,0,0,0,2273,0,30,54,981,8,2,1,771,896,0,388,541,60,14,12,1728,0,2.140161725067385,0.0,3.0411140583554377,0.0,7.544659132336857,15,14,355,6,1,0,254,225,0,110,73,31,81,127,107,112,51,79,43,14,13,12,5,5,2,821,49,722,148,709,161,129,741,736,134,218,652,482,388,44,826,773,97,696,174,223,473,243,627,577,293,309,561,202,668,219,651,6,864,201,447,190,32,0,622,248,0,0,102,5,0,0,0,0,0,0,0,763,0,1.6425287356321838,1.5103448275862068,1.0,1.0,1.0,53.11954022988506 +PA020105,40105,Chiriquí,Alanje,Palo Grande,275,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,19,14,188,5,9,0,0,5,0,185,0,0,2,1,1,18,0,0,61,7,124,0,11,0,4,190,13,0,0,0,4,207,0,34,5,1,10,19,0,1,7,174,25,0,0,196,0,0,0,10,0,1,204,0,1,1,0,1,0,31,167,0,9,0,0,2,150,29,7,4,2,0,0,0,3,10,0,0,276,6.767955801104972,23.23204419889503,6.961325966850829,23.906077348066297,1.0096618357487923,3.106280193236715,2.0096618357487923,209,99,186,34,68,8,6,8,1,17,1,0,5,0,15,6,3,2,8,4,3,442,148,0,82,508,0,267,323,0,509,81,0,131,459,0,126,5,419,40,0,42,5,16,3,26,28,33,32,25,100,0,0,0,21,24,50,14,24,82,0,3,10,13,7,19,4,3,2,0,4,0,0,0,0,0,236,6,284,0,1,4,0,36,73,159,16,0,103,43,34,5,9,0,47,0,0,338,304,31,111,6,87,4,0,2,0,3,21,1,225,6,0,0,379,110,0,4,3,24,2,4,0,0,0,3,9,15,8,26,34,29,30,88,331,52,43,32,69,46,25,10,11,7,3,0,1,5,1,6,16.0,16.0,9.0,11.0,9.0,12.0,14.0,7.0,10.0,12.0,10.0,6.0,9.0,10.0,6.0,10.0,8.0,13.0,6.0,15.0,5.0,12.0,12.0,9.0,12.0,13.0,10.0,4.0,12.0,8.0,9.0,12.0,7.0,6.0,6.0,6.0,4.0,7.0,6.0,7.0,4.0,6.0,3.0,10.0,6.0,12.0,5.0,8.0,13.0,4.0,5.0,9.0,4.0,6.0,3.0,8.0,9.0,7.0,7.0,9.0,7.0,5.0,6.0,10.0,6.0,5.0,3.0,2.0,10.0,6.0,6.0,3.0,4.0,3.0,10.0,4.0,7.0,6.0,3.0,2.0,4.0,7.0,0.0,1.0,3.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,391,94,0,61,55,41,52,50,47,40,30,29,42,27,40,34,26,26,22,15,5,0,0,0,0,616,9,8,9,0,616,10,7,9,0,198,6,76,67,29,2,107,157,0,339,290,13,0,1,150,20,0,0,0,1,0,0,0,470,0,7,13,137,5,4,0,162,314,0,88,131,25,7,5,386,0,2.28125,0.0,2.8617021276595747,0.0,6.56386292834891,2,5,62,3,3,0,51,83,0,17,16,15,14,34,41,20,11,15,10,4,2,1,2,4,3,194,15,163,46,169,40,41,168,170,39,46,163,129,80,6,203,184,25,167,42,47,120,39,170,90,119,80,129,96,113,108,101,4,205,52,92,62,3,0,143,66,0,1,30,4,0,0,0,1,0,0,0,173,0,1.6172248803827751,1.4545454545454546,0.0,1.0,1.0,55.17703349282296 +PA020106,40106,Chiriquí,Alanje,Querévalo,776,15,0,2,0,0,0,0,0,0,0,0,0,0,0,2,562,33,26,580,17,5,1,0,20,0,590,0,1,5,0,0,27,0,0,533,2,83,4,1,0,0,582,24,2,1,0,14,623,0,59,40,11,51,9,0,10,41,529,33,1,9,594,14,0,3,4,6,2,615,0,0,0,0,5,3,201,389,0,32,1,0,18,548,50,1,3,0,0,1,0,0,1,1,0,793,6.957792207792208,18.217532467532468,6.970779220779221,18.29383116883117,1.0032102728731942,3.359550561797753,2.229534510433387,625,342,683,61,153,21,30,20,6,34,6,6,18,1,44,13,21,12,11,5,23,1574,316,0,462,1428,0,1367,523,0,1742,148,0,558,1332,0,496,62,1241,91,0,93,25,21,5,52,62,77,63,65,296,0,0,0,61,90,165,74,106,317,17,14,25,39,38,57,52,54,10,1,10,0,0,0,1,0,717,37,962,0,1,14,10,72,366,444,66,14,401,40,114,26,56,11,104,0,0,1022,984,130,306,30,267,13,0,2,4,3,121,13,720,2,0,0,1081,464,0,6,13,131,10,10,1,0,4,31,64,40,27,127,107,95,83,176,1076,164,66,100,154,142,135,57,55,35,11,4,4,0,1,2,25.0,32.0,28.0,31.0,25.0,34.0,23.0,38.0,25.0,29.0,39.0,37.0,35.0,19.0,32.0,31.0,39.0,36.0,33.0,33.0,41.0,25.0,38.0,27.0,26.0,35.0,42.0,25.0,33.0,24.0,33.0,31.0,27.0,19.0,32.0,19.0,18.0,26.0,23.0,23.0,25.0,21.0,23.0,20.0,22.0,33.0,24.0,36.0,20.0,19.0,41.0,27.0,15.0,15.0,24.0,11.0,26.0,23.0,22.0,29.0,22.0,22.0,14.0,22.0,16.0,19.0,17.0,12.0,14.0,8.0,12.0,10.0,14.0,12.0,7.0,12.0,9.0,10.0,13.0,14.0,9.0,10.0,4.0,3.0,11.0,1.0,2.0,4.0,3.0,5.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,452,1311,243,0,141,149,162,172,157,159,142,109,111,132,122,111,96,70,55,58,37,15,6,2,0,0,1976,11,7,12,0,1976,11,7,12,0,562,7,215,247,66,10,448,451,0,1204,789,13,0,1,274,0,0,0,0,0,0,0,0,1731,0,38,59,354,8,0,6,617,924,0,343,516,61,17,1,1068,0,1.992941176470588,0.0,2.804159445407279,0.0,8.055333998005983,14,25,150,2,0,1,178,255,0,56,37,16,44,85,98,97,55,49,35,20,7,14,5,6,1,598,27,544,81,524,101,101,524,537,88,188,437,341,284,47,578,556,69,544,81,301,243,193,432,369,256,254,371,187,438,158,467,4,621,124,333,155,13,0,435,190,0,1,56,0,0,0,0,0,0,0,0,568,0,1.6352,1.5744,1.0,1.0,1.0,52.6992 +PA020107,40107,Chiriquí,Alanje,Santo Tomás,627,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,421,51,27,452,20,14,0,0,13,0,458,0,0,7,0,5,27,0,2,192,0,248,12,45,0,2,454,27,0,0,0,18,499,1,36,22,0,55,15,0,5,19,389,82,3,1,465,11,0,3,17,2,1,491,1,0,0,0,7,0,80,395,1,21,2,0,3,420,34,18,2,0,0,1,0,17,4,0,0,632,6.568927789934355,21.334792122538293,6.807439824945296,22.49671772428884,1.0200400801603209,3.0160320641282565,1.685370741482966,512,266,529,59,73,4,12,12,4,11,2,7,20,0,33,7,6,21,10,2,5,1118,284,0,230,1172,0,888,514,0,1241,161,0,420,982,0,369,51,886,96,0,96,17,28,0,38,50,73,80,72,236,0,2,1,54,61,107,52,52,227,0,0,23,32,26,37,22,7,3,1,4,0,0,0,1,0,455,67,728,0,11,39,12,47,262,339,18,62,282,55,84,15,32,0,47,1,0,785,726,74,252,16,174,0,0,0,0,5,81,8,543,0,0,0,866,297,1,2,18,60,2,3,1,0,0,14,22,23,18,84,70,60,66,165,880,125,46,68,133,101,71,31,30,16,6,1,2,1,0,0,32.0,24.0,29.0,24.0,26.0,35.0,23.0,20.0,23.0,25.0,36.0,31.0,23.0,19.0,26.0,25.0,29.0,32.0,26.0,18.0,27.0,26.0,25.0,21.0,22.0,18.0,19.0,20.0,23.0,23.0,21.0,19.0,23.0,21.0,22.0,18.0,14.0,21.0,17.0,19.0,25.0,16.0,21.0,16.0,21.0,19.0,16.0,15.0,15.0,20.0,12.0,15.0,18.0,17.0,11.0,17.0,23.0,11.0,15.0,11.0,14.0,18.0,19.0,16.0,4.0,11.0,9.0,12.0,10.0,3.0,10.0,6.0,4.0,9.0,6.0,3.0,7.0,7.0,9.0,9.0,5.0,6.0,6.0,5.0,3.0,2.0,5.0,1.0,4.0,1.0,1.0,2.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,396,954,161,0,135,126,135,130,121,103,106,89,99,85,73,77,71,45,35,35,25,13,6,2,0,0,1490,3,4,14,0,1490,3,4,14,0,449,16,198,138,41,1,272,396,0,803,701,7,0,0,238,13,0,0,0,0,0,0,0,1260,0,6,11,363,15,0,0,383,733,0,217,419,42,9,0,824,0,2.52,0.0,3.509756097560976,0.0,6.968894771674388,3,7,152,7,0,0,146,197,0,69,44,29,39,73,78,59,34,40,20,11,6,4,3,0,0,478,34,410,102,390,122,79,433,410,102,56,456,267,245,69,443,446,66,402,110,85,317,83,429,332,180,154,358,228,284,255,257,7,505,131,270,102,9,1,356,156,0,0,55,3,0,0,0,0,0,0,0,454,0,1.530214424951267,1.4152046783625731,1.0,1.1176470588235294,1.1176470588235294,51.091796875 +,40108,Chiriquí,Alanje,Canta Gallo,280,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,14,6,210,0,6,0,0,0,0,194,0,0,3,0,2,8,0,9,163,0,47,3,3,0,0,206,7,0,0,0,3,216,0,21,13,0,18,14,0,0,5,197,13,1,0,204,4,0,4,3,1,0,215,0,0,0,1,0,0,3,204,0,8,1,0,0,57,96,53,1,0,0,6,0,1,0,2,0,282,6.601307189542483,11.627450980392156,6.5816993464052285,11.699346405228756,1.023148148148148,3.092592592592593,1.7685185185185186,221,130,247,0,47,3,12,2,2,13,4,2,0,0,6,0,0,2,3,0,1,466,165,0,60,571,0,179,452,0,570,61,0,66,565,0,59,7,517,48,0,48,8,10,0,30,19,32,27,23,164,0,0,0,18,33,49,20,26,87,0,0,0,4,7,6,8,9,3,0,0,0,0,0,0,0,158,17,399,0,2,5,5,9,55,198,33,104,152,4,5,1,1,0,3,0,5,365,318,22,109,2,14,0,0,4,20,0,40,4,474,0,0,0,450,92,0,0,4,25,3,0,0,0,21,8,6,3,8,22,13,11,18,65,483,49,13,10,30,33,37,14,9,1,3,0,0,1,0,0,10.0,17.0,10.0,15.0,9.0,8.0,14.0,10.0,6.0,10.0,17.0,9.0,15.0,11.0,8.0,8.0,14.0,10.0,10.0,9.0,10.0,15.0,16.0,14.0,13.0,9.0,8.0,9.0,9.0,12.0,6.0,8.0,16.0,14.0,4.0,5.0,4.0,7.0,12.0,7.0,10.0,5.0,11.0,4.0,5.0,11.0,7.0,10.0,11.0,11.0,8.0,11.0,6.0,8.0,9.0,3.0,9.0,7.0,5.0,5.0,8.0,8.0,4.0,1.0,3.0,7.0,6.0,9.0,3.0,1.0,6.0,5.0,1.0,2.0,7.0,7.0,3.0,2.0,3.0,4.0,1.0,5.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,3.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,169,429,85,0,61,48,60,51,68,47,48,35,35,50,42,29,24,26,21,19,8,6,5,0,0,0,677,3,0,3,0,677,3,0,3,0,257,9,72,56,17,3,100,169,0,505,177,1,0,0,129,0,0,0,0,0,0,0,0,554,0,0,31,45,3,0,0,7,597,0,101,139,8,1,0,434,0,2.516981132075472,0.0,3.435233160621762,0.0,6.3601756954612005,0,13,25,3,0,0,5,175,0,78,17,7,13,18,25,22,14,16,4,5,0,1,0,1,0,212,9,176,45,166,55,27,194,182,39,35,186,42,179,2,219,179,42,177,44,50,127,23,198,28,193,76,145,37,184,61,160,2,219,51,107,63,0,0,169,52,0,0,24,0,0,0,0,0,0,0,0,197,0,1.6515837104072395,1.4389140271493213,1.0,1.1428571428571428,1.1428571428571428,52.22171945701358 +,40109,Chiriquí,Alanje,Nuevo México,804,1,1,13,0,0,0,0,0,0,0,9,2,0,0,6,447,150,35,549,54,4,0,0,30,1,513,0,8,50,1,10,56,0,0,241,2,371,2,22,0,0,577,49,0,0,0,12,638,0,75,29,4,50,23,0,0,14,539,81,2,2,514,25,12,0,87,0,0,631,0,0,0,0,7,0,56,510,0,69,3,0,151,285,111,36,35,2,0,4,0,4,5,5,0,830,6.574040219378428,18.610603290676416,6.663619744058501,18.974405850091408,1.0203761755485894,2.7633228840125392,1.7225705329153604,662,365,1016,65,227,11,26,50,5,33,9,4,23,1,16,13,5,12,11,7,4,1184,1086,0,131,2139,0,568,1702,0,1892,378,0,745,1525,0,728,17,1211,314,0,314,33,39,6,95,98,106,102,129,386,0,0,1,100,121,160,80,96,295,0,8,15,22,18,23,19,2,1,0,1,0,0,0,0,0,476,84,1368,0,5,45,13,120,486,661,29,72,258,42,45,13,16,8,151,4,0,1290,1207,67,328,15,109,6,0,12,0,29,50,16,1167,6,0,0,1523,344,1,10,9,40,1,0,0,0,0,8,16,10,15,92,52,41,41,285,1857,113,60,107,141,82,71,29,19,6,4,1,1,0,0,6,51.0,53.0,59.0,64.0,52.0,70.0,52.0,64.0,55.0,49.0,43.0,81.0,41.0,62.0,42.0,51.0,63.0,41.0,52.0,45.0,43.0,46.0,34.0,39.0,39.0,37.0,44.0,42.0,36.0,29.0,30.0,37.0,24.0,23.0,28.0,34.0,28.0,34.0,35.0,14.0,30.0,28.0,21.0,14.0,27.0,29.0,15.0,16.0,21.0,22.0,28.0,22.0,20.0,26.0,25.0,26.0,19.0,17.0,18.0,18.0,17.0,11.0,17.0,25.0,19.0,17.0,15.0,13.0,17.0,11.0,9.0,8.0,11.0,8.0,13.0,7.0,10.0,7.0,4.0,10.0,4.0,3.0,6.0,3.0,8.0,2.0,4.0,1.0,1.0,0.0,3.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,838,1459,200,0,279,290,269,252,201,188,142,145,120,103,121,98,89,73,49,38,24,8,7,0,1,0,2443,4,5,45,0,2444,4,4,45,0,633,10,225,242,44,5,500,838,0,1463,1028,6,0,0,1120,5,0,0,0,0,0,0,0,1372,0,3,32,132,4,0,0,119,2207,0,234,604,111,11,3,1534,0,2.5355603448275863,0.0,3.649586776859504,0.0,5.663596315578695,1,17,48,2,0,0,45,549,0,118,68,45,57,113,95,74,28,29,11,7,2,2,1,0,1,626,36,409,253,368,294,97,565,424,238,39,623,308,354,6,656,464,198,418,244,73,345,68,594,196,466,94,568,215,447,193,469,4,658,113,354,178,17,0,461,201,0,0,215,1,0,0,0,0,0,0,0,446,0,1.948640483383686,1.8232628398791544,0.0,1.0869565217391304,1.0869565217391304,50.16465256797583 +PA020202,40202,Chiriquí,Barú,Limones,536,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,262,105,28,348,23,11,0,0,16,1,376,1,0,12,2,0,8,0,0,9,29,316,6,39,0,0,377,12,3,0,0,7,399,0,78,14,1,32,13,0,0,16,314,42,0,27,290,97,0,2,9,1,0,370,2,4,1,1,21,0,45,298,0,52,4,0,8,249,43,25,20,1,0,8,0,37,7,1,0,537,6.703333333333333,12.73,6.833333333333333,13.873333333333331,1.005012531328321,3.020050125313283,1.924812030075188,401,199,397,37,46,14,15,20,2,13,5,4,6,0,20,5,0,4,4,3,1,859,219,0,164,914,0,741,337,0,963,115,0,313,765,0,288,25,696,69,0,70,23,17,1,47,64,63,54,49,209,0,0,0,51,44,99,29,54,140,6,10,9,6,3,3,5,17,0,0,5,0,0,0,0,0,395,23,521,0,0,13,8,25,181,250,64,1,144,15,38,14,12,0,137,54,0,630,529,32,224,14,126,12,0,6,0,15,49,7,305,0,0,0,735,166,0,10,2,21,0,5,0,0,0,7,17,6,4,60,85,42,32,165,697,94,44,83,88,50,42,27,19,5,4,1,2,0,3,0,23.0,15.0,22.0,21.0,24.0,29.0,17.0,30.0,18.0,21.0,25.0,19.0,20.0,24.0,9.0,21.0,18.0,21.0,19.0,17.0,19.0,20.0,15.0,14.0,14.0,13.0,17.0,30.0,16.0,6.0,18.0,14.0,22.0,16.0,12.0,13.0,14.0,12.0,14.0,10.0,13.0,15.0,7.0,14.0,10.0,12.0,16.0,18.0,17.0,17.0,14.0,19.0,7.0,19.0,15.0,13.0,13.0,10.0,11.0,11.0,12.0,14.0,9.0,11.0,4.0,5.0,9.0,5.0,7.0,7.0,10.0,8.0,3.0,5.0,3.0,7.0,5.0,5.0,3.0,5.0,0.0,5.0,4.0,3.0,5.0,2.0,3.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,317,726,116,0,105,115,97,96,82,82,82,63,59,80,74,58,50,33,29,25,17,8,3,1,0,0,1094,33,30,2,0,1097,34,26,2,0,334,9,155,125,21,4,194,317,0,795,308,56,0,6,151,7,0,1,0,0,0,0,0,994,0,38,22,174,6,1,3,321,594,0,120,200,20,2,4,813,0,2.675233644859813,0.0,3.6754966887417218,0.0,6.251941328731665,15,10,64,1,0,2,109,200,0,43,30,29,67,74,47,38,21,28,9,7,2,2,0,4,0,385,16,322,79,304,97,45,356,319,82,33,368,237,164,12,389,335,66,288,113,96,192,57,344,285,116,71,330,162,239,215,186,8,393,111,212,72,6,0,302,99,0,4,46,3,0,0,0,0,0,0,0,348,0,1.571072319201995,1.319201995012469,1.0,1.0,1.0,49.67082294264339 +PA020201,40204,Chiriquí,Barú,Baco,2788,8,11,0,0,0,0,0,0,0,0,0,1,0,0,65,1835,317,120,2147,70,10,0,0,107,3,2207,28,0,11,0,36,46,0,9,61,240,1625,34,366,0,11,2209,67,5,0,0,56,2337,0,164,72,17,141,76,0,4,87,2093,149,4,0,2000,201,0,7,118,9,2,2315,0,1,0,5,15,1,307,1865,1,159,5,0,1776,10,193,218,65,1,0,0,0,14,43,17,0,2808,6.044466902475998,18.93077311773623,6.200101061141991,19.794845881758462,1.011553273427471,3.202824133504493,2.070603337612324,2365,1272,3019,210,646,66,91,80,18,131,34,9,64,3,227,99,23,50,69,119,36,5117,2329,0,794,6652,0,3313,4133,0,6734,712,0,2302,5144,0,2189,113,4645,499,0,503,65,144,6,225,332,342,296,305,1356,0,0,0,309,437,576,275,326,1209,15,31,92,97,122,137,132,64,19,2,24,0,0,1,4,0,2291,269,4023,0,16,102,70,432,1464,1772,215,140,1143,215,211,47,138,30,717,11,12,4091,3917,340,1342,58,576,127,5,61,15,69,195,64,3295,24,0,0,4634,1551,0,36,66,251,18,23,4,0,17,53,110,83,58,525,255,231,133,1095,5051,625,324,460,488,425,258,147,125,50,14,4,5,4,4,24,145.0,132.0,133.0,152.0,124.0,169.0,128.0,139.0,159.0,144.0,170.0,158.0,146.0,122.0,143.0,153.0,159.0,151.0,141.0,155.0,158.0,158.0,177.0,134.0,103.0,148.0,122.0,117.0,107.0,110.0,102.0,105.0,96.0,95.0,101.0,79.0,102.0,73.0,90.0,79.0,77.0,90.0,98.0,77.0,81.0,74.0,73.0,106.0,97.0,83.0,108.0,83.0,89.0,99.0,89.0,77.0,84.0,89.0,64.0,71.0,86.0,63.0,77.0,76.0,55.0,49.0,54.0,47.0,61.0,43.0,48.0,31.0,42.0,36.0,38.0,32.0,25.0,25.0,24.0,26.0,28.0,20.0,11.0,18.0,19.0,10.0,15.0,11.0,10.0,10.0,6.0,6.0,3.0,0.0,4.0,3.0,4.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2164,5081,763,0,686,739,739,759,730,604,499,423,423,433,468,385,357,254,195,132,96,56,19,10,1,0,7953,24,17,14,0,7954,24,16,14,0,1946,72,178,1163,201,34,2250,2164,0,4117,3848,43,0,11,1628,15,0,0,0,0,1,0,0,6353,0,85,116,1326,66,3,5,1364,5043,0,974,2099,397,67,5,4466,0,2.40789064926996,0.0,3.4375290292614955,0.0,6.997502497502498,26,48,472,27,2,4,379,1407,0,314,206,158,293,362,338,217,137,176,81,31,16,20,3,6,6,2279,86,2052,313,1888,477,325,2040,2034,331,252,2113,1331,1034,27,2338,2023,342,1939,426,657,1282,407,1958,1216,1149,574,1791,803,1562,703,1662,9,2356,445,1286,578,56,0,1562,803,0,3,399,4,0,0,0,0,1,0,0,1958,0,1.7298097251585625,1.6562367864693446,1.3333333333333333,1.043103448275862,1.043103448275862,51.22748414376321 +PA020205,40205,Chiriquí,Barú,Rodolfo Aguilar Delgado,2680,8,0,0,0,0,0,0,0,0,0,0,5,0,0,452,1032,771,58,1982,273,5,3,0,47,3,2157,3,2,32,4,46,57,0,12,38,758,1088,95,327,1,6,2125,123,9,0,0,56,2313,10,131,39,6,117,72,0,4,45,1931,331,2,0,1350,709,1,15,214,24,0,2295,0,1,0,5,11,1,162,1735,0,371,44,1,1358,91,54,614,46,19,0,6,0,43,72,10,0,2693,5.994677312042581,20.568196939454424,5.934797072521623,21.070525615435795,1.009511456982274,3.265888456549935,2.1171638564634674,2340,1274,3385,313,952,43,118,129,20,160,24,22,71,0,226,142,44,89,50,48,37,5375,2717,0,859,7233,0,2918,5174,0,6990,1102,0,2645,5447,0,2595,50,4698,749,0,773,132,196,30,300,387,426,364,358,1339,0,1,1,374,469,683,271,355,1331,1,10,38,50,49,62,43,37,6,2,4,0,0,0,0,0,2158,417,4396,0,9,237,77,558,1645,1874,155,164,1246,244,138,39,111,8,685,0,0,4627,4224,173,1309,50,750,79,26,84,0,59,191,54,3550,58,0,0,5335,1448,1,19,44,115,6,3,0,0,0,27,45,38,46,373,559,145,113,1229,5962,483,303,420,536,692,227,90,55,16,6,1,1,0,1,58,179.0,197.0,205.0,178.0,194.0,198.0,190.0,168.0,183.0,188.0,198.0,187.0,166.0,184.0,231.0,188.0,217.0,178.0,172.0,166.0,157.0,171.0,178.0,164.0,118.0,133.0,123.0,131.0,102.0,113.0,107.0,120.0,98.0,115.0,95.0,90.0,88.0,82.0,96.0,76.0,98.0,82.0,85.0,86.0,73.0,79.0,83.0,73.0,73.0,68.0,100.0,77.0,79.0,89.0,83.0,80.0,79.0,81.0,90.0,71.0,80.0,73.0,63.0,67.0,58.0,56.0,64.0,58.0,51.0,37.0,39.0,43.0,37.0,37.0,33.0,38.0,24.0,21.0,18.0,17.0,23.0,20.0,20.0,9.0,16.0,16.0,11.0,14.0,17.0,8.0,9.0,3.0,9.0,3.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2846,5248,757,0,953,927,966,921,788,602,535,432,424,376,428,401,341,266,189,118,88,66,26,4,0,0,8632,110,44,65,0,8640,112,34,65,0,2268,96,531,1001,214,24,1872,2845,0,4741,3994,116,0,14,4153,22,0,1,0,11,1,1,0,4648,0,66,88,606,26,1,7,647,7410,0,1042,2349,511,92,4,4853,0,2.684194620731339,0.0,3.858962693357598,0.0,6.039543554400633,21,34,230,16,0,2,211,1826,0,309,133,153,257,374,427,269,160,156,46,26,6,4,1,1,13,2208,132,1689,651,1636,704,369,1971,1779,561,88,2252,1451,889,25,2315,1908,432,1722,618,431,1291,220,2120,842,1498,311,2029,1032,1308,929,1411,23,2317,446,1175,670,49,0,1648,692,0,2,867,6,0,0,0,0,1,0,0,1464,0,1.9773504273504277,1.8051282051282047,1.0,1.0344827586206895,1.0344827586206895,50.94102564102564 +PA020302,40301,Chiriquí,Boquerón,Boquerón,2064,10,9,0,0,0,0,0,3,0,0,2,4,0,0,202,1332,37,19,1536,35,2,0,0,17,0,1551,0,0,7,2,6,16,0,8,36,979,405,25,135,1,9,1517,41,4,0,0,28,1590,1,100,129,47,174,42,0,203,114,1184,78,11,0,1545,24,0,4,16,1,0,1581,0,7,0,2,0,0,812,744,0,28,6,0,1140,387,28,7,3,1,0,5,0,11,7,1,990,1102,6.812218649517685,22.535691318327974,6.872668810289389,23.08938906752412,1.0144654088050316,3.6320754716981134,2.293081761006289,1619,915,1736,176,323,54,65,41,21,58,22,16,33,4,48,16,18,35,28,6,21,4020,769,0,1532,3257,0,3069,1720,0,4404,385,0,1422,3367,0,1176,246,3133,234,0,237,64,69,11,113,158,179,171,121,595,0,1,5,141,203,419,135,170,1047,8,15,69,91,131,150,242,140,35,5,60,1,1,0,2,0,1913,132,2271,0,7,62,23,246,893,914,74,144,1175,156,195,66,235,7,181,1,6,2513,2570,397,868,80,582,71,0,16,8,5,226,33,1514,21,0,0,2314,1303,5,23,99,475,35,59,3,0,9,85,214,158,102,425,172,264,177,439,2451,343,185,236,340,445,439,214,227,116,32,11,8,7,8,21,70.0,76.0,74.0,74.0,90.0,77.0,74.0,78.0,75.0,79.0,94.0,89.0,65.0,79.0,84.0,101.0,69.0,81.0,85.0,76.0,95.0,72.0,78.0,72.0,74.0,79.0,63.0,74.0,61.0,89.0,89.0,71.0,73.0,91.0,75.0,55.0,85.0,68.0,71.0,59.0,72.0,77.0,65.0,57.0,65.0,62.0,60.0,66.0,51.0,56.0,57.0,48.0,55.0,64.0,63.0,56.0,64.0,52.0,57.0,61.0,59.0,56.0,33.0,48.0,36.0,41.0,31.0,35.0,28.0,26.0,32.0,27.0,33.0,26.0,25.0,27.0,19.0,21.0,21.0,14.0,21.0,15.0,13.0,14.0,13.0,12.0,8.0,8.0,4.0,6.0,11.0,5.0,2.0,3.0,0.0,4.0,6.0,2.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1178,3346,559,0,384,383,411,412,391,366,399,338,336,295,287,290,232,161,143,102,76,38,21,15,3,0,4932,46,84,21,0,4938,46,78,21,0,1314,53,72,812,144,32,1478,1178,0,2323,2680,80,0,4,286,36,3,2,0,0,2,0,13,4737,0,88,113,154,17,6,8,190,4507,0,965,1307,227,32,20,2532,0,2.017767653758542,0.0,2.8657219973009447,0.0,8.57190635451505,26,48,62,11,6,3,85,1378,0,79,80,47,84,163,198,222,135,253,159,85,42,35,16,14,1,1575,44,1475,144,1443,176,255,1364,1293,326,420,1199,969,650,188,1431,1516,103,1427,192,931,496,631,988,1009,610,805,814,558,1061,514,1105,24,1595,300,936,356,27,3,1113,506,0,0,59,9,1,1,0,0,0,0,3,1546,0,1.5493218249075216,1.5844636251541306,1.1428571428571428,1.0410958904109588,1.0410958904109588,51.52748610253243 +PA020301,40302,Chiriquí,Boquerón,Bágala,2394,1,7,0,0,0,0,0,8,0,0,1,3,0,0,589,991,80,11,1646,14,5,1,0,2,3,1615,0,3,9,1,3,30,0,10,302,948,305,6,81,0,29,1629,23,3,0,0,16,1671,21,204,243,58,147,58,0,758,146,730,32,3,2,1623,16,0,7,23,2,0,1657,1,4,0,2,7,0,1158,464,0,47,2,0,150,1111,325,37,10,2,0,8,0,21,7,0,0,2414,6.71374527112232,20.63871374527112,6.877679697351828,21.93316519546028,1.0125673249551166,3.5505685218432075,2.3524835427887494,1695,920,1729,179,222,67,75,32,16,49,23,18,83,5,84,49,13,15,19,16,21,3964,772,0,1939,2797,0,3434,1302,0,4377,359,0,1504,3232,0,1208,296,2976,256,0,260,52,91,0,118,173,157,134,124,532,1,1,1,139,135,288,115,188,885,3,32,107,165,188,256,355,64,57,8,95,0,3,1,8,0,2005,205,1970,0,4,52,21,180,840,743,45,162,1530,115,203,51,160,5,61,2,50,2512,2601,583,1003,58,431,35,0,17,50,9,182,14,1620,41,0,0,1948,1308,1,46,100,625,53,92,7,0,50,99,313,223,113,608,64,236,161,343,2574,283,90,167,273,289,585,274,293,146,53,15,13,6,11,41,92.0,78.0,110.0,97.0,94.0,104.0,87.0,104.0,93.0,74.0,92.0,92.0,79.0,65.0,82.0,79.0,62.0,76.0,78.0,60.0,77.0,58.0,77.0,95.0,70.0,94.0,87.0,107.0,104.0,101.0,91.0,104.0,108.0,110.0,105.0,106.0,93.0,78.0,82.0,72.0,74.0,64.0,66.0,63.0,55.0,54.0,53.0,56.0,66.0,29.0,56.0,53.0,57.0,35.0,34.0,35.0,56.0,41.0,30.0,39.0,40.0,31.0,22.0,38.0,31.0,29.0,13.0,31.0,24.0,27.0,24.0,19.0,19.0,22.0,18.0,17.0,12.0,14.0,16.0,8.0,13.0,14.0,11.0,10.0,14.0,14.0,5.0,11.0,4.0,9.0,6.0,3.0,3.0,2.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1343,3352,418,0,471,462,410,355,377,493,518,431,322,258,235,201,162,124,102,67,62,43,14,6,0,0,4992,51,52,18,0,4994,54,47,18,0,1300,51,53,811,112,46,1397,1343,0,1876,3196,41,0,2,447,14,0,2,0,1,0,1,28,4618,0,110,50,162,15,10,3,658,4105,0,1287,1352,168,19,7,2280,0,1.7919182535996283,0.0,2.638402242466713,0.0,8.89360453745355,54,25,63,9,4,3,236,1301,0,92,97,33,70,113,140,255,167,298,197,84,56,44,15,17,14,1666,29,1569,126,1520,175,237,1458,1456,239,670,1025,974,721,287,1408,1550,145,1509,186,931,578,787,908,1289,406,897,798,376,1319,230,1465,17,1678,337,1018,296,44,9,1117,578,0,1,119,3,0,2,0,0,0,1,9,1560,0,1.4741784037558685,1.5264084507042253,1.8,1.0465116279069768,1.0465116279069768,46.225958702064894 +PA020303,40303,Chiriquí,Boquerón,Cordillera,229,0,0,0,0,0,0,0,6,0,0,1,0,0,0,0,140,18,1,150,8,1,0,0,0,0,146,0,0,4,0,1,8,0,0,21,44,60,7,25,0,2,155,3,0,0,0,1,159,1,18,12,5,23,11,0,0,8,115,35,1,0,138,15,0,4,1,1,0,158,0,0,0,1,0,0,53,90,0,8,8,0,0,137,18,0,0,4,0,0,0,0,0,0,0,236,6.922580645161291,23.65806451612903,6.948387096774193,23.741935483870968,1.0125786163522013,3.220125786163522,1.8616352201257864,161,80,187,7,13,6,6,8,0,6,1,0,8,0,7,6,3,1,3,0,0,356,99,0,108,347,0,255,200,0,414,41,0,142,313,0,105,37,273,40,0,40,3,6,4,8,19,25,11,23,84,0,1,0,13,21,36,13,13,62,0,0,7,12,13,14,9,10,3,0,5,0,0,0,0,0,195,14,191,0,4,8,2,13,81,92,2,3,98,44,7,2,8,1,47,0,0,260,223,20,110,4,36,7,0,30,0,4,16,0,180,5,0,0,264,92,0,0,8,30,2,4,0,0,0,12,8,5,4,10,44,10,18,98,277,25,11,11,29,56,16,15,17,9,7,0,4,1,0,5,6.0,6.0,9.0,7.0,7.0,13.0,7.0,5.0,13.0,10.0,12.0,6.0,6.0,9.0,7.0,9.0,7.0,9.0,6.0,11.0,8.0,10.0,5.0,7.0,5.0,5.0,8.0,7.0,7.0,9.0,6.0,7.0,7.0,5.0,6.0,5.0,8.0,4.0,10.0,4.0,5.0,10.0,3.0,7.0,6.0,4.0,4.0,4.0,6.0,2.0,7.0,6.0,9.0,6.0,5.0,4.0,9.0,2.0,7.0,4.0,0.0,4.0,6.0,6.0,5.0,2.0,2.0,1.0,4.0,4.0,1.0,4.0,4.0,3.0,1.0,3.0,2.0,3.0,1.0,5.0,2.0,0.0,3.0,1.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,123,306,54,0,35,48,40,42,35,36,31,31,31,20,33,26,21,13,13,14,10,3,0,1,0,0,467,12,1,3,0,467,13,0,3,0,146,8,12,64,11,8,111,123,0,205,266,12,0,0,146,7,0,0,0,0,0,0,9,321,0,9,12,98,0,1,0,114,249,0,74,97,12,1,4,295,0,1.994350282485876,0.0,3.061946902654867,0.0,7.370600414078675,3,4,29,0,0,0,33,92,0,16,10,8,8,13,36,10,10,21,9,8,3,6,2,0,1,161,0,123,38,115,46,34,127,30,131,2,159,95,66,0,161,144,17,121,40,44,77,48,113,97,64,62,99,69,92,94,67,38,123,48,81,32,0,7,126,35,0,0,34,1,0,0,0,0,0,0,2,124,0,1.5476190476190477,1.3273809523809523,1.4285714285714286,1.0666666666666669,1.0666666666666669,52.46583850931677 +PA020304,40304,Chiriquí,Boquerón,Guabal,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,242,53,8,332,9,4,0,0,3,1,333,0,1,0,0,1,14,0,0,6,75,203,9,55,0,1,322,18,0,0,0,9,349,1,28,27,1,32,23,0,0,9,309,30,1,0,309,28,0,0,10,2,0,335,0,0,0,12,0,2,80,243,0,13,11,2,21,239,49,25,6,1,0,7,0,1,0,0,0,461,6.980582524271845,23.818770226537215,7.0,23.94822006472492,1.0,3.2148997134670485,2.088825214899713,349,227,461,13,48,7,3,1,3,12,2,0,0,0,10,3,9,5,4,1,4,646,394,0,92,948,0,511,529,0,916,124,0,272,768,0,260,12,663,105,0,105,6,12,0,36,45,33,38,47,224,0,0,0,26,46,86,39,44,170,1,1,8,12,6,32,19,2,1,0,1,0,0,0,0,0,333,50,527,0,1,32,8,33,173,251,15,55,148,27,79,9,59,3,45,0,3,579,547,34,171,10,135,17,0,3,3,7,47,8,454,2,0,0,657,195,0,1,2,53,1,1,0,0,3,10,15,9,7,84,39,48,26,142,687,74,17,58,80,73,77,27,21,6,3,0,0,0,1,2,20.0,22.0,25.0,19.0,19.0,23.0,21.0,28.0,22.0,17.0,19.0,23.0,18.0,17.0,22.0,21.0,19.0,20.0,18.0,23.0,17.0,22.0,16.0,23.0,18.0,11.0,22.0,19.0,15.0,22.0,17.0,16.0,18.0,15.0,15.0,11.0,17.0,13.0,13.0,18.0,13.0,10.0,12.0,10.0,14.0,19.0,10.0,8.0,8.0,25.0,13.0,12.0,8.0,17.0,3.0,8.0,14.0,11.0,7.0,4.0,12.0,7.0,4.0,10.0,6.0,12.0,5.0,7.0,2.0,8.0,5.0,8.0,4.0,2.0,4.0,3.0,6.0,3.0,2.0,1.0,5.0,2.0,2.0,4.0,1.0,4.0,1.0,3.0,3.0,3.0,1.0,0.0,2.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,315,704,107,0,105,111,99,101,96,89,81,72,59,70,53,44,39,34,23,15,14,14,5,2,0,0,1107,5,2,12,0,1107,6,1,12,0,335,13,34,166,29,2,232,315,0,749,371,6,0,1,113,3,0,1,0,0,0,0,18,990,0,0,12,0,0,0,0,2,1112,0,121,190,24,7,2,782,0,2.210526315789474,0.0,3.229965156794425,0.0,6.654529307282416,0,2,0,0,0,0,1,346,0,31,21,12,33,57,62,48,31,28,16,5,2,2,0,1,0,332,17,279,70,279,70,47,302,184,165,10,339,199,150,3,346,266,83,271,78,54,217,59,290,105,244,119,230,118,231,122,227,2,347,68,224,57,0,0,288,61,0,1,24,1,0,1,0,0,0,0,3,319,0,1.659025787965616,1.5673352435530086,0.0,1.0,1.0,49.39541547277937 +PA020305,40305,Chiriquí,Boquerón,Guayabal,1080,3,2,0,0,0,0,0,1,0,0,0,0,0,0,13,688,72,22,760,13,5,0,0,14,3,730,0,2,17,0,9,28,0,9,203,209,259,17,106,1,0,756,28,0,0,0,11,795,1,98,53,12,66,60,0,15,33,667,80,0,0,711,57,0,7,15,5,0,792,3,0,0,0,0,0,229,505,0,35,24,2,159,543,61,4,3,0,0,0,0,12,10,3,0,1086,6.606815203145478,23.61205766710354,6.750982961992136,23.72083879423329,1.0176100628930818,3.1446540880503147,2.0427672955974843,809,418,835,56,134,26,37,27,8,34,11,11,14,0,92,18,3,10,15,2,5,1665,595,0,416,1844,0,957,1303,0,2062,198,0,628,1632,0,578,50,1478,154,0,157,15,41,4,70,109,111,65,83,400,0,1,0,56,97,181,60,89,443,0,0,34,43,46,71,52,18,6,1,7,0,0,0,0,0,782,30,1207,0,1,13,2,78,385,634,69,41,382,88,65,16,166,2,79,0,10,1247,1173,98,324,23,283,62,0,2,16,6,131,15,599,192,0,0,1280,584,0,2,25,118,4,6,0,0,15,25,28,33,51,129,103,154,80,194,1163,213,77,100,215,172,139,59,52,19,10,1,4,1,3,192,43.0,37.0,42.0,38.0,37.0,48.0,32.0,45.0,42.0,37.0,37.0,39.0,37.0,32.0,25.0,43.0,39.0,35.0,30.0,45.0,45.0,46.0,46.0,34.0,37.0,31.0,46.0,37.0,32.0,29.0,38.0,40.0,31.0,41.0,28.0,37.0,31.0,26.0,24.0,26.0,32.0,27.0,32.0,18.0,24.0,21.0,32.0,25.0,32.0,23.0,26.0,25.0,31.0,38.0,27.0,33.0,31.0,35.0,27.0,27.0,29.0,17.0,20.0,15.0,21.0,23.0,15.0,17.0,11.0,21.0,12.0,7.0,13.0,11.0,13.0,11.0,11.0,10.0,8.0,15.0,17.0,10.0,3.0,9.0,5.0,8.0,5.0,9.0,4.0,3.0,3.0,3.0,0.0,1.0,2.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,571,1565,284,0,197,204,170,192,208,175,178,144,133,133,147,153,102,87,56,55,44,29,9,3,1,0,2384,16,2,18,0,2385,16,1,18,0,720,11,36,313,79,11,679,571,0,1414,984,22,0,2,196,13,0,0,0,0,0,0,6,2203,0,363,13,93,2,0,3,217,1729,0,295,416,79,8,7,1615,0,2.2845445240532243,0.0,3.217201166180758,0.0,7.333471074380165,118,8,29,1,0,1,77,575,0,66,58,42,54,143,121,98,61,77,38,17,7,8,2,4,13,782,27,654,155,641,168,149,660,471,338,46,763,498,311,25,784,705,104,655,154,170,485,179,630,338,471,299,510,377,432,362,447,40,769,183,443,177,6,1,538,271,0,0,50,3,0,0,0,0,0,0,1,755,0,1.539506172839506,1.4481481481481482,1.0,1.0357142857142858,1.0357142857142858,51.70951792336218 +PA020306,40306,Chiriquí,Boquerón,Paraíso,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,120,65,7,136,50,1,0,0,6,0,163,0,0,18,0,4,7,0,1,9,57,92,10,24,1,0,187,6,0,0,0,0,193,0,33,7,0,46,7,0,0,6,128,59,0,0,142,21,0,16,9,5,0,191,0,0,0,1,0,1,29,130,0,26,8,0,1,171,7,4,10,0,0,0,0,0,0,0,0,286,6.5251396648044695,21.48603351955307,6.966480446927374,23.932960893854748,1.0518134715025906,2.937823834196891,1.854922279792746,203,117,282,20,31,0,6,2,1,10,4,2,5,0,12,1,1,0,6,1,3,373,230,0,55,548,0,136,467,0,485,118,0,146,457,0,130,16,349,108,0,109,2,9,0,21,23,27,16,31,122,1,1,0,20,20,36,18,23,71,0,0,5,7,8,7,13,11,1,0,1,0,0,0,0,0,231,16,259,0,2,6,5,8,99,130,16,6,79,43,21,7,13,2,80,0,0,351,332,16,116,7,67,36,0,2,1,5,17,8,295,0,0,0,378,96,0,1,2,29,0,0,0,0,1,8,5,6,3,33,36,34,7,114,415,24,15,30,104,51,20,11,10,1,2,0,0,0,0,0,21.0,19.0,19.0,21.0,22.0,23.0,16.0,13.0,14.0,9.0,11.0,14.0,8.0,6.0,16.0,12.0,14.0,10.0,16.0,13.0,15.0,18.0,18.0,15.0,9.0,14.0,14.0,10.0,9.0,10.0,8.0,9.0,3.0,11.0,7.0,4.0,5.0,4.0,13.0,3.0,8.0,6.0,3.0,11.0,8.0,8.0,6.0,8.0,9.0,3.0,11.0,4.0,8.0,5.0,5.0,4.0,5.0,3.0,4.0,7.0,5.0,2.0,2.0,4.0,1.0,4.0,5.0,2.0,7.0,1.0,2.0,4.0,2.0,5.0,0.0,5.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,232,404,47,0,102,75,55,65,75,57,38,29,36,34,33,23,14,19,13,6,5,2,2,0,0,0,646,3,3,31,0,646,4,2,31,0,228,1,3,70,5,2,142,232,0,297,376,10,0,0,326,22,0,0,0,0,0,0,1,334,0,0,0,6,0,0,0,5,672,0,69,64,7,1,1,541,0,2.423076923076923,0.0,3.5095541401273884,0.0,5.674963396778916,0,0,1,0,0,0,2,200,0,10,6,5,12,60,48,25,12,13,8,3,0,1,0,0,0,198,5,125,78,120,83,43,160,57,146,0,203,97,106,3,200,160,43,122,81,18,104,32,171,110,93,45,158,116,87,90,113,11,192,46,118,36,3,0,168,35,0,0,79,4,0,0,0,0,0,0,0,120,0,1.729064039408867,1.6354679802955665,1.0,1.0,1.0,45.72413793103448 +PA020307,40307,Chiriquí,Boquerón,Pedregal,982,4,14,0,0,0,0,0,0,0,0,0,1,0,0,5,765,17,18,766,21,6,1,0,8,3,780,0,0,8,0,3,10,0,4,75,557,115,11,40,0,7,766,19,4,0,0,16,805,2,43,42,26,55,27,0,24,81,628,66,6,0,777,8,1,8,2,9,0,802,0,1,1,0,0,1,314,475,0,16,0,0,7,748,27,1,2,2,0,1,0,13,3,1,0,1001,6.791560102301791,18.69693094629156,6.937340153452685,22.703324808184146,1.027329192546584,3.53167701863354,2.216149068322981,828,412,1026,34,176,26,31,22,8,34,6,8,12,4,38,12,10,23,16,6,4,1919,526,0,661,1784,0,1598,847,0,2257,188,0,770,1675,0,667,103,1549,126,0,134,39,28,7,61,86,76,86,65,348,0,4,1,85,109,183,79,104,461,5,9,46,78,72,125,65,44,15,3,22,1,0,0,4,0,956,112,1098,0,17,42,32,118,485,411,54,30,589,91,134,30,150,2,43,2,18,1308,1319,189,452,39,337,11,0,11,20,4,82,10,822,6,0,0,1215,660,1,11,40,203,10,22,4,0,20,33,119,44,45,239,38,191,98,241,1357,175,85,111,177,209,227,102,90,48,19,7,7,0,7,6,39.0,51.0,38.0,54.0,41.0,48.0,40.0,46.0,56.0,48.0,52.0,66.0,47.0,53.0,45.0,38.0,35.0,42.0,44.0,33.0,35.0,44.0,39.0,35.0,51.0,44.0,39.0,34.0,33.0,28.0,48.0,31.0,35.0,46.0,40.0,33.0,40.0,34.0,23.0,47.0,38.0,29.0,22.0,46.0,31.0,31.0,34.0,22.0,22.0,29.0,32.0,42.0,26.0,31.0,30.0,24.0,25.0,26.0,24.0,34.0,31.0,14.0,15.0,25.0,22.0,26.0,17.0,14.0,16.0,16.0,16.0,13.0,9.0,13.0,12.0,8.0,7.0,7.0,13.0,9.0,7.0,6.0,5.0,5.0,5.0,2.0,1.0,4.0,3.0,0.0,6.0,1.0,2.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,724,1656,247,0,223,238,263,192,204,178,200,177,166,138,161,133,107,89,63,44,28,10,12,1,0,0,2556,27,18,26,0,2556,28,17,26,0,635,13,61,343,74,13,764,724,0,1339,1254,34,0,1,269,4,0,0,0,1,0,0,17,2335,0,20,20,75,10,0,3,168,2331,0,451,604,105,23,0,1444,0,2.03336339044184,0.0,2.9567567567567568,0.0,8.216977540921203,10,11,39,5,0,0,65,698,0,44,34,24,44,93,129,141,71,104,53,30,17,28,5,10,0,801,27,713,115,699,129,128,700,693,135,180,648,506,322,114,714,735,93,714,114,376,338,272,556,548,280,336,492,53,775,72,756,7,821,174,454,185,15,0,512,316,0,0,62,4,0,0,0,0,0,0,10,752,0,1.579710144927536,1.5929951690821256,1.0833333333333333,1.0888888888888888,1.0888888888888888,50.98067632850242 +PA020308,40308,Chiriquí,Boquerón,Tijeras,1436,4,11,0,0,0,0,0,0,0,0,0,3,0,0,1,1033,37,12,1069,2,2,2,0,6,2,1070,0,0,2,0,2,8,0,1,78,708,236,5,46,1,9,1048,17,5,1,0,12,1083,8,99,88,33,119,21,0,222,88,717,54,2,0,1058,9,0,3,8,5,0,965,12,99,0,1,2,4,638,427,0,16,1,1,5,1002,28,5,2,0,0,0,0,40,1,0,0,1454,6.914009661835749,22.81449275362319,6.961352657004831,23.48599033816425,1.0240073868882733,3.600184672206833,2.268698060941828,1112,631,1179,92,228,41,42,27,11,50,10,9,33,1,48,16,6,21,15,3,11,2872,399,0,1313,1958,0,2638,633,0,3044,227,0,973,2298,0,744,229,2186,112,0,114,38,49,13,66,87,103,85,92,397,0,2,4,84,122,235,104,147,675,0,7,62,109,89,238,174,55,29,7,79,1,1,0,3,0,1389,94,1482,0,5,46,24,189,589,609,49,46,1003,85,163,45,117,3,47,0,6,1735,1731,368,677,60,324,17,0,16,7,5,74,11,1119,3,0,0,1432,899,4,30,49,460,14,73,4,0,7,78,265,173,69,277,34,191,146,243,1706,165,93,116,183,261,365,194,176,115,53,8,19,2,7,3,45.0,37.0,62.0,51.0,43.0,58.0,48.0,50.0,54.0,53.0,44.0,67.0,43.0,54.0,40.0,67.0,54.0,64.0,59.0,72.0,46.0,45.0,57.0,64.0,64.0,58.0,60.0,57.0,41.0,52.0,52.0,58.0,61.0,52.0,68.0,53.0,44.0,42.0,51.0,41.0,43.0,48.0,48.0,55.0,41.0,37.0,38.0,33.0,44.0,46.0,42.0,35.0,43.0,35.0,28.0,50.0,31.0,42.0,41.0,37.0,36.0,42.0,42.0,44.0,29.0,26.0,27.0,30.0,21.0,15.0,21.0,22.0,15.0,15.0,21.0,7.0,11.0,8.0,11.0,7.0,9.0,9.0,7.0,4.0,6.0,3.0,1.0,5.0,4.0,1.0,2.0,2.0,2.0,0.0,1.0,4.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,749,2392,325,0,238,263,248,316,276,268,291,231,235,198,183,201,193,119,94,44,35,14,7,9,3,0,3386,37,40,3,0,3390,46,27,3,0,784,38,54,696,105,30,1011,748,0,1455,1971,40,0,2,183,19,0,1,0,0,1,0,51,3209,0,63,82,208,9,7,3,593,2501,0,844,977,193,30,3,1419,0,1.821214142761841,0.0,2.599801390268123,0.0,9.26399307559146,25,31,88,2,3,1,206,756,0,76,37,16,44,80,109,159,108,159,122,71,37,61,14,14,2,1096,16,1033,79,991,121,195,917,994,118,378,734,589,523,184,928,1051,61,1009,103,700,309,509,603,895,217,622,490,286,826,229,883,12,1100,183,651,251,27,0,668,444,0,0,41,3,0,0,0,0,1,0,22,1045,0,1.560251798561151,1.5566546762589928,1.0,1.054054054054054,1.054054054054054,49.95593525179856 +PA020401,40401,Chiriquí,Boquete,Boquete,1926,13,128,1,0,0,0,2,11,0,0,101,1,0,0,15,1232,75,8,1234,88,5,0,0,2,1,1205,64,4,17,0,10,30,0,0,1267,16,34,4,7,1,1,1259,16,40,0,0,15,1330,50,389,56,140,69,34,0,44,301,753,187,43,2,1219,46,0,53,0,12,0,1161,72,53,21,6,0,17,930,335,0,36,28,1,38,1160,64,2,0,7,1,1,4,49,1,3,1073,1110,6.81378763866878,23.24405705229794,6.9049128367670365,23.61727416798732,1.0172932330827067,3.8,2.232330827067669,1463,727,1298,60,311,33,84,53,9,57,9,28,59,12,86,23,18,11,33,6,22,3350,626,0,1897,2079,0,2932,1044,0,3666,310,0,983,2993,0,708,275,2698,295,0,300,23,40,1,74,72,123,80,102,388,1,1,11,126,134,256,96,124,770,6,25,65,110,123,350,248,92,43,16,140,1,6,6,23,0,1512,87,2028,0,6,30,18,706,606,622,45,49,756,128,230,64,72,12,314,1,3,2078,2125,137,788,71,505,51,0,21,7,2,88,11,1288,519,0,0,1587,1063,11,37,80,648,34,141,26,0,7,144,172,98,74,260,184,171,57,432,1779,162,74,132,387,308,256,122,166,83,70,28,60,19,38,519,56.0,57.0,60.0,54.0,65.0,72.0,52.0,54.0,48.0,58.0,48.0,53.0,49.0,61.0,69.0,63.0,67.0,55.0,55.0,67.0,84.0,59.0,70.0,65.0,68.0,43.0,61.0,55.0,50.0,37.0,45.0,45.0,37.0,45.0,46.0,36.0,46.0,47.0,45.0,42.0,65.0,43.0,39.0,51.0,45.0,43.0,61.0,46.0,49.0,36.0,42.0,42.0,42.0,37.0,42.0,41.0,49.0,46.0,43.0,42.0,47.0,55.0,63.0,59.0,48.0,36.0,50.0,41.0,52.0,47.0,41.0,44.0,46.0,35.0,45.0,35.0,48.0,38.0,31.0,35.0,27.0,15.0,25.0,22.0,18.0,16.0,11.0,16.0,9.0,5.0,8.0,8.0,9.0,7.0,5.0,3.0,2.0,1.0,3.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,856,2509,838,0,292,284,280,307,346,246,218,216,243,235,205,221,272,226,211,187,107,57,37,9,4,0,3554,273,351,25,0,3565,319,294,25,0,855,57,143,924,191,118,1060,855,0,1612,2080,511,0,8,1185,47,0,1,0,0,0,0,0,2962,0,43,67,59,8,10,6,226,3784,0,627,808,389,19,349,2011,0,1.7977161500815662,0.0,2.74442538593482,0.0,9.636688079942898,21,19,27,2,6,4,89,1295,0,61,43,23,41,112,127,119,85,157,94,65,34,65,30,60,237,1407,56,1224,239,1140,323,377,1086,496,967,68,1395,841,622,366,1097,1373,90,1214,249,950,264,828,635,1170,293,804,659,261,1202,158,1305,19,1444,414,705,303,41,5,967,496,0,2,292,11,0,1,0,0,0,0,0,1157,0,1.4155313351498635,1.4475476839237058,1.2083333333333333,1.0602409638554218,1.0602409638554218,57.33151059466849 +PA020403,40402,Chiriquí,Boquete,Caldera,803,0,8,0,0,0,0,0,2,0,0,7,3,0,0,1,520,25,10,537,9,3,1,0,5,1,503,3,0,24,0,2,16,0,8,503,21,22,1,7,0,2,524,12,3,0,0,17,556,0,107,30,18,64,36,0,6,51,463,33,3,0,502,28,0,5,2,19,0,535,15,6,0,0,0,0,188,348,0,5,13,2,2,508,42,0,0,1,0,1,0,1,1,0,0,823,6.958333333333333,23.764492753623188,6.990942028985507,23.907608695652176,1.0305755395683454,3.474820143884892,2.2284172661870505,583,293,563,31,68,20,23,21,4,8,1,9,9,4,46,34,10,14,7,1,12,1320,235,0,418,1137,0,1027,528,0,1420,135,0,432,1123,0,385,47,1043,80,0,81,19,22,5,49,57,96,51,52,287,0,0,1,46,54,115,43,57,273,0,1,26,39,38,31,36,47,12,2,15,0,0,0,0,0,526,63,819,0,1,27,8,118,262,379,32,28,289,42,145,32,32,1,41,1,1,847,790,65,277,32,191,7,0,9,3,9,71,12,658,29,0,0,887,383,2,2,7,102,10,15,0,0,3,30,32,32,21,103,39,124,35,170,824,152,74,95,119,109,91,53,44,19,8,4,6,0,10,29,15.0,22.0,26.0,19.0,22.0,30.0,17.0,21.0,24.0,33.0,24.0,27.0,33.0,14.0,24.0,26.0,22.0,27.0,39.0,17.0,22.0,25.0,27.0,23.0,24.0,18.0,29.0,18.0,30.0,17.0,16.0,14.0,20.0,21.0,17.0,16.0,18.0,21.0,27.0,20.0,12.0,15.0,21.0,21.0,21.0,24.0,23.0,21.0,28.0,10.0,20.0,23.0,20.0,15.0,29.0,17.0,21.0,20.0,18.0,12.0,20.0,20.0,14.0,15.0,15.0,9.0,15.0,24.0,11.0,15.0,13.0,11.0,12.0,16.0,10.0,11.0,11.0,7.0,9.0,6.0,6.0,9.0,6.0,6.0,6.0,10.0,6.0,4.0,2.0,2.0,7.0,3.0,0.0,4.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,351,1029,257,0,104,125,122,131,121,112,88,102,90,106,107,88,84,74,62,44,33,24,17,1,2,0,1568,16,49,4,0,1570,35,28,4,0,376,15,25,278,62,7,523,351,0,897,695,45,0,0,165,0,0,0,0,0,0,2,0,1470,0,25,7,39,4,0,0,19,1543,0,230,410,85,6,33,873,0,2.188405797101449,0.0,3.1044776119402986,0.0,7.792302993280391,9,6,14,3,0,0,13,538,0,75,47,23,46,73,59,59,49,58,30,16,4,7,6,8,13,564,19,479,104,478,105,112,471,387,196,69,514,300,283,29,554,530,53,487,96,165,322,174,409,383,200,224,359,194,389,209,374,5,578,144,321,107,11,2,357,226,0,0,36,0,0,0,0,0,0,1,0,546,0,1.4478632478632478,1.3504273504273503,1.0,1.0444444444444445,1.0444444444444445,54.00857632933105 +PA020406,40403,Chiriquí,Boquete,Palmira,755,14,1,0,0,0,0,0,13,0,0,123,0,0,0,5,402,106,9,462,51,2,0,0,4,3,400,8,1,48,0,18,45,0,2,336,31,72,9,67,0,7,481,37,1,0,0,3,522,18,110,29,7,63,21,0,1,26,379,116,0,0,439,51,0,27,0,5,0,512,5,0,0,4,0,1,169,306,0,30,17,0,6,448,63,2,0,2,0,0,0,0,1,0,0,906,5.626692456479691,21.131528046421664,5.97872340425532,21.690522243713733,1.0363984674329505,3.289272030651341,1.8908045977011492,670,380,903,78,190,19,39,27,9,42,14,5,62,2,27,11,7,5,16,15,8,1435,777,0,385,1827,0,901,1311,0,1915,297,0,715,1497,0,637,78,1264,233,0,239,29,32,4,84,76,114,88,90,360,2,0,3,80,96,154,93,81,337,0,11,17,26,28,40,44,57,5,3,17,0,0,0,2,0,835,54,1011,0,13,19,16,63,423,410,50,65,292,52,119,30,49,1,320,0,22,1301,1139,67,510,40,202,20,1,22,23,12,66,15,1113,45,0,0,1310,413,3,14,16,122,3,17,2,0,22,34,43,32,17,84,179,95,42,341,1472,187,56,99,247,117,98,55,36,15,6,3,4,0,0,45,45.0,76.0,62.0,45.0,58.0,48.0,60.0,55.0,39.0,52.0,57.0,47.0,41.0,50.0,50.0,48.0,53.0,41.0,45.0,46.0,56.0,48.0,33.0,36.0,38.0,39.0,40.0,36.0,44.0,29.0,31.0,27.0,40.0,23.0,36.0,30.0,30.0,28.0,29.0,30.0,27.0,26.0,25.0,20.0,15.0,26.0,21.0,18.0,33.0,24.0,20.0,21.0,20.0,23.0,19.0,21.0,20.0,22.0,18.0,18.0,13.0,26.0,25.0,15.0,16.0,15.0,13.0,15.0,12.0,11.0,6.0,10.0,10.0,6.0,5.0,4.0,7.0,8.0,6.0,9.0,6.0,3.0,9.0,5.0,3.0,6.0,4.0,1.0,5.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,785,1468,187,0,286,254,245,233,211,188,157,147,113,122,103,99,95,66,37,34,26,18,2,4,0,0,2301,26,29,84,0,2303,29,24,84,0,726,16,48,277,43,9,536,785,0,1170,1217,53,0,0,1239,45,0,0,1,0,1,0,0,1154,0,122,18,20,2,5,3,37,2233,0,301,512,48,4,20,1555,0,2.394463667820069,0.0,3.5,0.0,6.6676229508196725,37,5,11,1,1,1,15,599,0,40,43,19,42,92,64,71,44,52,31,12,2,5,4,3,17,587,83,390,280,363,307,165,505,109,561,9,661,373,297,56,614,516,154,414,256,172,242,162,508,289,381,181,489,237,433,190,480,20,650,150,347,158,15,7,484,186,0,0,264,12,0,0,1,0,1,0,0,392,0,1.921713441654357,1.6824224519940916,1.6666666666666667,1.04,1.04,48.007462686567166 +PA020401,40404,Chiriquí,Boquete,Alto Boquete,4582,13,249,0,1,1,0,1,14,0,0,3,4,0,0,91,2514,39,14,2620,24,1,0,0,7,6,2588,8,8,20,0,2,19,0,13,2544,60,46,0,4,0,4,2570,13,54,0,0,21,2658,85,1094,445,260,240,62,0,319,551,1678,100,8,2,2563,49,1,24,0,21,0,2486,69,84,15,2,0,2,1985,638,0,21,14,0,100,2238,188,8,1,9,0,3,0,110,1,0,4202,666,6.842834520981789,22.391528107680127,6.961203483768805,23.75217735550277,1.021068472535741,3.9206170052671183,2.5041384499623778,2721,1547,2567,111,509,120,114,66,31,132,26,33,117,17,172,69,42,42,52,30,41,7036,721,0,4347,3410,0,6565,1192,0,7343,414,0,2181,5576,0,1396,785,5333,243,0,255,81,110,12,141,152,202,155,155,666,3,4,17,195,237,451,192,243,1827,9,71,107,190,234,641,630,263,102,17,330,3,5,9,48,0,3325,240,3572,0,27,110,13,1015,1242,1030,141,144,2177,319,594,122,167,27,116,3,13,3893,4218,596,1523,156,1097,117,0,25,24,6,181,24,2585,1027,0,0,2623,2359,19,93,108,1460,90,333,52,0,26,326,633,378,216,625,160,502,198,501,3306,356,178,234,430,554,578,292,419,256,187,67,102,39,86,1027,59.0,103.0,88.0,104.0,85.0,116.0,116.0,99.0,105.0,99.0,113.0,107.0,117.0,126.0,114.0,118.0,120.0,104.0,105.0,96.0,122.0,100.0,136.0,114.0,93.0,121.0,101.0,120.0,110.0,111.0,92.0,104.0,117.0,91.0,105.0,87.0,101.0,94.0,91.0,102.0,107.0,107.0,85.0,108.0,111.0,117.0,106.0,102.0,103.0,84.0,112.0,124.0,79.0,94.0,114.0,95.0,106.0,103.0,95.0,105.0,92.0,100.0,79.0,103.0,98.0,105.0,77.0,74.0,89.0,78.0,84.0,74.0,80.0,81.0,55.0,63.0,59.0,51.0,48.0,36.0,51.0,35.0,34.0,25.0,34.0,29.0,19.0,16.0,14.0,14.0,13.0,4.0,7.0,3.0,7.0,6.0,3.0,2.0,3.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1551,5184,1376,0,439,535,577,543,565,563,509,475,518,512,523,504,472,423,374,257,179,92,34,14,3,0,7130,274,684,23,0,7149,643,296,23,0,1487,107,87,2155,274,157,2294,1550,0,1935,5581,595,0,6,782,21,2,2,0,1,1,3,0,7293,0,299,158,198,37,13,12,262,7132,0,1638,1833,647,38,456,3499,0,1.7708887706226717,0.0,2.648559670781893,0.0,10.494390334114168,104,55,76,18,5,6,100,2357,0,171,75,28,77,148,220,221,174,349,207,188,89,137,82,128,420,2695,26,2579,142,2474,247,619,2102,1386,1335,322,2399,1569,1152,698,2023,2635,86,2498,223,1898,600,1744,977,2379,342,1794,927,345,2376,305,2416,68,2653,526,1547,585,63,17,1712,1009,0,4,184,9,1,1,0,0,0,2,0,2520,0,1.4218407596785976,1.5405405405405406,1.1063829787234043,1.0232558139534884,1.0232558139534884,55.216464535097394 +PA020404,40405,Chiriquí,Boquete,Jaramillo,1303,2,0,0,0,0,0,0,135,0,0,22,5,0,0,4,735,61,9,764,36,1,0,0,8,0,731,7,10,14,0,15,32,0,0,686,13,80,2,28,0,0,775,27,1,0,0,6,809,9,294,45,28,98,22,0,5,91,602,110,1,0,716,59,0,27,0,7,0,769,20,7,2,8,0,3,328,422,0,30,27,2,5,703,81,2,2,15,0,1,0,0,0,0,0,1467,6.893536121673004,23.10012674271229,6.97084917617237,23.789607097591887,1.0160692212608158,3.524103831891224,2.1520395550061804,893,467,1010,20,169,32,33,24,10,41,7,8,228,0,56,15,12,10,9,13,13,2106,628,0,580,2154,0,1568,1166,0,2443,291,0,660,2074,0,585,75,1811,263,0,272,15,31,1,74,106,109,105,78,414,0,0,0,85,110,223,73,98,535,1,14,26,44,43,90,97,43,5,2,34,0,0,1,5,0,1129,38,1263,0,0,18,13,200,389,593,46,35,564,83,157,72,100,9,165,0,6,1550,1392,48,684,83,294,14,0,26,7,3,96,8,1121,35,0,0,1490,663,0,16,18,200,4,34,5,0,7,39,45,43,69,154,101,159,59,491,1470,173,122,133,283,319,163,73,63,25,35,6,27,5,10,35,38.0,55.0,66.0,49.0,51.0,54.0,58.0,37.0,52.0,52.0,43.0,37.0,52.0,38.0,43.0,52.0,44.0,49.0,62.0,37.0,52.0,52.0,48.0,57.0,55.0,53.0,46.0,40.0,48.0,36.0,40.0,35.0,46.0,37.0,36.0,36.0,34.0,30.0,26.0,37.0,34.0,34.0,39.0,36.0,28.0,35.0,27.0,32.0,23.0,30.0,41.0,29.0,41.0,31.0,27.0,38.0,25.0,31.0,32.0,22.0,31.0,23.0,17.0,25.0,15.0,28.0,15.0,23.0,23.0,12.0,25.0,17.0,16.0,16.0,25.0,21.0,24.0,7.0,25.0,11.0,19.0,10.0,7.0,4.0,8.0,7.0,7.0,3.0,4.0,4.0,3.0,3.0,5.0,2.0,0.0,2.0,0.0,1.0,0.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,725,1834,383,0,259,253,213,244,264,223,194,163,171,147,169,148,111,101,99,88,48,25,13,7,2,0,2762,59,100,21,0,2764,66,91,21,0,854,40,48,398,77,21,780,724,0,1728,1053,161,0,0,894,51,0,0,0,0,0,1,0,1996,0,5,15,68,4,2,1,50,2797,0,455,642,111,9,93,1632,0,2.2055406613047364,0.0,3.143421052631579,0.0,7.556764106050306,4,7,27,3,1,0,26,825,0,48,36,28,49,111,137,102,55,104,49,28,11,24,11,19,10,873,20,672,221,640,253,152,741,132,761,31,862,549,344,108,785,792,101,705,188,386,319,303,590,594,299,342,551,181,712,118,775,9,884,216,466,195,16,91,626,267,0,0,178,11,0,0,0,0,0,0,0,704,0,1.5752032520325203,1.4146341463414631,1.25,1.0,1.0,52.910414333706605 +PA020405,40406,Chiriquí,Boquete,Los Naranjos,1085,32,76,13,0,0,0,0,83,0,0,324,4,0,0,6,752,92,12,785,65,6,2,0,4,0,739,37,6,35,2,5,28,0,10,745,57,47,1,11,0,1,815,21,24,0,0,2,862,5,161,25,44,60,49,0,11,128,575,134,11,3,724,99,0,32,1,5,1,827,20,4,1,2,2,6,419,337,2,42,60,2,10,733,78,3,1,25,1,4,0,4,0,3,0,1617,6.911084043848964,23.75395858708892,6.965895249695493,23.889159561510358,1.0220417633410672,3.78538283062645,2.3016241299303943,1271,638,1484,78,334,32,67,54,4,67,22,18,158,2,56,18,13,11,22,5,8,2807,1049,0,1015,2841,0,2096,1760,0,3340,516,0,1043,2813,0,886,157,2369,444,0,446,38,63,3,129,127,157,131,136,520,0,1,2,158,145,276,106,154,589,4,10,45,85,91,189,118,51,30,2,43,0,1,0,6,0,1674,60,1644,0,5,26,7,279,593,681,50,41,758,77,170,87,64,6,564,0,1,2252,1977,92,891,91,555,75,0,20,3,21,111,9,1401,103,0,0,2110,808,2,15,30,339,25,42,7,0,4,97,83,62,62,236,353,155,63,619,2074,169,135,170,561,399,253,94,120,48,33,20,18,11,21,103,97.0,93.0,95.0,88.0,87.0,83.0,80.0,76.0,79.0,73.0,79.0,66.0,80.0,66.0,74.0,69.0,73.0,75.0,80.0,72.0,74.0,77.0,80.0,68.0,87.0,54.0,57.0,58.0,66.0,45.0,59.0,49.0,50.0,58.0,49.0,44.0,45.0,39.0,44.0,62.0,40.0,46.0,69.0,52.0,42.0,38.0,48.0,38.0,36.0,43.0,42.0,40.0,40.0,25.0,34.0,32.0,35.0,33.0,38.0,41.0,51.0,22.0,38.0,30.0,36.0,30.0,24.0,26.0,30.0,29.0,20.0,22.0,26.0,24.0,14.0,16.0,24.0,16.0,17.0,14.0,11.0,17.0,12.0,20.0,14.0,10.0,11.0,9.0,6.0,11.0,13.0,4.0,5.0,4.0,1.0,4.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1216,2523,490,0,460,391,365,369,386,280,265,234,249,203,181,179,177,139,106,87,74,47,27,7,3,0,3988,62,105,74,0,3989,90,76,74,0,1149,40,102,583,103,34,1003,1215,0,1704,2382,143,0,7,1953,47,0,0,1,0,0,0,0,2221,0,32,69,109,6,20,8,78,3907,0,664,734,225,9,92,2505,0,2.145699614890886,0.0,3.0863723608445297,0.0,7.253724284700874,12,22,37,2,7,3,33,1155,0,29,25,14,27,106,126,99,81,107,71,54,29,28,16,29,40,1182,89,759,512,711,560,295,976,184,1087,21,1250,668,603,205,1066,1110,161,796,475,517,279,406,865,772,499,413,858,277,994,213,1058,28,1243,339,608,306,18,21,960,311,0,2,494,17,0,0,1,0,0,0,0,757,0,1.743034055727554,1.5301857585139318,1.2352941176470589,1.0833333333333333,1.0833333333333333,51.29346970889064 +PA020506,40501,Chiriquí,Bugaba,La Concepción,7807,20,491,11,0,1,0,1,0,0,0,1,13,0,0,447,6249,124,50,6675,145,7,0,0,37,6,6802,0,5,10,5,14,32,0,2,4702,1476,510,11,135,0,36,6700,46,39,1,0,84,6870,67,405,184,363,340,100,0,1748,1133,3637,319,29,4,6423,89,0,18,20,320,0,6825,27,11,0,6,1,0,4529,2271,4,53,11,2,5889,827,41,24,52,1,0,5,0,21,8,2,6814,1531,6.886192097084505,22.654284445759952,6.975284889743969,23.55468403137487,1.01018922852984,3.728238719068413,2.4622998544395927,6954,3666,7405,447,1302,300,295,215,108,276,63,73,145,31,315,169,58,133,118,98,71,18385,1815,0,9536,10664,0,17047,3153,0,19091,1109,0,6200,14000,0,4629,1571,13362,638,0,685,159,306,32,393,477,568,479,478,1867,1,10,40,570,685,1339,548,787,4458,8,106,464,617,1017,1570,1464,260,263,29,474,2,8,7,29,0,8547,609,9103,0,67,274,85,1462,3862,3218,316,245,6052,535,1068,241,783,32,332,3,16,10101,11179,2196,3896,275,2449,164,3,57,22,17,617,66,6561,292,0,0,7439,6265,41,173,615,3000,225,468,33,0,18,639,1547,926,571,1961,285,1159,800,1250,9921,1123,552,837,1278,1714,2003,1126,1195,668,300,93,88,39,51,292,255.0,265.0,284.0,276.0,313.0,307.0,312.0,330.0,349.0,330.0,377.0,372.0,330.0,319.0,329.0,317.0,331.0,334.0,311.0,292.0,328.0,316.0,334.0,331.0,271.0,348.0,310.0,330.0,348.0,272.0,288.0,293.0,316.0,310.0,334.0,319.0,289.0,326.0,319.0,289.0,296.0,273.0,294.0,298.0,261.0,270.0,225.0,254.0,247.0,262.0,289.0,261.0,251.0,255.0,248.0,239.0,231.0,208.0,220.0,236.0,214.0,185.0,208.0,188.0,177.0,156.0,166.0,153.0,133.0,129.0,130.0,131.0,133.0,129.0,131.0,100.0,116.0,105.0,90.0,76.0,91.0,61.0,73.0,70.0,56.0,55.0,45.0,40.0,35.0,27.0,37.0,18.0,18.0,17.0,13.0,16.0,9.0,11.0,5.0,5.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,4748,13946,2585,1,1393,1628,1727,1585,1580,1608,1541,1542,1422,1258,1304,1134,972,737,654,487,351,202,103,46,5,1,20573,286,380,41,0,20586,336,317,41,0,4453,260,863,4111,728,250,5867,4748,0,7250,13659,371,0,21,923,49,10,0,1,0,2,1,0,20273,0,467,207,659,49,14,33,1292,18559,0,4809,5940,1510,106,35,8880,0,1.844644148331784,0.0,2.6861313868613137,0.0,9.885902255639095,187,91,266,20,9,17,515,5849,0,399,217,130,281,500,740,895,653,1118,747,513,243,233,103,102,66,6843,111,6583,371,6385,569,1191,5763,6039,915,2253,4701,4119,2835,1424,5530,6678,276,6380,574,4184,2196,3529,3425,5820,1134,3659,3295,1227,5727,1033,5921,83,6871,1291,3888,1637,138,2,4158,2796,1,10,257,11,1,0,1,0,1,0,0,6673,0,1.452127659574468,1.6071017826336975,1.2,1.075601374570447,1.075601374570447,51.66575578886811 +PA020501,40502,Chiriquí,Bugaba,Aserrío de Gariché,2297,5,8,0,0,0,0,0,1,0,1,0,0,0,0,46,1445,321,67,1772,40,2,2,0,62,1,1748,0,2,12,7,25,72,0,13,116,145,1333,16,256,0,13,1776,63,1,1,0,38,1879,0,140,74,13,168,36,0,11,106,1628,130,4,0,1672,151,3,7,45,1,0,1865,2,0,0,2,10,0,530,1231,1,113,4,0,701,13,3,667,405,4,0,4,0,23,58,1,0,2312,5.894002789400279,12.708507670850768,6.188284518828452,13.95536959553696,1.0074507716870675,3.229377328366152,2.060670569451836,1893,976,2203,174,438,59,61,48,16,89,9,17,29,3,126,51,12,32,43,22,26,4480,1160,0,851,4789,0,3068,2572,0,5088,552,0,1645,3995,0,1498,147,3612,383,0,399,55,98,13,161,201,260,220,233,1099,1,0,2,175,278,455,181,264,948,4,10,61,102,93,144,81,46,23,3,26,0,0,0,4,0,1801,235,2994,0,10,87,31,279,1075,1275,200,165,903,190,269,64,197,1,339,1,3,2983,3032,241,950,70,591,65,0,45,5,5,319,32,2241,15,0,0,3479,1184,2,22,57,241,17,24,4,0,4,34,132,72,77,446,217,266,152,636,3593,501,244,274,452,356,247,116,135,48,24,4,4,1,1,15,83.0,85.0,108.0,99.0,108.0,99.0,102.0,97.0,100.0,104.0,114.0,129.0,94.0,86.0,118.0,118.0,102.0,123.0,109.0,100.0,100.0,85.0,100.0,102.0,70.0,88.0,81.0,76.0,95.0,70.0,93.0,72.0,97.0,78.0,67.0,56.0,64.0,75.0,85.0,76.0,64.0,73.0,68.0,68.0,73.0,82.0,57.0,59.0,55.0,78.0,77.0,55.0,63.0,61.0,67.0,79.0,65.0,63.0,56.0,53.0,67.0,53.0,51.0,38.0,52.0,36.0,58.0,37.0,34.0,52.0,23.0,34.0,31.0,29.0,34.0,32.0,35.0,26.0,36.0,22.0,23.0,16.0,25.0,18.0,16.0,17.0,14.0,16.0,13.0,10.0,13.0,4.0,8.0,6.0,0.0,0.0,2.0,4.0,5.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1526,3759,730,0,483,502,541,552,457,410,407,356,346,331,323,316,261,217,151,151,98,70,31,11,1,0,5862,46,31,76,0,5862,47,30,76,0,1363,81,539,922,214,39,1331,1526,0,3477,2484,54,0,12,584,7,0,1,0,6,0,1,0,5404,0,79,97,333,21,3,4,633,4845,0,606,1162,256,38,2,3951,0,2.375490966221524,0.0,3.379754242246928,0.0,7.15876974231089,28,38,139,12,3,3,203,1467,0,214,185,114,163,306,284,198,88,181,70,45,20,13,4,4,4,1815,78,1562,331,1457,436,237,1656,1504,389,236,1657,1028,865,63,1830,1639,254,1517,376,485,1032,363,1530,892,1001,516,1377,526,1367,455,1438,21,1872,409,1032,435,17,2,1273,620,0,3,133,5,0,0,0,1,0,0,0,1751,0,1.5741424802110815,1.6,1.0,1.011904761904762,1.011904761904762,52.91283676703645 +PA020502,40503,Chiriquí,Bugaba,Bugaba,1901,5,28,0,0,0,0,0,0,0,0,0,4,0,0,230,1216,30,11,1454,22,0,0,0,11,0,1477,0,1,3,0,2,4,0,0,987,353,102,5,29,0,11,1460,18,1,0,0,8,1487,12,138,96,35,116,50,0,266,178,971,69,3,0,1456,13,0,5,7,6,0,1482,2,3,0,0,0,0,738,737,0,9,1,2,1014,369,81,1,6,0,2,1,0,8,5,0,1681,257,6.782786885245901,20.95150273224044,6.897540983606557,21.581967213114755,1.0168123739071957,3.6032279757901815,2.3658372562205785,1516,830,1728,101,365,33,59,45,25,52,30,12,45,4,113,38,19,41,23,10,32,3983,563,0,1509,3037,0,3477,1069,0,4209,337,0,1670,2876,0,1439,231,2557,319,0,321,48,68,8,109,96,140,99,134,497,0,1,4,123,193,357,149,200,1084,22,55,61,120,133,167,159,108,40,1,47,1,0,0,1,0,1883,208,1992,0,17,97,17,219,887,730,105,51,1199,128,316,111,220,9,76,1,3,2369,2476,383,823,137,641,35,0,33,11,4,139,27,1705,39,0,0,2077,1388,4,64,76,399,28,46,1,0,9,79,199,135,100,535,70,361,200,403,2483,274,178,222,317,322,445,212,220,79,29,7,6,6,6,39,69.0,56.0,84.0,90.0,74.0,73.0,78.0,82.0,75.0,81.0,84.0,83.0,82.0,72.0,77.0,66.0,67.0,76.0,84.0,71.0,66.0,87.0,74.0,88.0,78.0,91.0,94.0,95.0,88.0,83.0,80.0,71.0,73.0,66.0,61.0,64.0,60.0,56.0,58.0,79.0,57.0,42.0,66.0,62.0,61.0,74.0,58.0,58.0,49.0,63.0,64.0,59.0,45.0,49.0,53.0,47.0,60.0,57.0,49.0,53.0,40.0,47.0,44.0,43.0,41.0,34.0,46.0,30.0,36.0,24.0,29.0,22.0,24.0,20.0,28.0,18.0,13.0,12.0,15.0,11.0,7.0,16.0,10.0,8.0,11.0,5.0,10.0,4.0,10.0,5.0,3.0,2.0,3.0,4.0,1.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1160,3217,468,0,373,389,398,364,393,451,351,317,288,302,270,266,215,170,123,69,52,34,13,7,0,0,4746,34,47,18,0,4747,39,41,18,0,1094,49,54,811,115,28,1534,1160,0,1884,2920,41,0,6,157,7,0,0,0,1,0,4,0,4670,0,43,42,272,25,5,2,469,3987,0,884,1267,224,24,2,2444,0,2.011428571428572,0.0,2.905673758865248,0.0,8.613415892672858,21,17,91,12,1,2,172,1200,0,109,59,46,71,151,157,246,153,236,123,57,34,27,12,12,19,1504,12,1400,116,1355,161,253,1263,1319,197,371,1145,907,609,219,1297,1430,86,1379,137,796,583,587,929,1010,506,703,813,226,1290,210,1306,17,1499,262,836,379,39,0,949,567,0,2,47,1,0,0,0,0,0,1,0,1465,0,1.562664907651715,1.633245382585752,1.0,1.0357142857142858,1.0357142857142858,50.12005277044855 +PA020505,40505,Chiriquí,Bugaba,Gómez,1171,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,764,106,29,863,8,15,1,0,4,9,820,0,0,9,1,16,53,0,1,0,39,570,39,249,3,0,808,73,2,0,0,17,900,0,103,37,10,83,43,0,6,30,743,120,1,0,771,96,0,7,21,4,1,898,1,0,0,0,1,0,261,555,0,75,9,0,105,150,16,33,575,5,0,8,0,4,3,1,0,1176,6.531365313653136,14.136531365313653,6.981549815498155,21.48339483394834,1.012222222222222,3.422222222222222,2.3044444444444445,911,502,932,82,174,18,25,19,9,45,3,8,18,0,60,28,10,4,19,0,6,2107,474,0,344,2237,0,1478,1103,0,2343,238,0,599,1982,0,529,70,1786,196,0,196,11,37,0,55,70,105,96,88,661,0,0,0,87,122,192,72,132,434,7,7,24,35,41,49,19,23,5,3,10,0,0,0,0,0,952,25,1365,0,0,11,8,66,388,815,70,26,237,74,67,21,71,26,466,0,1,1452,1294,80,403,24,373,34,3,45,1,19,185,16,1003,0,0,0,1685,532,1,9,22,80,3,10,0,0,1,22,42,23,21,132,303,63,74,296,1587,310,104,196,232,141,64,49,34,13,13,1,1,0,1,0,50.0,39.0,45.0,31.0,49.0,37.0,38.0,36.0,45.0,34.0,42.0,45.0,37.0,45.0,54.0,51.0,53.0,50.0,53.0,52.0,54.0,41.0,51.0,47.0,47.0,39.0,39.0,41.0,28.0,25.0,42.0,31.0,28.0,35.0,29.0,27.0,21.0,25.0,33.0,26.0,19.0,34.0,25.0,41.0,28.0,28.0,38.0,22.0,40.0,34.0,37.0,32.0,28.0,45.0,30.0,26.0,28.0,41.0,38.0,25.0,31.0,30.0,27.0,25.0,27.0,20.0,29.0,12.0,22.0,20.0,18.0,17.0,18.0,22.0,16.0,23.0,14.0,19.0,13.0,9.0,13.0,14.0,10.0,6.0,7.0,5.0,9.0,6.0,7.0,3.0,2.0,3.0,2.0,3.0,3.0,0.0,2.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,627,1747,372,0,214,190,223,259,240,172,165,132,147,162,172,158,140,103,91,78,50,30,13,5,2,0,2655,13,3,75,0,2655,13,3,75,0,671,41,251,513,110,18,516,626,0,1699,1032,15,0,0,301,30,0,0,0,0,0,0,0,2415,0,31,29,80,8,1,0,137,2460,0,174,472,70,4,1,2025,0,2.5211141060197666,0.0,3.399239543726236,0.0,7.091041514930809,9,11,47,3,1,0,69,771,0,62,119,65,136,176,126,85,42,48,23,21,3,4,0,1,0,858,53,731,180,744,167,126,785,572,339,62,849,478,433,14,897,809,102,663,248,266,397,190,721,510,401,302,609,373,538,427,484,8,903,214,473,210,14,0,654,257,0,0,76,7,0,0,0,0,0,0,0,828,0,1.5938529088913282,1.420417124039517,1.3333333333333333,1.0909090909090908,1.0909090909090908,54.09659714599341 +PA020507,40506,Chiriquí,Bugaba,La Estrella,2444,6,1,0,0,0,0,0,0,0,0,0,2,0,0,48,1581,247,60,1847,29,16,3,0,39,2,1841,0,2,16,4,13,53,1,6,44,324,1093,58,409,1,7,1836,77,0,0,0,23,1936,10,199,144,28,57,77,0,115,102,1581,131,3,4,1801,75,0,5,51,2,2,1928,4,0,0,1,3,0,640,1207,1,81,7,0,415,658,219,541,43,2,0,6,0,17,32,3,0,2453,6.377708978328173,20.410216718266252,6.457430340557275,20.894736842105264,1.0227272727272727,3.2231404958677685,2.096590909090909,1982,1080,2113,182,344,64,62,35,24,59,19,17,45,6,128,37,5,35,48,3,23,4577,1083,0,988,4672,0,2350,3310,0,5214,446,0,1433,4227,0,1226,207,3883,344,0,350,39,94,6,145,184,264,177,219,1195,0,1,10,163,203,419,148,212,1079,8,35,51,91,98,154,181,73,30,2,27,0,2,0,0,0,1974,207,2889,0,18,118,48,203,903,1555,146,82,963,218,274,75,179,17,399,4,1,3071,2961,346,962,76,665,34,1,45,1,23,352,52,2065,111,0,0,3229,1289,10,47,61,386,21,25,2,0,2,37,205,104,78,370,294,297,186,608,3240,585,196,337,442,352,313,144,166,95,31,7,8,2,3,111,99.0,88.0,90.0,95.0,103.0,105.0,95.0,99.0,93.0,95.0,114.0,108.0,95.0,82.0,88.0,79.0,93.0,75.0,85.0,86.0,95.0,93.0,91.0,112.0,84.0,80.0,84.0,100.0,109.0,104.0,102.0,95.0,77.0,83.0,80.0,68.0,73.0,86.0,70.0,59.0,61.0,55.0,88.0,72.0,73.0,58.0,68.0,66.0,66.0,83.0,73.0,69.0,86.0,53.0,55.0,61.0,75.0,69.0,64.0,60.0,63.0,56.0,54.0,53.0,44.0,51.0,65.0,47.0,54.0,33.0,40.0,40.0,42.0,38.0,46.0,27.0,34.0,32.0,27.0,21.0,16.0,19.0,19.0,18.0,10.0,14.0,20.0,11.0,10.0,16.0,7.0,6.0,3.0,7.0,5.0,2.0,4.0,4.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1449,3788,795,0,475,487,487,418,475,477,437,356,349,341,336,329,270,250,206,141,82,71,28,12,5,0,5934,24,24,50,0,5934,25,23,50,0,1523,51,78,913,177,20,1821,1449,0,3651,2343,38,0,3,549,14,0,4,0,9,0,0,0,5453,0,40,101,153,7,1,1,241,5488,0,793,1445,207,26,0,3561,0,2.276194299478121,0.0,3.1481696687972107,0.0,7.578912466843501,15,37,72,4,1,1,87,1765,0,213,180,100,189,290,235,196,134,193,101,48,31,26,13,10,21,1916,66,1736,246,1675,307,256,1726,1561,421,262,1720,1229,753,59,1923,1793,189,1678,304,772,906,473,1509,878,1104,746,1236,613,1369,683,1299,15,1967,435,1110,396,41,0,1395,587,0,2,139,4,0,0,0,1,0,0,0,1836,0,1.5494450050454087,1.4939455095862766,1.0,1.0740740740740742,1.0740740740740742,52.15539858728557 +PA020508,40507,Chiriquí,Bugaba,San Andrés,1095,9,0,0,0,0,0,0,0,0,0,0,0,0,0,12,658,144,15,805,9,3,1,0,8,3,725,0,4,33,1,13,51,0,2,152,139,344,24,169,0,1,760,59,1,0,0,9,829,0,62,27,5,171,10,0,7,44,674,98,1,5,701,96,0,12,10,10,0,825,0,1,1,1,0,1,270,483,1,55,20,0,636,66,4,98,12,0,1,3,0,7,2,0,0,1104,6.807365439093484,22.926345609065155,6.920679886685552,23.24929178470255,1.0180940892641737,3.5126658624849214,2.393244873341376,844,410,875,47,184,20,34,25,6,42,10,8,21,1,67,19,16,14,21,3,10,1903,482,0,325,2060,0,1504,881,0,2185,200,0,585,1800,0,492,93,1635,165,0,166,6,30,2,55,80,85,70,70,565,0,1,2,71,82,204,77,87,395,5,8,26,48,63,114,32,31,3,0,6,0,1,0,0,0,886,14,1268,0,2,3,4,115,400,673,54,26,232,79,65,28,86,8,400,0,1,1277,1250,102,331,33,391,40,0,1,1,7,153,26,799,25,0,0,1434,508,2,13,49,152,3,6,1,0,1,17,62,32,18,104,290,82,56,238,1286,325,130,182,210,132,85,55,51,24,15,1,4,1,1,25,23.0,34.0,39.0,46.0,35.0,39.0,30.0,47.0,35.0,31.0,38.0,41.0,39.0,36.0,37.0,44.0,45.0,42.0,42.0,43.0,33.0,31.0,43.0,36.0,39.0,41.0,36.0,29.0,34.0,25.0,25.0,32.0,35.0,27.0,26.0,22.0,23.0,30.0,26.0,24.0,31.0,29.0,29.0,44.0,35.0,31.0,16.0,37.0,29.0,24.0,38.0,40.0,32.0,34.0,29.0,28.0,27.0,26.0,35.0,27.0,23.0,32.0,25.0,22.0,22.0,33.0,26.0,18.0,23.0,16.0,23.0,18.0,23.0,13.0,21.0,19.0,17.0,14.0,16.0,10.0,9.0,12.0,12.0,10.0,7.0,9.0,9.0,10.0,7.0,6.0,3.0,3.0,6.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,550,1578,399,0,177,182,191,216,182,165,145,125,168,137,173,143,124,116,98,76,50,41,16,2,0,0,2469,11,15,32,0,2470,13,12,32,0,609,13,214,407,110,22,602,550,0,1448,1052,27,0,0,298,10,0,0,0,1,0,3,0,2215,0,29,19,47,5,13,2,20,2392,0,202,522,113,9,3,1678,0,2.456872037914692,0.0,3.377564979480164,0.0,7.6086268302334785,9,6,19,2,6,0,7,795,0,51,81,63,117,144,135,62,56,52,26,28,9,9,4,2,5,812,32,666,178,657,187,183,661,422,422,38,806,539,305,46,798,767,77,655,189,163,492,214,630,520,324,271,573,393,451,413,431,12,832,198,401,227,18,0,596,248,0,0,69,4,0,0,0,1,0,1,0,769,0,1.5130331753554502,1.481042654028436,1.0,1.0178571428571428,1.0178571428571428,56.30924170616114 +PA020509,40508,Chiriquí,Bugaba,Santa Marta,1570,8,41,0,0,0,0,0,0,0,0,0,0,0,0,7,1197,86,26,1246,44,7,2,0,17,0,1277,0,0,7,0,4,27,0,1,256,370,458,9,218,0,5,1266,24,4,0,0,22,1316,1,108,53,25,82,34,0,35,107,1043,128,3,0,1236,45,0,8,26,1,0,1316,0,0,0,0,0,0,497,771,2,45,1,0,818,134,0,278,40,3,0,0,0,32,10,1,1056,563,5.894957983193278,16.12920168067227,5.970588235294118,15.747899159663865,1.0151975683890575,3.492401215805471,2.310790273556231,1336,692,1375,120,334,43,51,45,13,47,13,10,21,6,84,37,14,27,34,13,21,3224,630,0,1060,2794,0,2864,990,0,3546,308,0,1047,2807,0,920,127,2597,210,0,216,24,72,3,99,110,153,115,127,660,0,1,5,112,141,298,132,163,769,3,16,56,78,125,117,157,39,16,4,41,0,0,1,1,0,1425,69,1939,0,0,35,6,254,637,843,61,144,725,105,240,50,188,9,154,0,16,2051,2055,221,625,63,506,36,10,5,21,16,169,17,1608,7,0,0,2004,973,5,23,88,281,16,42,1,0,20,46,118,93,54,335,116,222,152,338,2189,343,161,215,270,303,262,125,125,64,20,8,9,2,3,7,50.0,69.0,71.0,62.0,64.0,68.0,66.0,73.0,70.0,80.0,62.0,74.0,45.0,64.0,57.0,59.0,63.0,55.0,67.0,77.0,40.0,73.0,73.0,61.0,68.0,48.0,66.0,57.0,65.0,51.0,51.0,49.0,72.0,47.0,41.0,44.0,52.0,43.0,58.0,51.0,45.0,30.0,44.0,51.0,51.0,41.0,36.0,50.0,49.0,56.0,57.0,48.0,53.0,53.0,45.0,50.0,50.0,49.0,48.0,40.0,45.0,36.0,41.0,46.0,28.0,39.0,30.0,37.0,33.0,28.0,25.0,26.0,19.0,23.0,26.0,22.0,26.0,20.0,36.0,14.0,18.0,18.0,16.0,13.0,11.0,13.0,8.0,11.0,8.0,8.0,6.0,7.0,6.0,4.0,0.0,1.0,3.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,975,2573,558,0,316,357,302,321,315,287,260,248,221,232,256,237,196,167,119,118,76,48,23,6,1,0,4041,25,16,24,0,4041,26,15,24,0,923,59,391,701,170,41,846,975,0,2398,1679,29,0,3,422,11,1,0,0,2,0,1,0,3666,0,31,94,163,8,2,2,633,3173,0,554,950,245,27,4,2326,0,2.2466627974463145,0.0,2.9911075181891675,0.0,8.101558694593278,13,31,83,5,0,0,216,988,0,125,102,55,124,164,169,161,100,151,75,49,22,26,4,6,3,1299,37,1191,145,1140,196,254,1082,1048,288,205,1131,756,580,90,1246,1226,110,1143,193,692,451,401,935,1003,333,487,849,405,931,448,888,18,1318,274,690,347,25,0,853,483,0,1,88,4,1,0,0,1,0,1,0,1240,0,1.535179640718563,1.5381736526946108,1.3125,1.0454545454545454,1.0454545454545454,54.22305389221557 +PA020510,40509,Chiriquí,Bugaba,Santa Rosa,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,479,60,14,536,5,3,0,0,10,1,504,0,4,12,1,4,28,0,2,53,113,272,9,106,0,2,530,18,1,0,0,6,555,0,74,29,8,39,38,0,5,17,470,63,0,0,472,68,0,3,12,0,0,551,2,0,0,1,1,0,156,358,0,33,8,0,0,447,41,50,3,5,0,3,0,0,6,0,0,743,5.237704918032787,14.182377049180328,6.98155737704918,23.8094262295082,1.0216216216216216,3.5981981981981983,2.347747747747748,567,305,554,42,122,18,10,11,5,21,4,6,12,0,34,13,1,8,16,4,7,1168,414,0,213,1369,0,412,1170,0,1431,151,0,376,1206,0,309,67,1097,109,0,110,7,25,5,65,59,66,49,54,370,0,0,4,58,63,105,57,57,267,0,13,9,20,26,49,20,10,3,0,10,0,0,0,1,0,630,46,754,0,6,15,10,63,231,366,42,52,178,55,96,34,37,3,254,2,1,857,820,53,381,35,152,12,0,26,1,5,106,15,521,18,0,0,998,314,4,14,18,68,3,10,1,0,1,15,27,27,16,86,71,70,33,330,827,163,76,117,196,134,61,36,26,6,10,2,2,0,3,18,25.0,24.0,27.0,19.0,30.0,26.0,25.0,31.0,21.0,19.0,27.0,26.0,30.0,25.0,27.0,23.0,23.0,31.0,23.0,26.0,18.0,18.0,34.0,29.0,31.0,28.0,20.0,27.0,23.0,23.0,22.0,16.0,23.0,27.0,20.0,20.0,10.0,25.0,16.0,16.0,15.0,15.0,22.0,20.0,15.0,17.0,16.0,21.0,19.0,20.0,20.0,35.0,19.0,18.0,14.0,23.0,22.0,20.0,22.0,22.0,20.0,13.0,15.0,15.0,9.0,22.0,18.0,14.0,16.0,11.0,16.0,8.0,8.0,11.0,11.0,10.0,14.0,9.0,10.0,13.0,7.0,4.0,2.0,5.0,4.0,6.0,3.0,6.0,6.0,4.0,2.0,4.0,2.0,1.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,382,1039,254,2,125,122,135,126,130,121,108,87,87,93,106,109,72,81,54,56,22,25,10,4,2,2,1650,9,5,13,0,1650,9,5,13,0,450,24,80,244,64,7,426,382,0,862,795,20,0,1,230,0,0,1,0,0,0,0,0,1445,0,1,7,24,5,0,0,30,1610,0,180,387,54,6,9,1041,0,2.3956204379562043,0.0,3.230452674897119,0.0,7.102564102564102,0,5,13,1,0,0,17,531,0,31,44,27,58,96,111,56,44,50,23,12,3,3,1,3,5,549,18,463,104,443,124,107,460,290,277,16,551,345,222,7,560,505,62,437,130,86,351,112,455,257,310,185,382,175,392,211,356,5,562,137,306,115,9,0,418,149,1,0,62,0,0,0,0,0,0,0,0,505,0,1.5114638447971782,1.4462081128747797,1.0,1.0952380952380951,1.0952380952380951,54.30212014134276 +PA020511,40510,Chiriquí,Bugaba,Santo Domingo,1501,7,28,0,0,0,0,0,0,0,0,0,0,0,0,2,967,136,86,1079,26,64,9,0,13,0,1118,0,0,8,3,7,46,0,9,40,328,684,18,118,0,3,1102,68,3,0,0,18,1191,2,109,46,34,80,74,0,164,89,855,82,1,0,1061,46,2,10,66,6,0,1177,0,0,1,2,11,0,450,623,0,108,9,1,365,191,158,328,106,0,0,4,0,34,4,1,0,1536,6.284313725490196,18.33893557422969,6.358543417366946,18.759103641456583,1.00671704450042,3.4340890008396308,2.3005877413937865,1199,629,1358,171,232,40,41,22,10,47,8,8,47,2,90,41,10,22,22,8,11,2737,802,0,779,2760,0,1689,1850,0,3187,352,0,1100,2439,0,999,101,2189,250,0,253,26,64,7,86,115,150,105,144,560,0,0,4,149,178,269,108,163,692,2,6,43,50,116,95,95,38,5,0,13,1,0,1,1,0,1193,135,1769,0,4,55,17,162,716,739,103,49,638,51,124,41,128,6,260,1,34,1899,1915,224,657,50,288,18,0,7,39,28,141,15,1399,10,0,0,1933,858,4,10,80,192,5,14,1,0,41,48,80,70,35,316,74,152,124,388,2197,268,140,198,250,234,233,108,122,35,12,2,2,2,1,10,61.0,70.0,73.0,71.0,76.0,77.0,83.0,56.0,81.0,69.0,75.0,100.0,59.0,74.0,66.0,74.0,64.0,69.0,74.0,44.0,56.0,59.0,61.0,68.0,58.0,49.0,78.0,57.0,58.0,64.0,55.0,50.0,57.0,59.0,47.0,58.0,47.0,53.0,50.0,49.0,51.0,57.0,40.0,37.0,32.0,44.0,31.0,35.0,26.0,37.0,31.0,38.0,28.0,42.0,37.0,40.0,35.0,41.0,36.0,34.0,33.0,27.0,24.0,30.0,21.0,26.0,17.0,20.0,19.0,14.0,28.0,20.0,14.0,17.0,22.0,13.0,17.0,13.0,21.0,19.0,9.0,10.0,9.0,8.0,7.0,16.0,4.0,6.0,4.0,6.0,2.0,2.0,7.0,3.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1091,2345,378,0,351,366,374,325,302,306,268,257,217,173,176,186,135,96,101,83,43,36,18,1,0,0,3692,34,26,62,0,3693,35,24,62,0,976,46,309,524,130,27,712,1090,0,1865,1893,56,0,3,718,4,1,0,0,0,0,1,0,3087,0,104,164,294,19,1,3,519,2710,0,537,831,154,15,1,2276,0,2.2852604828462515,0.0,3.211753731343284,0.0,7.528054535920294,27,46,122,6,1,2,197,798,0,122,75,40,105,179,162,143,98,152,54,37,13,10,3,2,4,1119,80,996,203,940,259,203,996,907,292,201,998,700,499,85,1114,1069,130,973,226,436,537,310,889,676,523,406,793,448,751,419,780,6,1193,257,658,251,33,0,765,434,0,1,173,3,1,0,0,0,0,1,0,1020,0,1.5838198498748957,1.597164303586322,1.5,1.0277777777777777,1.0277777777777777,49.28940783986656 +PA020512,40511,Chiriquí,Bugaba,Sortová,1140,10,1,0,1,0,0,0,0,0,0,4,0,0,0,1,767,133,34,875,26,5,3,0,26,0,853,0,2,13,4,10,51,0,2,286,74,441,29,93,0,12,863,39,4,0,0,29,935,7,87,47,22,41,12,0,29,52,711,132,11,0,798,64,1,4,51,14,3,926,1,2,0,0,2,4,261,588,0,72,12,2,539,259,14,18,80,7,0,0,0,1,15,2,0,1156,6.761083743842365,22.348522167487683,6.91256157635468,23.45320197044335,1.0160427807486632,3.247058823529412,2.106951871657754,954,475,957,99,177,26,30,29,10,29,8,8,45,3,50,28,6,36,24,9,17,2074,604,0,567,2111,0,1710,968,0,2417,261,0,720,1958,0,613,107,1762,196,0,196,14,37,8,57,83,113,82,96,624,0,2,3,79,107,196,58,91,450,3,53,32,47,34,75,80,20,11,0,26,0,0,0,1,0,1084,78,1276,0,12,31,17,95,462,550,79,90,444,103,137,72,57,13,330,0,2,1466,1384,137,635,81,250,26,2,25,2,11,224,24,938,49,0,0,1603,570,3,48,15,165,9,24,1,0,2,34,91,46,33,203,100,134,76,443,1434,253,85,138,351,215,162,62,51,34,8,1,4,1,2,49,46.0,41.0,38.0,47.0,51.0,32.0,48.0,36.0,33.0,40.0,47.0,42.0,55.0,48.0,42.0,45.0,53.0,52.0,44.0,57.0,52.0,46.0,47.0,43.0,36.0,47.0,46.0,36.0,32.0,42.0,45.0,32.0,35.0,36.0,37.0,33.0,31.0,34.0,24.0,43.0,34.0,40.0,35.0,16.0,34.0,36.0,44.0,34.0,47.0,33.0,30.0,33.0,43.0,26.0,32.0,20.0,40.0,29.0,32.0,30.0,34.0,24.0,27.0,18.0,20.0,16.0,19.0,19.0,21.0,17.0,16.0,17.0,23.0,18.0,27.0,20.0,15.0,19.0,14.0,13.0,6.0,17.0,14.0,13.0,11.0,9.0,8.0,5.0,4.0,5.0,5.0,3.0,2.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,646,1819,385,0,223,189,234,251,224,203,185,165,159,194,164,151,123,92,101,81,61,31,14,2,3,0,2750,31,31,38,0,2752,33,27,38,0,738,31,70,376,84,26,879,646,0,1693,1116,41,0,2,323,22,2,0,0,0,0,0,0,2501,0,26,31,95,8,0,0,252,2438,0,353,683,85,11,6,1712,0,2.2348936170212768,0.0,3.170610211706102,0.0,7.490175438596491,13,15,31,0,0,0,97,798,0,89,69,20,77,163,139,113,92,83,42,23,16,8,1,3,12,906,48,751,203,719,235,131,823,545,409,83,871,488,466,67,887,839,115,731,223,303,428,233,721,598,356,289,665,336,618,429,525,21,933,227,507,191,29,1,665,289,0,1,90,4,2,0,0,0,0,0,0,857,0,1.5350785340314137,1.449214659685864,1.5,1.0789473684210529,1.0789473684210529,53.142557651991616 +PA020504,40513,Chiriquí,Bugaba,El Bongo,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,444,95,18,518,25,0,0,0,18,0,477,0,0,6,0,44,34,0,0,0,40,354,12,152,0,3,520,37,1,0,0,3,561,2,77,25,0,45,21,0,2,21,447,90,1,0,480,46,0,3,26,6,0,556,0,0,0,1,0,4,98,405,0,44,11,3,244,234,12,8,26,28,0,2,0,2,4,1,0,731,6.095918367346939,17.195918367346938,6.751020408163265,22.59591836734694,1.0160427807486632,3.0231729055258465,1.9429590017825311,570,290,642,23,83,16,21,17,7,22,1,1,13,0,43,1,3,3,19,0,4,1224,379,0,176,1427,0,836,767,0,1392,211,0,385,1218,0,329,56,1072,146,0,148,24,25,0,51,58,85,55,73,329,0,0,0,43,63,123,48,80,202,1,6,21,26,30,47,45,4,4,1,10,0,0,0,1,0,566,82,780,0,23,44,7,48,240,442,46,4,229,69,129,11,24,3,170,0,0,914,792,61,330,10,227,3,1,3,0,16,124,3,629,46,0,0,1030,267,0,14,16,86,5,9,1,0,0,17,45,28,15,69,118,72,24,260,927,173,58,114,151,96,62,34,26,8,8,1,2,0,0,46,26.0,31.0,16.0,30.0,32.0,35.0,27.0,36.0,20.0,25.0,28.0,32.0,22.0,29.0,28.0,24.0,21.0,28.0,30.0,19.0,17.0,26.0,28.0,26.0,28.0,19.0,25.0,26.0,31.0,22.0,24.0,31.0,20.0,24.0,22.0,26.0,22.0,20.0,21.0,20.0,25.0,13.0,17.0,22.0,20.0,25.0,16.0,21.0,19.0,14.0,18.0,16.0,22.0,22.0,17.0,20.0,24.0,15.0,14.0,14.0,14.0,26.0,10.0,18.0,14.0,8.0,11.0,10.0,21.0,13.0,12.0,17.0,7.0,20.0,8.0,9.0,10.0,7.0,7.0,7.0,8.0,8.0,6.0,10.0,5.0,3.0,3.0,2.0,2.0,4.0,1.0,4.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,417,1056,233,0,135,143,139,122,125,123,121,109,97,95,95,87,82,63,64,40,37,14,7,3,5,0,1657,13,11,25,0,1657,14,10,25,0,471,1,1,226,31,5,554,417,0,1041,638,27,0,0,283,4,0,0,0,0,0,0,0,1419,0,6,13,4,1,0,0,7,1675,0,215,361,46,4,2,1078,0,2.441717791411043,0.0,3.290948275862069,0.0,6.897420867526377,3,5,2,1,0,0,4,555,0,52,62,22,60,114,89,53,34,40,14,6,4,5,1,1,13,553,17,391,179,381,189,83,487,264,306,17,553,299,271,7,563,452,118,387,183,70,317,92,478,208,362,149,421,183,387,158,412,2,568,149,293,117,11,0,397,173,0,0,65,2,0,0,0,0,0,0,0,503,0,1.6035087719298249,1.3894736842105264,1.2,1.0,1.0,52.84736842105263 +,40514,Chiriquí,Bugaba,Solano,1789,1,74,0,0,0,0,0,0,0,0,0,0,0,0,13,1397,28,1,1429,9,0,0,0,1,0,1421,0,1,6,0,2,3,0,6,901,461,51,5,18,0,3,1409,5,10,0,1,14,1439,6,87,79,116,80,57,0,60,259,1047,69,4,0,1418,16,0,1,1,3,0,1424,4,3,0,6,0,2,668,761,1,8,0,1,1385,11,25,3,9,0,0,0,0,2,2,2,1864,0,6.911330049261084,23.557353976073188,6.976073187895848,23.87262491203378,1.0208478109798471,3.701876302988186,2.353022932592078,1469,734,1653,82,391,47,62,51,10,84,12,14,29,5,76,26,12,43,29,8,11,3813,589,0,1508,2894,0,3408,994,0,4104,298,0,1322,3080,0,1105,217,2951,129,0,139,69,91,24,95,109,130,94,100,509,0,1,15,139,190,357,147,206,1022,16,65,71,106,118,294,137,51,47,3,51,0,2,1,3,0,1657,134,2127,0,7,57,25,264,780,978,68,37,1097,111,249,44,232,5,32,0,4,2270,2373,348,748,54,541,57,4,17,5,1,134,11,1636,487,0,0,1913,1358,15,68,58,414,39,48,5,0,5,102,198,149,95,440,41,305,163,293,2363,261,110,173,247,312,319,134,122,61,28,12,7,6,1,487,48.0,65.0,61.0,67.0,71.0,86.0,91.0,72.0,83.0,81.0,67.0,72.0,86.0,70.0,82.0,63.0,62.0,72.0,62.0,67.0,80.0,77.0,70.0,81.0,56.0,69.0,63.0,77.0,72.0,66.0,74.0,71.0,59.0,67.0,71.0,52.0,55.0,45.0,47.0,62.0,55.0,54.0,58.0,47.0,53.0,45.0,57.0,55.0,46.0,40.0,70.0,55.0,54.0,62.0,69.0,63.0,47.0,58.0,60.0,55.0,65.0,43.0,56.0,41.0,43.0,42.0,27.0,38.0,34.0,22.0,39.0,24.0,26.0,21.0,35.0,20.0,16.0,15.0,18.0,12.0,18.0,20.0,10.0,16.0,15.0,14.0,11.0,8.0,8.0,5.0,9.0,3.0,4.0,5.0,2.0,4.0,2.0,2.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1102,2991,550,0,312,413,377,326,364,347,342,261,267,243,310,283,248,163,145,81,79,46,23,8,5,0,4572,21,40,10,0,4572,27,34,10,0,927,39,24,881,135,26,1509,1102,0,2037,2576,30,0,6,155,3,0,0,0,0,0,1,0,4478,0,58,14,48,6,2,8,43,4464,0,833,1269,284,17,4,2236,0,2.0853174603174605,0.0,2.9132321041214757,0.0,9.008184363558044,24,7,22,6,2,4,18,1386,0,165,81,30,80,123,155,173,106,166,88,49,22,27,5,9,190,1451,18,1371,98,1339,130,240,1229,1313,156,349,1120,797,672,234,1235,1367,102,1263,206,785,478,592,877,1121,348,609,860,159,1310,154,1315,18,1451,311,761,368,29,0,920,549,0,1,39,1,0,0,0,0,0,1,0,1427,0,1.5452688904016338,1.6153846153846154,1.1363636363636365,1.048780487804878,1.048780487804878,53.44860449285228 +,40515,Chiriquí,Bugaba,San Isidro,2671,11,38,2,0,0,0,0,0,0,0,0,2,0,0,18,1769,222,61,1951,58,5,1,0,55,0,2001,0,6,7,7,18,27,0,4,92,243,1357,59,293,15,11,1941,84,9,0,0,36,2070,0,145,142,82,175,108,0,41,113,1724,186,4,2,1837,193,0,12,24,3,1,2063,3,0,0,1,3,0,613,1325,0,113,19,0,286,822,48,596,232,9,0,4,0,59,14,0,0,2724,5.275086505190312,11.66089965397924,6.724048442906574,17.192906574394463,1.017391304347826,3.208695652173913,2.11256038647343,2108,1157,2475,155,392,51,63,54,14,92,18,13,34,3,136,30,13,52,29,25,23,4909,1279,0,906,5282,0,3245,2943,0,5612,576,0,1750,4438,0,1592,158,4073,365,0,371,57,117,11,176,205,315,225,192,1288,0,0,0,241,275,479,217,263,1121,7,18,89,114,117,127,89,28,17,3,19,0,1,0,6,0,2283,203,3026,0,9,96,39,229,1118,1436,181,62,1095,250,283,74,443,8,275,1,4,3314,3315,205,1104,79,965,49,1,26,4,32,310,28,2179,6,0,0,3755,1398,0,28,71,221,13,20,6,0,3,56,109,82,212,601,259,310,162,692,3713,490,239,390,544,461,362,153,156,62,23,9,11,2,8,6,105.0,116.0,112.0,108.0,111.0,117.0,118.0,105.0,110.0,115.0,131.0,120.0,128.0,120.0,97.0,122.0,124.0,119.0,121.0,110.0,127.0,114.0,129.0,120.0,80.0,110.0,112.0,90.0,86.0,88.0,92.0,106.0,82.0,99.0,85.0,75.0,99.0,80.0,92.0,72.0,79.0,81.0,73.0,75.0,52.0,83.0,57.0,67.0,86.0,69.0,67.0,64.0,71.0,66.0,74.0,72.0,77.0,66.0,79.0,56.0,62.0,59.0,55.0,54.0,49.0,57.0,36.0,41.0,33.0,50.0,36.0,34.0,38.0,40.0,38.0,25.0,29.0,23.0,19.0,19.0,25.0,16.0,13.0,14.0,15.0,15.0,15.0,13.0,11.0,8.0,3.0,3.0,4.0,4.0,4.0,1.0,2.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1713,4227,689,0,552,565,596,596,570,486,464,418,360,362,342,350,279,217,186,115,83,62,18,6,2,0,6405,93,75,56,0,6409,95,69,56,0,1703,94,715,976,208,34,1186,1713,0,4012,2509,108,0,2,371,35,0,0,1,1,1,3,0,6215,0,164,47,257,14,1,15,369,5762,0,726,1311,215,29,7,4341,0,2.2964585615188025,0.0,3.248785752833244,0.0,7.187207723638558,54,23,104,8,1,3,148,1767,0,144,141,101,202,368,297,255,153,229,95,51,27,24,6,11,2,2027,81,1834,274,1772,336,342,1766,1714,394,247,1861,1108,1000,65,2043,1921,187,1712,396,750,962,410,1698,1110,998,664,1444,557,1551,504,1604,23,2085,427,1190,460,31,0,1418,690,0,2,97,7,0,0,1,1,0,3,0,1997,0,1.5721062618595825,1.5725806451612905,1.1333333333333333,1.0823529411764703,1.0823529411764703,51.11527514231499 +PA020604,40601,Chiriquí,David,David,5595,15,1613,54,1,1,0,3,0,0,1,3,8,2,0,1433,4075,75,22,5486,97,2,2,0,15,3,5568,0,1,6,1,16,3,0,10,5557,23,15,3,6,1,0,5392,13,115,0,0,85,5605,142,315,56,505,561,93,0,518,1443,3312,261,43,28,5515,34,13,27,7,8,1,5269,39,252,22,14,4,5,3863,1697,3,34,6,2,5515,8,20,8,2,2,0,2,0,34,8,6,6982,314,6.490709002345301,20.67959588670395,6.666245715316616,21.521558722713333,1.0173059768064228,3.996966993755575,2.456021409455843,5713,2512,4773,135,1125,282,369,206,95,240,62,88,327,124,288,112,52,113,109,44,111,13778,1711,0,8050,7439,0,12158,3331,0,14914,575,0,4003,11486,0,2614,1389,11121,365,0,408,124,175,18,197,219,321,236,243,1436,3,3,52,282,412,886,351,485,3458,19,109,310,401,533,1083,1760,710,305,32,767,6,16,25,104,0,6579,614,7327,0,20,216,140,2164,2466,2032,316,349,4817,568,686,287,559,25,138,4,30,7688,8363,1477,3082,318,1844,301,3,49,40,29,338,49,5074,1353,0,0,4803,4839,61,118,277,3268,269,774,111,0,47,803,1574,819,423,1337,152,732,334,972,6194,754,336,554,1061,1280,1355,743,905,573,338,145,172,87,201,1353,137.0,128.0,149.0,148.0,151.0,166.0,147.0,178.0,155.0,172.0,173.0,179.0,177.0,189.0,214.0,194.0,177.0,199.0,222.0,214.0,223.0,233.0,250.0,264.0,252.0,241.0,234.0,207.0,260.0,210.0,215.0,191.0,207.0,177.0,199.0,181.0,189.0,180.0,170.0,150.0,168.0,182.0,187.0,189.0,170.0,202.0,180.0,199.0,187.0,186.0,215.0,208.0,211.0,203.0,213.0,220.0,196.0,226.0,226.0,223.0,189.0,223.0,241.0,208.0,192.0,168.0,182.0,183.0,178.0,160.0,160.0,171.0,147.0,164.0,136.0,162.0,134.0,147.0,104.0,134.0,109.0,88.0,88.0,87.0,79.0,70.0,72.0,49.0,48.0,36.0,44.0,36.0,24.0,42.0,20.0,15.0,16.0,11.0,6.0,6.0,11.0,2.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9,2463,10283,3296,9,713,818,932,1006,1222,1152,989,870,896,954,1050,1091,1053,871,778,681,451,275,166,54,20,9,14859,677,478,37,0,14884,761,369,37,0,2385,218,189,3753,833,312,5899,2462,0,5478,9910,663,0,33,1005,43,3,5,0,2,0,1,0,14959,0,265,251,401,36,9,26,779,14284,0,3462,3053,2396,141,51,6948,0,1.794109947643979,0.0,2.596146283916634,0.0,11.270388137810729,110,103,172,19,4,11,314,4980,0,368,177,95,189,383,531,576,393,723,468,366,198,244,157,300,534,5607,106,5357,356,5125,588,1178,4535,5220,493,2861,2852,3234,2479,2003,3710,5418,295,5166,547,3786,1380,3136,2577,4783,930,3122,2591,584,5129,386,5327,68,5645,1403,2560,1484,266,8,3227,2486,0,8,320,14,1,1,0,0,0,0,0,5369,0,1.3438210103128825,1.461807376332809,1.2314814814814814,1.0528052805280528,1.0528052805280528,57.00560126028356 +PA020601,40602,Chiriquí,David,Bijagual,402,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,54,11,252,24,0,2,0,9,0,239,0,0,11,0,1,35,0,1,0,37,165,1,84,0,0,251,30,0,0,0,6,287,0,31,28,2,15,41,0,4,4,224,50,5,0,264,11,0,6,6,0,0,287,0,0,0,0,0,0,53,213,0,19,2,0,1,222,33,17,8,0,0,3,0,0,3,0,0,404,6.5703125,21.578125,6.92578125,23.5546875,1.0348432055749128,2.8815331010452963,1.843205574912892,297,153,287,32,48,7,14,8,3,12,2,6,9,0,8,2,1,2,8,2,12,666,159,0,139,686,0,503,322,0,730,95,0,197,628,0,171,26,545,83,0,84,2,6,0,23,29,39,31,34,184,0,0,1,30,47,47,27,20,94,0,5,12,15,15,22,12,24,9,1,12,0,0,0,0,0,273,74,388,0,4,20,4,34,127,178,45,4,129,13,45,12,21,0,113,0,0,460,418,61,186,12,63,11,0,0,0,7,42,8,309,0,0,0,513,149,1,5,6,43,6,12,0,0,0,13,15,11,15,52,37,42,13,149,445,120,33,29,95,60,46,18,15,9,2,2,2,1,1,0,14.0,13.0,17.0,9.0,16.0,22.0,14.0,12.0,14.0,12.0,19.0,12.0,15.0,10.0,14.0,10.0,12.0,11.0,16.0,10.0,17.0,12.0,18.0,19.0,18.0,16.0,9.0,12.0,10.0,11.0,16.0,15.0,14.0,12.0,11.0,9.0,7.0,11.0,14.0,4.0,12.0,6.0,8.0,9.0,4.0,9.0,8.0,13.0,15.0,9.0,12.0,7.0,15.0,6.0,13.0,14.0,6.0,10.0,10.0,8.0,12.0,6.0,7.0,13.0,4.0,5.0,6.0,9.0,4.0,3.0,4.0,5.0,7.0,4.0,8.0,3.0,9.0,5.0,3.0,2.0,2.0,1.0,3.0,5.0,2.0,3.0,2.0,4.0,6.0,4.0,2.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,213,550,115,0,69,74,70,59,84,58,68,45,39,54,53,48,42,27,28,22,13,19,6,0,0,0,866,5,0,7,0,866,5,0,7,0,276,9,89,85,30,0,176,213,0,489,379,10,0,0,131,0,0,0,0,0,0,0,0,747,0,0,1,4,0,0,0,27,846,0,124,169,35,2,1,547,0,2.146627565982405,0.0,3.1145374449339207,0.0,7.187927107061504,0,0,3,0,0,0,9,285,0,30,31,12,22,46,53,31,22,19,11,6,6,6,1,1,0,264,33,208,89,182,115,26,271,189,108,24,273,151,146,1,296,261,36,198,99,70,128,60,237,207,90,88,209,151,146,163,134,4,293,79,149,60,9,0,212,85,0,0,33,0,0,0,0,0,0,0,0,264,0,1.5488215488215489,1.4074074074074074,3.0,1.0,1.0,51.87542087542087 +PA020603,40603,Chiriquí,David,Cochea,1192,8,7,0,0,0,0,0,0,0,0,0,2,0,0,1,752,159,24,895,17,5,0,0,16,3,872,0,1,17,0,6,40,0,0,0,269,508,13,141,0,5,878,40,1,0,0,17,936,0,83,38,5,96,49,0,9,33,825,67,1,1,817,25,32,16,26,20,0,928,0,2,0,1,0,5,191,704,0,36,4,1,0,833,30,60,4,0,0,3,0,1,5,0,0,1209,6.945538818076478,19.93974507531865,6.9768250289687135,22.281575898030127,1.0224358974358974,3.251068376068376,2.176282051282051,959,535,1083,111,177,23,36,36,14,39,10,5,8,0,59,23,9,20,17,16,26,2370,479,0,708,2141,0,2050,799,0,2593,256,0,820,2029,0,746,74,1877,152,0,154,15,61,11,64,87,134,130,92,615,0,2,1,80,124,198,92,113,476,0,5,52,62,40,73,76,55,8,4,22,0,0,1,2,0,985,78,1485,0,14,32,19,172,536,696,76,5,495,40,226,52,69,6,173,0,1,1558,1478,162,479,63,341,9,0,7,1,19,157,26,888,4,0,0,1670,642,1,7,16,183,6,21,2,0,1,30,87,53,58,131,143,197,62,301,1354,477,85,148,258,284,237,58,70,43,11,3,2,2,0,4,56.0,51.0,42.0,38.0,41.0,52.0,55.0,49.0,50.0,54.0,58.0,60.0,55.0,45.0,50.0,49.0,48.0,58.0,40.0,59.0,47.0,47.0,47.0,52.0,47.0,39.0,39.0,49.0,33.0,32.0,42.0,34.0,35.0,42.0,35.0,38.0,38.0,40.0,30.0,35.0,38.0,33.0,35.0,37.0,37.0,41.0,37.0,45.0,39.0,35.0,36.0,35.0,38.0,31.0,28.0,40.0,39.0,38.0,33.0,27.0,25.0,31.0,27.0,20.0,20.0,17.0,28.0,20.0,19.0,31.0,17.0,23.0,24.0,15.0,14.0,19.0,20.0,12.0,13.0,27.0,10.0,7.0,13.0,4.0,9.0,3.0,3.0,1.0,4.0,8.0,5.0,3.0,4.0,0.0,1.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,756,1900,380,0,228,260,268,254,240,192,188,181,180,197,168,177,123,115,93,91,43,19,13,6,0,0,2952,28,30,26,0,2953,34,23,26,0,780,18,292,449,113,8,620,756,0,1687,1292,57,0,0,318,19,3,13,0,0,0,0,0,2683,0,16,21,37,1,1,1,27,2932,0,435,640,142,26,20,1773,0,2.16347687400319,0.0,3.1666666666666665,0.0,7.556324110671936,4,11,19,0,0,1,10,914,0,28,73,29,63,134,178,146,91,91,53,31,12,19,6,2,1,924,35,799,160,756,203,150,809,714,245,98,861,468,491,42,917,849,110,776,183,399,377,243,716,675,284,368,591,400,559,486,473,8,951,205,531,215,8,0,676,283,0,0,67,4,2,2,0,0,0,0,0,884,0,1.6246089676746611,1.54118873826903,1.0,1.0408163265306123,1.0408163265306123,52.94994786235662 +PA020602,40604,Chiriquí,David,Chiriquí,1906,6,40,0,0,0,42,0,2,0,0,16,1,0,0,20,1221,214,21,1406,49,7,1,0,12,1,1389,0,1,28,0,9,45,0,4,976,86,353,2,53,0,6,1399,51,7,0,0,19,1476,0,118,108,115,104,31,0,48,113,1189,116,7,3,1373,78,0,3,15,6,1,1467,0,1,0,3,3,2,558,862,0,49,6,1,834,425,86,9,4,19,0,12,10,59,18,0,1045,968,4.786617100371747,10.24460966542751,5.211895910780669,12.409665427509294,1.0311653116531163,3.5257452574525745,2.1795392953929538,1539,836,1565,149,295,45,58,44,25,79,18,15,2033,2,123,53,18,36,50,28,25,3756,2687,0,1157,5286,0,2768,3675,0,6030,413,0,1511,4932,0,1324,187,4679,253,0,259,47,66,7,127,168,202,175,173,1090,2,2,10,318,394,644,268,314,1162,3,45,80,118,135,238,169,81,78,2,61,0,0,0,5,0,1726,230,4061,0,5,88,56,307,1036,806,152,1760,1063,95,266,84,190,3,181,53,0,4397,2306,474,776,87,554,31,0,13,0,8,209,14,2783,11,0,0,3829,1495,10,48,71,439,59,61,5,0,0,68,251,104,75,356,116,287,169,530,4287,418,174,244,382,339,321,170,193,106,25,10,12,6,5,11,63.0,53.0,74.0,70.0,76.0,69.0,64.0,62.0,85.0,70.0,73.0,67.0,58.0,66.0,78.0,79.0,72.0,76.0,93.0,95.0,99.0,135.0,158.0,182.0,149.0,170.0,181.0,171.0,147.0,139.0,149.0,126.0,144.0,143.0,132.0,106.0,99.0,105.0,115.0,109.0,94.0,101.0,98.0,88.0,75.0,94.0,101.0,77.0,82.0,65.0,73.0,85.0,60.0,77.0,88.0,66.0,73.0,72.0,63.0,55.0,62.0,57.0,57.0,46.0,45.0,31.0,47.0,43.0,45.0,30.0,34.0,32.0,36.0,30.0,26.0,28.0,34.0,29.0,26.0,15.0,17.0,18.0,20.0,13.0,7.0,16.0,8.0,9.0,11.0,5.0,12.0,11.0,2.0,4.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1028,5028,647,0,336,350,342,415,723,808,694,534,456,419,383,329,267,196,158,132,75,49,31,5,1,0,6546,108,26,23,0,6548,111,21,23,0,1690,68,859,846,184,54,1975,1027,0,2674,3926,103,0,3,726,39,4,2,1,1,2,0,0,5925,0,175,80,430,45,8,6,405,5554,0,878,1148,312,27,6,4332,0,2.117290192113246,0.0,2.9330882352941177,0.0,8.491869312248246,41,21,100,11,0,3,159,1204,0,124,95,54,106,187,193,162,119,222,102,60,33,42,9,13,1,1481,58,1316,223,1250,289,229,1310,1272,267,322,1217,863,676,225,1314,1375,164,1293,246,699,594,535,1004,952,587,584,955,500,1039,461,1078,13,1526,320,802,369,48,44,1061,478,0,0,123,3,0,0,1,1,0,0,0,1411,0,2.77763739734681,1.4567277321541376,1.0,1.0273972602739727,1.0273972602739727,53.33723196881092 +PA020605,40605,Chiriquí,David,Guacá,1024,0,9,0,0,0,0,0,14,0,0,0,0,0,0,1,717,47,36,751,14,12,1,0,20,3,718,0,1,8,2,11,51,0,10,10,348,302,11,117,1,12,729,48,2,0,0,22,801,0,71,60,6,72,23,0,6,29,691,72,3,0,714,42,0,8,14,23,0,796,0,1,0,3,0,1,184,559,0,40,17,1,1,396,388,7,0,0,0,1,0,4,3,1,0,1047,6.735031847133758,20.85859872611465,6.93375796178344,22.259872611464967,1.0199750312109863,3.2771535580524342,1.961298377028714,826,449,947,89,110,12,31,17,8,35,9,5,26,1,47,39,6,20,18,13,30,1850,525,0,380,1995,0,1480,895,0,2102,273,0,625,1750,0,549,76,1552,198,0,199,19,31,6,59,97,118,104,78,525,0,0,1,88,99,165,57,84,374,1,16,36,44,36,55,53,10,3,2,15,0,0,0,0,0,823,123,1193,0,9,80,21,77,426,532,66,92,346,113,215,31,126,2,88,0,1,1327,1238,93,359,43,372,32,2,17,4,7,161,20,971,9,0,0,1493,497,1,18,2,110,3,15,0,0,4,13,53,44,24,136,106,237,72,257,1296,424,74,108,208,170,159,41,54,16,4,1,0,0,1,9,47.0,37.0,49.0,57.0,49.0,46.0,31.0,38.0,40.0,32.0,44.0,41.0,42.0,59.0,44.0,36.0,39.0,42.0,45.0,47.0,53.0,51.0,43.0,45.0,35.0,36.0,39.0,49.0,39.0,34.0,35.0,30.0,21.0,39.0,25.0,36.0,28.0,33.0,44.0,30.0,32.0,24.0,41.0,32.0,22.0,33.0,22.0,31.0,32.0,24.0,34.0,33.0,38.0,32.0,26.0,25.0,23.0,24.0,17.0,26.0,11.0,23.0,23.0,16.0,14.0,16.0,13.0,17.0,14.0,14.0,6.0,16.0,14.0,11.0,11.0,15.0,13.0,12.0,21.0,19.0,11.0,12.0,13.0,7.0,3.0,8.0,3.0,8.0,3.0,0.0,1.0,4.0,4.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,656,1612,297,0,239,187,230,209,227,197,150,171,151,142,163,115,87,74,58,80,46,22,14,2,1,0,2498,17,18,32,0,2500,20,13,32,0,664,11,32,363,62,16,761,656,0,1420,1126,19,0,2,330,5,0,0,0,0,0,0,0,2228,0,14,27,171,20,0,2,212,2119,0,305,472,71,14,3,1700,0,2.1598837209302326,0.0,3.1904761904761907,0.0,6.886549707602339,5,7,71,5,0,0,97,641,0,64,87,31,80,120,134,124,51,62,27,18,9,5,1,1,3,776,50,650,176,603,223,94,732,465,361,66,760,455,371,15,811,721,105,597,229,127,470,163,663,493,333,293,533,321,505,317,509,34,792,193,475,142,16,5,627,199,0,0,75,2,0,0,0,0,0,0,0,749,0,1.5968712394705171,1.489771359807461,1.0,1.032258064516129,1.032258064516129,51.65617433414044 +PA020606,40606,Chiriquí,David,Las Lomas,9349,22,341,10,0,2,0,0,1,0,1,0,10,0,0,938,6325,443,50,7521,185,2,0,0,39,9,7675,0,8,9,4,23,21,0,16,4878,2240,521,18,78,1,20,7522,91,41,1,0,101,7756,0,477,315,237,874,63,0,2070,868,4404,357,15,42,7286,85,241,56,28,60,0,7677,5,62,1,8,2,1,4307,3301,0,145,2,1,4492,2525,362,63,19,1,2,1,6,248,32,5,8945,791,6.053530288657,13.267651443285,6.400325247323486,16.697248949722184,1.017276946879835,3.414388860237236,2.2372356884992266,7900,4231,9130,657,1497,331,386,276,97,356,98,109,200,29,489,181,77,201,116,165,125,21001,2778,0,9846,13933,0,19731,4048,0,22227,1552,0,8136,15643,0,6823,1313,14915,728,0,804,307,408,43,528,559,675,593,600,2541,3,4,24,773,998,1816,807,1165,4759,53,251,586,788,955,1368,1282,414,186,47,397,3,11,7,24,0,9815,1052,10432,0,73,376,199,1157,4955,3400,481,439,7051,565,1467,384,1020,25,140,33,25,12325,12972,2383,4907,449,2727,144,4,59,37,51,557,108,8204,434,0,0,10137,7188,27,262,401,2707,153,392,32,0,36,488,1429,996,664,2482,176,1703,848,2045,12052,2084,751,1064,1535,1828,2146,1138,1228,600,236,67,65,28,41,434,348.0,367.0,423.0,380.0,418.0,423.0,412.0,413.0,425.0,389.0,439.0,460.0,396.0,410.0,424.0,407.0,423.0,412.0,439.0,403.0,427.0,437.0,459.0,449.0,398.0,436.0,458.0,432.0,456.0,424.0,435.0,395.0,410.0,382.0,369.0,347.0,354.0,356.0,352.0,343.0,317.0,315.0,337.0,343.0,330.0,326.0,311.0,315.0,323.0,292.0,340.0,244.0,296.0,264.0,279.0,251.0,254.0,265.0,237.0,219.0,213.0,208.0,185.0,212.0,158.0,166.0,144.0,133.0,125.0,129.0,107.0,114.0,101.0,108.0,83.0,90.0,84.0,65.0,82.0,66.0,68.0,55.0,59.0,49.0,45.0,36.0,42.0,26.0,34.0,18.0,18.0,13.0,18.0,20.0,8.0,6.0,5.0,5.0,3.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6127,17037,2133,0,1936,2062,2129,2084,2170,2206,1991,1752,1642,1567,1423,1226,976,697,513,387,276,156,77,20,7,0,24855,232,171,39,0,24862,257,139,39,0,6347,293,2006,3624,599,192,6112,6124,0,10780,14288,229,0,46,3602,81,19,11,0,4,10,5,0,21519,0,876,638,1450,118,22,24,1936,20233,0,5685,6346,1193,119,14,11940,0,1.8177697189483228,0.0,2.685433669940517,0.0,9.246985808593903,283,238,612,49,9,13,797,5899,0,462,335,206,408,709,882,1048,731,1277,719,412,227,218,84,79,93,7763,137,7296,604,7049,851,1195,6705,7176,724,2447,5453,4294,3606,1401,6499,7452,448,7193,707,4599,2594,3719,4181,6191,1709,3405,4495,1195,6705,797,7103,77,7823,1317,4500,1914,169,4,4754,3146,0,13,997,18,5,8,0,1,4,3,0,6851,0,1.559337044534413,1.6411943319838056,1.2156862745098038,1.0145772594752187,1.0145772594752187,48.40974683544304 +PA020607,40607,Chiriquí,David,Pedregal,5620,69,263,29,0,0,0,1,0,0,0,1,1,0,0,68,4622,379,94,4920,149,3,0,1,73,17,5083,0,5,35,2,11,20,0,7,4543,324,257,11,17,4,7,5009,42,21,0,0,91,5163,1,217,99,182,268,51,0,102,576,4071,356,10,48,4989,61,4,85,13,10,1,5145,1,4,0,2,8,3,2060,2960,1,131,7,4,4660,101,183,56,60,7,0,0,10,43,43,0,5896,88,6.413632686084142,20.024271844660195,6.656957928802589,21.80056634304207,1.0230486151462328,3.4989347278713927,2.2159597133449545,5284,2628,6184,360,1415,219,227,184,52,273,57,54,136,5,373,145,52,128,175,25,51,13846,2315,0,4673,11488,0,12237,3924,0,15129,1032,0,4972,11189,0,4427,545,10580,609,0,646,183,270,60,342,433,559,447,445,2036,0,2,46,606,863,1469,630,894,3708,5,109,193,297,317,496,529,319,110,9,129,1,1,2,5,0,5944,797,7756,0,65,359,127,1076,3139,2865,371,305,3264,430,663,268,1315,18,48,582,51,8293,8785,1003,2426,238,2824,74,3,20,51,45,576,87,4990,159,0,0,8217,4508,47,120,180,1211,78,131,5,0,52,169,573,430,311,1706,589,1240,456,1215,7997,2076,576,895,1167,1267,1460,529,525,235,117,30,27,6,12,159,204.0,218.0,253.0,242.0,282.0,286.0,249.0,286.0,284.0,277.0,303.0,288.0,251.0,271.0,311.0,278.0,322.0,294.0,311.0,293.0,309.0,288.0,336.0,297.0,277.0,263.0,256.0,246.0,213.0,203.0,234.0,215.0,197.0,205.0,209.0,199.0,191.0,207.0,192.0,183.0,200.0,215.0,193.0,218.0,202.0,197.0,197.0,208.0,202.0,176.0,191.0,210.0,192.0,197.0,195.0,191.0,193.0,213.0,182.0,186.0,200.0,161.0,179.0,153.0,184.0,172.0,126.0,136.0,127.0,116.0,99.0,103.0,99.0,103.0,103.0,73.0,82.0,74.0,62.0,67.0,49.0,42.0,56.0,51.0,41.0,35.0,38.0,27.0,25.0,20.0,11.0,18.0,16.0,8.0,7.0,9.0,5.0,4.0,6.0,1.0,3.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4005,11053,2020,0,1199,1382,1424,1498,1507,1181,1060,972,1028,980,985,965,877,677,507,358,239,145,60,25,9,0,16873,75,101,29,0,16878,88,83,29,0,3990,365,1944,2342,637,208,3590,4002,0,7518,9441,119,0,27,875,25,1,5,2,7,0,4,0,16132,0,451,478,1699,144,18,26,2040,12222,0,2522,3512,1068,140,8,9828,0,2.1405102177106987,0.0,3.0627233028979752,0.0,8.50550415739548,160,175,612,52,7,15,747,3516,0,246,320,213,399,599,713,754,466,702,362,197,116,95,37,31,32,5160,124,4836,448,4725,559,872,4412,4971,313,1340,3944,3116,2168,919,4365,4940,344,4837,447,3120,1717,1840,3444,3905,1379,1866,3418,668,4616,368,4916,39,5245,960,2659,1555,110,1,2927,2357,0,11,286,18,0,4,2,4,0,2,0,4957,0,1.5691579943235572,1.6622516556291391,1.2727272727272727,1.0354609929078014,1.0354609929078014,52.28046934140802 +PA020608,40608,Chiriquí,David,San Carlos,2235,5,2,0,1,1,0,1,5,0,0,0,1,0,0,23,1549,150,21,1689,33,7,0,0,12,2,1657,0,16,14,5,9,42,0,0,750,639,276,4,63,1,10,1683,39,3,0,0,18,1743,32,116,83,76,127,65,0,352,103,1200,80,8,0,1672,47,1,9,11,3,0,1738,2,1,1,1,0,0,1049,644,0,40,10,0,703,747,160,89,24,1,0,7,0,7,2,3,942,1309,6.6472049689441,21.063975155279504,6.952173913043478,22.849068322981367,1.0114744693057949,3.987951807228916,2.4738955823293174,1764,990,1894,54,219,82,62,33,32,61,13,13,81,8,105,37,14,22,46,14,34,4350,732,0,2347,2735,0,3574,1508,0,4748,334,0,1448,3634,0,937,511,3391,243,0,248,58,56,10,97,150,183,129,123,765,0,1,7,118,147,269,117,155,766,17,29,78,113,156,276,477,198,85,7,211,0,1,6,29,0,1960,107,2536,0,5,44,30,340,922,1029,96,149,1407,150,228,57,95,11,78,1,25,2619,2687,549,828,76,516,44,0,8,31,16,223,32,1801,284,0,0,2146,1153,8,28,92,885,68,194,29,0,44,190,477,203,92,339,82,236,95,309,2363,337,131,166,264,356,401,172,306,198,135,44,71,25,53,284,47.0,52.0,57.0,68.0,83.0,73.0,62.0,79.0,97.0,85.0,80.0,76.0,87.0,71.0,81.0,71.0,59.0,74.0,85.0,89.0,61.0,78.0,82.0,69.0,77.0,56.0,71.0,68.0,43.0,58.0,68.0,68.0,64.0,65.0,70.0,66.0,75.0,61.0,73.0,73.0,84.0,78.0,90.0,80.0,80.0,68.0,91.0,85.0,86.0,84.0,87.0,60.0,62.0,70.0,65.0,65.0,63.0,67.0,67.0,62.0,64.0,59.0,67.0,45.0,44.0,51.0,39.0,37.0,43.0,27.0,43.0,26.0,50.0,29.0,26.0,28.0,29.0,30.0,29.0,28.0,16.0,23.0,22.0,18.0,13.0,14.0,10.0,11.0,11.0,13.0,11.0,5.0,8.0,7.0,3.0,3.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1098,3497,711,0,307,396,395,378,367,296,335,348,412,414,344,324,279,197,174,144,92,59,34,9,2,0,5105,119,76,6,0,5108,134,58,6,0,988,32,69,1266,187,45,1621,1098,0,2755,2450,101,0,0,817,2,0,0,0,0,0,0,0,4487,0,62,30,62,8,2,3,579,4560,0,1162,1337,328,33,8,2438,0,1.8472990216928968,0.0,2.700127877237852,0.0,9.730870712401057,27,20,21,5,0,1,178,1512,0,191,117,46,89,114,149,163,114,194,139,106,70,115,52,92,12,1732,32,1620,144,1548,216,325,1439,1427,337,737,1027,1142,622,434,1330,1583,181,1561,203,1050,511,911,853,1246,518,1016,748,393,1371,357,1407,27,1737,351,1062,326,25,8,1213,551,0,0,250,0,0,0,0,0,0,0,0,1514,0,1.4779909706546277,1.516365688487585,1.0909090909090908,1.0759493670886076,1.0759493670886076,53.37528344671202 +PA020609,40609,Chiriquí,David,San Pablo Nuevo,1220,4,5,0,0,0,0,0,0,0,0,15,0,0,0,5,780,31,13,797,19,4,2,0,7,0,809,0,0,4,0,1,14,0,1,14,538,230,5,41,0,1,811,7,5,0,0,6,829,2,121,141,18,100,18,0,166,47,580,30,6,0,817,8,0,2,2,0,0,826,0,0,0,0,3,0,400,415,0,10,4,0,2,774,37,9,2,1,0,3,0,0,1,0,0,1244,6.986469864698647,21.993849938499384,6.985239852398524,22.44649446494465,1.0180940892641737,3.675512665862485,2.316043425814234,859,526,1007,21,141,37,25,35,8,33,8,13,16,2,56,23,8,2,15,0,18,2282,296,0,1162,1416,0,1721,857,0,2404,174,0,805,1773,0,657,148,1657,116,0,119,27,51,3,65,87,105,78,76,327,0,1,1,90,92,181,83,105,385,1,6,41,78,95,111,125,148,31,4,58,0,1,0,3,0,980,109,1178,0,14,47,35,119,479,469,47,64,733,48,120,26,101,2,43,0,1,1334,1397,294,496,32,243,5,0,2,2,4,56,8,962,3,0,0,1179,583,1,11,56,349,27,57,4,0,2,50,209,104,70,162,35,131,107,219,1464,137,47,89,157,183,245,110,153,86,33,6,12,5,1,3,30.0,39.0,35.0,49.0,55.0,44.0,45.0,49.0,61.0,57.0,49.0,46.0,30.0,55.0,38.0,30.0,59.0,36.0,47.0,36.0,41.0,44.0,45.0,46.0,46.0,36.0,32.0,35.0,42.0,40.0,40.0,37.0,45.0,53.0,49.0,40.0,53.0,31.0,52.0,25.0,38.0,41.0,45.0,36.0,29.0,41.0,39.0,33.0,43.0,29.0,34.0,22.0,25.0,29.0,24.0,31.0,30.0,32.0,31.0,23.0,25.0,25.0,26.0,19.0,17.0,27.0,18.0,13.0,11.0,18.0,14.0,11.0,13.0,8.0,13.0,15.0,8.0,7.0,7.0,10.0,6.0,4.0,4.0,1.0,5.0,4.0,3.0,5.0,1.0,4.0,2.0,1.0,2.0,2.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,682,1807,242,0,208,256,218,208,222,185,224,201,189,185,134,147,112,87,59,47,20,17,7,4,1,0,2683,32,13,3,0,2683,37,8,3,0,646,20,85,575,60,17,646,682,0,1277,1436,18,0,2,207,5,0,0,0,0,0,0,0,2517,0,35,41,376,14,3,4,103,2155,0,656,764,105,24,2,1180,0,1.8550474547023297,0.0,2.6775032509752927,0.0,8.952032222629073,13,14,149,5,1,2,48,627,0,63,35,20,34,67,88,112,70,133,87,55,32,29,13,6,0,849,10,787,72,749,110,158,701,766,93,289,570,539,320,130,729,816,43,767,92,485,282,406,453,547,312,485,374,57,802,77,782,13,846,161,508,177,13,0,582,277,0,0,57,2,0,0,0,0,0,0,0,800,0,1.5529685681024448,1.6263096623981377,1.0,1.0303030303030305,1.0303030303030305,48.91036088474971 +PA020610,40610,Chiriquí,David,San Pablo Viejo,7300,21,35,0,0,0,0,0,7,0,0,0,5,0,0,485,4502,84,18,5020,51,9,1,0,5,3,5035,0,6,4,1,5,32,0,6,1955,2549,435,8,100,2,40,5005,45,20,0,0,19,5089,495,692,249,183,473,175,0,2549,425,1982,116,10,7,5037,17,0,11,5,19,0,4647,42,388,0,4,2,6,4200,854,0,33,2,0,455,3813,627,43,19,3,0,4,1,117,3,4,4020,3348,6.602247191011236,20.38753830439224,6.938304392236977,22.745250255362613,1.0106111220279033,3.7606602475928472,2.4613873059540183,5148,3191,5681,347,556,259,164,114,100,159,53,50,155,64,169,77,35,95,77,39,38,13855,1317,0,9547,5625,0,13174,1998,0,14391,781,0,5236,9936,0,3126,2110,9506,430,0,458,185,237,37,312,342,445,347,375,1206,1,1,40,355,433,764,378,505,2834,13,88,215,337,523,918,1435,976,344,36,911,4,12,6,99,0,7111,424,6103,0,24,178,63,712,3071,1938,251,131,5616,404,582,155,515,23,145,8,19,7634,8407,2486,2961,196,1625,150,1,22,26,11,204,41,4853,1659,0,0,4844,3871,44,97,293,3214,298,871,106,0,26,661,2248,1064,315,1194,152,737,406,732,6882,502,243,333,497,773,1032,987,1190,864,448,172,217,97,145,1659,204.0,219.0,207.0,239.0,263.0,236.0,255.0,268.0,249.0,263.0,271.0,263.0,271.0,258.0,226.0,252.0,263.0,209.0,233.0,237.0,214.0,230.0,229.0,238.0,241.0,257.0,226.0,196.0,233.0,261.0,267.0,241.0,290.0,272.0,271.0,275.0,324.0,285.0,257.0,262.0,253.0,289.0,288.0,259.0,271.0,226.0,289.0,240.0,253.0,196.0,221.0,181.0,173.0,187.0,178.0,166.0,135.0,159.0,152.0,146.0,139.0,139.0,123.0,115.0,98.0,105.0,89.0,92.0,92.0,83.0,61.0,51.0,84.0,62.0,49.0,40.0,44.0,42.0,34.0,24.0,28.0,20.0,28.0,28.0,23.0,22.0,22.0,16.0,10.0,9.0,9.0,8.0,7.0,6.0,6.0,2.0,5.0,1.0,1.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3692,11139,1210,0,1132,1271,1289,1194,1152,1173,1341,1403,1360,1204,940,758,614,461,307,184,127,79,36,13,3,0,15272,380,336,53,0,15282,472,234,53,0,3261,159,229,3892,331,187,4290,3692,0,4693,10974,374,0,9,847,21,3,1,0,2,1,1,0,15156,0,395,202,288,35,18,21,1056,14026,0,4838,4499,698,63,32,5911,0,1.5385147282533536,0.0,2.3738297409100806,0.0,10.650395860607194,139,69,134,15,7,11,421,4352,0,324,105,69,120,210,248,373,383,691,573,491,301,403,180,266,406,5105,43,4991,157,4846,302,866,4282,4661,487,3173,1975,3082,2066,1581,3567,4993,155,4909,239,3856,1053,3531,1617,4524,624,3768,1380,772,4376,497,4651,77,5071,769,3301,931,147,7,3417,1731,0,4,238,9,1,0,0,0,0,1,0,4895,0,1.4808923375363725,1.6308438409311348,1.1785714285714286,1.0595238095238095,1.0595238095238095,47.56351981351981 +PA020604,40611,Chiriquí,David,David Este,9821,104,706,23,1,1,0,1,0,0,0,0,2,0,0,2026,6488,187,42,8556,145,2,4,0,29,7,8703,0,7,4,1,9,7,0,12,8528,120,43,8,15,3,26,8523,33,61,0,0,126,8743,20,349,212,491,632,207,0,1411,1350,5434,351,62,135,8548,59,19,102,3,11,1,8662,18,40,12,10,0,1,5359,3269,1,106,4,4,8404,242,44,13,1,0,0,0,0,14,24,1,10647,12,6.778711162255466,19.04476409666283,6.909090909090909,21.163521288837742,1.01749971405696,3.698616035685691,2.369324030653094,8898,4264,8671,532,2321,449,491,401,129,415,95,112,335,32,595,220,108,225,201,79,178,22515,3363,0,10667,15211,0,19627,6251,0,24541,1337,0,7533,18345,0,6145,1388,17601,744,0,774,246,418,68,449,559,679,570,566,2500,7,11,72,699,988,1905,796,1182,5923,26,295,584,814,926,1262,1738,985,230,34,507,0,7,9,49,0,10135,1266,12143,0,44,479,206,2761,4508,3880,595,399,7144,774,1508,264,1387,35,58,36,27,12937,14208,2578,4596,278,3562,143,3,40,33,24,806,129,8251,216,0,0,10024,8436,77,323,448,3478,206,500,52,0,33,558,1740,1132,830,2617,148,1866,791,1686,11996,1967,769,1259,2063,2472,2689,1228,1287,639,269,91,100,37,63,216,281.0,308.0,342.0,336.0,358.0,370.0,400.0,368.0,447.0,391.0,392.0,408.0,376.0,340.0,343.0,373.0,363.0,403.0,377.0,390.0,407.0,430.0,459.0,433.0,400.0,416.0,424.0,378.0,389.0,373.0,397.0,372.0,395.0,372.0,354.0,330.0,337.0,312.0,344.0,333.0,315.0,305.0,356.0,315.0,310.0,331.0,304.0,312.0,307.0,283.0,279.0,329.0,283.0,295.0,331.0,290.0,328.0,332.0,345.0,307.0,350.0,319.0,317.0,306.0,319.0,304.0,287.0,276.0,278.0,250.0,242.0,236.0,241.0,211.0,204.0,181.0,179.0,137.0,122.0,129.0,99.0,105.0,92.0,92.0,82.0,65.0,61.0,51.0,58.0,50.0,49.0,32.0,40.0,27.0,17.0,17.0,12.0,10.0,4.0,6.0,2.0,2.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5460,17429,4256,0,1625,1976,1859,1906,2129,1980,1890,1656,1601,1537,1517,1602,1611,1395,1134,748,470,285,165,49,10,0,26547,352,212,34,0,26560,386,165,34,0,5516,388,3081,4786,1111,447,6358,5458,0,10065,16762,318,0,42,1590,35,4,4,0,0,1,1,0,25468,0,1135,714,1426,113,33,36,2294,21394,0,5566,6027,2929,202,37,12384,0,1.9428525563849424,0.0,2.717093023255814,0.0,9.867599926321606,423,263,589,68,19,21,902,6613,0,583,387,223,432,785,999,1137,828,1440,781,494,271,278,106,124,28,8746,152,8372,526,8124,774,1599,7299,8428,470,3301,5597,5218,3680,2155,6743,8352,546,8261,637,5493,2768,3948,4950,6903,1995,4024,4874,838,8060,407,8491,126,8772,1752,4145,2755,246,3,4905,3993,0,15,537,18,2,4,0,0,1,1,0,8320,0,1.4534321986293677,1.5962251432423322,1.148936170212766,1.0417495029821071,1.0417495029821071,54.2093728927849 +PA020604,40612,Chiriquí,David,David Sur,11219,223,1610,129,0,3,4,4,1,0,1,3,6,0,0,2520,7994,228,17,10576,166,1,2,0,11,3,10739,0,4,2,0,3,5,0,6,9241,1299,184,14,10,0,11,10560,23,75,2,0,99,10759,8,712,145,636,771,150,0,2646,1871,5742,271,70,159,10508,51,17,165,5,13,0,10583,25,119,11,18,1,2,7245,3319,0,188,5,2,10528,143,2,7,0,0,0,0,0,72,7,0,13195,8,6.925887754145976,22.591867328773542,6.965707860957556,23.07214466410569,1.0203550515847195,3.790315085045079,2.433869318709917,10987,5333,11586,723,2205,517,505,416,160,484,101,138,449,63,551,177,106,241,215,62,136,29317,2802,0,15941,16178,0,27639,4480,0,30618,1501,0,9954,22165,0,7801,2153,21342,823,0,869,315,414,67,575,649,853,670,688,2769,1,10,80,898,1109,2224,948,1365,7472,10,215,615,844,1153,1707,2372,1531,446,77,1029,5,26,17,96,0,13796,1236,14346,0,52,557,183,2880,6254,4221,469,522,9976,966,1621,404,1612,68,131,12,25,15877,17790,3702,6111,463,4096,318,5,75,45,53,672,141,8909,329,0,0,11652,10196,85,250,543,5112,397,1031,112,0,48,1023,2809,1747,948,3146,212,1973,986,2140,13216,2173,1030,1681,2419,2831,3486,1897,2136,1184,605,206,202,99,173,329,349.0,398.0,410.0,391.0,431.0,438.0,436.0,477.0,458.0,501.0,506.0,497.0,476.0,488.0,508.0,528.0,519.0,580.0,576.0,537.0,582.0,555.0,628.0,556.0,518.0,556.0,559.0,487.0,446.0,442.0,453.0,429.0,460.0,419.0,378.0,403.0,417.0,433.0,439.0,431.0,451.0,431.0,430.0,433.0,430.0,418.0,447.0,427.0,447.0,407.0,467.0,456.0,443.0,436.0,431.0,391.0,367.0,407.0,418.0,407.0,429.0,362.0,372.0,361.0,258.0,327.0,289.0,274.0,248.0,269.0,229.0,219.0,191.0,211.0,181.0,177.0,149.0,160.0,145.0,123.0,141.0,101.0,103.0,99.0,79.0,74.0,59.0,56.0,47.0,50.0,56.0,38.0,28.0,43.0,19.0,14.0,9.0,9.0,7.0,11.0,2.0,3.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6764,22657,4246,0,1979,2310,2475,2740,2839,2490,2139,2123,2175,2146,2233,1990,1782,1407,1031,754,523,286,184,50,11,0,32634,569,432,32,0,32648,639,348,32,0,6657,468,2083,6125,1166,551,9855,6762,0,9828,23360,479,0,54,2204,37,6,11,2,5,2,3,0,31343,0,1108,650,1143,144,152,56,2399,28015,0,7882,7659,3078,176,38,14834,0,1.7900203925567169,0.0,2.6273980526366527,0.0,10.287432797695072,412,232,453,58,48,27,870,8887,0,343,299,188,445,819,1063,1348,1035,1799,1208,787,531,513,233,334,33,10858,129,10446,541,10218,769,2001,8986,10421,566,4999,5988,6940,4047,2787,8200,10624,363,10305,682,7591,2714,5931,5056,9253,1734,5824,5163,1977,9010,779,10208,239,10748,2089,5733,2852,313,13,5940,5047,0,15,625,13,3,3,2,1,2,2,0,10321,0,1.4433636363636364,1.6172727272727272,1.144927536231884,1.0489795918367346,1.0489795918367346,52.4518976972786 +PA020701,40701,Chiriquí,Dolega,Dolega,1820,3,73,2,2,0,0,1,4,0,0,1,5,0,0,6,1421,26,21,1428,25,3,1,0,15,2,1429,0,3,8,1,7,18,0,8,699,654,93,5,14,0,9,1435,21,5,0,0,13,1474,2,128,111,85,60,38,0,76,181,1123,81,8,5,1430,8,0,27,7,1,1,1469,0,2,0,2,0,1,694,750,0,29,0,1,1000,404,21,40,3,1,1,1,0,1,1,1,969,942,6.887017543859649,20.02175438596491,6.922105263157895,22.534736842105264,1.012890094979647,3.7116689280868393,2.48236092265943,1499,803,1748,55,325,54,68,59,22,96,20,11,75,3,87,50,19,27,20,84,53,3976,591,0,2042,2525,0,3628,939,0,4243,324,0,1319,3248,0,1052,267,3034,214,0,219,31,59,8,85,120,155,95,129,569,0,0,3,108,143,295,134,184,1007,2,23,81,130,192,210,155,270,36,10,96,0,1,1,16,0,1831,166,2157,0,4,84,44,370,843,752,149,43,1252,123,359,53,125,4,48,0,2,2353,2485,444,822,73,589,29,0,7,2,5,154,20,1740,7,0,0,1919,1407,4,33,100,550,32,93,16,0,2,102,299,225,115,342,57,364,171,320,2375,299,132,199,340,316,414,304,246,90,53,13,17,14,19,7,62.0,62.0,64.0,83.0,67.0,79.0,60.0,62.0,68.0,77.0,79.0,84.0,65.0,60.0,78.0,85.0,76.0,74.0,63.0,64.0,76.0,68.0,77.0,81.0,75.0,77.0,82.0,70.0,67.0,73.0,61.0,58.0,70.0,57.0,64.0,57.0,68.0,65.0,70.0,54.0,52.0,48.0,77.0,62.0,60.0,53.0,57.0,64.0,67.0,51.0,50.0,72.0,43.0,66.0,58.0,53.0,59.0,51.0,49.0,49.0,42.0,57.0,61.0,52.0,48.0,37.0,50.0,38.0,37.0,32.0,35.0,38.0,34.0,27.0,24.0,25.0,32.0,24.0,25.0,17.0,22.0,7.0,16.0,19.0,15.0,18.0,7.0,9.0,7.0,10.0,11.0,9.0,2.0,6.0,4.0,2.0,4.0,2.0,5.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1050,3133,655,0,338,346,366,362,377,369,310,314,299,292,289,261,260,194,158,123,79,51,32,15,3,0,4720,55,41,22,0,4723,68,25,22,0,1082,54,211,914,184,57,1286,1050,0,2355,2408,75,0,4,449,26,0,2,0,0,1,0,0,4356,0,119,71,159,9,3,6,209,4262,0,995,1199,380,15,23,2226,0,1.8955916473317864,0.0,2.7914625612316306,0.0,9.384456386936751,37,22,72,1,1,2,87,1277,0,104,68,36,78,140,158,157,152,235,135,84,46,43,21,36,0,1469,30,1366,133,1311,188,314,1185,1212,287,356,1143,898,601,233,1266,1398,101,1335,164,885,450,703,796,1176,323,781,718,360,1139,344,1155,20,1479,282,788,387,42,7,914,585,0,0,108,6,0,1,0,0,0,0,0,1384,0,1.5624169986719787,1.650066401062417,1.2222222222222223,1.03921568627451,1.03921568627451,54.03202134756504 +PA020702,40702,Chiriquí,Dolega,Dos Ríos,748,0,5,1,0,0,0,0,0,0,0,0,1,0,0,2,577,14,14,590,3,3,2,0,3,6,584,0,0,13,0,5,5,0,0,532,7,26,8,31,0,3,592,8,2,0,0,5,607,0,55,22,18,35,17,0,4,36,538,27,2,0,585,6,6,4,5,1,0,606,0,0,0,1,0,0,241,357,0,9,0,0,18,578,0,9,0,0,0,1,0,1,0,0,0,755,6.936241610738255,14.031879194630871,6.959731543624161,22.421140939597315,1.013179571663921,3.642504118616145,2.359143327841845,616,328,658,22,115,27,32,13,3,25,5,5,8,0,32,17,10,11,15,2,10,1466,282,0,535,1213,0,1218,530,0,1634,114,0,461,1287,0,393,68,1210,77,0,77,11,21,2,34,48,63,59,38,214,0,0,0,52,52,112,49,69,410,3,52,37,46,49,102,85,22,19,1,19,1,0,0,1,0,594,38,965,0,0,8,28,170,303,396,51,45,363,37,125,20,32,0,38,0,1,961,896,153,252,25,165,8,1,10,2,4,94,10,736,0,0,0,749,561,1,45,18,187,15,20,1,0,2,32,78,65,31,113,33,116,43,119,983,142,44,76,119,126,166,77,67,27,15,5,4,0,6,0,29.0,29.0,21.0,30.0,38.0,20.0,19.0,32.0,17.0,25.0,26.0,21.0,24.0,31.0,26.0,29.0,26.0,18.0,34.0,28.0,31.0,30.0,32.0,37.0,26.0,34.0,24.0,36.0,29.0,17.0,21.0,24.0,25.0,25.0,16.0,16.0,14.0,17.0,17.0,17.0,20.0,23.0,24.0,24.0,23.0,20.0,21.0,28.0,21.0,21.0,36.0,21.0,25.0,23.0,22.0,20.0,22.0,22.0,21.0,20.0,26.0,19.0,21.0,17.0,17.0,15.0,22.0,14.0,11.0,12.0,16.0,16.0,11.0,9.0,14.0,9.0,13.0,11.0,14.0,11.0,7.0,14.0,11.0,4.0,10.0,12.0,3.0,5.0,3.0,6.0,1.0,3.0,4.0,1.0,0.0,1.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,388,1180,289,0,147,113,128,135,156,140,111,81,114,111,127,105,100,74,66,58,46,29,9,7,0,0,1799,16,19,23,0,1799,25,10,23,0,455,16,29,300,57,7,605,388,0,1230,594,33,0,1,139,4,0,0,0,0,0,0,0,1713,0,6,11,8,5,0,0,25,1802,0,314,465,150,15,14,899,0,2.210459183673469,0.0,3.043875685557587,0.0,9.093699515347334,2,3,3,2,0,0,13,593,0,75,38,17,36,61,76,77,48,76,45,28,13,13,5,7,0,603,13,557,59,531,85,109,507,513,103,122,494,396,220,128,488,561,55,549,67,338,211,247,369,381,235,275,341,283,333,163,453,11,605,121,344,143,8,0,382,234,0,0,38,2,0,0,0,0,0,0,0,576,0,1.5600649350649352,1.4545454545454546,1.0,1.0555555555555556,1.0555555555555556,55.16396103896104 +PA020703,40703,Chiriquí,Dolega,Los Anastacios,1726,2,35,0,0,0,0,0,0,0,0,0,0,0,0,238,1134,11,11,1375,8,1,0,0,6,4,1379,0,1,2,0,1,6,0,5,61,1296,16,4,7,0,10,1359,8,2,0,1,24,1394,2,122,96,43,82,24,0,233,150,975,33,3,0,1377,7,1,3,3,2,1,1386,0,6,0,1,1,0,830,555,0,7,2,0,31,1336,13,3,1,1,0,0,0,6,1,2,1356,407,6.926811594202898,23.560144927536232,6.9543478260869565,23.76014492753623,1.01506456241033,3.5107604017216643,2.2962697274031565,1415,767,1487,81,261,45,53,32,12,64,14,10,18,3,82,24,17,21,25,2,11,3579,437,0,1910,2106,0,3276,740,0,3821,195,0,1200,2816,0,1015,185,2670,146,0,147,33,61,6,75,102,128,98,116,486,1,0,4,93,137,311,116,184,911,0,20,80,104,118,181,337,45,45,4,71,0,1,0,1,0,1716,165,1747,0,21,89,35,248,706,686,64,43,1163,114,288,66,194,4,32,0,4,2113,2149,356,827,84,578,11,0,5,4,3,113,19,1616,19,0,0,1699,1210,5,39,56,509,39,69,2,0,4,99,246,161,103,377,53,384,139,315,2042,219,102,185,286,310,480,209,217,109,47,12,11,4,10,19,64.0,55.0,69.0,58.0,62.0,63.0,63.0,64.0,70.0,66.0,51.0,74.0,61.0,64.0,65.0,45.0,69.0,68.0,68.0,60.0,56.0,67.0,60.0,71.0,69.0,67.0,67.0,81.0,71.0,57.0,79.0,61.0,70.0,62.0,57.0,65.0,58.0,66.0,63.0,63.0,60.0,58.0,51.0,60.0,56.0,59.0,52.0,62.0,45.0,40.0,67.0,51.0,45.0,56.0,42.0,39.0,42.0,52.0,41.0,51.0,42.0,27.0,42.0,34.0,35.0,32.0,36.0,32.0,34.0,35.0,37.0,31.0,28.0,26.0,21.0,22.0,11.0,17.0,11.0,4.0,14.0,7.0,8.0,12.0,8.0,4.0,6.0,10.0,6.0,7.0,5.0,6.0,5.0,3.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,949,2829,484,0,308,326,315,310,323,343,329,315,285,258,261,225,180,169,143,65,49,33,20,3,2,0,4193,32,32,5,0,4193,36,28,5,0,1067,34,68,749,121,31,1244,948,0,2049,2184,29,0,3,178,32,0,0,0,0,0,5,0,4044,0,90,42,39,6,0,1,128,3956,0,935,1135,257,17,6,1912,0,1.8539630836047771,0.0,2.62589928057554,0.0,9.298451431252932,26,15,19,5,0,0,60,1290,0,95,58,35,59,115,151,220,131,222,137,78,35,45,13,16,5,1386,29,1326,89,1286,129,207,1208,1211,204,387,1028,880,535,218,1197,1316,99,1277,138,826,451,660,755,1085,330,758,657,253,1162,200,1215,14,1401,279,828,288,20,0,914,501,0,0,46,7,0,0,0,0,0,2,0,1360,0,1.493286219081272,1.5187279151943462,1.0666666666666669,1.0212765957446808,1.0212765957446808,50.78374558303887 +PA020705,40704,Chiriquí,Dolega,Potrerillos,887,6,11,0,0,0,0,0,32,0,1,1,3,0,0,3,462,91,7,545,11,0,2,0,5,0,471,0,0,32,0,9,41,0,10,210,158,132,7,52,0,4,513,40,3,0,0,7,563,1,159,34,11,78,58,0,1,45,400,109,0,8,462,74,0,20,2,5,0,554,0,6,0,1,0,2,206,289,0,36,32,0,339,132,88,1,1,1,0,0,0,0,1,0,0,941,6.976744186046512,23.894454382826478,6.996422182468694,23.96779964221825,1.0124333925399644,3.1563055062166963,1.8614564831261105,574,306,546,24,79,11,21,17,8,25,10,8,249,2,40,25,9,4,8,33,16,1318,426,0,432,1312,0,1166,578,0,1606,138,0,369,1375,0,326,43,1241,134,0,136,13,15,2,43,51,76,65,53,355,0,1,3,54,75,141,51,60,345,1,15,10,7,9,34,30,59,5,0,34,0,0,0,1,0,675,27,854,0,1,14,4,135,232,355,54,78,259,49,70,22,52,2,234,0,9,1016,864,70,270,29,239,58,0,22,9,4,67,5,751,18,0,0,1003,377,3,12,10,113,4,33,1,0,3,29,44,38,17,48,162,106,33,222,1012,93,37,75,183,158,108,60,61,28,27,5,11,0,4,18,38.0,40.0,32.0,26.0,38.0,39.0,24.0,28.0,27.0,32.0,31.0,27.0,18.0,26.0,23.0,30.0,28.0,32.0,24.0,30.0,26.0,37.0,35.0,40.0,27.0,35.0,25.0,24.0,24.0,30.0,26.0,24.0,35.0,27.0,21.0,22.0,16.0,18.0,14.0,19.0,16.0,25.0,18.0,14.0,17.0,16.0,13.0,15.0,24.0,24.0,27.0,20.0,19.0,27.0,29.0,25.0,15.0,20.0,26.0,19.0,14.0,14.0,15.0,16.0,19.0,14.0,11.0,19.0,19.0,10.0,19.0,10.0,14.0,7.0,14.0,7.0,11.0,12.0,6.0,12.0,12.0,10.0,10.0,8.0,3.0,5.0,6.0,5.0,10.0,1.0,7.0,4.0,3.0,2.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,449,1156,275,0,174,150,125,144,165,138,133,89,90,92,122,105,78,73,64,48,43,27,17,3,0,0,1791,24,45,20,0,1791,35,34,20,0,547,14,133,235,67,6,430,448,0,749,1080,51,0,0,581,13,0,1,0,3,1,0,0,1281,0,21,24,63,1,4,1,44,1722,0,211,325,125,5,18,1196,0,2.1732954545454546,0.0,3.109278350515464,0.0,7.510106382978724,4,6,19,1,1,1,13,529,0,66,24,15,37,92,65,50,43,69,36,30,13,12,5,8,5,550,24,449,125,431,143,125,449,164,410,23,551,315,259,13,561,509,65,432,142,214,218,187,387,444,130,277,297,225,349,252,322,8,566,157,285,111,21,33,448,126,0,0,107,5,0,0,0,1,1,0,0,460,0,1.6738056013179572,1.4233937397034595,1.2,1.0,1.0,55.12369337979094 +PA020704,40705,Chiriquí,Dolega,Potrerillos Abajo,914,3,11,7,0,0,0,0,23,0,0,0,2,0,0,4,602,36,8,609,33,1,0,0,7,0,628,0,2,9,0,1,9,0,1,473,87,36,1,50,0,3,639,4,1,0,0,6,650,4,129,59,36,26,31,0,23,74,461,92,0,0,603,12,0,28,3,4,0,650,0,0,0,0,0,0,326,309,0,12,2,1,95,484,36,23,6,0,0,2,0,4,0,0,0,960,6.871544715447154,23.346341463414635,6.878048780487805,23.40487804878049,1.015384615384615,3.301538461538461,2.170769230769231,662,381,714,25,103,19,33,19,14,26,9,3,142,3,22,41,10,10,4,6,15,1730,295,0,612,1413,0,1489,536,0,1845,180,0,567,1458,0,480,87,1309,149,0,149,13,32,4,50,58,77,63,60,263,0,0,1,62,63,158,47,75,380,0,27,35,48,46,113,106,15,21,0,48,1,0,2,8,0,801,59,959,0,3,16,9,202,358,331,47,21,487,40,161,11,66,0,73,2,1,1077,1076,134,403,30,251,19,0,3,1,3,43,13,734,6,0,0,967,521,1,20,15,218,19,50,8,0,1,56,116,60,36,102,58,109,78,244,1078,85,56,80,149,189,149,169,95,29,27,14,7,7,13,6,30.0,42.0,27.0,29.0,44.0,35.0,32.0,38.0,29.0,28.0,32.0,39.0,31.0,40.0,29.0,44.0,38.0,36.0,28.0,34.0,36.0,43.0,28.0,33.0,26.0,27.0,25.0,34.0,39.0,36.0,21.0,33.0,28.0,37.0,24.0,29.0,24.0,34.0,36.0,27.0,27.0,18.0,25.0,27.0,20.0,23.0,21.0,20.0,19.0,19.0,25.0,22.0,23.0,25.0,24.0,21.0,15.0,30.0,22.0,21.0,19.0,14.0,24.0,24.0,22.0,26.0,18.0,14.0,18.0,12.0,18.0,10.0,19.0,12.0,7.0,11.0,11.0,15.0,15.0,13.0,10.0,8.0,7.0,8.0,5.0,5.0,7.0,3.0,6.0,3.0,5.0,2.0,3.0,1.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,505,1350,298,0,172,162,171,180,166,161,143,150,117,102,119,109,103,88,66,65,38,24,12,4,1,0,2054,25,56,18,0,2057,36,42,18,0,517,19,156,419,96,18,423,505,0,938,1152,63,0,2,451,5,0,0,0,0,0,0,0,1695,0,7,3,28,2,0,1,7,2105,0,423,517,193,8,25,987,0,1.981601731601732,0.0,2.959663865546218,0.0,8.556432884347423,4,2,8,1,0,1,6,640,0,41,19,17,32,59,77,75,75,95,40,55,22,20,15,17,1,653,9,581,81,550,112,150,512,361,301,83,579,439,223,33,629,623,39,550,112,282,268,290,372,519,143,371,291,314,348,271,391,12,650,149,364,137,12,23,469,193,0,1,77,1,0,0,0,0,0,0,0,583,0,1.5722627737226278,1.570802919708029,1.5384615384615383,1.1290322580645162,1.1290322580645162,54.19939577039275 +PA020706,40706,Chiriquí,Dolega,Rovira,933,5,14,0,0,0,0,0,3,0,0,0,1,0,0,3,636,64,9,681,22,2,0,0,7,0,667,0,0,16,1,6,21,0,1,411,151,80,0,69,0,1,687,17,4,0,0,4,712,0,107,31,22,57,23,0,3,46,583,79,1,0,623,52,0,14,2,21,0,711,1,0,0,0,0,0,229,431,0,30,22,0,0,657,51,1,1,0,0,0,0,2,0,0,0,956,6.956214689265536,23.661016949152543,6.981638418079096,23.824858757062145,1.021067415730337,3.157303370786517,2.0463483146067416,728,398,804,86,127,23,34,9,10,24,6,8,28,0,33,18,12,15,11,40,13,1768,380,0,549,1599,0,1474,674,0,1929,219,0,581,1567,0,519,62,1421,146,0,147,28,30,2,66,72,100,81,68,393,0,0,0,62,116,171,64,91,327,0,6,38,70,46,56,77,10,13,1,10,2,0,1,0,0,813,56,1045,0,1,29,5,113,358,489,30,55,371,78,136,46,73,0,146,1,0,1174,1111,76,373,50,342,6,0,4,0,6,81,18,838,7,0,0,1256,486,1,4,22,122,10,13,0,0,0,21,46,38,25,116,77,242,78,226,1222,128,57,92,204,218,162,95,64,18,9,5,1,2,1,7,41.0,35.0,26.0,35.0,42.0,46.0,44.0,39.0,24.0,39.0,37.0,33.0,35.0,46.0,42.0,47.0,33.0,50.0,35.0,32.0,43.0,52.0,29.0,45.0,31.0,49.0,18.0,37.0,29.0,27.0,31.0,37.0,25.0,32.0,29.0,23.0,23.0,31.0,31.0,32.0,37.0,30.0,27.0,28.0,20.0,22.0,33.0,21.0,29.0,22.0,20.0,25.0,25.0,23.0,16.0,29.0,20.0,22.0,22.0,26.0,21.0,18.0,24.0,18.0,21.0,13.0,22.0,19.0,20.0,17.0,17.0,14.0,18.0,13.0,7.0,14.0,5.0,10.0,11.0,11.0,5.0,5.0,7.0,2.0,8.0,6.0,3.0,3.0,3.0,3.0,0.0,3.0,2.0,2.0,2.0,0.0,1.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,564,1450,271,0,179,192,193,197,200,160,154,140,142,127,109,119,102,91,69,51,27,18,9,4,2,0,2238,14,12,21,0,2239,15,10,21,0,523,32,134,397,82,9,544,564,0,1153,1113,19,0,1,410,8,0,2,0,0,0,0,0,1864,0,11,1,24,2,0,1,42,2204,0,337,491,111,10,7,1329,0,2.1140065146579805,0.0,2.9983922829581995,0.0,7.508096280087527,4,1,9,0,0,0,17,697,0,63,31,10,38,82,133,112,73,83,49,23,19,5,1,2,3,714,14,613,115,598,130,153,575,315,413,27,701,423,305,18,710,684,44,550,178,174,376,195,533,514,214,313,415,329,399,279,449,9,719,169,394,155,10,3,538,190,0,0,91,1,0,0,0,0,0,0,0,636,0,1.6060191518467852,1.5198358413132695,1.5,1.03125,1.03125,51.46153846153846 +PA020707,40707,Chiriquí,Dolega,Tinajas,778,4,2,0,0,0,0,0,0,0,0,0,2,0,0,1,576,44,8,597,24,2,1,0,5,0,607,0,1,3,0,3,15,0,0,5,348,165,4,97,1,9,596,21,1,0,0,11,629,0,48,46,6,40,15,0,26,37,530,36,0,0,594,24,0,3,4,4,0,627,1,0,0,0,1,0,210,402,0,15,2,0,0,603,10,5,3,0,0,1,0,5,2,0,0,786,6.923327895595432,21.709624796084828,6.955954323001631,23.758564437194128,1.0254372019077902,3.3465818759936408,2.201907790143084,647,371,707,64,118,22,21,14,10,35,11,9,21,3,46,48,16,13,27,62,8,1572,336,0,519,1389,0,1292,616,0,1691,217,0,545,1363,0,473,72,1239,124,0,128,22,30,0,56,92,82,81,72,332,0,0,0,59,76,178,68,80,260,2,17,34,51,49,75,28,7,10,2,16,0,0,0,1,0,817,41,852,0,1,9,3,69,324,383,68,8,325,100,128,41,88,6,163,0,0,1059,994,87,275,46,398,12,0,32,1,6,107,14,687,2,0,0,1156,393,1,16,19,103,7,14,1,0,1,28,50,49,25,125,113,236,59,172,1041,156,50,114,192,144,168,80,56,29,14,3,0,0,4,2,36.0,29.0,40.0,40.0,32.0,38.0,26.0,32.0,37.0,33.0,28.0,42.0,33.0,27.0,29.0,48.0,29.0,38.0,32.0,40.0,27.0,46.0,37.0,37.0,31.0,26.0,24.0,30.0,30.0,30.0,29.0,27.0,31.0,30.0,26.0,27.0,17.0,29.0,27.0,22.0,25.0,20.0,23.0,26.0,19.0,17.0,29.0,19.0,29.0,30.0,28.0,20.0,23.0,27.0,27.0,20.0,22.0,24.0,21.0,19.0,20.0,14.0,18.0,16.0,20.0,9.0,17.0,9.0,16.0,8.0,5.0,12.0,10.0,10.0,7.0,13.0,11.0,12.0,11.0,10.0,5.0,10.0,6.0,4.0,6.0,3.0,3.0,5.0,4.0,3.0,5.0,2.0,4.0,0.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,502,1326,225,0,177,166,159,187,178,140,143,122,113,124,125,106,88,59,44,57,31,18,12,4,0,0,2006,10,17,20,0,2006,13,14,20,0,593,32,128,305,68,25,400,502,0,1153,885,15,0,0,245,12,0,0,0,0,0,0,0,1796,0,14,24,89,1,1,7,527,1390,0,245,394,78,9,4,1323,0,2.157641395908544,0.0,3.092198581560284,0.0,7.302484169508037,2,7,33,0,1,5,190,409,0,25,33,14,43,94,96,81,71,96,41,24,12,8,2,4,1,633,14,557,90,532,115,77,570,430,217,76,571,372,275,28,619,608,39,508,139,197,311,172,475,458,189,303,344,336,311,293,354,5,642,134,337,157,19,0,490,157,0,0,46,1,0,0,0,0,0,0,0,600,0,1.6367851622874807,1.536321483771252,1.0,1.1111111111111112,1.1111111111111112,51.43585780525503 +,40708,Chiriquí,Dolega,Los Algarrobos,7324,2,54,6,0,0,4,0,0,0,0,0,1,0,0,1130,4707,22,18,5842,17,3,1,0,14,0,5850,0,1,5,2,1,10,0,8,3183,2407,131,24,57,0,75,5806,15,32,2,0,22,5877,24,606,259,228,317,75,0,3339,716,1718,97,6,1,5809,20,2,3,4,39,0,5729,14,132,0,1,0,1,5244,617,1,14,1,0,2498,2663,616,13,2,1,0,0,0,75,9,0,6516,875,6.842305694997403,20.35520166176216,6.92314350008655,21.1005712307426,1.0093585162497871,3.751403777437468,2.383188701718564,5933,3470,6377,473,623,273,222,165,128,151,82,70,338,45,243,122,53,86,92,43,49,16124,1299,0,11142,6281,0,15626,1797,0,16528,895,0,6139,11284,0,4131,2008,10805,479,0,506,195,251,16,347,390,465,363,398,1042,3,1,24,397,483,868,504,701,3592,9,118,482,592,811,1332,1969,380,308,94,696,7,11,12,56,0,8294,595,6770,0,47,295,55,896,3661,1744,225,244,6656,432,828,165,570,10,113,12,4,8616,9734,2491,3932,210,1901,207,0,32,17,5,249,50,5323,140,0,0,5149,5488,28,152,359,3453,283,684,63,0,20,811,2116,1222,495,1793,112,950,550,820,8063,613,433,510,842,1172,1904,1258,1469,961,462,171,176,69,107,140,203.0,216.0,237.0,271.0,302.0,279.0,275.0,287.0,311.0,310.0,302.0,323.0,286.0,286.0,308.0,284.0,317.0,310.0,298.0,278.0,275.0,292.0,299.0,292.0,261.0,270.0,288.0,290.0,276.0,232.0,283.0,312.0,305.0,344.0,336.0,333.0,353.0,327.0,326.0,298.0,300.0,300.0,313.0,272.0,291.0,299.0,253.0,246.0,241.0,230.0,243.0,224.0,217.0,210.0,187.0,185.0,195.0,191.0,163.0,168.0,153.0,144.0,114.0,120.0,113.0,123.0,119.0,81.0,88.0,81.0,68.0,59.0,75.0,63.0,65.0,54.0,54.0,39.0,51.0,28.0,36.0,25.0,26.0,19.0,16.0,15.0,22.0,15.0,21.0,11.0,9.0,12.0,6.0,2.0,3.0,3.0,4.0,3.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4196,12851,1303,0,1229,1462,1505,1487,1419,1356,1580,1637,1476,1269,1081,902,644,492,330,226,122,84,32,16,1,0,17580,310,432,28,0,17600,377,345,28,0,3912,218,526,3933,377,249,4942,4193,0,4145,13922,283,0,36,849,44,8,2,1,8,1,1,0,17400,0,656,253,510,67,11,34,1881,14938,0,5495,5254,893,85,49,6574,0,1.5283603431839847,0.0,2.343305908750935,0.0,10.696403269754768,244,91,194,29,4,13,750,4608,0,199,95,70,119,236,375,608,511,1034,853,593,403,407,174,212,43,5899,34,5783,150,5671,262,942,4991,5387,546,3396,2537,3647,2286,1611,4322,5763,170,5610,323,4528,1082,4058,1875,5232,701,4164,1769,1497,4436,693,5240,170,5763,965,3723,1076,169,4,3800,2133,0,10,282,9,1,1,1,2,1,0,0,5626,0,1.4512379989893889,1.639548593565774,1.2625,1.0416666666666667,1.0416666666666667,47.03303556379572 +PA020801,40801,Chiriquí,Gualaca,Gualaca,2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1615,115,16,1684,48,2,0,0,13,1,1670,0,0,41,0,6,31,0,0,1096,237,227,7,51,0,130,1663,51,1,0,0,33,1748,0,207,41,39,52,66,0,17,123,1509,92,7,0,1583,90,31,5,9,30,0,1737,2,2,0,4,0,3,668,994,0,63,23,0,110,1368,189,1,17,48,0,6,0,3,6,0,1191,962,6.943011397720456,22.280743851229754,6.997600479904019,23.346730653869223,1.0183066361556063,3.7133867276887873,2.382151029748284,1780,1042,2173,159,379,50,84,38,21,95,16,11,30,1,123,38,19,48,37,14,20,4802,758,0,1573,3987,0,4073,1487,0,5107,453,0,1592,3968,0,1433,159,3633,335,0,347,35,86,13,121,156,185,154,135,1049,1,4,10,156,212,484,147,210,986,5,81,92,126,141,175,207,151,30,2,54,1,2,0,2,0,2003,282,2771,0,7,149,26,293,1042,1277,92,67,1207,146,281,112,212,0,252,8,0,2961,2918,436,1000,117,588,45,0,31,1,10,255,60,1820,39,0,0,2991,1373,10,72,63,471,21,52,3,0,2,77,191,140,90,412,120,421,162,670,3175,450,219,255,408,372,398,199,190,93,39,11,19,5,7,39,77.0,86.0,82.0,74.0,77.0,79.0,90.0,91.0,81.0,86.0,87.0,82.0,79.0,98.0,100.0,106.0,101.0,101.0,108.0,97.0,121.0,82.0,116.0,101.0,96.0,98.0,87.0,111.0,71.0,70.0,85.0,68.0,82.0,72.0,65.0,71.0,58.0,73.0,81.0,89.0,80.0,85.0,77.0,82.0,60.0,77.0,75.0,85.0,73.0,76.0,91.0,69.0,81.0,77.0,63.0,68.0,58.0,77.0,50.0,59.0,69.0,42.0,58.0,49.0,42.0,55.0,43.0,42.0,39.0,45.0,36.0,34.0,27.0,35.0,28.0,31.0,19.0,25.0,21.0,22.0,22.0,11.0,16.0,16.0,11.0,11.0,21.0,8.0,7.0,9.0,8.0,7.0,7.0,7.0,2.0,5.0,2.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1269,3933,677,0,396,427,446,513,516,437,372,372,384,386,381,312,260,224,160,118,76,56,31,10,2,0,5798,45,19,17,0,5798,45,19,17,0,1509,56,558,935,201,27,1324,1269,0,3489,2347,43,0,8,250,10,3,0,0,0,0,0,0,5608,0,46,137,234,14,2,3,261,5182,0,939,1468,294,32,5,3141,0,2.0676,0.0,2.986252241482367,0.0,8.259908147644158,18,35,74,5,1,3,98,1546,0,97,106,78,142,232,218,213,158,238,115,69,46,38,10,17,3,1722,58,1576,204,1551,229,280,1500,1445,335,343,1437,1022,758,157,1623,1631,149,1525,255,1014,511,657,1123,1239,541,628,1152,611,1169,597,1183,9,1771,280,1022,451,27,0,1232,548,0,3,58,4,0,0,0,0,0,0,0,1715,0,1.6634831460674158,1.6393258426966293,1.0,1.0795454545454546,1.0795454545454546,52.90393258426966 +PA020803,40803,Chiriquí,Gualaca,Los Ángeles,274,4,0,0,0,0,0,0,2,0,0,0,1,0,0,1,115,63,5,175,4,2,0,0,3,0,134,0,4,12,2,1,28,0,3,52,2,94,8,26,1,1,159,23,0,0,0,2,184,0,38,5,0,41,10,0,0,3,165,16,0,0,143,30,0,0,2,9,0,180,0,1,0,2,0,1,38,120,0,22,4,0,0,128,43,0,0,10,0,0,0,1,2,0,0,281,6.514619883040936,20.24561403508772,7.0,24.0,1.0054347826086956,3.4239130434782608,2.391304347826087,186,130,247,20,44,4,6,4,0,16,4,1,6,0,14,3,3,3,2,1,4,385,239,0,57,567,0,310,314,0,537,87,0,165,459,0,154,11,410,49,0,49,5,6,2,18,30,34,23,31,176,0,0,0,24,21,50,19,27,65,0,4,3,4,8,21,2,0,1,0,1,0,0,0,0,0,233,4,319,0,0,2,0,7,111,191,9,1,41,4,12,1,13,1,165,0,0,361,307,20,113,2,81,1,0,20,0,5,38,5,249,5,0,0,447,77,0,4,4,23,0,1,0,0,0,9,4,5,6,16,70,12,16,99,392,63,43,32,46,40,19,8,11,6,1,0,1,0,1,5,10.0,6.0,14.0,14.0,13.0,7.0,12.0,9.0,18.0,9.0,9.0,16.0,9.0,14.0,11.0,14.0,14.0,13.0,6.0,10.0,12.0,9.0,19.0,11.0,8.0,7.0,9.0,8.0,10.0,10.0,7.0,6.0,3.0,9.0,5.0,10.0,6.0,10.0,8.0,12.0,11.0,9.0,12.0,7.0,9.0,5.0,7.0,8.0,11.0,9.0,7.0,7.0,9.0,6.0,8.0,6.0,4.0,4.0,3.0,6.0,6.0,2.0,5.0,4.0,6.0,6.0,5.0,6.0,7.0,5.0,6.0,7.0,2.0,3.0,7.0,7.0,5.0,3.0,1.0,3.0,2.0,2.0,2.0,1.0,1.0,0.0,2.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,171,407,90,0,57,55,59,57,59,44,30,46,48,40,37,23,23,29,25,19,8,4,4,1,0,0,658,1,0,9,0,658,1,0,9,0,195,0,38,116,16,2,130,171,0,476,192,0,0,0,102,0,0,0,0,0,0,0,0,566,0,3,22,13,1,0,0,14,615,0,44,79,8,3,0,534,0,2.4865900383141764,0.0,3.680473372781065,0.0,6.311377245508982,2,1,8,0,0,0,4,171,0,6,10,12,24,35,38,21,12,15,7,1,1,0,0,2,1,173,13,128,58,122,64,30,156,98,88,5,181,108,78,5,181,152,34,113,73,27,86,19,167,113,73,45,141,124,62,136,50,1,185,28,112,42,4,2,149,37,0,0,18,0,0,0,0,0,0,0,0,168,0,1.9202127659574468,1.6329787234042554,0.0,1.0,1.0,53.73118279569893 +PA020804,40804,Chiriquí,Gualaca,Paja de Sombrero,349,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,62,26,205,10,14,0,0,12,0,148,0,1,39,1,0,52,0,0,106,3,64,7,61,0,0,214,26,0,0,0,1,241,0,64,11,3,9,25,0,2,3,211,24,1,0,182,55,0,2,0,2,0,239,0,0,0,1,0,1,6,198,0,13,24,0,0,182,41,0,0,14,0,2,0,1,1,0,0,353,6.632286995515695,22.77130044843049,6.986547085201794,23.90134529147982,1.004149377593361,3.1701244813278007,2.033195020746888,242,99,198,19,27,9,10,5,2,6,0,4,12,0,14,20,4,9,6,4,24,456,148,0,70,534,0,266,338,0,535,69,0,127,477,0,112,15,411,66,0,67,4,5,0,16,42,35,27,26,167,0,0,0,18,23,38,19,19,58,1,0,3,4,6,9,9,5,1,0,2,0,0,0,0,0,293,3,259,0,0,1,0,7,72,125,46,9,58,16,39,10,13,0,160,0,0,360,273,13,114,10,85,1,0,72,1,7,62,11,162,0,0,0,457,74,0,0,4,18,0,2,0,0,1,4,4,7,4,22,104,29,12,109,337,91,36,35,37,38,28,12,11,5,2,0,1,0,0,0,9.0,7.0,5.0,8.0,7.0,12.0,6.0,5.0,12.0,7.0,5.0,11.0,6.0,6.0,11.0,13.0,7.0,8.0,7.0,6.0,13.0,11.0,6.0,10.0,6.0,6.0,11.0,5.0,7.0,4.0,6.0,6.0,6.0,6.0,7.0,8.0,10.0,7.0,7.0,15.0,9.0,3.0,9.0,7.0,10.0,10.0,7.0,9.0,9.0,10.0,12.0,7.0,13.0,7.0,13.0,7.0,10.0,7.0,11.0,5.0,9.0,3.0,6.0,2.0,5.0,7.0,7.0,5.0,5.0,4.0,3.0,10.0,4.0,3.0,5.0,7.0,5.0,2.0,5.0,5.0,5.0,4.0,5.0,3.0,2.0,6.0,2.0,4.0,6.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,117,398,118,0,36,42,39,41,46,33,31,47,38,45,52,40,25,28,25,24,19,19,2,1,0,0,624,4,2,3,0,624,4,2,3,0,168,1,48,77,29,3,190,117,0,342,285,6,0,0,38,2,0,0,0,0,0,0,0,593,0,1,9,0,0,0,0,7,616,0,50,110,13,3,3,454,0,2.7735042735042734,0.0,3.911392405063291,0.0,6.06003159557662,1,1,0,0,0,0,3,237,0,19,29,25,43,34,31,24,11,10,7,3,2,3,1,0,0,234,8,125,117,139,103,32,210,73,169,1,241,154,88,4,238,198,44,128,114,21,107,26,216,129,113,51,191,182,60,139,103,1,241,81,105,47,9,0,181,61,0,0,8,2,0,0,0,0,0,0,0,232,0,1.487603305785124,1.128099173553719,1.0,1.0714285714285714,1.0714285714285714,56.36776859504132 +PA020805,40805,Chiriquí,Gualaca,Rincón,586,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,372,75,11,426,21,3,2,0,5,1,415,0,0,20,1,2,15,0,5,271,7,136,9,33,0,2,431,23,1,0,0,3,458,0,73,7,4,25,19,0,1,9,409,39,0,0,416,30,0,2,5,5,0,455,0,2,0,0,1,0,124,301,0,27,6,0,2,346,90,12,1,0,0,2,0,2,3,0,0,589,5.792237442922374,16.12785388127854,6.1826484018264845,18.605022831050228,1.0131004366812226,3.5458515283842797,2.334061135371179,466,249,560,20,100,13,16,5,2,27,3,3,12,0,12,12,5,7,13,0,3,1134,261,0,172,1223,0,744,651,0,1255,140,0,347,1048,0,317,30,946,102,0,103,11,18,5,26,48,48,37,52,290,0,2,3,43,70,148,37,61,221,0,3,24,26,27,19,29,30,5,0,9,0,0,0,0,0,505,28,739,0,0,21,6,79,230,409,10,11,241,39,77,38,40,0,95,0,0,759,717,88,245,38,127,18,0,13,1,11,77,6,483,0,0,0,876,291,3,6,17,68,3,8,0,0,1,9,41,20,7,101,45,96,38,175,765,147,48,104,124,103,86,47,32,10,5,1,3,1,0,0,15.0,19.0,23.0,24.0,24.0,19.0,21.0,19.0,20.0,20.0,23.0,28.0,23.0,22.0,24.0,26.0,24.0,17.0,23.0,29.0,24.0,21.0,29.0,26.0,23.0,29.0,23.0,24.0,20.0,27.0,12.0,14.0,17.0,13.0,15.0,15.0,17.0,19.0,16.0,24.0,26.0,15.0,18.0,23.0,22.0,23.0,15.0,17.0,20.0,23.0,12.0,14.0,25.0,10.0,17.0,20.0,17.0,19.0,12.0,17.0,16.0,16.0,15.0,22.0,15.0,9.0,7.0,11.0,9.0,9.0,5.0,13.0,11.0,4.0,16.0,4.0,9.0,3.0,4.0,3.0,6.0,10.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,1.0,0.0,7.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,324,976,176,0,105,99,120,119,123,123,71,91,104,98,78,85,84,45,49,23,29,17,11,2,0,0,1448,5,2,21,0,1448,5,2,21,0,374,18,159,217,64,7,313,324,0,936,537,3,0,0,60,6,0,0,0,0,0,0,0,1410,0,6,7,45,1,1,0,6,1410,0,190,339,72,15,1,859,0,2.416387959866221,0.0,3.2673031026252985,0.0,7.505420054200542,1,2,17,1,0,0,2,443,0,19,40,19,54,70,66,61,41,51,22,4,7,4,5,1,0,449,17,377,89,373,93,64,402,351,115,46,420,262,204,12,454,405,61,383,83,187,196,78,388,299,167,130,336,150,316,196,270,4,462,87,247,124,8,1,317,149,0,0,12,1,0,0,0,0,0,0,0,453,0,1.6252676659528908,1.5353319057815846,1.0,1.0434782608695652,1.0434782608695652,53.512875536480685 +PA020904,40901,Chiriquí,Remedios,Remedios,369,1,1,0,0,0,0,1,0,0,0,0,1,0,0,4,217,32,10,250,3,6,0,0,4,0,247,0,0,3,0,0,13,0,0,226,4,23,2,7,1,0,243,13,0,0,0,7,263,0,56,11,7,30,4,0,1,15,215,29,0,3,256,3,0,2,2,0,0,261,0,2,0,0,0,0,107,150,0,6,0,0,248,0,4,5,1,3,0,0,0,0,1,1,0,373,6.98015873015873,23.63095238095238,6.992063492063492,23.761904761904763,1.0076045627376429,4.239543726235741,2.547528517110266,266,112,271,14,100,5,24,12,2,17,4,6,10,1,12,0,2,4,6,0,2,657,151,0,225,583,0,532,276,0,757,51,0,223,585,0,209,14,558,27,0,31,8,10,2,14,19,24,13,21,107,0,0,0,29,24,70,28,31,169,0,8,14,19,29,26,36,56,8,0,12,0,0,0,0,0,222,32,480,0,16,9,5,75,141,251,12,1,177,17,18,2,6,2,19,8,0,432,412,112,73,2,50,7,0,3,2,0,31,7,416,0,0,0,357,226,0,11,13,111,5,11,0,0,2,22,56,21,18,34,18,14,14,55,484,48,32,22,51,56,46,40,42,16,6,1,0,0,0,0,7.0,16.0,8.0,5.0,9.0,16.0,8.0,10.0,18.0,13.0,8.0,13.0,18.0,9.0,13.0,10.0,12.0,12.0,15.0,17.0,17.0,12.0,5.0,6.0,10.0,13.0,11.0,10.0,11.0,10.0,17.0,12.0,6.0,14.0,9.0,13.0,16.0,10.0,10.0,3.0,12.0,7.0,10.0,15.0,9.0,11.0,9.0,6.0,11.0,5.0,12.0,13.0,8.0,11.0,13.0,11.0,11.0,9.0,5.0,7.0,12.0,15.0,9.0,13.0,11.0,11.0,7.0,13.0,8.0,9.0,10.0,5.0,6.0,7.0,6.0,3.0,2.0,1.0,2.0,4.0,4.0,7.0,3.0,3.0,4.0,5.0,2.0,3.0,2.0,2.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,171,536,137,0,45,65,61,66,50,55,58,52,53,42,57,43,60,48,34,12,21,14,6,2,0,0,832,3,9,0,0,832,3,9,0,0,213,13,37,103,39,8,260,171,0,602,234,8,0,0,41,0,0,0,0,8,0,0,2,793,0,20,3,40,1,0,1,61,718,0,154,176,76,3,0,435,0,2.2366197183098597,0.0,2.9683794466403164,0.0,9.502369668246445,5,2,17,1,0,0,23,218,0,47,16,10,6,28,25,24,20,42,23,13,3,5,2,1,0,248,18,229,37,226,40,47,219,225,41,69,197,155,111,4,262,236,30,220,46,110,110,77,189,132,134,86,180,19,247,26,240,1,265,58,105,96,7,1,154,112,0,0,14,0,0,0,0,2,0,0,0,250,0,1.6179775280898876,1.5430711610486891,1.75,1.0,1.0,57.642857142857146 +PA020901,40902,Chiriquí,Remedios,El Nancito,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,80,3,165,3,0,0,0,3,0,133,0,2,16,1,1,15,0,3,59,3,77,17,13,0,2,142,27,0,1,0,1,171,0,52,13,0,3,15,0,0,2,138,30,1,0,128,24,0,2,12,5,0,163,0,1,0,2,5,0,20,119,0,30,2,0,0,112,21,7,1,16,0,9,0,0,5,0,0,254,4.977443609022556,12.887218045112782,5.676691729323308,15.300751879699249,1.0058479532163742,3.134502923976608,1.8421052631578947,172,77,220,16,50,8,10,13,0,9,3,3,11,1,4,4,2,1,0,0,2,350,193,0,71,472,0,148,395,0,487,56,0,176,367,0,166,10,325,42,0,43,3,8,0,21,25,29,19,23,106,0,0,1,16,19,44,22,16,71,0,1,11,13,7,4,12,21,4,0,4,0,0,0,0,0,131,5,347,0,2,2,0,19,122,140,43,23,49,11,18,11,17,0,29,0,1,298,295,29,49,12,38,4,0,3,1,16,44,3,281,0,0,0,334,110,1,2,2,28,2,4,0,0,1,4,12,5,4,20,16,26,4,44,384,79,25,19,33,15,8,8,12,2,5,0,2,0,1,0,13.0,12.0,14.0,11.0,13.0,9.0,12.0,13.0,5.0,8.0,6.0,14.0,8.0,6.0,12.0,11.0,19.0,7.0,17.0,12.0,11.0,7.0,8.0,9.0,10.0,11.0,8.0,11.0,3.0,9.0,10.0,6.0,7.0,7.0,3.0,9.0,2.0,3.0,8.0,5.0,0.0,9.0,5.0,5.0,4.0,9.0,4.0,4.0,7.0,9.0,5.0,7.0,5.0,6.0,13.0,6.0,5.0,8.0,5.0,5.0,5.0,3.0,6.0,8.0,6.0,3.0,4.0,2.0,7.0,2.0,4.0,3.0,3.0,6.0,1.0,2.0,2.0,6.0,4.0,3.0,2.0,1.0,3.0,3.0,1.0,3.0,0.0,2.0,2.0,1.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,156,362,75,0,63,47,46,66,45,42,33,27,23,33,36,29,28,18,17,17,10,8,4,1,0,0,584,3,6,0,0,584,3,6,0,0,160,1,5,56,16,1,198,156,0,352,236,5,0,0,194,14,0,0,0,8,0,0,0,377,0,4,9,26,1,1,0,32,520,0,37,61,21,1,0,473,0,2.684873949579832,0.0,3.86624203821656,0.0,6.994940978077572,1,5,11,0,1,0,16,138,0,30,17,8,22,31,23,10,5,16,2,3,1,2,1,1,0,148,24,107,65,96,76,49,123,93,79,18,154,85,87,8,164,126,46,105,67,46,59,26,146,62,110,25,147,61,111,93,79,3,169,47,72,44,9,0,117,55,0,0,30,4,0,0,0,1,0,0,0,137,0,1.7325581395348837,1.7151162790697674,1.0,1.0,1.0,55.20348837209303 +PA020902,40903,Chiriquí,Remedios,El Porvenir,530,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,304,91,4,397,4,2,0,0,2,0,391,0,0,5,1,3,4,0,1,332,3,59,1,10,0,0,382,18,0,0,0,5,405,1,56,12,16,37,7,0,1,25,373,5,1,0,392,6,1,0,5,1,0,402,1,0,1,1,0,0,80,316,0,8,1,0,203,178,13,0,0,9,0,0,0,1,1,0,0,534,6.637055837563452,18.16243654822335,6.873096446700508,19.66751269035533,1.0074074074074073,3.8469135802469134,2.5530864197530865,408,249,649,33,133,14,19,7,4,32,2,4,14,0,18,8,6,8,5,0,8,1201,237,0,316,1122,0,1109,329,0,1317,121,0,509,929,0,471,38,857,72,0,75,19,25,4,50,47,68,50,47,166,0,0,0,39,67,102,36,68,272,1,2,31,37,53,27,40,75,20,1,14,0,0,0,2,0,391,84,785,0,26,40,10,47,330,359,43,6,258,21,57,8,64,3,17,30,3,798,770,168,107,11,166,5,0,1,3,2,48,12,911,14,0,0,685,378,0,4,34,129,14,14,2,0,3,27,94,20,15,101,47,44,35,89,990,112,40,57,60,75,68,42,53,37,10,3,3,0,4,14,36.0,40.0,27.0,27.0,25.0,35.0,26.0,35.0,27.0,30.0,27.0,27.0,17.0,30.0,29.0,32.0,27.0,33.0,21.0,29.0,30.0,33.0,27.0,27.0,29.0,21.0,24.0,21.0,27.0,22.0,25.0,15.0,25.0,23.0,22.0,22.0,18.0,17.0,22.0,16.0,24.0,23.0,16.0,20.0,15.0,21.0,12.0,18.0,16.0,12.0,23.0,12.0,18.0,17.0,14.0,20.0,10.0,14.0,14.0,9.0,12.0,9.0,14.0,13.0,7.0,11.0,10.0,9.0,3.0,6.0,8.0,10.0,5.0,7.0,5.0,5.0,2.0,8.0,5.0,7.0,7.0,4.0,6.0,3.0,4.0,5.0,2.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,438,991,139,0,155,153,130,142,146,115,110,95,98,79,84,67,55,39,35,27,24,10,3,1,0,0,1553,5,9,1,0,1553,5,9,1,0,466,10,36,158,47,7,407,437,0,1024,538,6,0,0,283,1,0,0,0,1,1,0,4,1278,0,15,13,151,8,0,0,220,1161,0,235,339,45,3,0,946,0,2.3701923076923075,0.0,3.4085510688836105,0.0,8.176020408163266,5,7,35,1,0,0,64,296,0,66,32,9,34,42,47,28,29,45,23,18,9,14,3,7,2,395,13,354,54,349,59,61,347,345,63,67,341,216,192,11,397,366,42,345,63,141,204,122,286,283,125,135,273,65,343,62,346,6,402,51,243,104,10,0,220,188,0,0,55,0,0,0,0,0,0,0,0,353,0,1.9558823529411764,1.8872549019607845,1.0,1.0526315789473684,1.0526315789473684,51.13970588235294 +PA020903,40904,Chiriquí,Remedios,El Puerto,259,0,2,0,0,0,0,0,2,0,0,0,0,0,0,1,64,129,14,172,22,1,0,0,13,0,188,0,1,2,0,1,15,0,1,175,1,27,0,4,1,0,185,11,0,0,0,12,208,0,35,2,2,11,3,0,0,9,191,8,0,0,195,7,0,1,4,1,0,203,0,1,0,0,4,0,47,151,0,10,0,0,3,149,40,11,0,0,0,1,0,1,1,2,0,263,3.0260416666666665,5.90625,3.0260416666666665,6.432291666666667,1.0528846153846154,3.6009615384615383,2.581730769230769,219,127,279,22,74,2,15,12,2,19,4,2,22,0,7,6,6,1,2,0,0,519,215,0,122,612,0,444,290,0,648,86,0,232,502,0,219,13,442,60,0,66,4,14,2,24,19,32,30,36,112,0,0,0,33,30,50,34,35,126,0,0,10,2,15,9,13,30,6,0,2,0,0,0,0,0,244,30,388,0,1,10,2,17,154,163,14,40,155,12,14,1,20,56,7,3,3,428,371,41,111,2,89,5,2,0,21,5,41,8,457,0,0,0,449,155,0,0,8,45,3,2,0,0,21,8,22,12,7,34,57,14,11,88,518,67,35,56,51,30,14,12,7,6,1,0,1,1,0,0,18.0,16.0,15.0,16.0,14.0,7.0,15.0,16.0,14.0,6.0,12.0,16.0,8.0,16.0,16.0,12.0,22.0,15.0,17.0,14.0,17.0,10.0,14.0,15.0,19.0,15.0,13.0,13.0,14.0,6.0,12.0,10.0,12.0,7.0,18.0,10.0,12.0,4.0,13.0,9.0,8.0,13.0,14.0,14.0,6.0,6.0,10.0,11.0,7.0,8.0,11.0,2.0,10.0,8.0,5.0,5.0,4.0,8.0,8.0,8.0,5.0,10.0,9.0,4.0,6.0,5.0,6.0,1.0,13.0,4.0,3.0,7.0,4.0,2.0,1.0,3.0,1.0,1.0,3.0,3.0,3.0,1.0,2.0,0.0,0.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,205,523,71,0,79,58,68,80,75,61,59,48,55,42,36,33,34,29,17,11,6,7,1,0,0,0,798,1,0,0,0,798,1,0,0,0,255,3,81,74,15,1,166,204,0,480,318,1,0,0,140,1,0,0,0,0,0,0,1,657,0,2,6,291,14,0,0,355,131,0,66,74,17,1,0,641,0,2.228013029315961,0.0,3.2745098039215685,0.0,7.171464330413016,1,2,97,3,0,0,87,29,0,36,25,18,28,29,34,18,6,11,8,2,0,3,0,1,0,200,19,165,54,171,48,23,196,166,53,29,190,92,127,2,217,172,47,153,66,115,38,52,167,120,99,45,174,25,194,32,187,2,217,46,95,73,5,2,154,65,0,0,37,0,0,0,0,0,0,0,0,182,0,1.9366515837104072,1.6787330316742082,0.0,1.0,1.0,51.64383561643836 +PA020905,40905,Chiriquí,Remedios,Santa Lucía,182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,84,57,1,135,7,1,0,0,0,0,122,0,0,9,0,2,8,0,2,104,2,29,2,6,0,0,123,13,1,0,0,6,143,0,20,2,1,12,4,0,0,3,124,16,0,0,131,4,0,2,4,2,0,141,0,2,0,0,0,0,25,112,0,6,0,0,4,120,12,0,2,3,0,2,0,0,0,0,0,183,5.169117647058823,9.926470588235292,5.661764705882353,12.375,1.041958041958042,4.062937062937063,2.6713286713286712,149,77,225,11,86,3,4,9,3,12,1,0,3,1,1,1,0,3,0,0,2,414,121,0,146,389,0,340,195,0,490,45,0,207,328,0,193,14,301,27,0,27,9,12,3,14,15,28,23,29,79,0,0,0,21,29,38,19,15,89,0,1,11,19,14,8,10,15,5,0,2,0,0,0,0,0,141,28,299,0,0,9,12,24,137,119,13,6,97,8,13,6,6,16,14,5,0,311,273,48,64,6,35,10,0,2,0,7,12,3,322,49,0,0,294,128,0,5,10,26,3,2,0,0,0,7,20,7,12,20,28,19,7,49,348,27,16,20,36,38,25,12,7,6,0,0,0,0,0,49,13.0,11.0,14.0,11.0,11.0,17.0,8.0,11.0,9.0,11.0,10.0,16.0,11.0,12.0,12.0,11.0,11.0,7.0,13.0,12.0,12.0,10.0,11.0,10.0,12.0,10.0,9.0,10.0,8.0,2.0,5.0,11.0,12.0,8.0,4.0,6.0,8.0,8.0,3.0,6.0,1.0,12.0,7.0,8.0,5.0,5.0,6.0,6.0,8.0,10.0,5.0,3.0,4.0,1.0,10.0,3.0,3.0,10.0,8.0,5.0,4.0,4.0,1.0,4.0,3.0,4.0,3.0,6.0,4.0,3.0,4.0,3.0,2.0,6.0,1.0,5.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,177,355,52,0,60,56,61,54,55,39,40,31,33,35,23,29,16,20,16,10,3,1,1,0,1,0,581,1,1,1,0,581,1,1,1,0,165,1,18,43,10,3,167,177,0,423,159,2,0,0,159,0,0,0,0,0,0,0,0,425,0,0,0,24,3,0,0,276,281,0,68,119,20,3,1,373,0,2.403587443946188,0.0,3.366013071895425,0.0,7.39554794520548,0,0,10,1,0,0,87,51,0,17,7,5,10,17,22,16,11,15,7,5,1,0,0,0,16,139,10,103,46,103,46,31,118,117,32,11,138,78,71,2,147,120,29,94,55,55,39,48,101,63,86,23,126,43,106,51,98,0,149,26,66,54,3,1,104,45,0,0,21,0,0,0,0,0,0,0,0,128,0,2.0733333333333333,1.82,0.0,1.0,1.0,52.69798657718121 +PA021002,41003,Chiriquí,Renacimiento,Cañas Gordas,940,5,0,0,0,0,0,0,76,0,0,31,0,0,0,0,296,335,20,594,37,8,0,0,10,2,576,0,0,18,0,13,40,0,4,102,4,434,7,104,0,0,606,32,2,0,0,11,651,2,85,27,5,123,52,0,1,22,531,91,6,0,447,172,0,13,11,8,0,643,1,5,0,1,1,0,145,383,1,59,63,0,1,271,95,215,53,2,0,7,0,1,4,2,0,1052,5.768392370572207,17.059945504087192,5.907356948228883,17.438692098092645,1.015360983102919,3.152073732718894,1.978494623655914,712,390,804,64,137,19,31,24,8,17,15,7,280,0,58,19,10,5,17,8,19,1533,778,0,171,2140,0,1170,1141,0,1990,321,0,611,1700,0,588,23,1461,239,0,239,11,46,5,81,111,123,100,119,547,0,0,0,64,88,175,75,85,317,1,2,25,23,13,20,12,19,6,1,3,0,0,0,0,0,913,61,1060,0,9,28,10,25,349,571,59,56,123,42,25,11,27,2,732,0,4,1365,1143,42,538,13,203,107,1,55,7,16,144,30,941,13,0,0,1591,370,0,2,16,49,3,3,0,0,8,3,15,8,13,71,275,30,20,531,1507,239,99,196,248,75,62,21,27,10,1,3,2,0,5,13,57.0,50.0,42.0,48.0,43.0,39.0,52.0,57.0,48.0,38.0,61.0,45.0,33.0,43.0,39.0,44.0,62.0,51.0,51.0,45.0,45.0,55.0,48.0,26.0,45.0,42.0,29.0,42.0,35.0,29.0,24.0,29.0,29.0,25.0,20.0,36.0,37.0,27.0,33.0,33.0,31.0,23.0,30.0,29.0,22.0,19.0,27.0,22.0,17.0,37.0,30.0,20.0,27.0,32.0,30.0,21.0,32.0,17.0,20.0,24.0,17.0,14.0,19.0,18.0,15.0,18.0,16.0,14.0,12.0,16.0,12.0,18.0,19.0,19.0,15.0,11.0,10.0,11.0,11.0,5.0,11.0,4.0,5.0,6.0,7.0,5.0,5.0,4.0,3.0,2.0,6.0,2.0,2.0,3.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,695,1535,278,0,240,234,221,253,219,177,127,166,135,122,139,114,83,76,83,48,33,19,15,3,1,0,2267,71,59,111,0,2267,78,52,111,0,633,23,132,359,59,15,593,694,0,1161,1285,62,0,1,660,73,0,0,0,0,0,0,0,1774,0,9,14,122,10,0,3,89,2261,0,129,270,24,3,1,2081,0,2.741900647948164,0.0,3.8864,0.0,6.023524720893142,4,10,57,4,0,2,32,603,0,72,71,50,85,141,78,65,28,34,12,6,7,4,0,5,3,682,30,489,223,501,211,139,573,191,521,7,705,432,280,10,702,607,105,463,249,151,312,84,628,402,310,199,513,343,369,374,338,10,702,184,364,155,9,56,573,139,0,0,123,9,0,0,0,0,0,0,0,580,0,1.77734375,1.48828125,1.25,1.103448275862069,1.103448275862069,52.1376404494382 +PA021003,41004,Chiriquí,Renacimiento,Monte Lirio,983,8,0,0,0,0,0,0,187,0,0,36,0,0,0,1,471,237,26,648,61,8,1,0,17,0,660,0,1,22,2,9,36,0,5,173,2,351,45,156,2,6,695,26,2,1,0,11,735,0,112,36,4,72,32,0,7,18,624,84,2,0,605,97,0,10,22,1,0,733,2,0,0,0,0,0,186,457,0,63,29,0,11,667,9,7,6,21,0,2,0,0,9,3,0,1214,6.889374090247452,22.512372634643377,6.912663755458516,23.355167394468705,1.0095238095238095,3.269387755102041,2.070748299319728,815,452,1032,92,153,15,13,21,11,34,13,3,823,0,44,21,11,17,24,7,3,2015,1095,0,303,2807,0,1160,1950,0,2524,586,0,799,2311,0,760,39,1825,486,0,491,30,60,2,144,137,160,144,142,668,0,0,0,127,132,201,72,85,334,0,8,16,19,31,23,23,42,7,1,10,0,0,0,1,0,1233,24,1404,0,0,13,6,23,486,734,69,92,162,77,54,9,50,1,899,2,2,1878,1599,70,664,11,341,66,1,98,5,23,114,25,1331,215,0,0,2146,405,0,7,18,70,4,10,1,0,4,14,24,15,15,77,364,70,48,626,2034,251,163,179,327,114,75,29,44,18,12,2,5,6,3,215,83.0,105.0,86.0,93.0,73.0,87.0,77.0,92.0,69.0,51.0,76.0,69.0,67.0,68.0,74.0,67.0,80.0,63.0,63.0,62.0,70.0,63.0,68.0,65.0,60.0,48.0,50.0,56.0,57.0,37.0,46.0,37.0,34.0,37.0,43.0,34.0,33.0,45.0,51.0,34.0,36.0,29.0,38.0,37.0,39.0,32.0,37.0,33.0,29.0,26.0,33.0,37.0,29.0,28.0,29.0,29.0,24.0,31.0,25.0,26.0,32.0,20.0,21.0,27.0,22.0,18.0,15.0,23.0,15.0,12.0,7.0,19.0,11.0,10.0,14.0,7.0,7.0,10.0,6.0,8.0,5.0,5.0,11.0,8.0,6.0,6.0,7.0,3.0,5.0,3.0,2.0,2.0,3.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1170,2052,255,0,440,376,354,335,326,248,197,197,179,157,156,135,122,83,61,38,35,24,9,4,1,0,3138,25,25,289,0,3139,25,24,289,0,953,28,337,389,71,7,524,1168,0,1844,1596,37,0,2,1161,74,0,11,0,1,0,0,0,2228,0,20,76,65,2,0,0,159,3155,0,139,308,22,1,6,3001,0,2.751040799333889,0.0,3.7266272189349112,0.0,5.3347713546160485,5,25,32,0,0,0,60,693,0,93,70,55,90,145,69,67,36,54,22,8,7,10,7,5,4,763,52,553,262,572,243,178,637,223,592,17,798,470,345,9,806,702,113,561,254,341,220,144,671,380,435,249,566,394,421,271,544,14,801,183,437,164,31,150,627,188,0,1,114,1,0,0,0,1,0,0,0,698,0,1.9461139896373056,1.6569948186528498,1.0,1.0,1.0,51.099386503067485 +PA021004,41005,Chiriquí,Renacimiento,Plaza Caisán,1248,4,12,16,0,2,0,0,26,0,0,30,2,0,0,0,700,177,63,832,45,16,5,0,41,1,793,0,3,25,3,21,79,0,16,317,9,436,24,152,0,2,848,62,1,1,0,28,940,5,137,37,26,78,57,0,13,54,709,156,7,1,722,157,0,13,23,24,1,923,0,1,0,8,2,6,213,615,0,62,49,1,1,404,41,261,103,58,0,8,0,37,25,2,0,1340,5.186098654708521,13.762331838565023,6.520179372197309,22.757847533632287,1.0095744680851064,3.2074468085106385,1.9702127659574469,989,598,1222,145,233,15,35,35,6,41,10,6,183,0,71,30,8,17,19,3,6,2242,957,0,467,2732,0,1703,1496,0,2672,527,0,870,2329,0,796,74,1920,409,0,410,32,59,2,118,158,178,137,138,661,0,0,1,113,137,239,92,93,381,1,5,40,59,41,39,30,15,9,0,10,0,0,0,1,0,1332,41,1386,0,4,17,9,27,478,753,95,33,249,102,66,36,22,6,886,0,6,1856,1662,64,334,38,752,44,0,135,6,31,175,43,1315,6,0,0,2127,512,1,10,20,71,7,10,1,0,6,24,38,25,12,94,786,101,26,261,2208,289,124,174,328,154,65,43,64,25,11,6,11,2,8,6,85.0,87.0,60.0,87.0,67.0,83.0,88.0,68.0,80.0,54.0,64.0,70.0,65.0,60.0,62.0,47.0,74.0,55.0,72.0,71.0,69.0,60.0,55.0,66.0,52.0,64.0,47.0,59.0,54.0,40.0,60.0,35.0,44.0,33.0,43.0,35.0,43.0,46.0,31.0,26.0,45.0,27.0,40.0,45.0,40.0,25.0,52.0,38.0,43.0,43.0,32.0,34.0,25.0,48.0,27.0,20.0,37.0,35.0,37.0,26.0,32.0,25.0,22.0,27.0,22.0,18.0,20.0,18.0,15.0,17.0,14.0,16.0,18.0,19.0,13.0,15.0,12.0,8.0,12.0,17.0,10.0,12.0,5.0,5.0,7.0,7.0,3.0,5.0,3.0,2.0,3.0,2.0,5.0,3.0,2.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1080,2128,310,0,386,373,321,319,302,264,215,181,197,201,166,155,128,88,80,64,39,20,15,4,0,0,3291,13,26,188,0,3291,16,23,188,0,927,25,88,541,70,19,769,1079,0,1678,1799,41,0,3,699,22,1,1,0,0,0,0,0,2792,0,13,27,252,9,0,2,218,2997,0,196,479,34,2,1,2806,0,2.670489296636086,0.0,3.710789766407119,0.0,5.848493462194429,4,5,93,2,0,2,80,803,0,125,64,61,97,168,152,70,42,78,34,21,6,13,6,8,4,934,55,688,301,681,308,229,760,358,631,14,975,541,448,8,981,880,109,658,331,187,471,181,808,584,405,298,691,486,503,449,540,7,982,198,580,192,19,20,781,208,0,0,134,9,1,1,0,0,0,0,0,844,0,1.8394449950445984,1.647175421209118,1.0,1.0256410256410255,1.0256410256410255,50.442871587462086 +PA021006,41006,Chiriquí,Renacimiento,Santa Cruz,812,4,0,2,0,0,0,0,0,0,0,1,0,0,0,3,383,193,18,572,7,5,3,0,9,1,533,0,2,19,1,10,31,0,1,3,4,432,28,124,0,6,542,41,1,0,0,13,597,0,107,22,5,41,46,0,1,22,515,57,2,0,472,94,0,3,16,11,1,592,0,1,0,1,1,2,105,415,0,55,22,0,3,315,116,130,6,12,0,4,0,9,1,1,0,819,5.963133640552996,17.387096774193548,6.762672811059908,21.557603686635943,1.015075376884422,3.457286432160804,2.229480737018425,607,308,635,51,174,12,20,24,7,23,4,5,9,1,32,9,5,17,9,1,22,1317,445,0,271,1491,0,830,932,0,1574,188,0,476,1286,0,437,39,1159,127,0,138,10,26,0,53,79,92,79,56,435,0,0,1,66,76,151,51,73,198,0,9,19,26,23,23,11,50,6,0,9,0,0,0,2,0,608,25,940,0,1,11,5,27,294,447,93,79,132,83,47,17,42,4,306,0,2,947,933,68,184,22,278,41,0,30,10,141,188,15,557,42,0,0,1196,272,1,9,10,69,5,9,2,0,10,13,35,13,5,81,261,49,23,143,1123,259,73,105,94,58,43,29,24,15,6,2,5,1,1,42,28.0,29.0,28.0,33.0,35.0,29.0,29.0,36.0,31.0,29.0,26.0,30.0,25.0,25.0,34.0,36.0,42.0,31.0,31.0,38.0,28.0,25.0,31.0,27.0,28.0,24.0,23.0,27.0,17.0,24.0,32.0,25.0,17.0,12.0,30.0,20.0,23.0,21.0,30.0,21.0,22.0,24.0,18.0,21.0,21.0,12.0,29.0,21.0,17.0,25.0,18.0,22.0,25.0,16.0,24.0,29.0,20.0,18.0,26.0,20.0,12.0,14.0,19.0,12.0,18.0,13.0,8.0,12.0,10.0,15.0,14.0,16.0,9.0,9.0,15.0,9.0,14.0,9.0,15.0,9.0,16.0,10.0,9.0,3.0,6.0,6.0,5.0,7.0,2.0,3.0,4.0,6.0,3.0,3.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,447,1166,267,0,153,154,140,178,139,115,116,115,106,104,105,113,75,58,63,56,44,23,17,5,1,0,1858,6,6,10,0,1859,6,5,10,0,471,21,19,260,51,1,611,446,0,1108,764,8,0,0,195,0,0,0,0,1,0,0,0,1684,0,1,1,22,6,0,0,10,1840,0,133,317,28,7,2,1393,0,2.653896961690885,0.0,3.6064030131826734,0.0,6.752659574468085,0,0,14,3,0,0,4,586,0,83,82,49,92,92,64,39,31,31,17,9,1,10,3,1,2,581,26,459,148,443,164,122,485,265,342,12,595,275,332,8,599,515,92,444,163,88,356,90,517,218,389,150,457,311,296,327,280,13,594,150,302,145,10,0,431,176,0,0,39,0,0,0,0,1,0,0,0,567,0,1.5601317957166392,1.5370675453047775,1.3333333333333333,1.105263157894737,1.105263157894737,54.71334431630972 +,41007,Chiriquí,Renacimiento,Dominical,419,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,127,124,11,245,6,5,0,0,5,1,164,0,9,51,2,2,34,0,0,0,0,204,6,44,0,8,215,42,0,0,0,5,262,1,49,13,6,30,60,0,0,3,226,33,0,0,182,73,0,1,3,3,0,262,0,0,0,0,0,0,47,179,0,17,19,0,0,69,76,42,6,62,0,5,0,0,1,1,0,422,6.972413793103448,21.317241379310342,7.0,21.717241379310344,1.0,3.2748091603053435,1.950381679389313,262,158,273,32,45,6,10,9,1,9,1,5,11,0,13,5,2,5,5,1,8,537,227,0,41,723,0,414,350,0,663,101,0,178,586,0,174,4,506,80,0,88,3,10,4,22,27,48,45,39,223,0,0,1,27,34,56,17,16,65,1,3,4,8,6,3,3,6,2,0,2,0,0,0,1,0,250,39,400,0,2,23,8,5,126,192,73,4,44,63,14,7,9,2,144,0,1,454,368,12,61,7,180,13,0,10,1,19,44,5,360,14,0,0,584,87,1,1,1,10,2,2,1,0,1,3,6,3,3,15,173,24,5,56,591,78,19,33,33,25,12,3,7,4,1,0,0,1,1,14,16.0,13.0,17.0,12.0,14.0,12.0,14.0,12.0,10.0,13.0,17.0,14.0,18.0,15.0,13.0,17.0,10.0,22.0,16.0,14.0,9.0,11.0,11.0,9.0,13.0,11.0,12.0,9.0,13.0,8.0,7.0,15.0,8.0,11.0,8.0,11.0,13.0,14.0,10.0,9.0,9.0,9.0,12.0,8.0,9.0,7.0,12.0,10.0,8.0,10.0,10.0,10.0,8.0,6.0,14.0,9.0,10.0,9.0,6.0,10.0,7.0,11.0,11.0,6.0,7.0,9.0,3.0,8.0,3.0,6.0,4.0,5.0,7.0,7.0,3.0,5.0,3.0,4.0,4.0,1.0,0.0,5.0,1.0,3.0,3.0,1.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,210,519,93,0,72,61,77,79,53,53,49,57,47,47,48,44,42,29,26,17,12,7,2,0,0,0,812,6,0,4,0,812,6,0,4,0,265,0,2,100,9,1,236,209,0,480,338,4,0,0,102,2,0,0,0,0,0,0,0,718,0,0,0,15,1,0,1,1,804,0,38,96,4,1,0,683,0,2.960912052117264,0.0,4.027906976744186,0.0,5.655717761557177,0,0,5,1,0,1,0,255,0,70,42,24,36,28,23,18,2,8,4,2,2,0,1,1,1,245,17,132,130,152,110,40,222,89,173,2,260,146,116,0,262,219,43,142,120,24,118,14,248,158,104,56,206,146,116,129,133,0,262,63,144,51,4,1,227,35,0,0,16,0,0,0,0,0,0,0,0,246,0,1.726235741444867,1.3992395437262355,1.0,1.0666666666666669,1.0666666666666669,52.74809160305343 +,41008,Chiriquí,Renacimiento,Santa Clara,825,7,0,3,0,0,0,0,266,0,0,53,0,0,0,5,444,89,13,509,29,5,0,0,8,0,447,0,9,45,1,21,24,0,4,212,13,215,7,99,0,5,528,19,0,0,0,4,551,0,123,37,19,63,42,0,2,22,466,60,1,0,400,133,0,5,12,1,0,548,0,0,0,3,0,0,146,309,0,34,62,0,4,463,63,8,0,10,0,2,0,0,1,0,0,1154,6.966037735849056,23.845283018867924,6.973584905660378,23.947169811320755,1.009074410163339,3.328493647912885,2.0326678765880217,678,413,1004,49,186,17,14,37,4,37,9,7,1014,1,31,16,5,8,6,0,18,1889,1200,0,317,2772,0,1218,1871,0,2356,733,0,814,2275,0,774,40,1583,692,0,696,18,52,1,113,104,171,160,142,445,0,1,0,118,135,211,75,90,307,3,8,25,29,46,17,25,71,4,1,21,0,0,0,0,0,1272,42,1297,0,8,20,4,22,481,648,49,97,236,48,37,17,61,2,904,0,5,1865,1605,66,794,19,270,89,7,56,9,34,87,5,1563,4,0,0,2053,407,1,7,18,100,4,21,0,0,9,35,27,33,26,73,261,49,65,736,2182,197,127,230,379,146,77,30,41,26,13,2,9,2,5,4,104.0,86.0,113.0,78.0,80.0,94.0,89.0,72.0,64.0,79.0,70.0,88.0,69.0,73.0,68.0,60.0,84.0,71.0,62.0,65.0,70.0,72.0,59.0,67.0,50.0,53.0,57.0,42.0,56.0,52.0,43.0,58.0,43.0,41.0,46.0,38.0,35.0,33.0,36.0,47.0,33.0,33.0,31.0,37.0,25.0,34.0,28.0,36.0,30.0,29.0,42.0,23.0,25.0,26.0,34.0,23.0,27.0,27.0,23.0,26.0,23.0,16.0,18.0,20.0,15.0,17.0,17.0,14.0,14.0,11.0,8.0,16.0,12.0,9.0,13.0,8.0,10.0,8.0,11.0,8.0,7.0,2.0,5.0,2.0,1.0,1.0,4.0,4.0,3.0,3.0,2.0,2.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1227,2024,219,0,461,398,368,342,318,260,231,189,159,157,150,126,92,73,58,45,17,15,8,1,2,0,3155,15,19,281,0,3159,17,13,281,0,1071,41,172,345,74,18,524,1225,0,1444,1984,42,0,1,1880,56,0,0,0,0,0,0,0,1533,0,23,51,41,5,2,1,84,3263,0,287,378,18,7,2,2778,0,2.442581726739313,0.0,3.577070063694268,0.0,5.231412103746398,6,13,15,2,1,0,17,624,0,66,37,33,53,74,81,59,30,51,25,21,6,8,1,10,1,632,46,405,273,420,258,179,499,113,565,13,665,369,309,9,669,584,94,407,271,200,207,143,535,389,289,232,446,303,375,317,361,7,671,129,365,172,12,197,528,150,0,0,175,8,0,0,0,0,0,0,0,495,0,2.1314285714285712,1.8342857142857143,1.0,1.0454545454545454,1.0454545454545454,50.18436578171092 +,41101,Chiriquí,San Félix,Las Lajas,759,10,2,3,0,0,0,0,3,0,0,2,11,0,0,5,365,117,5,466,21,0,0,0,4,1,468,0,0,7,2,0,15,0,0,311,1,113,2,64,0,1,455,29,4,0,0,4,492,1,141,17,42,65,16,0,10,39,392,49,2,0,359,24,84,6,4,15,0,485,1,4,0,0,1,1,161,304,0,27,0,0,442,0,0,14,1,1,0,0,0,28,6,0,0,790,5.375565610859729,16.46153846153846,5.002262443438914,15.210407239819004,1.0020325203252032,3.6260162601626016,2.532520325203252,507,251,449,47,110,28,38,21,2,28,7,5,25,3,46,16,6,3,12,0,3,1135,313,0,380,1068,0,915,533,0,1344,104,0,373,1075,0,319,54,999,76,0,78,17,18,1,27,35,32,34,43,193,0,0,8,50,84,119,30,68,281,2,15,23,37,46,63,86,13,25,0,19,0,0,0,1,0,554,65,704,0,14,33,11,144,226,242,40,52,357,29,115,14,45,1,44,5,3,764,757,155,221,18,157,44,0,15,3,7,71,15,463,39,0,0,702,370,9,19,31,157,17,17,1,0,2,53,75,55,33,88,43,73,31,166,714,121,63,90,132,133,68,58,49,24,21,5,2,1,1,39,14.0,21.0,14.0,24.0,28.0,22.0,22.0,14.0,19.0,20.0,13.0,28.0,15.0,25.0,23.0,20.0,18.0,25.0,19.0,22.0,20.0,25.0,16.0,17.0,15.0,13.0,21.0,18.0,19.0,16.0,18.0,13.0,15.0,18.0,11.0,14.0,18.0,21.0,21.0,18.0,18.0,16.0,16.0,16.0,10.0,24.0,20.0,13.0,18.0,17.0,25.0,15.0,20.0,14.0,25.0,25.0,24.0,18.0,16.0,21.0,21.0,23.0,22.0,16.0,14.0,20.0,16.0,16.0,20.0,12.0,16.0,19.0,17.0,24.0,11.0,11.0,8.0,10.0,14.0,9.0,10.0,2.0,9.0,8.0,4.0,2.0,6.0,5.0,6.0,6.0,6.0,0.0,2.0,3.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,302,918,301,0,101,97,104,104,93,87,75,92,76,92,99,104,96,84,87,52,33,25,12,4,4,0,1455,22,37,7,0,1455,27,32,7,0,422,14,48,225,68,10,432,302,0,669,802,50,0,1,203,6,0,0,0,0,0,0,15,1296,0,20,30,89,4,10,2,138,1228,0,228,268,151,10,6,858,0,2.085457271364318,0.0,2.920704845814978,0.0,8.948717948717949,9,9,38,2,1,1,59,388,0,48,25,19,29,67,68,45,36,63,24,22,14,11,6,2,14,496,11,437,70,420,87,100,407,427,80,107,400,270,237,50,457,446,61,415,92,172,243,153,354,360,147,173,334,185,322,180,327,6,501,116,233,141,17,2,308,199,0,1,44,3,0,0,0,0,0,0,5,454,0,1.50098231827112,1.487229862475442,1.0,1.0,1.0,58.04733727810651 +PA021101,41102,Chiriquí,San Félix,Juay,272,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,166,3,162,14,0,0,0,3,0,120,0,0,24,0,5,30,0,0,70,1,84,0,24,0,0,131,48,0,0,0,0,179,8,60,3,12,16,8,0,0,6,154,17,1,1,129,44,0,3,2,1,0,178,0,0,0,0,1,0,14,121,0,39,5,0,0,25,2,134,3,0,0,15,0,0,0,0,0,286,3.1481481481481484,7.0,4.777777777777778,13.148148148148149,1.0167597765363128,3.1396648044692737,2.0,182,97,221,15,71,6,10,8,1,14,1,2,5,0,9,14,1,3,1,4,1,394,196,0,57,533,0,193,397,0,498,92,0,176,414,0,168,8,327,87,0,87,1,5,0,16,22,31,25,31,81,0,1,0,18,25,58,18,30,76,1,0,7,10,11,9,16,9,1,0,1,0,0,0,0,0,151,27,322,0,5,12,3,13,121,157,24,7,81,20,25,2,17,1,22,8,1,319,314,35,82,2,37,4,0,16,1,0,29,3,317,14,0,0,346,106,3,1,11,31,1,1,0,0,1,6,13,8,3,29,40,23,8,47,393,66,23,30,45,28,17,5,4,3,4,0,0,0,1,14,13.0,9.0,10.0,11.0,18.0,16.0,14.0,12.0,12.0,18.0,9.0,13.0,8.0,8.0,18.0,14.0,11.0,17.0,7.0,11.0,11.0,9.0,13.0,8.0,4.0,6.0,12.0,7.0,8.0,10.0,14.0,6.0,15.0,6.0,4.0,6.0,11.0,5.0,7.0,8.0,8.0,5.0,5.0,7.0,9.0,1.0,9.0,5.0,5.0,7.0,6.0,9.0,7.0,5.0,6.0,3.0,6.0,5.0,10.0,3.0,8.0,9.0,4.0,6.0,3.0,5.0,4.0,4.0,5.0,6.0,2.0,2.0,5.0,3.0,2.0,2.0,2.0,2.0,1.0,3.0,1.0,1.0,3.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,189,381,63,0,61,72,56,60,45,43,45,37,34,27,33,27,30,24,14,10,10,1,3,1,0,0,625,2,1,5,0,625,2,1,5,0,199,2,11,54,17,2,159,189,0,369,260,4,0,0,284,0,0,0,0,0,0,0,3,346,0,0,2,14,0,0,0,1,616,0,51,95,11,3,0,473,0,2.4417670682730925,0.0,3.3430232558139537,0.0,6.631911532385466,0,0,5,0,0,0,1,176,0,34,19,7,14,25,34,13,12,13,1,3,2,1,0,1,3,150,32,107,75,99,83,31,151,106,76,14,168,63,119,7,175,132,50,97,85,25,72,27,155,52,130,28,154,53,129,33,149,1,181,35,99,44,4,0,111,71,0,0,70,0,0,0,0,0,0,0,0,112,0,1.7527472527472527,1.7252747252747254,0.0,1.1428571428571428,1.1428571428571428,51.84065934065934 +PA021103,41103,Chiriquí,San Félix,Lajas Adentro,396,2,0,0,0,0,0,0,0,0,0,1,0,0,0,2,206,56,0,262,2,0,0,0,0,0,245,0,0,6,0,1,12,0,0,160,2,54,0,48,0,0,246,16,2,0,0,0,264,0,62,10,27,18,17,0,6,23,208,25,1,1,213,6,35,2,3,5,0,257,1,4,0,0,2,0,102,150,0,11,1,0,251,0,3,2,0,1,0,0,0,6,1,0,0,399,5.933070866141732,15.543307086614174,4.751968503937008,12.047244094488187,1.0,3.5681818181818183,2.484848484848485,265,135,326,9,69,7,8,14,1,18,6,2,7,1,16,9,4,3,2,0,1,679,131,0,250,560,0,460,350,0,762,48,0,254,556,0,230,24,520,36,0,37,9,18,1,10,17,24,18,33,109,0,0,0,26,45,46,16,39,197,1,3,5,8,24,24,58,25,5,0,10,0,0,0,2,0,267,34,432,0,2,8,20,63,182,150,7,30,183,29,43,6,20,0,9,1,0,440,428,99,99,8,64,13,1,7,0,5,32,4,368,20,0,0,371,218,0,7,21,102,2,10,2,0,1,23,43,26,16,38,31,44,15,64,484,60,15,39,43,51,68,22,33,16,13,1,3,0,0,20,15.0,14.0,16.0,13.0,15.0,15.0,16.0,11.0,9.0,11.0,12.0,21.0,7.0,16.0,24.0,11.0,9.0,13.0,14.0,18.0,20.0,14.0,21.0,14.0,13.0,14.0,9.0,14.0,10.0,12.0,7.0,14.0,3.0,14.0,9.0,12.0,12.0,15.0,8.0,6.0,6.0,7.0,9.0,9.0,8.0,8.0,9.0,13.0,16.0,4.0,9.0,12.0,10.0,10.0,12.0,6.0,8.0,9.0,8.0,8.0,7.0,9.0,8.0,4.0,17.0,7.0,9.0,8.0,6.0,4.0,4.0,7.0,10.0,5.0,4.0,3.0,1.0,6.0,2.0,6.0,4.0,10.0,1.0,0.0,3.0,5.0,3.0,1.0,3.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,215,532,121,0,73,62,80,65,82,59,47,53,39,50,53,39,45,34,30,18,18,12,4,4,1,0,843,10,14,1,0,843,12,12,1,0,216,11,22,140,36,6,223,214,0,422,424,22,0,1,173,0,0,0,0,1,0,0,1,692,0,5,4,35,1,3,0,63,757,0,142,182,59,4,2,479,0,2.013736263736264,0.0,2.9173553719008263,0.0,8.83294930875576,2,2,15,0,2,0,23,221,0,22,18,8,22,21,32,30,18,27,21,19,7,5,3,0,11,255,10,232,33,224,41,60,205,230,35,53,212,153,112,17,248,241,24,215,50,88,127,96,169,167,98,110,155,87,178,84,181,1,264,57,139,64,5,0,172,93,0,0,28,0,0,0,0,0,0,0,0,237,0,1.660377358490566,1.6150943396226416,1.0,1.125,1.125,55.97735849056604 +PA021104,41104,Chiriquí,San Félix,San Félix,1464,6,35,12,0,0,0,2,4,0,0,0,10,0,0,4,757,198,2,853,106,0,1,0,1,0,892,0,0,22,3,7,37,0,0,730,3,181,11,32,0,4,892,51,1,0,0,17,961,4,153,24,313,40,22,0,13,184,702,58,4,0,845,37,52,13,11,2,1,958,0,1,0,2,0,0,329,583,1,46,2,0,910,0,8,3,3,23,0,6,0,1,7,0,473,1060,5.738562091503268,17.618736383442265,5.186274509803922,15.811546840958606,1.0062434963579605,3.439125910509885,2.267429760665973,978,490,1185,79,314,35,38,62,5,72,8,18,46,3,34,31,10,18,10,4,11,2425,665,0,900,2190,0,1785,1305,0,2841,249,0,1059,2031,0,951,108,1839,192,0,195,44,58,8,79,98,100,85,95,320,2,0,4,95,124,226,89,147,552,6,72,70,79,86,64,141,176,23,3,44,0,1,0,4,0,1189,148,1393,0,7,90,18,128,643,518,63,41,765,97,153,27,190,7,64,5,1,1673,1660,439,379,36,387,40,1,25,2,16,116,20,1155,47,0,0,1405,816,4,82,27,331,15,45,5,0,2,80,230,101,62,256,45,190,116,255,1822,203,110,133,224,191,200,97,159,84,36,6,11,4,6,47,54.0,51.0,64.0,74.0,65.0,68.0,58.0,55.0,68.0,46.0,64.0,73.0,57.0,54.0,50.0,53.0,50.0,50.0,55.0,71.0,53.0,56.0,71.0,65.0,50.0,51.0,55.0,47.0,54.0,44.0,61.0,52.0,37.0,46.0,45.0,35.0,39.0,43.0,40.0,35.0,47.0,39.0,47.0,62.0,35.0,37.0,34.0,30.0,26.0,40.0,34.0,42.0,43.0,33.0,24.0,36.0,23.0,17.0,37.0,25.0,27.0,22.0,21.0,33.0,24.0,21.0,22.0,29.0,18.0,24.0,17.0,19.0,15.0,11.0,13.0,10.0,14.0,12.0,12.0,8.0,13.0,8.0,4.0,11.0,2.0,10.0,6.0,8.0,4.0,8.0,4.0,2.0,1.0,2.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,901,2096,336,0,308,295,298,279,295,251,241,192,230,167,176,138,127,114,75,56,38,36,11,4,2,0,3250,16,54,13,0,3251,19,50,13,0,897,33,278,404,116,16,688,901,0,1676,1620,37,0,11,1215,20,3,0,0,1,0,0,10,2073,0,14,105,100,8,6,7,197,2896,0,519,655,136,14,2,2007,0,2.051449275362319,0.0,2.963243243243243,0.0,8.594359435943595,4,38,36,6,2,5,77,810,0,84,45,38,68,104,96,114,78,123,73,44,25,34,11,15,15,933,45,750,228,733,245,238,740,802,176,182,796,527,451,24,954,867,111,724,254,411,313,369,609,673,305,312,666,243,735,314,664,7,971,203,454,292,29,5,611,367,0,2,285,1,1,0,0,1,0,0,1,687,0,1.7019328585961342,1.688708036622584,1.0,1.0576923076923077,1.0576923076923077,51.04498977505112 +PA021105,41105,Chiriquí,San Félix,Santa Cruz,244,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,64,0,164,0,0,0,0,0,0,150,0,0,2,0,2,8,0,2,47,0,99,1,17,0,0,142,20,0,0,0,2,164,2,65,5,0,0,8,0,1,6,148,9,0,0,138,5,16,3,1,1,0,164,0,0,0,0,0,0,27,130,0,7,0,0,2,160,0,1,0,0,0,0,0,0,0,1,0,245,6.728395061728395,8.574074074074074,6.969135802469136,10.660493827160494,1.0060975609756098,3.4939024390243905,2.3536585365853657,166,92,185,10,45,8,4,3,2,8,2,0,1,0,15,7,4,4,5,0,3,384,113,0,109,388,0,307,190,0,458,39,0,140,357,0,123,17,323,34,0,35,5,4,0,10,14,23,11,22,82,0,0,1,17,27,54,12,24,117,0,2,0,1,11,7,7,9,1,0,1,0,0,0,0,0,118,31,295,0,0,12,17,26,98,127,22,22,79,8,20,1,25,0,5,4,0,276,250,34,53,2,51,1,0,1,0,0,41,11,213,6,0,0,286,119,1,2,14,20,1,1,0,0,0,7,9,7,6,25,19,29,6,41,324,59,7,13,23,25,31,18,10,5,2,2,0,0,1,6,8.0,9.0,6.0,6.0,12.0,9.0,5.0,11.0,3.0,13.0,7.0,4.0,5.0,8.0,12.0,10.0,9.0,6.0,11.0,12.0,14.0,11.0,10.0,11.0,12.0,3.0,5.0,8.0,5.0,7.0,3.0,6.0,5.0,8.0,3.0,4.0,7.0,8.0,5.0,3.0,8.0,6.0,8.0,7.0,9.0,8.0,3.0,7.0,11.0,5.0,10.0,3.0,10.0,2.0,5.0,7.0,8.0,6.0,5.0,6.0,3.0,3.0,6.0,6.0,6.0,0.0,2.0,4.0,1.0,4.0,5.0,2.0,5.0,1.0,5.0,0.0,2.0,1.0,4.0,1.0,0.0,3.0,4.0,2.0,3.0,3.0,2.0,0.0,0.0,5.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,118,344,64,0,41,41,36,48,58,28,25,27,38,34,30,32,24,11,18,8,12,10,3,2,0,0,526,0,0,0,0,526,0,0,0,0,175,2,23,53,15,6,134,118,0,297,227,2,0,0,45,2,0,0,0,0,0,0,2,477,0,15,0,16,0,15,0,48,432,0,57,109,24,2,0,334,0,2.456730769230769,0.0,3.286666666666666,0.0,7.623574144486692,3,0,5,0,3,0,22,133,0,29,18,9,11,18,15,17,18,14,7,4,1,2,0,2,0,153,13,126,40,127,39,26,140,138,28,11,155,102,64,0,166,138,28,135,31,44,91,39,127,109,57,54,112,77,89,73,93,0,166,35,90,40,1,0,109,57,0,0,8,2,0,0,0,0,0,0,0,156,0,1.6626506024096386,1.5060240963855422,0.0,1.0,1.0,54.72289156626506 +PA021203,41201,Chiriquí,San Lorenzo,Horconcitos,519,4,0,0,0,0,0,0,2,0,0,0,1,0,0,1,256,84,7,321,20,2,0,0,5,0,325,0,0,4,1,5,12,0,1,235,73,34,5,1,0,0,324,21,0,0,0,3,348,3,91,23,15,35,8,0,1,34,274,35,3,1,296,17,21,5,4,4,1,343,2,0,0,2,0,1,107,222,0,17,2,0,326,5,7,4,1,3,0,0,0,0,2,0,0,526,6.819526627218935,18.36390532544379,6.967455621301776,20.40532544378698,1.0172413793103448,3.560344827586207,2.0373563218390807,355,176,349,35,68,9,20,9,0,11,2,4,14,0,23,24,9,6,5,0,8,765,220,0,171,814,0,474,511,0,889,96,0,264,721,0,242,22,655,66,0,66,5,14,1,29,35,50,33,46,161,0,0,1,40,39,77,31,45,169,0,1,5,18,30,26,43,13,1,0,5,0,0,0,1,0,328,42,520,0,0,12,25,53,168,231,58,10,174,34,49,13,20,0,39,28,1,532,520,45,189,16,98,6,0,3,1,16,62,6,363,85,0,0,577,209,1,7,14,76,0,5,1,0,0,20,22,28,9,53,32,66,18,122,561,92,41,37,87,60,51,21,9,7,1,0,0,0,0,85,8.0,17.0,17.0,25.0,15.0,14.0,15.0,18.0,15.0,18.0,21.0,14.0,12.0,19.0,14.0,17.0,18.0,18.0,18.0,17.0,14.0,18.0,15.0,18.0,9.0,21.0,18.0,20.0,20.0,10.0,13.0,12.0,19.0,11.0,13.0,8.0,10.0,8.0,14.0,18.0,12.0,11.0,14.0,12.0,8.0,14.0,9.0,9.0,20.0,12.0,13.0,7.0,11.0,11.0,13.0,11.0,7.0,13.0,13.0,9.0,19.0,10.0,9.0,8.0,12.0,9.0,11.0,12.0,8.0,5.0,5.0,7.0,5.0,7.0,7.0,3.0,6.0,3.0,6.0,2.0,6.0,1.0,1.0,3.0,8.0,3.0,3.0,5.0,5.0,4.0,3.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,242,664,146,0,82,80,80,88,74,89,68,58,57,64,55,53,58,45,31,20,19,20,7,3,1,0,1037,7,2,6,0,1037,8,1,6,0,307,8,27,113,31,4,320,242,0,672,371,9,0,5,152,12,0,0,0,1,0,0,0,882,0,11,62,81,9,0,4,63,822,0,141,177,52,5,0,677,0,2.0542986425339365,0.0,3.024137931034483,0.0,7.611216730038023,5,31,27,2,0,3,29,258,0,41,27,25,24,58,40,40,22,25,7,6,2,1,0,0,36,342,13,301,54,288,67,65,290,297,58,39,316,201,154,10,345,313,42,290,65,77,213,92,263,194,161,90,265,41,314,50,305,2,353,76,186,86,7,2,248,107,0,0,38,3,0,0,0,0,0,0,0,314,0,1.4901960784313726,1.4565826330532212,1.3333333333333333,1.1,1.1,53.03380281690141 +PA021201,41202,Chiriquí,San Lorenzo,Boca Chica,444,6,0,0,0,0,0,0,3,0,0,6,3,0,0,1,141,60,8,171,31,4,0,0,3,1,151,0,10,22,0,2,24,0,1,90,43,69,6,0,0,2,186,20,3,0,0,1,210,3,125,15,21,54,22,0,1,16,133,56,4,0,164,21,0,7,9,8,1,165,3,29,3,1,8,1,86,92,0,26,6,0,0,80,70,22,16,8,0,0,0,11,1,2,0,462,6.98,23.76,7.0,24.0,1.0095238095238095,2.8190476190476192,1.3523809523809525,221,103,151,9,20,2,4,1,3,4,0,0,29,6,2,2,3,3,1,0,1,448,75,0,156,367,0,378,145,0,461,62,0,108,415,0,97,11,357,58,0,58,2,5,2,14,21,18,14,21,63,0,0,0,21,31,29,8,20,70,0,2,3,12,19,40,18,9,2,0,18,0,0,0,3,0,244,7,221,0,0,6,0,55,64,93,9,0,116,9,26,7,12,0,31,45,1,297,256,7,130,12,92,5,0,0,1,3,11,0,132,17,0,0,276,91,0,2,11,70,2,17,3,0,1,22,4,31,7,47,38,12,5,84,211,27,9,26,58,70,53,11,20,9,16,6,7,8,5,17,8.0,6.0,8.0,8.0,8.0,5.0,8.0,11.0,16.0,3.0,8.0,5.0,7.0,9.0,5.0,9.0,5.0,8.0,7.0,7.0,12.0,4.0,9.0,10.0,5.0,7.0,11.0,11.0,7.0,9.0,5.0,9.0,7.0,12.0,1.0,7.0,5.0,4.0,8.0,9.0,12.0,7.0,9.0,9.0,5.0,10.0,6.0,5.0,3.0,8.0,9.0,9.0,6.0,11.0,4.0,3.0,9.0,4.0,9.0,8.0,16.0,4.0,8.0,5.0,9.0,6.0,2.0,7.0,6.0,2.0,5.0,0.0,4.0,1.0,2.0,3.0,4.0,2.0,1.0,3.0,1.0,3.0,3.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,115,376,62,0,38,43,34,36,40,45,34,33,42,32,39,33,42,23,12,13,7,4,2,0,1,0,448,32,65,8,0,448,36,61,8,0,173,6,12,100,8,7,132,115,0,194,260,99,0,0,148,6,0,0,0,0,0,0,1,398,0,8,21,82,10,0,1,35,396,0,107,50,9,1,49,337,0,1.9661835748792271,0.0,2.91044776119403,0.0,8.204339963833634,5,11,24,5,0,0,17,159,0,5,7,3,14,31,53,25,10,15,8,9,2,7,8,8,7,211,10,147,74,137,84,29,192,163,58,69,152,108,113,7,214,202,19,134,87,70,64,78,143,157,64,81,140,63,158,51,170,3,218,86,108,18,9,3,179,42,0,0,60,3,0,0,0,0,0,0,1,157,0,1.3258928571428572,1.1428571428571428,1.5,1.0,1.0,50.79185520361991 +PA021202,41203,Chiriquí,San Lorenzo,Boca del Monte,1044,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,369,26,576,25,21,0,0,3,2,422,0,3,47,0,0,147,0,8,183,3,403,3,32,3,0,494,132,0,0,0,1,627,31,85,15,7,242,46,0,0,11,532,82,2,0,463,124,0,8,30,2,0,616,0,0,0,0,10,1,91,379,0,151,6,0,203,262,15,20,58,45,0,13,0,5,2,4,0,1053,5.6125,16.335416666666667,6.816666666666666,21.45,1.009569377990431,3.145135566188198,1.977671451355662,633,327,748,46,183,33,27,15,7,34,5,2,10,1,38,27,8,1,9,2,6,1267,666,0,186,1747,0,804,1129,0,1657,276,0,513,1420,0,484,29,1192,228,0,228,17,30,1,41,80,131,107,96,394,0,1,1,64,70,161,53,83,263,2,15,4,8,12,26,17,19,5,0,4,0,0,0,0,0,539,106,1076,0,5,39,52,47,344,583,24,78,145,36,71,22,69,3,239,37,3,1076,995,72,335,28,149,30,0,8,3,30,122,7,947,18,0,0,1345,300,1,11,8,49,3,4,0,0,2,19,31,20,10,95,98,56,27,287,1271,273,61,90,155,81,54,23,33,8,3,0,0,0,1,18,39.0,38.0,30.0,31.0,34.0,40.0,38.0,27.0,39.0,34.0,47.0,41.0,31.0,40.0,37.0,28.0,37.0,33.0,42.0,47.0,28.0,25.0,26.0,27.0,27.0,39.0,23.0,29.0,29.0,22.0,24.0,20.0,20.0,22.0,10.0,26.0,29.0,27.0,29.0,23.0,19.0,23.0,20.0,23.0,28.0,22.0,25.0,35.0,19.0,32.0,17.0,22.0,22.0,16.0,29.0,22.0,22.0,25.0,19.0,17.0,22.0,22.0,25.0,22.0,18.0,17.0,14.0,14.0,15.0,10.0,12.0,8.0,20.0,11.0,11.0,18.0,10.0,13.0,14.0,14.0,9.0,9.0,8.0,6.0,4.0,5.0,3.0,3.0,6.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,546,1258,267,0,172,178,196,187,133,142,96,134,113,133,106,105,109,70,62,69,36,19,6,2,3,0,2036,13,2,20,0,2036,13,2,20,0,685,5,26,177,60,10,562,546,0,1272,788,11,0,2,654,7,0,1,0,0,0,0,0,1407,0,7,28,186,12,0,0,224,1614,0,182,327,43,5,1,1513,0,2.686369119420989,0.0,3.6237113402061856,0.0,6.15210043457267,2,7,74,7,0,0,81,462,0,113,88,23,62,106,89,48,32,37,15,8,2,5,0,1,4,547,86,381,252,362,271,126,507,331,302,26,607,331,302,8,625,472,161,362,271,160,202,92,541,209,424,113,520,280,353,303,330,6,627,158,301,164,10,0,453,180,0,0,136,3,0,0,0,0,0,0,0,494,0,1.6998420221169035,1.5718799368088467,0.0,1.05,1.05,54.21484992101106 +PA021204,41204,Chiriquí,San Lorenzo,San Juan,758,4,0,0,0,0,0,0,0,0,0,0,1,0,0,1,335,138,10,447,27,3,0,0,7,0,436,0,0,10,1,7,30,0,0,288,3,166,5,22,0,0,442,31,1,0,1,9,484,31,100,31,38,12,66,0,4,22,441,17,0,0,451,27,0,4,2,0,0,484,0,0,0,0,0,0,105,352,0,23,3,1,3,338,52,10,33,32,0,0,0,13,3,0,0,763,5.033078880407125,4.356234096692112,5.043256997455471,4.340966921119593,1.008264462809917,3.5144628099173554,2.291322314049587,489,260,603,44,145,12,25,24,4,39,5,7,14,1,55,24,7,11,1,0,3,1165,382,0,238,1309,0,780,767,0,1368,179,0,473,1074,0,422,51,964,110,0,114,17,26,1,47,73,88,61,63,280,0,0,1,47,63,125,33,53,311,3,7,9,14,20,27,38,16,2,1,6,0,0,1,0,0,456,61,844,0,6,16,31,56,300,394,44,50,222,29,29,5,142,0,59,16,0,825,847,91,194,6,192,12,0,6,1,15,82,15,685,16,0,0,905,352,1,10,14,71,2,6,0,0,1,9,35,20,15,105,76,67,44,145,1086,132,50,89,91,71,61,32,20,17,4,2,1,0,0,16,37.0,27.0,32.0,29.0,31.0,34.0,28.0,28.0,37.0,28.0,24.0,32.0,29.0,26.0,30.0,28.0,26.0,20.0,25.0,32.0,35.0,27.0,46.0,20.0,21.0,32.0,19.0,23.0,19.0,22.0,19.0,17.0,26.0,33.0,16.0,11.0,22.0,26.0,16.0,21.0,18.0,12.0,17.0,18.0,12.0,16.0,17.0,18.0,14.0,17.0,21.0,20.0,22.0,14.0,20.0,18.0,20.0,14.0,17.0,18.0,21.0,21.0,15.0,8.0,17.0,11.0,13.0,9.0,8.0,12.0,6.0,8.0,15.0,11.0,6.0,16.0,5.0,8.0,8.0,8.0,5.0,2.0,8.0,6.0,3.0,5.0,2.0,2.0,2.0,3.0,0.0,3.0,0.0,1.0,4.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,452,1027,193,0,156,155,141,131,149,115,111,96,77,82,97,87,82,53,46,45,24,14,8,1,2,0,1606,18,7,41,0,1607,19,5,41,0,529,5,12,146,49,3,476,452,0,1045,612,15,0,0,297,7,0,0,0,0,0,0,0,1368,0,7,49,16,0,0,0,24,1576,0,171,280,50,8,1,1162,0,2.520408163265306,0.0,3.440501043841336,0.0,6.9509569377990434,1,19,4,0,0,0,12,453,0,89,46,26,69,70,55,27,35,33,14,8,10,3,1,1,1,457,32,381,108,377,112,71,418,366,123,55,434,253,236,13,476,386,103,365,124,104,261,96,393,230,259,98,391,109,380,133,356,2,487,95,255,130,9,0,308,181,0,0,62,1,0,0,0,0,0,0,0,426,0,1.687116564417178,1.7321063394683027,1.0,1.0454545454545454,1.0454545454545454,54.01840490797546 +PA021205,41205,Chiriquí,San Lorenzo,San Lorenzo,1130,30,0,0,0,0,0,0,17,0,0,0,6,0,0,1,372,397,32,646,124,11,0,0,20,1,660,0,2,24,0,5,109,0,2,402,118,246,4,32,0,0,678,100,1,0,0,23,802,17,130,34,51,63,63,0,1,105,630,66,0,0,618,117,11,23,33,0,0,797,2,2,0,0,1,0,131,535,0,132,4,0,517,156,30,6,44,1,0,28,0,0,20,0,0,1183,6.650071123755335,19.44381223328592,6.95448079658606,22.533428165007116,1.0236907730673317,3.134663341645885,1.9788029925187032,827,431,982,59,173,26,34,28,3,45,7,10,58,0,58,37,4,7,10,4,9,1730,758,0,372,2116,0,1212,1276,0,2190,298,0,705,1783,0,638,67,1560,223,0,226,13,37,1,83,91,113,88,87,421,0,1,0,95,137,218,86,125,380,2,15,47,37,31,57,44,35,8,0,10,0,0,0,0,0,871,124,1234,0,6,46,31,70,476,576,72,40,496,67,96,16,50,4,227,15,0,1393,1290,117,533,18,213,19,0,69,2,17,99,10,1125,295,0,0,1563,507,0,21,11,112,7,8,0,0,2,37,52,37,22,143,98,124,52,428,1606,156,72,77,185,109,68,38,31,25,9,4,5,1,2,295,58.0,39.0,52.0,46.0,51.0,56.0,36.0,38.0,34.0,44.0,42.0,46.0,41.0,41.0,54.0,41.0,57.0,43.0,63.0,58.0,60.0,57.0,46.0,45.0,37.0,43.0,45.0,33.0,45.0,39.0,41.0,32.0,36.0,37.0,40.0,30.0,32.0,30.0,30.0,28.0,46.0,28.0,30.0,27.0,31.0,31.0,26.0,28.0,34.0,30.0,32.0,29.0,25.0,23.0,35.0,27.0,22.0,30.0,23.0,26.0,28.0,24.0,22.0,22.0,21.0,20.0,16.0,19.0,18.0,12.0,15.0,6.0,10.0,13.0,6.0,7.0,11.0,14.0,8.0,6.0,11.0,13.0,5.0,6.0,5.0,5.0,5.0,6.0,3.0,4.0,2.0,3.0,2.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,678,1748,257,0,246,208,224,262,245,205,186,150,162,149,144,128,117,85,50,46,40,23,9,3,1,0,2560,18,12,93,0,2560,19,11,93,0,857,11,54,237,70,15,761,678,0,1332,1326,25,0,1,651,14,0,0,0,1,0,1,0,2015,0,11,36,208,10,1,4,117,2296,0,414,503,74,10,1,1681,0,2.303655107778819,0.0,3.2024793388429758,0.0,7.049944092433843,2,9,93,2,0,2,44,675,0,174,57,35,59,111,90,49,36,44,18,10,4,4,2,3,125,739,88,526,301,537,290,133,694,578,249,52,775,429,398,12,815,661,166,497,330,176,321,174,653,443,384,158,669,231,596,263,564,8,819,197,429,191,10,17,583,244,0,0,172,6,0,0,0,0,0,1,0,648,0,1.650473933649289,1.528436018957346,1.0,1.0357142857142858,1.0357142857142858,49.847642079806526 +PA021308,41301,Chiriquí,Tolé,Tolé,1454,9,1,0,0,0,0,1,0,0,0,0,1,0,0,9,722,251,17,948,34,2,0,0,14,1,920,0,0,30,2,9,30,0,8,476,71,351,9,15,1,76,896,79,2,0,0,22,999,1,146,38,82,151,47,0,2,108,815,72,1,1,891,47,2,11,8,40,0,992,2,1,0,1,2,1,275,671,0,46,6,1,858,34,39,5,5,24,0,14,0,10,9,1,1274,192,6.505907626208378,18.741138560687432,6.638023630504834,20.16111707841031,1.014014014014014,3.894894894894895,2.558558558558558,1014,509,1230,74,289,34,48,35,2,47,14,11,56,9,54,16,10,13,11,0,10,2659,533,0,906,2286,0,1971,1221,0,2869,323,0,1080,2112,0,947,133,1893,219,0,221,29,46,5,94,118,132,85,92,403,0,1,1,91,124,192,106,132,591,0,7,71,82,79,95,124,62,156,4,46,1,0,1,1,0,1056,208,1596,0,47,83,26,206,666,595,83,46,697,77,149,50,155,0,96,0,8,1650,1722,437,314,54,369,38,0,8,12,32,138,19,1642,8,0,0,1539,833,1,13,34,309,85,45,1,0,12,69,267,53,49,235,43,152,90,294,1912,267,104,159,223,159,155,83,108,129,40,8,8,2,7,8,37.0,47.0,44.0,52.0,51.0,51.0,47.0,76.0,49.0,58.0,46.0,56.0,53.0,53.0,64.0,52.0,60.0,56.0,65.0,59.0,72.0,58.0,65.0,58.0,36.0,50.0,42.0,45.0,44.0,39.0,43.0,35.0,32.0,40.0,43.0,40.0,41.0,45.0,43.0,48.0,43.0,53.0,40.0,41.0,30.0,26.0,30.0,43.0,35.0,46.0,38.0,32.0,44.0,43.0,29.0,31.0,35.0,40.0,40.0,29.0,30.0,35.0,31.0,31.0,27.0,29.0,26.0,26.0,27.0,25.0,22.0,25.0,19.0,28.0,20.0,16.0,19.0,21.0,15.0,22.0,23.0,12.0,17.0,13.0,11.0,4.0,6.0,8.0,5.0,9.0,5.0,6.0,5.0,3.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,784,2113,475,0,231,281,272,292,289,220,193,217,207,180,186,175,154,133,114,93,76,32,23,3,1,0,3301,24,34,13,0,3301,29,29,13,0,758,15,53,490,131,17,1125,783,0,1553,1788,31,0,6,695,16,0,0,0,0,0,0,0,2655,0,13,24,143,14,1,3,100,3074,0,547,728,202,23,1,1871,0,2.2197430696416496,0.0,3.231404958677686,0.0,8.612692763938316,8,13,50,5,1,2,38,897,0,128,88,49,92,112,89,78,65,94,85,48,24,29,17,14,1,964,50,825,189,792,222,239,775,734,280,160,854,498,516,42,972,938,76,778,236,487,291,372,642,674,340,348,666,259,755,331,683,6,1008,184,518,269,43,1,633,381,0,0,162,7,0,0,0,0,0,0,0,845,0,1.625615763546798,1.696551724137931,1.25,1.0425531914893618,1.0425531914893618,55.24063116370809 +PA021301,41302,Chiriquí,Tolé,Bella Vista,323,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,120,5,209,17,1,0,0,4,0,133,0,1,23,6,3,61,0,4,0,24,196,3,7,1,0,107,120,0,0,0,4,231,0,41,9,0,26,31,0,0,4,210,9,0,8,109,75,0,3,11,26,7,218,0,0,0,0,12,1,27,134,0,66,3,1,0,40,132,1,0,52,0,2,0,0,2,2,0,338,6.476744186046512,21.24418604651163,6.965116279069767,23.75581395348837,1.0043290043290043,2.6666666666666665,1.5757575757575757,232,126,303,14,40,9,7,11,1,5,1,4,5,1,15,7,6,9,1,0,0,479,224,0,57,646,0,211,492,0,591,112,0,191,512,0,178,13,407,105,0,105,2,7,0,22,33,35,33,28,164,0,0,0,24,22,49,28,25,87,0,0,3,8,7,5,8,1,6,0,1,0,0,0,0,0,130,17,485,0,3,3,5,15,142,258,47,23,49,16,3,3,29,2,43,0,0,397,362,22,72,3,47,0,0,1,0,30,53,3,336,1,0,0,506,107,0,0,2,12,4,1,0,0,0,5,5,4,2,26,6,26,10,63,566,77,28,22,30,16,8,2,5,3,1,0,0,0,0,1,20.0,12.0,13.0,11.0,15.0,11.0,8.0,14.0,12.0,11.0,14.0,13.0,11.0,13.0,16.0,26.0,17.0,17.0,18.0,16.0,13.0,8.0,12.0,13.0,11.0,11.0,12.0,10.0,9.0,8.0,11.0,11.0,12.0,5.0,6.0,8.0,5.0,10.0,9.0,11.0,13.0,13.0,8.0,11.0,5.0,7.0,6.0,3.0,7.0,6.0,10.0,4.0,7.0,8.0,4.0,11.0,4.0,6.0,10.0,7.0,4.0,3.0,8.0,9.0,7.0,5.0,7.0,5.0,4.0,6.0,2.0,4.0,1.0,5.0,9.0,1.0,3.0,6.0,3.0,1.0,4.0,4.0,4.0,1.0,4.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,194,470,95,0,71,56,67,94,57,50,45,43,50,29,33,38,31,27,21,14,17,9,6,1,0,0,725,1,1,32,0,725,1,1,32,0,222,1,19,66,33,0,224,194,0,467,289,3,0,0,70,1,0,0,0,0,0,0,0,688,0,0,0,3,0,0,0,73,683,0,31,88,15,1,0,624,0,2.8766233766233764,0.0,4.221105527638191,0.0,5.872200263504611,0,0,3,0,0,0,26,203,0,70,36,21,25,37,19,10,3,6,3,1,0,1,0,0,0,156,76,109,123,108,124,29,203,84,148,7,225,65,167,1,231,157,75,87,145,46,41,27,205,20,212,24,208,95,137,46,186,2,230,46,134,47,5,0,156,76,0,0,12,0,0,0,0,0,0,0,0,220,0,1.7112068965517242,1.5603448275862069,0.0,1.0625,1.0625,52.56896551724138 +PA021302,41303,Chiriquí,Tolé,Cerro Viejo,765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,449,38,458,21,15,0,0,22,1,207,0,4,88,10,1,201,1,5,0,4,477,15,14,4,3,217,298,1,0,0,1,517,3,110,24,1,91,19,0,0,6,503,3,0,5,253,127,38,65,31,1,2,506,4,0,0,1,6,0,40,239,5,228,4,1,0,237,94,23,29,121,1,2,0,2,5,3,0,765,4.516616314199395,11.413897280966768,5.722054380664653,18.17824773413897,1.001934235976789,2.9110251450676983,1.7988394584139265,518,288,817,57,245,18,31,13,4,35,2,3,26,0,9,16,4,13,3,6,1,1061,842,0,202,1701,0,744,1159,0,1577,326,0,692,1211,0,678,14,937,274,0,277,24,27,0,51,88,98,113,97,320,0,0,0,62,92,136,58,95,225,1,3,19,16,25,22,17,19,9,1,7,0,0,0,1,0,449,26,1179,0,3,15,7,33,470,558,35,83,128,23,26,3,20,0,266,4,0,1079,978,59,170,6,223,4,0,8,0,115,139,12,711,18,0,0,1289,289,0,3,12,46,7,7,1,0,0,9,29,11,12,56,137,39,9,173,1557,218,48,55,50,29,31,14,19,12,3,1,2,0,0,18,32.0,37.0,47.0,38.0,45.0,37.0,38.0,43.0,47.0,39.0,64.0,50.0,43.0,49.0,50.0,41.0,44.0,50.0,44.0,38.0,46.0,34.0,28.0,33.0,25.0,22.0,25.0,23.0,21.0,27.0,19.0,17.0,16.0,28.0,19.0,20.0,18.0,19.0,33.0,22.0,18.0,26.0,20.0,15.0,24.0,19.0,17.0,17.0,23.0,15.0,19.0,21.0,21.0,15.0,19.0,16.0,13.0,17.0,17.0,11.0,18.0,17.0,12.0,16.0,17.0,16.0,12.0,16.0,18.0,8.0,14.0,13.0,9.0,8.0,6.0,10.0,8.0,11.0,11.0,10.0,8.0,8.0,8.0,4.0,11.0,7.0,5.0,2.0,5.0,4.0,4.0,2.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,659,1155,243,0,199,204,256,217,166,118,99,112,103,91,95,74,80,70,50,50,39,23,10,1,0,0,2026,1,0,30,0,2026,1,0,30,0,607,6,144,131,79,4,432,654,0,1408,649,0,0,0,1009,9,0,0,0,0,0,0,0,1039,0,0,16,16,0,0,0,4,2021,0,45,149,33,3,0,1827,0,2.907828282828283,0.0,4.355102040816327,0.0,5.995624696159456,0,6,5,0,0,0,3,504,0,101,81,48,77,91,40,23,11,19,9,4,5,5,3,0,1,385,133,142,376,153,365,111,407,122,396,8,510,193,325,9,509,335,183,140,378,84,56,46,472,207,311,33,485,279,239,277,241,5,513,100,246,160,12,0,371,147,0,0,235,2,0,0,0,0,0,0,0,281,0,2.083011583011583,1.888030888030888,1.0,1.037037037037037,1.037037037037037,54.318532818532816 +PA021303,41304,Chiriquí,Tolé,El Cristo,511,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,270,115,259,27,100,4,0,9,2,139,0,0,96,5,1,159,1,0,0,0,370,19,11,1,0,83,318,0,0,0,0,401,2,21,12,0,66,12,0,0,1,389,11,0,0,80,230,17,43,29,1,1,395,0,1,0,2,3,0,6,127,10,252,6,0,1,148,30,6,3,212,0,1,0,0,0,0,0,514,4.893854748603352,13.430167597765363,5.994413407821229,18.033519553072622,1.0,2.7855361596009973,1.5187032418952615,401,253,988,46,259,24,21,15,2,26,1,6,0,1,7,1,2,4,3,0,3,563,1251,0,41,1773,0,153,1661,0,1415,399,0,713,1101,0,706,7,728,373,0,375,20,15,3,60,98,126,98,91,253,0,0,1,74,107,119,63,54,175,0,0,18,13,13,2,14,21,0,0,1,0,0,0,0,0,266,31,1172,0,3,11,15,6,481,580,42,63,53,47,36,6,8,0,129,0,0,1003,1040,25,78,8,142,5,1,20,0,178,90,4,821,9,0,0,1211,224,1,0,0,32,0,1,0,0,0,2,13,5,2,35,102,48,8,82,1728,158,33,28,38,14,13,8,8,4,1,1,0,0,0,9,53.0,56.0,54.0,66.0,60.0,56.0,55.0,64.0,58.0,52.0,59.0,61.0,45.0,50.0,60.0,53.0,52.0,50.0,44.0,38.0,32.0,35.0,28.0,29.0,29.0,24.0,27.0,26.0,27.0,24.0,25.0,26.0,25.0,26.0,13.0,16.0,15.0,20.0,18.0,16.0,25.0,19.0,17.0,16.0,12.0,16.0,17.0,14.0,14.0,12.0,10.0,11.0,16.0,9.0,15.0,12.0,8.0,12.0,12.0,8.0,12.0,12.0,8.0,10.0,7.0,6.0,21.0,10.0,11.0,12.0,12.0,7.0,13.0,2.0,7.0,7.0,4.0,5.0,4.0,5.0,2.0,1.0,3.0,3.0,1.0,3.0,1.0,2.0,3.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,849,1042,152,0,289,285,275,237,153,128,115,85,89,73,61,52,49,60,41,25,10,10,3,3,0,0,1977,0,1,65,0,1977,0,1,65,0,614,4,78,77,55,3,363,849,0,1679,364,0,0,1,1663,8,0,0,0,0,0,0,0,371,0,246,50,3,0,0,1,17,1726,0,29,75,6,0,0,1933,0,2.9031413612565444,0.0,4.699316628701594,0.0,4.922173274596182,49,11,0,0,0,0,4,337,0,98,46,39,65,82,19,17,12,10,8,3,1,1,0,0,0,245,156,78,323,58,343,181,220,54,347,2,399,133,268,7,394,192,209,60,341,41,19,10,391,7,394,6,395,326,75,86,315,4,397,39,207,154,1,0,282,119,0,0,320,0,0,0,0,0,0,0,0,81,0,2.501246882793017,2.5935162094763093,1.0,1.1111111111111112,1.1111111111111112,49.30922693266833 +PA021304,41305,Chiriquí,Tolé,Justo Fidel Palacios,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,145,35,145,5,23,0,0,7,5,88,0,0,15,0,1,81,0,0,1,0,163,8,11,2,0,43,138,0,0,0,4,185,0,17,11,0,22,8,0,0,0,184,1,0,0,100,24,14,24,5,18,0,183,0,0,0,0,0,2,4,98,1,82,0,0,0,114,8,9,2,48,0,2,0,0,2,0,0,243,4.819672131147541,15.4672131147541,6.901639344262295,23.81967213114754,1.0,2.9675675675675675,1.648648648648649,185,100,390,8,86,3,13,9,1,11,0,1,1,0,1,2,1,1,6,0,3,296,439,0,22,713,0,159,576,0,607,128,0,263,472,0,261,2,373,99,0,99,6,12,0,26,40,40,37,28,175,0,0,0,35,31,49,18,31,70,1,0,4,7,8,5,3,9,1,0,0,0,0,0,0,0,137,6,467,0,2,1,2,7,174,265,11,10,37,10,12,5,1,0,74,1,1,410,398,12,40,5,69,1,0,13,1,46,31,2,221,25,0,0,502,85,0,1,6,15,1,0,0,0,2,2,6,3,1,17,61,14,1,36,646,53,32,14,16,8,6,3,5,0,0,0,0,0,0,25,9.0,29.0,19.0,16.0,31.0,18.0,14.0,21.0,25.0,16.0,21.0,18.0,17.0,29.0,10.0,21.0,22.0,17.0,21.0,18.0,16.0,14.0,14.0,15.0,15.0,14.0,6.0,17.0,4.0,10.0,10.0,5.0,10.0,7.0,10.0,6.0,10.0,10.0,10.0,9.0,10.0,2.0,6.0,9.0,7.0,10.0,6.0,2.0,7.0,9.0,7.0,7.0,5.0,7.0,7.0,5.0,6.0,2.0,1.0,6.0,2.0,2.0,2.0,9.0,2.0,2.0,6.0,5.0,7.0,5.0,7.0,1.0,5.0,4.0,4.0,4.0,3.0,0.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,293,449,66,0,104,94,95,99,74,51,42,45,34,34,33,20,17,25,21,9,4,4,2,1,0,0,801,0,0,7,0,801,0,0,7,0,243,0,51,33,19,0,169,293,0,680,128,0,0,0,339,3,0,0,0,0,0,0,0,466,0,0,1,21,1,0,0,45,740,0,18,41,5,2,0,742,0,2.841584158415841,0.0,4.525714285714286,0.0,5.512376237623762,0,0,5,0,0,0,10,170,0,47,13,24,26,39,17,6,3,8,0,1,0,0,0,0,1,117,68,27,158,29,156,42,143,26,159,1,184,76,109,1,184,88,97,37,148,5,32,5,180,15,170,4,181,118,67,117,68,6,179,35,94,55,1,0,123,62,0,0,71,1,0,0,0,0,0,0,0,113,0,2.216216216216216,2.151351351351351,1.0,1.125,1.125,50.63243243243243 +PA021305,41306,Chiriquí,Tolé,Lajas de Tolé,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,85,8,200,8,1,0,0,7,0,154,0,0,35,1,4,22,0,0,0,5,174,3,34,0,0,168,45,0,0,0,3,216,0,53,7,1,24,23,0,0,1,198,16,0,1,181,33,0,0,2,0,0,212,0,0,0,1,3,0,19,181,1,13,2,0,2,180,23,1,1,6,1,1,0,0,1,0,0,324,4.317073170731708,9.663414634146342,4.804878048780488,13.86829268292683,1.0,3.2731481481481484,2.236111111111111,216,134,259,22,68,4,5,1,3,10,1,0,2,0,17,12,4,5,3,1,9,417,265,0,68,614,0,236,446,0,593,89,0,154,528,0,148,6,458,70,0,70,2,4,1,23,45,40,29,29,181,0,0,1,16,23,42,13,25,84,0,2,4,7,10,12,7,8,1,0,3,0,0,0,0,0,151,17,458,0,0,8,5,18,107,305,26,2,85,18,16,3,15,0,26,4,0,384,341,34,80,6,43,4,0,0,0,12,92,9,368,3,0,0,487,105,1,3,4,22,1,3,0,0,0,13,15,9,2,17,15,21,6,70,472,119,22,20,39,11,13,5,14,4,1,0,1,0,1,3,12.0,9.0,11.0,11.0,10.0,10.0,9.0,9.0,11.0,7.0,15.0,10.0,10.0,8.0,11.0,12.0,17.0,10.0,17.0,11.0,6.0,11.0,11.0,9.0,13.0,11.0,6.0,15.0,7.0,5.0,2.0,7.0,11.0,4.0,10.0,4.0,9.0,10.0,11.0,6.0,6.0,8.0,15.0,7.0,9.0,8.0,12.0,6.0,12.0,8.0,6.0,7.0,7.0,11.0,4.0,7.0,5.0,7.0,10.0,5.0,6.0,7.0,7.0,7.0,4.0,4.0,7.0,2.0,5.0,7.0,12.0,4.0,10.0,9.0,3.0,10.0,6.0,7.0,5.0,4.0,4.0,3.0,8.0,7.0,3.0,4.0,3.0,1.0,6.0,3.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,153,426,146,0,53,46,54,67,50,44,34,40,45,46,35,34,31,25,38,32,25,17,4,4,1,0,718,0,1,6,0,718,0,1,6,0,216,2,49,85,34,3,183,153,0,485,239,1,0,1,102,0,0,0,0,0,0,0,0,622,0,0,1,26,0,0,0,41,657,0,49,106,17,1,0,552,0,3.0174216027874565,0.0,4.218274111675127,0.0,6.259310344827586,0,1,13,0,0,0,20,182,0,45,37,17,27,38,12,10,5,13,6,2,3,0,0,1,0,202,14,132,84,121,95,39,177,97,119,6,210,115,101,3,213,168,48,130,86,47,83,22,194,74,142,31,185,95,121,102,114,0,216,38,125,51,2,0,178,38,0,0,28,0,0,0,0,0,0,0,0,188,0,1.7777777777777777,1.5787037037037035,0.0,1.0,1.0,59.78703703703704 +PA021306,41307,Chiriquí,Tolé,Potrero de Caña,148,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,105,12,71,36,4,1,0,5,2,48,0,1,26,3,2,36,1,2,2,0,116,1,0,0,0,42,74,0,0,0,3,119,0,15,2,0,6,7,0,0,0,117,2,0,0,31,52,0,10,26,0,0,118,0,0,0,0,1,0,4,43,2,68,1,1,1,34,5,3,2,57,0,14,0,1,0,2,0,149,4.65,21.8,6.95,23.45,1.0252100840336134,2.571428571428572,1.4621848739495795,122,63,224,16,62,3,4,2,0,6,0,0,0,0,1,2,1,3,0,1,4,207,243,0,38,412,0,82,368,0,362,88,0,182,268,0,180,2,211,57,0,58,7,12,0,31,28,33,25,16,64,1,0,0,15,20,28,16,17,50,0,0,3,6,2,5,5,7,0,0,1,0,0,0,0,0,113,1,244,0,0,1,0,7,103,116,12,6,22,3,9,6,12,0,61,0,0,250,252,12,36,6,53,1,0,5,0,27,21,9,218,19,0,0,278,70,0,0,1,8,0,1,0,0,0,1,3,1,3,18,42,8,2,36,395,29,7,22,14,3,9,3,0,0,1,0,0,0,0,19,12.0,11.0,17.0,12.0,19.0,12.0,17.0,14.0,15.0,15.0,12.0,11.0,18.0,9.0,8.0,10.0,11.0,10.0,5.0,13.0,6.0,8.0,13.0,5.0,5.0,8.0,7.0,10.0,10.0,7.0,8.0,8.0,4.0,4.0,5.0,8.0,6.0,3.0,7.0,0.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,5.0,2.0,5.0,3.0,3.0,1.0,4.0,4.0,3.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,1.0,0.0,5.0,3.0,0.0,1.0,2.0,1.0,2.0,3.0,0.0,1.0,4.0,2.0,3.0,1.0,0.0,1.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,202,263,37,0,71,73,58,49,37,42,29,24,16,17,15,16,18,9,9,10,4,3,1,0,1,0,484,1,0,17,0,484,1,0,17,0,153,3,18,15,16,0,95,202,0,351,151,0,0,0,426,3,0,0,0,0,0,0,0,73,0,0,6,2,0,1,0,1,492,0,10,28,8,0,0,456,0,3.016949152542373,0.0,4.321739130434783,0.0,5.348605577689243,0,1,1,0,0,0,0,120,0,41,12,12,15,14,7,12,5,2,0,1,0,0,0,0,1,68,54,37,85,25,97,28,94,20,102,2,120,54,68,1,121,71,51,34,88,13,21,7,115,20,102,5,117,58,64,46,76,0,122,21,64,37,0,0,78,44,0,0,100,1,0,0,0,0,0,0,0,21,0,2.0491803278688523,2.065573770491804,1.0,1.0,1.0,49.27049180327869 +PA021307,41308,Chiriquí,Tolé,Quebrada de Piedra,388,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,154,108,16,253,9,9,0,0,6,1,189,0,0,29,3,2,48,0,7,0,35,212,20,11,0,0,210,68,0,0,0,0,278,0,50,19,2,27,14,0,0,5,260,12,0,1,202,57,0,3,13,3,0,271,0,0,0,0,7,0,24,187,0,66,0,1,1,197,42,3,5,18,0,10,0,0,2,0,0,392,5.579166666666667,6.770833333333333,6.6625,20.570833333333333,1.0215827338129495,3.4100719424460437,2.370503597122302,284,167,414,17,97,13,11,2,4,23,1,3,5,0,35,12,3,5,2,2,1,522,446,0,81,887,0,445,523,0,856,112,0,252,716,0,235,17,643,73,0,73,10,15,1,31,31,54,50,47,213,0,2,0,27,44,92,35,40,126,0,1,11,16,4,5,8,24,6,0,2,0,0,0,0,0,291,12,568,0,1,6,2,19,175,339,25,10,113,26,19,2,27,0,61,48,3,539,502,33,140,5,108,8,0,2,3,13,65,8,504,3,0,0,668,156,0,1,4,35,5,2,0,0,2,12,17,7,2,41,60,36,12,114,697,107,52,43,60,36,4,12,13,8,3,1,2,0,0,3,18.0,15.0,27.0,13.0,19.0,14.0,17.0,15.0,20.0,12.0,11.0,23.0,20.0,14.0,20.0,21.0,22.0,22.0,19.0,31.0,18.0,16.0,22.0,15.0,11.0,14.0,10.0,14.0,13.0,12.0,16.0,10.0,13.0,9.0,15.0,12.0,7.0,14.0,8.0,13.0,10.0,6.0,11.0,15.0,10.0,10.0,13.0,16.0,11.0,12.0,20.0,15.0,15.0,15.0,10.0,15.0,10.0,12.0,8.0,6.0,8.0,5.0,8.0,4.0,7.0,3.0,6.0,12.0,9.0,10.0,7.0,6.0,10.0,5.0,5.0,7.0,7.0,4.0,6.0,2.0,4.0,6.0,5.0,3.0,0.0,1.0,2.0,3.0,2.0,3.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,258,649,134,0,92,78,88,115,82,63,63,54,52,62,75,51,32,40,33,26,18,11,4,0,2,0,1028,6,1,6,0,1028,6,1,6,0,336,7,67,77,45,1,250,258,0,669,367,5,0,0,26,0,0,0,0,0,0,0,0,1015,0,7,13,18,1,2,0,5,995,0,56,115,17,1,2,850,0,2.8058252427184467,0.0,3.985507246376812,0.0,6.626320845341018,3,2,10,0,1,0,5,263,0,56,26,22,40,47,37,9,16,8,11,6,2,3,0,0,1,259,25,181,103,178,106,47,237,164,120,18,266,174,110,0,284,195,89,172,112,97,75,45,239,145,139,48,236,81,203,66,218,3,281,50,143,88,3,2,207,77,0,0,10,0,0,0,0,0,0,0,0,274,0,1.8846153846153848,1.7552447552447552,1.0,1.0,1.0,55.478873239436616 +PA021309,41309,Chiriquí,Tolé,Veladero,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,364,152,6,500,20,0,0,0,6,0,488,0,1,15,5,4,13,0,0,150,54,292,13,17,0,0,453,69,0,0,0,4,526,0,123,22,4,22,36,0,2,16,472,35,0,1,447,53,1,12,7,6,0,522,0,0,1,1,1,1,58,410,0,57,1,0,200,269,9,12,0,33,0,3,0,0,0,0,0,733,6.167364016736402,17.85774058577406,6.7719665271966525,22.338912133891213,1.0247148288973384,3.758555133079848,2.387832699619772,539,260,749,16,217,9,33,20,2,28,3,3,7,0,21,12,10,7,8,5,5,1337,410,0,258,1489,0,662,1085,0,1561,186,0,562,1185,0,543,19,1048,137,0,140,10,34,8,61,65,90,74,63,268,0,0,1,57,63,118,51,77,290,0,4,28,39,25,38,59,56,12,2,13,0,0,0,1,0,495,30,1004,0,5,2,19,74,358,503,42,27,226,27,83,17,97,3,60,0,2,927,959,158,182,20,136,15,0,2,2,21,113,9,824,3,0,0,958,402,2,5,10,131,9,11,1,0,1,15,74,19,21,100,22,106,35,132,1208,168,62,88,111,67,40,47,59,15,9,3,3,3,0,3,34.0,28.0,34.0,43.0,37.0,35.0,33.0,39.0,29.0,45.0,38.0,19.0,34.0,38.0,27.0,28.0,34.0,33.0,37.0,37.0,28.0,29.0,30.0,36.0,26.0,37.0,34.0,28.0,27.0,29.0,22.0,25.0,21.0,16.0,18.0,17.0,18.0,20.0,20.0,16.0,23.0,12.0,22.0,21.0,22.0,17.0,17.0,22.0,19.0,21.0,12.0,19.0,21.0,27.0,20.0,11.0,19.0,12.0,24.0,25.0,15.0,13.0,10.0,11.0,19.0,17.0,15.0,11.0,10.0,9.0,13.0,9.0,19.0,10.0,9.0,14.0,9.0,12.0,5.0,13.0,7.0,8.0,6.0,4.0,14.0,2.0,5.0,5.0,2.0,3.0,6.0,3.0,1.0,3.0,2.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,513,1120,253,0,176,181,156,169,149,155,102,91,100,96,99,91,68,62,60,53,39,17,15,5,2,0,1864,2,1,19,0,1864,2,1,19,0,498,6,152,183,86,3,445,513,0,1281,603,2,0,1,514,2,0,0,0,0,0,0,0,1369,0,3,8,63,0,0,0,569,1243,0,202,329,67,8,1,1279,0,2.5330788804071247,0.0,3.627151051625239,0.0,7.422587486744432,1,2,14,0,0,0,192,330,0,70,54,37,63,88,61,35,27,41,26,16,4,11,4,2,0,497,42,400,139,399,140,145,394,327,212,31,508,301,238,16,523,465,74,370,169,174,196,124,415,187,352,107,432,46,493,44,495,12,527,99,279,154,7,0,311,228,0,0,112,0,0,0,0,0,0,0,0,427,0,1.719851576994434,1.7792207792207793,1.0,1.0,1.0,55.319109461966605 +PA020513,41401,Chiriquí,Tierras Altas,Volcán,2780,22,166,22,0,0,0,0,5,0,0,1,6,0,0,33,1962,96,33,1990,101,7,2,0,21,3,2030,3,1,26,1,18,26,0,19,1789,182,106,3,31,0,13,2074,27,6,0,0,17,2124,4,427,87,199,99,50,0,177,500,1252,164,11,20,1949,106,0,37,2,30,0,2099,10,6,0,7,1,1,1083,972,2,28,39,0,1908,35,111,16,6,14,0,4,0,15,4,11,2751,251,6.881207400194742,22.40506329113924,6.962512171372931,23.77458617332035,1.0254237288135593,3.5706214689265536,2.230225988700565,2185,1170,2446,197,479,90,110,69,32,95,26,17,157,4,168,55,32,44,27,38,27,5595,1024,0,2507,4112,0,4766,1853,0,6117,502,0,2061,4558,0,1603,458,4215,343,0,358,75,112,8,184,181,205,195,214,780,1,1,3,214,274,559,198,310,1128,3,30,155,214,193,134,333,399,46,6,91,0,2,1,12,0,2916,146,2825,0,43,47,15,370,1209,998,118,130,1633,266,466,83,208,14,362,1,12,3511,3566,356,1465,103,1006,62,1,27,25,7,169,28,2029,109,0,0,3134,1759,4,46,63,732,44,92,13,0,25,171,283,190,147,522,307,407,215,795,3320,354,188,322,665,771,571,209,281,137,79,23,26,9,13,109,97.0,116.0,118.0,127.0,113.0,134.0,118.0,136.0,129.0,102.0,131.0,132.0,124.0,112.0,109.0,115.0,119.0,119.0,114.0,114.0,128.0,118.0,115.0,123.0,116.0,112.0,131.0,116.0,97.0,99.0,94.0,101.0,106.0,123.0,86.0,87.0,107.0,87.0,83.0,71.0,96.0,73.0,95.0,86.0,90.0,95.0,80.0,77.0,72.0,76.0,96.0,64.0,89.0,84.0,82.0,81.0,71.0,78.0,70.0,45.0,64.0,47.0,60.0,57.0,51.0,62.0,48.0,37.0,45.0,43.0,42.0,35.0,41.0,36.0,27.0,23.0,33.0,29.0,23.0,18.0,26.0,22.0,16.0,14.0,13.0,7.0,16.0,9.0,9.0,10.0,6.0,3.0,6.0,4.0,3.0,5.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1798,4560,719,0,571,619,608,581,600,555,510,435,440,400,415,345,279,235,181,126,91,51,22,12,1,0,6739,145,102,91,0,6744,150,92,91,0,1742,101,421,1136,215,66,1598,1798,0,2952,3896,229,0,2,1138,21,1,1,1,0,0,3,0,5910,0,97,103,406,25,14,9,483,5940,0,1286,1524,334,22,48,3863,0,2.024907438572871,0.0,2.883605745418524,0.0,8.74169845979935,33,39,149,8,5,5,176,1770,0,73,59,36,112,241,327,299,210,362,141,108,74,54,27,28,27,2154,31,1907,278,1841,344,465,1720,368,1817,32,2153,1176,1009,410,1775,2062,123,1867,318,1168,699,985,1200,1681,504,1081,1104,315,1870,362,1823,71,2114,428,1212,501,44,5,1453,732,0,1,286,7,1,0,1,0,0,1,0,1888,0,1.6031963470319637,1.628310502283105,1.2040816326530612,1.0112359550561798,1.0112359550561798,50.3070938215103 +PA020503,41402,Chiriquí,Tierras Altas,Cerro Punta,1232,9,1,15,0,0,0,0,333,0,0,92,14,0,0,12,710,190,20,762,150,9,5,0,3,3,813,8,7,16,1,47,39,0,1,220,358,315,7,27,0,5,915,4,6,0,0,7,932,2,185,30,44,44,20,0,13,158,527,226,8,0,660,235,0,25,0,12,0,916,1,3,4,8,0,0,301,440,0,30,161,0,205,272,304,12,1,22,29,1,18,57,9,2,388,1308,6.855313700384123,23.40460947503201,6.893725992317542,23.528809218950062,1.0354077253218883,3.256437768240344,2.022532188841202,1143,614,1342,91,226,22,57,67,7,38,28,13,1179,1,37,19,6,7,6,0,13,3042,1313,0,777,3578,0,2099,2256,0,3675,680,0,1139,3216,0,942,197,2648,568,0,574,23,72,0,161,170,203,166,197,714,1,2,1,185,230,380,149,169,564,1,9,37,50,58,53,82,76,6,1,18,0,0,1,2,0,2078,58,1666,0,12,32,7,47,675,833,50,61,288,76,82,28,78,9,1558,0,1,2731,2097,44,1391,30,525,84,2,43,1,11,80,4,2069,138,0,0,2841,710,2,12,30,183,6,16,2,0,0,53,44,19,33,173,479,54,47,1234,2562,151,65,148,1039,387,115,53,85,26,25,3,11,3,17,138,133.0,111.0,119.0,110.0,101.0,99.0,103.0,97.0,83.0,70.0,91.0,80.0,79.0,71.0,78.0,103.0,90.0,86.0,123.0,101.0,109.0,107.0,112.0,99.0,95.0,97.0,75.0,76.0,72.0,82.0,77.0,77.0,89.0,65.0,71.0,54.0,59.0,65.0,42.0,52.0,58.0,54.0,51.0,53.0,49.0,51.0,46.0,44.0,57.0,48.0,40.0,41.0,55.0,40.0,37.0,29.0,35.0,40.0,35.0,43.0,24.0,41.0,29.0,23.0,22.0,15.0,28.0,11.0,14.0,15.0,20.0,13.0,14.0,11.0,9.0,16.0,7.0,6.0,10.0,14.0,10.0,6.0,10.0,8.0,7.0,4.0,9.0,3.0,9.0,0.0,2.0,2.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1425,3123,280,0,574,452,399,503,522,402,379,272,265,246,213,182,139,83,67,53,41,25,9,1,1,0,4470,35,28,295,0,4472,37,24,295,0,1534,16,224,560,90,49,934,1421,0,1731,3042,55,0,1,2497,42,0,2,0,0,0,0,0,2286,0,24,106,58,8,0,2,139,4491,0,519,603,44,3,6,3653,0,2.121766561514196,0.0,3.0412371134020617,0.0,6.235501242750622,3,26,19,4,0,1,45,1045,0,51,24,22,38,206,162,117,74,87,50,21,9,18,8,17,61,1130,13,714,429,693,450,213,930,20,1123,6,1137,532,611,120,1023,982,161,712,431,561,151,335,808,635,508,458,685,436,707,166,977,77,1066,300,553,247,43,261,909,234,0,0,418,7,0,0,0,0,0,0,0,718,0,1.9451566951566952,1.4935897435897436,1.2,1.0,1.0,47.38145231846019 +,41403,Chiriquí,Tierras Altas,Cuesta de Piedra,341,3,1,0,0,0,0,0,6,0,0,5,1,0,0,1,227,22,4,227,23,1,0,0,3,0,240,3,0,4,0,1,4,0,2,29,142,43,4,34,0,2,243,4,4,0,0,3,254,0,35,9,1,36,10,0,1,13,130,109,1,0,233,19,0,2,0,0,0,252,0,1,0,1,0,0,75,170,0,3,6,0,1,221,20,3,0,4,0,0,0,4,1,0,0,357,6.991735537190083,23.950413223140497,6.991735537190083,23.950413223140497,1.062992125984252,3.3346456692913384,2.251968503937008,276,152,310,21,87,8,15,20,1,11,7,4,43,0,12,7,3,7,3,5,6,637,242,0,157,722,0,251,628,0,718,161,0,223,656,0,201,22,529,127,0,127,3,16,2,33,44,34,32,35,154,0,0,0,29,40,53,21,24,117,1,4,8,13,18,26,29,6,2,0,8,0,0,0,0,0,326,20,406,0,2,12,5,69,135,147,15,40,99,17,40,6,16,0,164,0,2,516,439,29,231,10,58,9,0,4,3,2,20,3,353,1,0,0,519,158,1,5,8,51,2,8,0,0,3,15,19,12,3,35,25,25,22,187,510,38,20,36,113,127,47,25,16,9,5,2,4,1,1,1,20.0,15.0,11.0,30.0,16.0,23.0,25.0,22.0,28.0,13.0,17.0,21.0,15.0,11.0,15.0,25.0,12.0,14.0,15.0,11.0,18.0,17.0,17.0,16.0,16.0,19.0,13.0,17.0,16.0,6.0,16.0,10.0,15.0,11.0,16.0,16.0,7.0,4.0,12.0,6.0,5.0,9.0,11.0,12.0,14.0,12.0,8.0,8.0,10.0,5.0,6.0,9.0,7.0,12.0,11.0,12.0,9.0,6.0,13.0,10.0,6.0,6.0,5.0,11.0,7.0,5.0,3.0,6.0,8.0,4.0,6.0,2.0,6.0,8.0,0.0,8.0,5.0,4.0,7.0,6.0,5.0,1.0,4.0,3.0,2.0,1.0,2.0,0.0,1.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,282,569,104,0,92,111,79,77,84,71,68,45,51,43,45,50,35,26,22,30,15,6,4,1,0,0,901,10,12,32,0,902,11,10,32,0,256,14,44,148,22,4,185,282,0,372,559,24,0,1,339,0,0,0,0,0,0,0,0,615,0,5,13,41,0,0,1,47,848,0,182,211,55,3,13,491,0,2.224719101123596,0.0,3.2683982683982684,0.0,6.458638743455498,2,4,19,0,0,0,16,235,0,9,10,4,9,44,73,37,20,26,13,9,5,4,4,3,0,272,4,212,64,199,77,72,204,63,213,4,272,162,114,9,267,258,18,208,68,168,40,77,199,169,107,77,199,52,224,88,188,3,273,74,124,75,3,6,225,51,0,1,76,0,0,0,0,0,0,0,0,199,0,1.8297872340425527,1.5567375886524824,1.3333333333333333,1.0,1.0,51.48550724637681 +,41404,Chiriquí,Tierras Altas,Nueva California,2249,17,136,4,0,0,0,0,40,0,0,17,6,0,0,28,1634,66,12,1656,72,3,1,0,6,2,1646,12,7,21,0,10,34,0,10,1243,359,95,9,14,0,20,1703,13,11,0,0,13,1740,2,304,56,140,103,61,0,95,339,1079,218,8,1,1635,79,0,23,1,2,0,1732,3,3,0,2,0,0,808,874,1,22,35,0,1004,489,186,4,0,0,0,1,0,55,1,0,2103,366,6.8237045860631325,21.11792733770101,6.959499702203693,23.617033948779035,1.0241379310344827,3.5080459770114945,2.1517241379310343,1805,979,2038,119,219,54,62,58,10,36,16,13,583,3,79,33,21,18,40,17,37,4665,913,0,1711,3867,0,4101,1477,0,5011,567,0,1701,3877,0,1396,305,3406,471,0,474,71,98,10,128,151,216,164,187,682,0,0,5,163,229,461,160,238,999,6,11,110,129,144,101,243,245,49,10,79,0,5,0,10,0,2453,141,2373,0,13,37,44,277,970,970,105,51,1143,183,327,114,199,4,597,3,1,3071,2924,255,1305,127,814,31,2,34,3,6,157,28,1735,251,0,0,2817,1393,5,16,86,516,42,81,11,0,4,125,217,139,91,394,234,413,162,815,2746,314,200,294,620,569,370,233,185,80,61,16,25,9,22,251,123.0,94.0,93.0,107.0,100.0,127.0,116.0,83.0,91.0,94.0,114.0,121.0,102.0,85.0,107.0,106.0,96.0,88.0,111.0,124.0,117.0,124.0,136.0,133.0,104.0,114.0,89.0,105.0,87.0,78.0,85.0,84.0,81.0,75.0,92.0,78.0,68.0,81.0,62.0,65.0,87.0,56.0,58.0,85.0,64.0,68.0,85.0,65.0,76.0,74.0,81.0,55.0,62.0,66.0,49.0,53.0,57.0,43.0,39.0,44.0,45.0,44.0,43.0,46.0,50.0,42.0,34.0,33.0,46.0,42.0,32.0,35.0,31.0,42.0,22.0,26.0,19.0,19.0,9.0,20.0,11.0,11.0,9.0,10.0,12.0,12.0,5.0,6.0,7.0,3.0,6.0,3.0,2.0,3.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1557,3878,560,0,517,511,529,525,614,473,417,354,350,368,313,236,228,197,162,93,53,33,16,4,2,0,5528,94,107,266,0,5531,101,97,266,0,1472,66,211,1001,146,56,1487,1556,0,2673,3146,176,0,12,1471,35,2,2,0,2,0,1,0,4470,0,54,160,293,26,9,4,546,4903,0,963,1233,259,19,40,3481,0,2.0429096853289743,0.0,3.055345911949685,0.0,8.163469557964971,19,60,99,7,5,0,198,1417,0,59,69,49,91,206,256,231,157,230,135,85,42,41,14,31,86,1779,26,1566,239,1505,300,380,1425,278,1527,32,1773,930,875,289,1516,1699,106,1556,249,1002,554,768,1037,1391,414,836,969,246,1559,347,1458,36,1769,401,1070,311,23,40,1220,585,0,1,289,8,0,1,0,1,0,0,0,1505,0,1.6644986449864498,1.5848238482384824,1.25,1.0461538461538462,1.0461538461538462,49.53240997229917 +,41405,Chiriquí,Tierras Altas,Paso Ancho,1706,25,47,40,0,0,0,0,110,0,0,0,3,0,0,24,1103,190,6,969,348,1,0,0,4,1,1259,8,4,12,1,10,17,0,12,382,708,190,7,29,1,6,1299,14,3,1,0,6,1323,2,237,67,45,106,38,0,3,478,738,101,3,0,1085,134,2,87,1,14,0,1310,1,3,0,9,0,0,423,801,0,46,51,2,20,1191,68,14,0,0,1,4,2,19,1,3,0,1931,6.194683346364347,20.843627834245503,6.503518373729476,22.27130570758405,1.0113378684807257,3.104308390022676,1.8314436885865455,1341,702,1517,129,255,38,77,57,14,53,29,39,417,2,61,30,13,11,10,14,21,3103,1175,0,852,3426,0,2172,2106,0,3623,655,0,1167,3111,0,1009,158,2523,588,0,595,19,63,4,150,159,204,203,170,603,8,4,22,169,199,312,135,153,572,3,14,43,58,58,46,55,221,12,3,20,0,0,0,1,0,1752,97,1860,0,18,50,13,122,723,861,55,99,522,72,155,54,47,10,970,1,3,2439,2231,99,1196,63,376,68,0,29,3,7,110,7,1788,300,0,0,2581,745,23,18,35,272,14,20,1,0,3,70,71,52,47,190,296,122,61,937,2390,191,75,197,696,394,159,90,78,45,26,8,11,7,3,300,93.0,102.0,106.0,91.0,102.0,111.0,94.0,93.0,84.0,85.0,84.0,98.0,92.0,93.0,70.0,90.0,92.0,77.0,108.0,91.0,115.0,107.0,102.0,99.0,85.0,90.0,79.0,85.0,67.0,81.0,67.0,73.0,66.0,58.0,68.0,60.0,55.0,57.0,51.0,58.0,48.0,43.0,60.0,53.0,49.0,38.0,41.0,34.0,32.0,45.0,47.0,41.0,36.0,36.0,33.0,40.0,29.0,37.0,25.0,28.0,23.0,29.0,27.0,36.0,25.0,24.0,23.0,25.0,26.0,20.0,17.0,15.0,19.0,22.0,12.0,18.0,19.0,17.0,9.0,11.0,17.0,4.0,6.0,4.0,10.0,4.0,8.0,3.0,1.0,5.0,3.0,3.0,5.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1398,2916,356,0,494,467,437,458,508,402,332,281,253,190,193,159,140,118,85,74,41,21,13,4,0,0,4189,73,47,361,0,4190,85,34,361,0,1356,43,308,511,91,25,939,1397,0,2152,2406,112,0,3,1993,47,0,0,0,1,1,0,0,2625,0,34,48,100,5,1,3,395,4084,0,471,653,96,3,34,3413,0,2.1460609545715927,0.0,3.19647577092511,0.0,6.629122055674518,11,18,44,4,0,2,129,1133,0,76,53,26,59,281,237,185,91,120,54,42,21,18,6,7,62,1324,17,863,478,820,521,231,1110,80,1261,9,1332,626,715,158,1183,1145,196,894,447,573,321,373,968,775,566,477,864,235,1106,120,1221,37,1304,307,679,296,59,110,964,377,0,0,486,9,0,0,0,0,1,0,0,845,0,1.6809097174362508,1.5375603032391454,1.6153846153846154,1.1363636363636365,1.1363636363636365,45.44593586875466 +PA050103,50103,Darién,Chepigana,Chepigana,276,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,67,89,96,7,57,5,19,7,1,61,0,0,85,26,3,11,0,6,52,0,126,3,9,1,1,174,17,0,0,0,1,192,1,41,16,0,15,12,0,0,3,184,5,0,0,45,138,1,1,1,0,6,178,0,0,0,0,13,1,8,52,0,8,123,1,0,121,1,0,0,0,0,69,0,0,1,0,0,277,6.573770491803279,10.688524590163937,6.934426229508197,11.852459016393444,1.0,2.953125,1.7083333333333333,192,130,355,21,60,2,2,4,0,15,3,0,12,0,13,6,0,0,3,1,1,288,413,0,17,684,0,188,513,0,585,116,0,260,441,0,248,12,354,87,0,87,3,24,1,29,30,36,40,36,170,0,0,0,40,28,50,28,29,56,0,0,3,2,3,1,1,4,0,0,0,0,0,0,0,0,280,0,288,0,0,0,0,10,140,117,10,11,38,18,5,0,11,0,158,50,0,418,378,28,26,1,200,2,0,23,0,34,34,6,282,0,0,0,498,64,0,0,1,5,0,0,0,0,0,6,8,5,4,22,145,13,33,44,522,40,34,65,55,24,19,5,17,6,5,2,2,0,0,0,28.0,27.0,23.0,17.0,30.0,20.0,23.0,24.0,18.0,18.0,22.0,17.0,14.0,20.0,14.0,13.0,17.0,15.0,21.0,18.0,8.0,15.0,15.0,11.0,13.0,9.0,15.0,6.0,9.0,9.0,6.0,11.0,7.0,8.0,7.0,9.0,9.0,6.0,13.0,6.0,8.0,4.0,4.0,6.0,8.0,3.0,5.0,5.0,8.0,3.0,8.0,5.0,6.0,5.0,10.0,7.0,6.0,7.0,6.0,4.0,9.0,5.0,5.0,3.0,5.0,5.0,3.0,5.0,5.0,2.0,5.0,3.0,4.0,4.0,3.0,2.0,1.0,5.0,1.0,6.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,315,421,60,0,125,103,87,84,62,48,39,43,30,24,34,30,27,20,19,15,3,3,0,0,0,0,775,3,1,17,0,775,3,1,17,0,252,1,20,56,11,0,141,315,0,601,190,5,0,1,3,0,0,0,0,506,4,0,4,278,0,5,36,155,43,0,0,41,516,0,27,41,12,0,0,716,0,3.167315175097276,0.0,4.610778443113772,0.0,5.023869346733668,2,23,38,18,0,0,14,97,0,6,5,14,28,39,28,15,12,23,7,9,3,3,0,0,0,180,12,69,123,66,126,19,173,65,127,9,183,29,163,3,189,83,109,54,138,52,2,3,189,43,149,8,184,112,80,73,119,2,190,36,113,38,5,0,163,29,0,0,2,0,0,0,0,93,1,0,1,95,0,2.177083333333333,1.96875,1.0,1.0,1.0,49.364583333333336 +PA050106,50105,Darién,Chepigana,Jaqué,687,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,324,32,51,350,6,21,16,0,14,0,267,18,1,79,16,1,22,1,2,0,36,194,100,67,9,1,306,95,1,0,0,5,407,0,66,45,5,145,29,0,0,11,349,47,0,0,194,182,2,5,13,0,11,376,4,20,2,0,5,0,57,175,1,3,170,1,0,364,0,0,0,0,0,42,0,0,1,0,0,697,6.678571428571429,20.244505494505493,6.9423076923076925,22.76098901098901,1.0024570024570023,3.11056511056511,2.0442260442260443,408,267,683,85,206,8,10,15,4,35,1,3,13,0,18,8,5,5,9,7,16,815,732,0,95,1452,0,563,984,0,1154,393,0,496,1051,0,492,4,745,306,0,307,8,21,1,77,92,104,103,116,175,0,0,2,111,92,99,28,60,135,0,1,4,6,0,2,1,0,1,0,1,0,0,0,0,0,527,3,740,0,0,1,1,11,319,334,31,45,142,35,46,4,32,0,170,100,0,879,859,57,69,4,354,7,1,37,0,54,68,10,348,8,0,0,1117,145,2,1,0,4,0,1,0,0,0,5,8,21,13,72,254,60,9,88,1286,154,87,64,47,25,32,9,16,2,4,2,1,0,1,8,56.0,51.0,37.0,47.0,47.0,38.0,60.0,49.0,39.0,44.0,42.0,50.0,40.0,34.0,43.0,46.0,31.0,36.0,33.0,23.0,16.0,26.0,22.0,29.0,18.0,32.0,23.0,27.0,28.0,20.0,15.0,20.0,11.0,13.0,20.0,19.0,19.0,20.0,18.0,12.0,16.0,15.0,23.0,13.0,16.0,17.0,13.0,19.0,11.0,14.0,10.0,13.0,11.0,10.0,13.0,8.0,11.0,17.0,10.0,8.0,11.0,13.0,14.0,14.0,9.0,9.0,16.0,8.0,8.0,7.0,4.0,1.0,13.0,17.0,10.0,7.0,8.0,5.0,4.0,6.0,3.0,1.0,5.0,4.0,6.0,1.0,1.0,3.0,3.0,0.0,0.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,677,906,155,0,238,230,209,169,111,130,79,88,83,74,57,54,61,48,45,30,19,8,4,1,0,0,1499,150,75,14,0,1504,152,68,14,0,599,6,55,47,34,0,322,675,0,1252,237,249,0,1,1,0,0,0,1,1021,157,0,1,556,0,15,16,127,51,1,6,308,1214,0,59,106,12,0,0,1561,0,3.308196721311476,0.0,4.53125,0.0,4.5080552359033375,10,8,48,32,1,2,72,235,0,44,31,51,61,91,52,25,13,13,9,10,1,3,0,1,3,349,59,222,186,229,179,24,384,181,227,15,393,121,287,0,408,248,160,212,196,189,23,15,393,9,399,4,404,180,228,167,241,2,406,73,199,127,9,0,327,81,0,1,0,0,0,0,1,194,29,0,0,183,0,2.1544117647058822,2.105392156862745,1.5,1.0,1.0,51.09558823529412 +PA050108,50106,Darién,Chepigana,Puerto Piña,353,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,217,15,28,225,7,2,0,0,23,3,213,9,4,22,1,4,5,0,2,175,24,45,5,10,0,1,230,26,2,0,0,2,260,0,37,23,8,13,12,0,0,18,225,15,2,0,165,75,1,3,11,2,3,225,10,21,0,0,3,1,24,168,0,1,65,2,0,257,0,0,0,0,0,1,0,0,2,0,0,361,6.178988326848249,19.85214007782101,6.863813229571984,23.51750972762646,1.0,2.9346153846153844,1.823076923076923,260,184,469,30,85,6,21,10,3,34,11,3,23,0,5,2,3,2,2,3,7,704,323,0,76,951,0,255,772,0,837,190,0,364,663,0,359,5,546,117,0,117,16,30,7,41,77,62,65,60,109,0,1,0,70,58,72,24,64,117,1,1,5,3,3,3,1,16,4,0,0,0,0,0,0,0,381,12,455,0,0,8,4,7,201,216,11,20,289,18,6,2,10,0,51,12,0,585,554,30,254,2,83,4,0,15,0,34,7,4,445,141,0,0,694,132,0,2,3,16,1,0,0,0,0,14,11,18,8,74,60,88,33,87,745,25,10,37,35,72,30,17,15,5,2,2,1,2,0,141,29.0,31.0,23.0,29.0,32.0,30.0,27.0,35.0,33.0,22.0,26.0,21.0,24.0,28.0,21.0,25.0,27.0,15.0,29.0,23.0,22.0,18.0,25.0,20.0,19.0,19.0,21.0,11.0,17.0,16.0,18.0,7.0,14.0,14.0,8.0,9.0,22.0,11.0,14.0,13.0,16.0,12.0,12.0,8.0,11.0,7.0,9.0,14.0,9.0,9.0,12.0,9.0,11.0,11.0,17.0,5.0,7.0,4.0,6.0,7.0,7.0,4.0,9.0,7.0,9.0,8.0,8.0,3.0,4.0,5.0,6.0,1.0,5.0,3.0,2.0,4.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,411,669,59,0,144,147,120,119,104,84,61,69,59,48,60,29,36,28,17,7,4,2,0,0,1,0,945,135,28,31,0,945,139,24,31,0,398,2,7,90,12,3,217,410,0,702,243,194,0,4,1,0,0,1,0,802,119,0,1,211,0,24,27,75,15,3,1,129,865,0,147,130,8,0,0,854,0,2.976923076923077,0.0,4.070631970260223,0.0,5.409130816505707,4,5,25,7,2,1,39,177,0,46,14,13,19,14,33,29,16,21,10,5,4,1,0,1,34,251,9,186,74,191,69,45,215,165,95,21,239,61,199,3,257,207,53,148,112,133,15,15,245,10,250,2,258,112,148,92,168,1,259,33,141,78,8,8,178,82,0,1,1,0,0,1,0,166,23,0,0,68,0,2.1828358208955225,2.067164179104477,1.0,1.0,1.0,46.19615384615385 +PA050112,50109,Darién,Chepigana,Sambú,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,124,16,212,13,7,1,0,8,0,226,0,0,1,4,4,6,0,0,0,0,232,1,5,3,0,222,18,0,1,0,0,241,0,57,18,0,6,10,0,0,10,217,13,0,1,57,182,0,1,0,0,1,233,0,1,0,0,7,0,16,88,0,11,126,0,0,206,15,1,5,1,2,4,0,0,7,0,0,332,3.769230769230769,11.34841628959276,3.656108597285068,11.072398190045249,1.016597510373444,2.9377593360995853,1.829875518672199,245,149,283,23,100,10,6,6,0,18,3,1,12,0,26,9,1,1,3,1,1,528,271,0,60,739,0,473,326,0,679,120,0,281,518,0,266,15,429,89,0,90,13,19,1,28,24,35,31,38,112,0,0,0,43,45,61,22,35,132,0,0,10,8,17,11,12,10,1,0,1,0,0,0,0,0,342,11,342,0,0,5,4,14,167,132,23,6,88,47,18,0,13,0,168,14,0,450,406,69,51,0,217,4,0,7,0,54,49,7,221,0,0,0,493,155,0,1,15,29,1,1,0,0,0,7,20,13,11,43,137,40,9,73,530,88,51,50,36,20,36,11,17,7,6,3,0,0,1,0,11.0,14.0,16.0,16.0,14.0,13.0,24.0,19.0,15.0,19.0,21.0,17.0,27.0,19.0,20.0,14.0,20.0,14.0,14.0,12.0,13.0,3.0,11.0,9.0,7.0,14.0,14.0,11.0,9.0,4.0,14.0,6.0,9.0,13.0,11.0,8.0,11.0,11.0,17.0,7.0,9.0,12.0,6.0,5.0,8.0,8.0,17.0,4.0,10.0,13.0,8.0,5.0,5.0,13.0,9.0,8.0,13.0,8.0,9.0,7.0,7.0,8.0,5.0,10.0,8.0,4.0,9.0,5.0,7.0,4.0,7.0,8.0,7.0,5.0,6.0,2.0,0.0,6.0,4.0,2.0,0.0,1.0,3.0,2.0,4.0,2.0,1.0,0.0,4.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,491,100,0,71,90,104,74,43,52,53,54,40,52,40,45,38,29,33,14,10,7,3,2,2,0,821,2,21,12,0,821,2,21,12,0,252,6,19,100,8,0,206,265,0,433,404,19,0,1,19,2,0,0,0,399,6,0,4,425,0,47,6,58,22,12,1,103,607,0,68,108,16,0,0,664,0,2.6246246246246248,0.0,3.621739130434783,0.0,6.614485981308412,16,3,22,15,4,1,28,156,0,21,17,25,29,47,19,24,16,16,15,10,3,0,2,1,0,234,11,176,69,171,74,29,216,183,62,10,235,64,181,0,245,208,37,168,77,157,11,28,217,174,71,15,230,150,95,105,140,1,244,39,127,69,10,0,191,54,0,1,9,0,0,0,0,85,3,0,2,145,0,1.836734693877551,1.6571428571428573,0.0,1.0,1.0,53.11020408163265 +PA050114,50110,Darién,Chepigana,Setegantí,254,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,57,14,158,5,1,1,0,11,1,171,0,0,2,0,1,3,0,0,155,1,20,0,1,0,0,167,8,0,0,0,2,177,0,41,9,1,11,16,0,0,3,163,11,0,0,64,111,0,2,0,0,0,174,1,0,0,0,2,0,30,102,1,19,25,0,0,171,2,1,0,0,0,2,0,0,1,0,0,255,7.0,14.341040462427744,7.0,14.578034682080926,1.0,3.6610169491525424,2.440677966101695,177,117,201,32,32,4,5,6,2,6,4,2,1,0,2,2,0,3,1,0,1,465,71,0,63,473,0,366,170,0,475,61,0,164,372,0,151,13,343,29,0,29,10,11,0,22,31,18,19,26,110,1,0,0,24,33,37,22,14,82,0,0,8,4,6,8,3,16,0,0,2,0,0,0,0,0,258,14,184,0,2,6,4,3,79,84,14,4,92,23,11,1,19,0,118,2,0,317,272,75,39,1,135,2,0,14,0,16,32,4,129,0,0,0,327,100,0,0,3,24,0,2,0,0,1,7,13,11,23,37,81,18,13,68,277,45,42,39,49,19,45,21,22,11,8,2,8,1,0,0,13.0,14.0,8.0,18.0,13.0,14.0,12.0,22.0,12.0,7.0,13.0,15.0,4.0,17.0,6.0,11.0,6.0,8.0,13.0,7.0,11.0,7.0,3.0,13.0,6.0,6.0,6.0,11.0,10.0,4.0,7.0,12.0,4.0,12.0,9.0,4.0,3.0,3.0,5.0,5.0,4.0,7.0,5.0,5.0,6.0,6.0,7.0,9.0,7.0,6.0,11.0,9.0,8.0,7.0,7.0,10.0,4.0,5.0,7.0,4.0,5.0,6.0,3.0,6.0,2.0,4.0,1.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,1.0,1.0,3.0,4.0,4.0,2.0,1.0,3.0,1.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,188,342,59,0,66,67,55,45,40,37,44,20,27,35,42,30,22,18,15,14,6,4,2,0,0,0,584,3,1,1,0,584,3,1,1,0,196,3,17,60,13,4,108,188,0,365,222,2,0,2,5,3,0,1,0,110,1,0,8,459,0,32,45,137,38,0,2,155,180,0,69,100,4,1,0,415,0,2.6681614349775784,0.0,3.5632911392405062,0.0,6.606112054329372,6,16,42,11,0,0,62,40,0,8,8,5,10,17,24,20,18,24,15,10,7,4,4,3,0,173,4,150,27,150,27,25,152,148,29,15,162,91,86,0,177,153,24,127,50,116,11,19,158,131,46,40,137,79,98,102,75,2,175,30,108,38,1,0,145,32,0,1,2,0,0,0,0,20,0,0,3,151,0,1.7909604519774012,1.536723163841808,1.0,1.0,1.0,51.067796610169495 +PA050115,50111,Darién,Chepigana,Taimatí,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,70,38,98,3,19,0,1,17,1,0,0,3,116,4,5,10,0,1,0,0,103,34,1,0,1,123,12,1,1,0,2,139,0,36,11,9,9,16,0,0,3,133,2,1,0,14,119,1,1,3,0,1,129,4,0,0,0,6,0,1,71,0,1,65,1,0,131,0,0,0,0,0,7,0,0,1,0,0,220,5.877862595419847,21.541984732824428,6.793893129770993,23.85496183206107,1.0,2.762589928057554,1.6474820143884892,139,99,278,29,47,2,2,3,1,13,1,1,3,0,10,10,1,0,0,0,5,271,285,0,27,529,0,63,493,0,440,116,0,249,307,0,235,14,253,54,0,55,19,20,0,31,37,43,32,42,99,0,0,0,36,24,30,19,21,41,0,1,0,2,1,0,1,2,0,0,0,0,0,0,0,0,243,2,204,0,0,0,2,2,116,58,16,12,27,40,2,0,4,0,134,37,0,339,279,15,8,0,201,0,1,19,0,18,15,2,157,0,0,0,401,45,0,0,0,3,0,0,0,0,0,1,3,4,1,18,164,37,2,15,529,35,15,4,9,6,7,6,4,1,2,0,0,0,0,0,12.0,17.0,19.0,14.0,16.0,20.0,15.0,20.0,18.0,18.0,19.0,20.0,25.0,12.0,14.0,12.0,9.0,10.0,11.0,11.0,13.0,14.0,3.0,11.0,9.0,11.0,6.0,6.0,5.0,6.0,3.0,4.0,2.0,7.0,6.0,4.0,3.0,7.0,3.0,7.0,5.0,7.0,10.0,6.0,11.0,6.0,4.0,6.0,4.0,3.0,10.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,7.0,3.0,6.0,3.0,8.0,4.0,3.0,4.0,1.0,2.0,2.0,2.0,2.0,4.0,6.0,0.0,4.0,2.0,2.0,1.0,0.0,2.0,0.0,1.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,259,313,46,0,78,91,90,53,50,34,22,24,39,23,24,20,24,11,16,7,6,5,1,0,0,0,597,5,8,8,0,597,5,8,8,0,184,0,36,53,14,0,73,258,0,457,152,9,0,1,4,0,0,0,0,149,250,0,28,186,0,29,20,61,19,0,1,78,410,0,16,27,2,0,0,573,0,3.6,0.0,4.985185185185185,0.0,4.697411003236246,8,5,21,5,0,0,23,77,0,40,12,14,18,24,9,8,5,3,3,3,0,0,0,0,0,127,12,27,112,46,93,18,121,13,126,0,139,26,113,2,137,90,49,43,96,25,18,8,131,9,130,4,135,103,36,63,76,3,136,21,80,35,3,0,124,15,0,1,2,0,0,0,0,23,48,0,1,64,0,2.4388489208633093,2.0071942446043165,0.0,1.0,1.0,51.60431654676259 +PA050116,50112,Darién,Chepigana,Tucutí,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,79,24,136,115,3,2,124,0,10,0,119,0,1,78,28,1,26,0,1,8,0,114,11,12,11,98,165,86,0,0,0,3,254,0,5,5,1,75,9,0,0,7,239,8,0,0,60,173,0,2,16,0,3,221,0,0,0,0,33,0,11,64,0,1,165,13,111,46,6,0,0,0,0,91,0,0,0,0,0,349,6.969325153374233,14.1840490797546,6.969325153374233,14.153374233128837,1.0,2.8346456692913384,1.7834645669291338,254,163,474,19,142,5,21,8,0,26,7,1,4,0,18,9,2,2,6,0,2,236,781,0,12,1005,0,21,996,0,819,198,0,418,599,0,414,4,468,131,0,131,34,23,1,36,56,70,56,58,164,0,0,0,52,63,83,34,47,99,0,2,2,3,1,0,0,1,0,0,1,0,0,0,0,0,367,16,441,0,1,2,13,4,241,143,20,33,148,10,12,0,9,1,192,2,1,578,546,17,16,0,324,4,0,13,1,38,17,0,706,11,0,0,715,107,0,0,0,1,0,1,0,0,2,7,4,3,2,26,255,8,5,71,740,197,85,37,24,8,7,5,8,2,0,0,0,0,0,11,22.0,26.0,34.0,25.0,29.0,33.0,32.0,27.0,44.0,28.0,41.0,34.0,31.0,29.0,28.0,24.0,24.0,16.0,21.0,27.0,19.0,17.0,18.0,12.0,8.0,14.0,14.0,9.0,11.0,18.0,11.0,15.0,12.0,14.0,10.0,12.0,7.0,8.0,13.0,12.0,18.0,9.0,9.0,5.0,10.0,7.0,13.0,11.0,6.0,13.0,7.0,8.0,17.0,9.0,11.0,3.0,3.0,8.0,6.0,6.0,8.0,6.0,7.0,3.0,8.0,8.0,2.0,7.0,4.0,2.0,6.0,6.0,10.0,7.0,7.0,4.0,4.0,2.0,0.0,2.0,1.0,1.0,3.0,1.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,463,577,84,0,136,164,163,112,74,66,62,52,51,50,52,26,32,23,36,12,6,4,2,0,1,0,1107,15,2,0,0,1107,16,1,0,0,334,2,2,89,17,2,216,462,0,1034,75,15,0,0,0,0,0,0,0,879,20,0,3,222,0,104,14,62,31,0,0,27,886,0,26,44,5,0,0,1049,0,3.3402061855670104,0.0,4.670498084291188,0.0,5.040035587188612,37,8,20,11,0,0,4,174,0,22,51,42,41,47,25,8,4,8,4,1,0,0,0,0,1,183,71,82,172,68,186,18,236,85,169,5,249,34,220,1,253,61,193,80,174,66,14,4,250,2,252,1,253,212,42,87,167,6,248,39,127,85,3,0,188,66,0,0,0,0,0,0,0,170,6,0,0,78,0,2.2755905511811023,2.1496062992125986,0.0,1.0,1.0,49.57086614173228 +PA050202,50201,Darién,Pinogana,El Real de Santa María,436,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,98,148,48,238,8,26,3,0,15,4,214,0,2,40,1,15,19,0,3,150,0,105,36,2,0,1,290,3,0,0,0,1,294,0,75,22,0,21,25,0,1,14,269,9,0,1,88,205,0,0,0,0,1,262,2,0,0,27,3,0,65,61,0,11,157,0,222,0,0,0,0,0,0,66,0,2,2,2,0,438,6.9774774774774775,23.83783783783784,6.9774774774774775,23.81981981981982,1.010204081632653,3.336734693877551,2.1496598639455784,298,175,444,11,93,9,9,6,0,22,2,1,8,0,21,5,2,2,7,0,1,672,330,0,59,943,0,631,371,0,866,136,0,334,668,0,314,20,571,97,0,100,14,19,0,31,42,47,48,46,197,0,0,0,42,45,135,19,46,130,1,6,2,1,5,4,11,9,0,0,2,0,0,0,0,0,345,1,514,0,0,0,1,38,201,262,6,7,132,36,10,5,12,1,140,9,0,572,506,90,48,4,185,5,1,12,0,50,32,4,346,0,0,0,689,138,0,6,3,22,0,2,0,0,0,6,29,21,10,45,140,31,18,46,707,108,31,36,33,38,54,22,26,12,4,3,4,0,0,0,13.0,19.0,14.0,30.0,21.0,26.0,22.0,21.0,33.0,19.0,23.0,34.0,23.0,25.0,23.0,24.0,24.0,13.0,20.0,19.0,22.0,16.0,22.0,16.0,10.0,12.0,19.0,11.0,8.0,12.0,11.0,9.0,9.0,21.0,9.0,9.0,11.0,13.0,16.0,13.0,14.0,8.0,11.0,13.0,8.0,9.0,8.0,13.0,12.0,10.0,7.0,11.0,11.0,7.0,11.0,13.0,7.0,13.0,4.0,9.0,10.0,9.0,9.0,7.0,8.0,10.0,11.0,13.0,7.0,3.0,7.0,4.0,6.0,5.0,3.0,2.0,8.0,6.0,4.0,2.0,4.0,2.0,2.0,1.0,2.0,2.0,3.0,1.0,5.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,346,611,121,0,97,121,128,100,86,62,59,62,54,52,47,46,43,44,25,22,11,13,4,1,1,0,1020,39,10,9,0,1020,41,8,9,0,356,1,2,78,14,0,281,346,0,778,252,48,0,68,2,0,0,0,0,362,19,0,10,617,0,52,21,131,133,13,3,166,559,0,93,107,39,1,1,837,0,3.0126582278481013,0.0,4.151079136690647,0.0,6.1688311688311686,24,10,39,48,5,1,49,122,0,39,16,15,38,38,35,35,26,24,9,7,5,5,4,1,0,292,6,186,112,195,103,52,246,198,100,22,276,156,142,25,273,204,94,170,128,167,3,38,260,191,107,23,275,113,185,64,234,2,296,64,165,64,5,0,193,105,0,11,1,0,0,0,0,77,4,0,2,203,0,1.919463087248322,1.6979865771812082,0.0,1.0,1.0,52.14093959731544 +PA050201,50202,Darién,Pinogana,Boca de Cupe,357,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,114,113,147,12,44,18,0,50,1,175,0,3,36,2,1,54,0,1,0,0,116,141,9,6,0,233,30,0,0,0,9,272,0,35,10,25,7,9,0,0,14,241,15,1,1,28,228,1,6,1,1,7,255,0,3,0,0,14,0,9,81,0,2,178,2,0,0,0,0,0,0,8,246,0,18,0,0,0,358,0.0,0.0,0.0,0.0,1.0,2.9705882352941178,1.8198529411764703,272,173,474,37,112,1,5,5,3,21,8,4,2,0,24,7,4,1,5,0,4,488,527,0,37,978,0,320,695,0,767,248,0,363,652,0,360,3,503,149,0,149,20,28,0,58,65,104,64,58,151,0,0,0,48,64,61,28,42,55,0,0,4,5,6,1,1,0,1,0,2,0,0,0,0,0,400,0,423,0,0,0,0,4,203,195,7,14,70,14,4,0,16,0,285,11,0,592,525,52,68,0,240,6,0,34,0,58,21,11,328,0,0,0,748,67,0,1,2,3,0,2,0,0,0,7,8,10,9,39,225,5,7,90,765,83,62,41,58,31,31,15,12,9,6,1,2,1,0,0,27.0,26.0,26.0,23.0,30.0,47.0,24.0,28.0,29.0,34.0,27.0,42.0,25.0,32.0,26.0,23.0,16.0,25.0,18.0,16.0,20.0,16.0,14.0,19.0,14.0,15.0,15.0,9.0,18.0,10.0,15.0,14.0,8.0,12.0,13.0,6.0,14.0,16.0,9.0,14.0,12.0,8.0,15.0,10.0,9.0,15.0,15.0,8.0,8.0,6.0,14.0,6.0,8.0,6.0,8.0,14.0,9.0,6.0,5.0,5.0,7.0,3.0,13.0,10.0,6.0,6.0,8.0,2.0,8.0,4.0,7.0,2.0,4.0,6.0,4.0,3.0,3.0,1.0,2.0,1.0,1.0,1.0,3.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,446,595,76,0,132,162,152,98,83,67,62,59,54,52,42,39,39,28,23,10,7,6,1,1,0,0,928,71,81,37,0,928,71,81,37,0,380,0,65,39,13,0,174,446,0,717,254,146,0,15,0,0,0,0,0,521,105,0,18,458,0,22,34,124,108,7,0,195,627,0,43,61,7,1,0,1005,0,3.150259067357513,0.0,4.419607843137255,0.0,4.525514771709937,7,15,31,50,2,0,51,116,0,27,20,30,22,50,36,24,14,19,11,11,4,2,2,0,0,252,20,136,136,131,141,15,257,131,141,7,265,88,184,0,272,165,107,140,132,121,19,10,262,5,267,8,264,214,58,78,194,2,270,54,142,74,2,0,220,52,0,1,0,0,0,0,0,98,21,0,5,147,0,2.176470588235294,1.9301470588235292,1.3333333333333333,1.0555555555555556,1.0555555555555556,49.8235294117647 +PA050206,50203,Darién,Pinogana,Paya,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,104,33,7,32,50,0,22,0,0,0,16,49,1,5,72,0,1,0,0,62,49,19,13,1,69,75,0,0,0,0,144,4,10,2,0,5,0,0,0,0,139,5,0,0,0,122,0,4,3,4,11,118,0,1,0,0,16,9,1,3,0,12,123,5,0,0,0,0,0,0,30,114,0,0,0,0,0,165,0.0,0.0,0.0,0.0,1.0,2.1597222222222223,1.0902777777777777,144,110,451,23,70,4,6,11,1,26,5,7,4,0,8,2,4,0,0,0,3,262,455,0,21,696,0,113,604,0,519,198,0,311,406,0,307,4,273,133,0,135,15,35,0,28,35,69,44,53,92,0,0,0,40,37,63,17,25,26,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,258,2,305,0,1,0,1,0,151,136,3,15,17,5,0,0,0,0,236,1,0,459,403,15,37,0,150,0,0,57,0,42,13,2,361,1,0,0,536,27,0,0,0,2,0,0,0,0,0,3,3,2,2,8,200,0,0,42,721,39,33,16,17,8,11,7,4,2,0,0,2,1,0,1,36.0,45.0,30.0,34.0,30.0,24.0,28.0,17.0,23.0,30.0,24.0,30.0,29.0,18.0,19.0,19.0,18.0,22.0,19.0,14.0,19.0,17.0,12.0,9.0,12.0,9.0,12.0,8.0,16.0,6.0,11.0,11.0,11.0,8.0,7.0,7.0,6.0,14.0,11.0,9.0,3.0,9.0,4.0,9.0,6.0,6.0,5.0,7.0,4.0,5.0,5.0,7.0,5.0,5.0,2.0,2.0,3.0,4.0,3.0,1.0,3.0,3.0,5.0,4.0,3.0,1.0,0.0,3.0,3.0,1.0,1.0,4.0,2.0,4.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,417,420,25,0,175,122,120,92,69,51,48,47,31,27,24,13,18,8,14,1,0,0,0,2,0,0,701,86,11,64,0,701,89,8,64,0,285,0,9,6,9,0,137,416,0,659,89,114,0,344,0,0,0,0,0,174,14,0,287,43,0,3,24,1,7,0,1,10,816,0,7,9,1,0,0,845,0,3.517509727626459,0.0,5.011764705882353,0.0,3.766821345707657,2,5,1,2,0,0,2,132,0,24,9,15,25,23,10,7,17,8,2,1,0,2,1,0,0,106,38,19,125,10,134,7,137,7,137,0,144,22,122,0,144,53,91,24,120,12,12,3,141,2,142,1,143,132,12,68,76,3,141,8,86,46,4,0,124,20,0,54,0,0,0,0,0,28,6,0,44,12,0,3.1875,2.798611111111111,1.0,1.1,1.1,43.84722222222222 +PA050207,50204,Darién,Pinogana,Pinogana,172,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,100,13,100,0,3,2,0,8,0,108,0,0,2,0,1,2,0,0,76,0,29,3,2,3,0,110,3,0,0,0,0,113,0,35,14,0,6,4,0,0,4,105,4,0,0,44,67,0,0,0,0,2,113,0,0,0,0,0,0,17,69,0,1,26,0,0,0,0,0,0,0,16,52,0,6,39,0,0,173,0.0,0.0,0.0,0.0,1.0176991150442478,3.752212389380531,2.707964601769912,116,75,176,14,70,0,1,0,1,14,2,2,6,0,13,6,0,1,12,1,0,340,103,0,47,396,0,270,173,0,366,77,0,154,289,0,138,16,272,17,0,28,11,18,4,19,22,18,22,26,89,0,0,0,25,27,37,18,19,48,0,0,1,1,6,1,1,2,0,0,0,0,0,0,0,0,163,9,206,0,1,2,1,5,82,98,10,11,42,6,8,0,15,0,94,3,0,253,224,37,13,0,107,4,1,6,0,23,33,0,164,0,0,0,318,55,0,0,1,4,0,0,0,0,0,5,7,8,1,18,92,11,5,25,310,47,11,28,22,11,26,6,6,7,2,1,0,0,0,0,12.0,8.0,6.0,8.0,10.0,11.0,12.0,13.0,11.0,8.0,12.0,11.0,8.0,9.0,9.0,14.0,9.0,11.0,3.0,9.0,9.0,9.0,10.0,9.0,8.0,7.0,6.0,8.0,7.0,5.0,6.0,4.0,8.0,7.0,5.0,8.0,6.0,8.0,6.0,1.0,5.0,2.0,9.0,1.0,6.0,7.0,2.0,1.0,6.0,3.0,5.0,7.0,3.0,2.0,1.0,7.0,3.0,3.0,2.0,3.0,6.0,2.0,3.0,3.0,2.0,4.0,1.0,2.0,5.0,7.0,1.0,2.0,3.0,4.0,2.0,0.0,4.0,3.0,3.0,1.0,4.0,1.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,148,277,52,0,44,55,49,46,45,33,30,29,23,19,18,18,16,19,12,11,7,2,1,0,0,0,445,8,22,2,0,446,9,20,2,0,171,1,3,23,5,0,126,148,0,335,107,35,0,3,0,1,0,0,0,52,78,0,3,340,0,22,25,163,49,0,0,104,114,0,31,75,6,0,0,365,0,3.1666666666666665,0.0,4.039370078740157,0.0,5.752620545073375,10,5,41,18,0,0,23,19,0,10,4,4,12,21,19,15,6,12,5,3,2,2,0,0,0,113,3,94,22,90,26,10,106,93,23,7,109,47,69,0,116,99,17,98,18,97,1,8,108,77,39,10,106,59,57,60,56,0,116,22,50,39,5,0,86,30,0,2,0,1,0,0,0,6,13,0,1,93,0,2.181034482758621,1.9310344827586208,1.0,1.0,1.0,51.741379310344826 +PA050205,50205,Darién,Pinogana,Púcuro,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,10,50,7,2,2,0,6,0,0,0,7,47,0,1,10,0,2,0,0,25,31,11,0,0,28,39,0,0,0,0,67,1,6,4,0,0,0,0,0,0,66,1,0,0,1,63,0,0,2,0,1,58,0,0,0,0,5,4,0,24,0,6,37,0,0,0,0,1,0,0,4,62,0,0,0,0,0,78,0.0,0.0,0.0,0.0,1.0149253731343284,4.313432835820896,2.776119402985074,68,57,186,14,77,0,2,3,1,16,1,2,0,0,2,0,0,1,1,0,0,196,180,0,17,359,0,141,235,0,308,68,0,137,239,0,137,0,198,41,0,41,11,9,0,13,20,30,23,22,64,0,0,0,8,13,76,10,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,152,0,0,0,0,0,62,83,2,5,12,0,3,0,0,0,134,0,0,222,205,11,7,0,99,0,0,32,0,47,17,4,58,0,0,0,280,21,0,0,0,0,0,0,0,0,0,3,1,1,1,0,130,1,1,11,279,44,20,32,21,12,14,4,1,0,0,0,0,0,0,0,14.0,18.0,9.0,10.0,17.0,13.0,10.0,12.0,15.0,8.0,13.0,13.0,9.0,8.0,5.0,12.0,7.0,6.0,7.0,14.0,6.0,9.0,11.0,7.0,7.0,5.0,3.0,7.0,3.0,8.0,5.0,5.0,6.0,5.0,7.0,3.0,4.0,1.0,2.0,5.0,6.0,4.0,2.0,3.0,3.0,2.0,2.0,5.0,3.0,3.0,3.0,5.0,5.0,4.0,5.0,3.0,1.0,4.0,2.0,2.0,1.0,2.0,1.0,2.0,1.0,1.0,3.0,2.0,3.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,174,229,24,0,68,58,48,46,40,26,28,15,18,15,22,12,7,9,7,4,1,2,1,0,0,0,403,11,5,8,0,403,13,3,8,0,146,0,25,6,4,0,72,174,0,329,83,15,0,401,4,0,0,0,0,7,0,0,0,15,0,0,0,9,6,0,0,16,396,0,5,4,1,0,0,417,0,3.8308823529411766,0.0,5.114583333333333,0.0,4.894613583138173,0,0,2,3,0,0,2,61,0,1,2,3,4,8,12,8,10,19,0,1,0,0,0,0,0,61,7,13,55,19,49,27,41,9,59,1,67,21,47,0,68,52,16,36,32,28,8,2,66,2,66,0,68,66,2,33,35,1,67,3,30,35,0,0,63,5,0,60,0,0,0,0,0,1,0,0,0,7,0,3.264705882352941,3.014705882352941,1.0,1.0,1.0,51.39705882352941 +PA050209,50207,Darién,Pinogana,Yaviza,1911,30,139,10,0,0,0,0,0,0,0,2,0,0,0,313,324,581,129,1125,93,44,5,0,77,3,1181,2,4,49,21,20,59,0,11,580,30,680,34,19,2,2,1292,33,1,0,0,21,1347,0,433,104,33,85,88,0,1,84,1109,149,3,1,700,636,0,5,1,2,3,1267,1,3,19,24,31,2,206,633,0,157,351,0,752,192,0,21,12,7,25,46,72,11,205,4,0,2092,4.1599576271186445,5.291313559322034,4.932203389830509,7.240466101694915,1.0066815144766148,3.207126948775056,2.089829250185597,1358,782,1817,243,327,30,53,58,22,53,26,10,45,0,56,27,19,24,24,4,20,2974,1418,0,430,3962,0,2202,2190,0,3693,699,0,1633,2759,0,1480,153,2334,425,0,432,87,91,12,147,184,223,201,220,642,0,0,3,207,267,339,143,214,678,3,3,43,40,33,56,57,35,17,3,12,0,0,0,0,0,1705,83,1943,0,0,30,27,52,915,762,51,163,573,111,89,15,197,2,729,27,0,2486,2338,298,466,12,840,48,0,79,0,223,193,33,1520,6,0,0,2748,797,3,6,16,143,6,12,0,0,0,53,95,53,35,326,498,125,87,516,3128,336,178,269,232,206,167,99,90,67,30,3,9,2,2,6,99.0,103.0,101.0,129.0,121.0,110.0,92.0,108.0,108.0,122.0,100.0,125.0,128.0,120.0,93.0,82.0,97.0,97.0,81.0,73.0,92.0,66.0,86.0,67.0,62.0,66.0,74.0,49.0,78.0,67.0,60.0,57.0,76.0,56.0,56.0,65.0,48.0,70.0,57.0,39.0,73.0,53.0,40.0,55.0,49.0,43.0,42.0,47.0,36.0,41.0,44.0,47.0,41.0,39.0,43.0,48.0,42.0,36.0,41.0,27.0,28.0,29.0,40.0,33.0,26.0,30.0,30.0,21.0,24.0,23.0,21.0,23.0,21.0,18.0,20.0,22.0,18.0,12.0,16.0,13.0,10.0,10.0,7.0,8.0,6.0,9.0,10.0,8.0,2.0,5.0,1.0,0.0,1.0,0.0,3.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0,1659,2764,401,0,553,540,566,430,373,334,305,279,270,209,214,194,156,128,103,81,41,34,5,7,2,0,4611,40,92,81,0,4615,42,86,81,0,1449,40,322,398,106,12,839,1658,0,2130,2606,88,0,19,274,4,0,1,0,1540,242,0,24,2720,0,254,240,367,300,13,20,710,2920,0,364,604,61,4,1,3790,0,2.7042175360710323,0.0,3.804578904333606,0.0,6.287935323383085,76,72,121,129,4,10,191,755,0,159,76,87,141,195,183,145,100,118,70,34,16,19,8,4,1,1321,37,932,426,950,408,177,1181,1008,350,75,1283,420,938,17,1341,1079,279,690,668,631,59,184,1174,825,533,199,1159,597,761,518,840,7,1351,286,734,304,34,0,988,370,0,8,69,1,0,1,0,314,52,0,10,903,0,1.830633284241532,1.7216494845360826,1.0,1.0285714285714285,1.0285714285714285,48.66642120765832 +PA050110,50307,Darién,Santa Fe,Río Congo,601,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,24,240,105,242,22,63,4,7,30,1,0,0,19,226,29,3,91,0,1,0,3,341,16,7,2,0,334,33,0,0,0,2,369,0,173,24,1,11,23,0,2,3,324,40,0,0,18,345,0,2,1,0,3,334,0,0,0,0,35,0,3,163,0,71,132,0,0,125,47,56,32,29,2,75,0,0,3,0,0,604,5.017441860465116,17.1453488372093,6.255813953488372,21.05813953488372,1.005420054200542,3.037940379403794,1.867208672086721,372,267,598,47,69,10,6,12,2,26,1,1,17,1,17,28,15,9,9,1,6,650,637,0,50,1237,0,258,1029,0,1060,227,0,377,910,0,365,12,727,183,0,185,19,19,0,35,80,77,78,66,347,1,2,1,37,59,87,25,39,94,0,2,5,6,8,6,3,3,0,0,3,0,0,0,0,0,536,6,567,0,0,0,5,2,208,290,21,46,69,15,17,3,12,0,341,85,0,786,643,28,136,4,316,32,0,25,1,54,73,10,311,0,0,0,969,124,1,2,1,10,0,2,0,0,3,8,4,6,12,30,260,14,8,197,933,132,63,70,95,55,25,19,12,7,6,1,5,4,2,0,41.0,31.0,33.0,37.0,30.0,24.0,38.0,27.0,32.0,27.0,28.0,35.0,30.0,27.0,22.0,25.0,27.0,32.0,27.0,22.0,24.0,20.0,24.0,27.0,21.0,20.0,19.0,27.0,22.0,17.0,18.0,14.0,29.0,24.0,16.0,13.0,12.0,18.0,10.0,11.0,21.0,16.0,14.0,15.0,13.0,18.0,13.0,11.0,11.0,20.0,18.0,17.0,16.0,17.0,18.0,7.0,16.0,14.0,17.0,6.0,6.0,8.0,8.0,10.0,3.0,5.0,3.0,11.0,6.0,4.0,10.0,6.0,6.0,9.0,8.0,4.0,2.0,5.0,4.0,3.0,5.0,2.0,6.0,2.0,4.0,2.0,2.0,2.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,462,852,115,0,172,148,142,133,116,105,101,64,79,73,86,60,35,29,39,18,19,6,4,0,0,0,1393,5,0,31,0,1393,5,0,31,0,460,0,11,162,15,1,318,462,0,681,739,9,0,0,40,5,0,0,1,448,121,1,7,806,0,2,44,160,15,1,3,603,601,0,24,85,2,0,0,1318,0,3.218683651804671,0.0,4.4875,0.0,4.941217634709587,2,13,46,8,1,1,155,146,0,37,24,35,41,65,59,34,21,19,12,8,2,7,5,2,0,354,18,64,308,99,273,37,335,39,333,0,372,90,282,0,372,166,206,83,289,45,38,13,359,20,352,32,340,242,130,189,183,4,368,63,224,74,11,2,342,30,0,0,16,3,0,0,0,87,30,0,2,234,0,2.1016042780748663,1.7192513368983957,1.0,1.0,1.0,49.803763440860216 +PA050104,50314,Darién,Santa Fe,Cucunatí,548,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,97,205,44,274,28,28,1,0,14,1,195,0,3,56,4,2,86,0,0,0,11,328,0,6,0,1,330,11,0,0,0,5,346,0,134,22,0,37,14,0,0,3,287,56,0,0,77,268,0,0,0,0,1,318,0,1,0,0,27,0,14,191,0,23,118,0,1,223,64,0,4,5,2,45,0,2,0,0,0,553,4.881944444444445,14.9375,6.729166666666667,23.041666666666668,1.0,3.078034682080925,2.0260115606936417,346,213,466,37,69,4,7,4,4,18,2,0,20,0,10,13,9,0,12,4,9,591,492,0,48,1035,0,405,678,0,894,189,0,303,780,0,287,16,641,139,0,140,12,19,4,49,44,65,50,62,224,0,0,0,55,58,84,22,29,114,1,0,9,11,15,7,8,1,0,0,0,0,0,0,0,0,528,3,387,0,1,0,0,3,153,196,33,2,102,48,13,4,22,0,259,83,0,652,538,38,179,2,271,9,0,32,0,39,50,3,183,0,0,0,752,145,0,0,7,14,0,0,0,0,0,4,9,9,4,69,196,26,3,211,670,107,51,132,103,60,26,10,13,9,6,2,0,1,0,0,23.0,25.0,31.0,28.0,34.0,29.0,23.0,31.0,24.0,24.0,31.0,32.0,23.0,23.0,20.0,19.0,24.0,25.0,22.0,21.0,20.0,19.0,20.0,18.0,24.0,12.0,21.0,14.0,20.0,19.0,18.0,17.0,14.0,17.0,9.0,14.0,24.0,16.0,11.0,19.0,7.0,13.0,15.0,12.0,15.0,13.0,9.0,12.0,13.0,8.0,14.0,8.0,13.0,8.0,10.0,8.0,9.0,12.0,7.0,10.0,6.0,7.0,7.0,5.0,9.0,4.0,4.0,4.0,6.0,5.0,5.0,3.0,3.0,5.0,3.0,3.0,6.0,2.0,4.0,4.0,2.0,3.0,7.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,401,707,82,0,141,131,129,111,101,86,75,84,62,55,53,46,34,23,19,19,12,4,5,0,0,0,1168,3,7,12,0,1168,3,7,12,0,340,8,77,149,26,0,189,401,0,526,657,7,0,1,36,4,0,0,0,230,21,0,12,886,0,0,63,98,6,0,0,274,749,0,49,73,6,0,0,1062,0,3.0397022332506203,0.0,4.147887323943662,0.0,5.439495798319328,0,17,33,2,0,0,80,214,0,14,17,20,50,63,76,33,18,26,15,5,6,2,1,0,0,334,12,170,176,174,172,46,300,160,186,6,340,166,180,0,346,230,116,137,209,122,15,25,321,48,298,38,308,183,163,203,143,1,345,81,181,71,13,0,290,56,0,1,11,1,0,0,0,54,5,0,3,271,0,1.884393063583815,1.5549132947976878,0.0,1.0,1.0,47.21387283236994 +PA050109,50315,Darién,Santa Fe,Río Congo Arriba,990,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,217,388,54,577,28,28,0,0,26,0,369,0,5,168,6,1,108,0,2,0,11,619,20,7,2,0,617,38,0,0,0,4,659,0,183,49,1,42,63,0,0,19,571,69,0,0,189,462,1,2,0,5,0,636,0,0,0,0,23,0,48,425,1,154,31,0,0,427,162,6,9,8,0,42,0,3,2,0,0,997,6.604414261460102,22.95755517826825,6.913412563667233,23.73005093378608,1.0091047040971168,3.138088012139605,1.9969650986342944,665,428,723,95,95,12,14,7,6,24,5,3,25,0,38,27,5,7,15,13,7,1292,628,0,135,1785,0,713,1207,0,1674,246,0,507,1413,0,480,27,1199,214,0,219,17,16,1,69,82,124,98,108,465,0,0,1,63,109,121,64,61,181,2,5,17,21,21,20,22,9,1,1,2,0,0,0,0,0,873,22,795,0,2,11,6,7,270,447,28,43,137,34,28,11,66,1,606,6,2,1148,954,60,327,11,236,15,0,240,2,62,108,15,809,3,0,0,1387,241,1,6,8,44,1,2,0,0,3,14,23,18,17,61,322,43,42,352,1369,215,113,105,82,77,59,24,19,21,11,2,2,0,0,3,51.0,45.0,42.0,44.0,32.0,38.0,36.0,45.0,38.0,41.0,37.0,44.0,27.0,35.0,31.0,36.0,42.0,35.0,29.0,35.0,28.0,35.0,36.0,35.0,31.0,30.0,36.0,43.0,33.0,42.0,38.0,27.0,24.0,23.0,23.0,28.0,30.0,36.0,26.0,16.0,26.0,27.0,32.0,23.0,22.0,22.0,23.0,22.0,20.0,24.0,24.0,24.0,22.0,23.0,26.0,17.0,22.0,23.0,21.0,21.0,18.0,17.0,12.0,11.0,14.0,6.0,10.0,16.0,11.0,11.0,9.0,6.0,9.0,9.0,13.0,7.0,13.0,5.0,11.0,6.0,9.0,5.0,3.0,3.0,1.0,6.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,586,1333,183,0,214,198,174,177,165,184,135,136,130,111,119,104,72,54,46,42,21,12,5,3,0,0,2082,8,4,8,0,2082,8,4,8,0,712,7,32,233,39,5,488,586,0,667,1429,6,0,1,39,3,0,0,0,210,2,0,4,1843,0,16,127,190,10,11,2,378,1368,0,82,170,9,0,0,1841,0,2.6386666666666665,0.0,3.467391304347826,0.0,5.747383444338725,4,49,63,3,5,1,130,410,0,125,73,67,92,90,72,45,28,24,14,18,10,6,0,0,1,650,15,330,335,414,251,115,550,330,335,22,643,175,490,0,665,474,191,248,417,195,53,74,591,197,468,152,513,413,252,450,215,6,659,150,405,93,17,0,545,120,0,0,11,0,0,0,0,37,1,0,3,613,0,1.7263157894736842,1.4345864661654135,0.0,1.0,1.0,49.609022556390975 +PA050113,50316,Darién,Santa Fe,Santa Fe,2287,42,103,17,0,0,0,0,2,0,0,0,7,0,0,3,681,860,135,1444,100,74,1,0,59,1,1316,107,5,132,5,14,100,0,0,586,42,936,95,14,0,6,1614,41,2,0,0,22,1679,0,366,134,86,109,75,0,6,72,1472,129,0,0,914,732,0,22,0,3,8,1592,2,14,1,0,70,0,263,957,0,258,201,0,620,805,65,2,2,16,47,37,1,65,17,2,0,2458,3.706040268456376,16.265771812080537,5.373154362416107,21.508724832214764,1.004764740917213,3.0655151876116737,1.8302561048243,1694,998,2190,210,342,26,44,46,17,80,20,12,68,0,48,18,15,22,23,2,26,4052,1244,0,949,4347,0,2795,2501,0,4564,732,0,1858,3438,0,1740,118,2933,505,0,514,79,111,7,211,245,274,234,240,893,0,0,3,261,270,420,143,198,687,2,6,79,72,89,81,82,62,7,1,23,0,0,1,1,0,2147,143,2221,0,4,33,25,37,1021,955,98,110,806,160,211,26,125,6,895,17,0,3038,2709,353,689,22,998,110,1,73,0,119,244,22,1825,9,0,0,3313,909,4,13,56,189,7,19,1,0,0,49,117,113,96,309,660,253,112,581,3626,419,254,293,330,247,207,130,116,56,29,8,14,3,6,9,112.0,112.0,118.0,109.0,129.0,131.0,115.0,141.0,147.0,122.0,121.0,112.0,127.0,112.0,99.0,119.0,104.0,107.0,92.0,95.0,93.0,102.0,113.0,99.0,90.0,90.0,79.0,104.0,81.0,110.0,92.0,85.0,80.0,98.0,66.0,72.0,74.0,66.0,67.0,75.0,75.0,67.0,61.0,67.0,61.0,69.0,45.0,63.0,54.0,58.0,58.0,48.0,67.0,47.0,35.0,44.0,41.0,36.0,38.0,46.0,36.0,25.0,45.0,38.0,32.0,43.0,30.0,32.0,39.0,17.0,33.0,19.0,21.0,19.0,15.0,26.0,14.0,13.0,19.0,12.0,11.0,14.0,9.0,5.0,12.0,7.0,6.0,5.0,1.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1807,3509,431,0,580,656,571,517,497,464,421,354,331,289,255,205,176,161,107,84,51,19,5,4,0,0,5640,42,14,51,0,5642,46,8,51,0,1650,33,259,613,134,15,1236,1807,0,2251,3441,55,0,24,117,8,0,1,0,845,608,0,23,4121,0,87,315,385,101,7,5,474,4373,0,515,679,45,1,2,4505,0,2.675355450236967,0.0,3.605104096709201,0.0,6.36923612319471,34,106,102,38,2,3,168,1241,0,187,130,135,188,266,207,161,100,143,62,47,23,10,16,11,1,1650,44,1137,557,1207,487,167,1527,1182,512,140,1554,585,1109,27,1667,1422,272,899,795,700,199,313,1381,813,881,346,1348,731,963,595,1099,4,1690,330,1028,296,40,2,1199,495,0,4,23,2,0,0,0,179,128,0,7,1351,0,1.7912735849056605,1.5972877358490567,1.0,1.0535714285714286,1.0535714285714286,47.26918536009445 +PA070101,60101,Herrera,Chitré,Chitré,3748,23,291,10,4,1,0,3,0,0,0,0,4,0,0,2543,631,15,4,3159,30,1,0,0,3,0,3171,0,4,15,0,0,3,0,0,2787,375,22,0,1,1,7,3089,6,34,0,0,64,3193,5,348,94,198,201,33,0,818,684,1614,68,7,2,3161,5,6,16,0,5,0,2584,84,511,8,4,0,2,2794,382,4,10,2,1,3100,0,0,0,0,0,0,0,0,90,2,1,3969,115,6.7941935483870965,22.988064516129032,6.794838709677419,23.07483870967742,1.0075164422173504,4.286877544628876,2.6761666144691514,3221,1669,2625,117,455,182,112,114,62,129,39,50,197,50,213,63,40,59,67,78,44,8004,741,0,4975,3770,0,7301,1444,0,8399,346,0,2356,6389,0,1498,858,6217,172,0,192,117,91,29,112,149,168,140,145,743,2,4,109,173,271,530,215,300,1427,3,34,196,250,470,631,1114,444,185,16,425,0,1,5,54,0,4104,242,3812,0,6,95,43,1292,1384,906,146,84,2967,287,356,106,471,15,88,4,4,4234,4788,1320,1457,132,1170,172,0,25,22,4,185,20,2270,184,0,0,2786,2310,120,53,258,1980,169,427,55,0,22,507,1024,550,274,796,93,412,203,465,3051,402,219,351,665,793,954,569,700,388,244,144,146,66,146,184,74.0,48.0,76.0,79.0,83.0,121.0,86.0,93.0,120.0,84.0,123.0,96.0,109.0,100.0,117.0,111.0,108.0,91.0,96.0,87.0,141.0,122.0,131.0,132.0,136.0,165.0,122.0,136.0,129.0,98.0,134.0,122.0,140.0,116.0,117.0,135.0,120.0,105.0,131.0,98.0,107.0,131.0,130.0,128.0,90.0,104.0,128.0,114.0,113.0,95.0,101.0,118.0,134.0,103.0,126.0,137.0,111.0,127.0,129.0,105.0,106.0,97.0,104.0,111.0,127.0,113.0,120.0,103.0,99.0,96.0,109.0,94.0,76.0,71.0,68.0,66.0,66.0,77.0,58.0,61.0,31.0,44.0,46.0,37.0,44.0,47.0,27.0,28.0,27.0,19.0,19.0,11.0,20.0,10.0,5.0,3.0,5.0,1.0,3.0,4.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1409,5899,1714,0,360,504,545,493,662,650,629,589,586,554,582,609,545,531,418,328,202,148,65,16,6,0,8329,303,384,6,0,8345,430,241,6,0,1454,136,103,2472,412,155,2882,1408,0,1928,6679,415,0,18,89,7,0,0,0,2,0,0,81,8825,0,318,228,274,13,21,14,960,7194,0,2525,2096,1350,65,23,2963,0,1.5757575757575757,0.0,2.261031907671419,0.0,11.380846818887164,137,95,123,6,10,10,411,2429,0,94,60,41,92,191,265,344,251,497,333,222,192,205,141,240,49,3154,67,3105,116,2986,235,639,2582,3049,172,2094,1127,1918,1303,1363,1858,3097,124,3004,217,2457,547,1945,1276,2677,544,2196,1025,422,2799,311,2910,40,3181,722,1584,770,145,8,1879,1342,0,8,24,2,0,0,0,1,0,0,28,3158,0,1.3112418705481572,1.482812016104057,1.0869565217391304,1.0410958904109588,1.0410958904109588,55.040981061782055 +PA070102,60102,Herrera,Chitré,La Arena,3457,17,299,3,0,0,0,0,0,0,0,1,0,0,0,1657,1241,36,4,2903,31,1,0,0,3,0,2924,0,1,4,0,1,8,0,0,2643,251,32,2,9,0,1,2883,16,7,0,0,32,2938,0,317,93,134,254,40,0,640,510,1649,134,5,0,2869,5,32,22,0,7,3,2596,58,263,18,0,0,3,1925,984,2,26,1,0,2886,0,12,2,0,0,0,0,0,33,4,1,3344,433,6.898550724637682,22.16149068322981,6.916149068322981,22.41407867494824,1.0197413206262764,3.706943498978897,2.426140231449966,2996,1757,2637,237,503,118,115,91,56,113,26,22,104,5,163,92,28,57,54,37,39,7485,915,0,3388,5012,0,6430,1970,0,7955,445,0,2397,6003,0,1871,526,5835,168,0,185,122,123,42,160,161,186,195,167,1432,1,5,41,213,379,597,242,382,1461,8,64,177,214,350,389,505,304,107,18,159,1,3,1,6,0,3965,245,3448,0,3,113,35,634,1412,1166,159,77,2706,374,485,142,337,16,106,8,0,4230,4550,984,1697,149,1274,47,0,20,3,4,265,36,2034,59,0,0,3844,2158,42,87,191,1058,109,161,8,0,3,227,569,367,254,861,83,877,318,651,3366,653,251,431,662,798,1083,431,471,305,121,43,57,16,33,59,92.0,86.0,89.0,113.0,122.0,129.0,131.0,125.0,123.0,112.0,141.0,124.0,97.0,105.0,122.0,110.0,106.0,115.0,132.0,118.0,120.0,137.0,151.0,125.0,131.0,185.0,131.0,124.0,132.0,107.0,124.0,111.0,129.0,140.0,123.0,143.0,112.0,139.0,117.0,116.0,110.0,117.0,127.0,111.0,104.0,121.0,120.0,112.0,100.0,112.0,111.0,119.0,124.0,121.0,109.0,109.0,122.0,98.0,107.0,105.0,118.0,97.0,103.0,95.0,94.0,84.0,75.0,75.0,79.0,60.0,70.0,47.0,58.0,55.0,65.0,64.0,59.0,36.0,33.0,35.0,33.0,24.0,18.0,27.0,24.0,14.0,19.0,15.0,11.0,7.0,7.0,9.0,5.0,5.0,2.0,5.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1711,5944,1125,0,502,620,589,581,664,679,627,627,569,565,584,541,507,373,295,227,126,66,28,6,4,0,8570,111,89,10,0,8578,127,65,10,0,2042,138,286,1942,275,111,2276,1710,0,4450,4216,114,0,60,218,23,0,2,0,5,0,0,87,8385,0,196,178,891,71,12,5,1419,6008,0,2238,2524,693,44,16,3265,0,1.63615903975994,0.0,2.2690246516613075,0.0,9.490660592255123,71,74,361,38,7,3,512,1930,0,111,87,41,115,253,307,400,261,545,328,182,107,122,54,68,15,2955,41,2860,136,2813,183,529,2467,2857,139,1327,1669,1947,1049,895,2101,2833,163,2783,213,1830,953,1365,1631,2232,764,1594,1402,73,2923,106,2890,20,2976,538,1712,664,82,1,1955,1041,0,11,51,6,0,1,0,0,0,0,23,2904,0,1.4114114114114114,1.5181848515181848,1.1176470588235294,1.0551181102362204,1.0551181102362204,51.56542056074766 +PA070104,60103,Herrera,Chitré,Monagrillo,7438,37,72,6,1,0,0,2,0,0,0,0,5,0,0,5212,875,290,24,6276,101,1,0,0,19,4,6367,0,4,8,2,3,16,0,1,5207,1083,88,7,2,0,14,6300,10,23,1,0,67,6401,0,442,175,276,206,53,0,2830,784,2711,66,8,2,6262,25,12,81,0,21,0,5064,55,1258,20,1,0,3,5103,1245,1,50,0,2,6323,0,2,2,0,0,0,0,9,49,14,2,7396,165,6.653596837944664,19.44300395256917,6.71905138339921,19.96584980237154,1.0110920168723636,3.7473832213716607,2.4158725199187625,6477,3838,6256,555,919,295,234,152,119,227,63,71,176,37,329,111,98,107,96,69,68,16648,1717,0,8745,9620,0,15041,3324,0,17340,1025,0,5823,12542,0,4628,1195,12232,310,0,344,330,301,56,367,398,566,433,470,2168,0,3,33,554,784,1234,451,739,3307,3,214,349,463,830,1366,1450,526,176,47,383,1,1,2,16,0,9022,448,7084,0,22,184,89,1117,3284,2172,343,168,6409,529,956,266,847,15,138,213,21,9327,10092,2683,3628,286,2595,125,2,49,26,13,546,64,4655,24,0,0,7384,4804,35,235,477,3054,166,382,17,0,25,648,1547,1018,697,1987,367,1364,656,1161,7706,1320,683,879,1176,1357,2307,1142,1354,762,354,102,138,52,63,24,246.0,258.0,289.0,261.0,269.0,297.0,308.0,297.0,310.0,330.0,299.0,303.0,222.0,292.0,280.0,273.0,260.0,265.0,274.0,269.0,278.0,270.0,297.0,275.0,245.0,311.0,330.0,293.0,272.0,310.0,285.0,331.0,339.0,337.0,350.0,310.0,371.0,345.0,364.0,332.0,331.0,293.0,311.0,276.0,266.0,256.0,272.0,238.0,250.0,238.0,224.0,244.0,249.0,219.0,194.0,197.0,211.0,185.0,195.0,198.0,177.0,149.0,158.0,144.0,161.0,141.0,118.0,128.0,121.0,109.0,101.0,99.0,94.0,102.0,110.0,80.0,90.0,69.0,78.0,62.0,69.0,48.0,47.0,25.0,33.0,33.0,28.0,32.0,28.0,13.0,15.0,15.0,15.0,8.0,4.0,4.0,4.0,3.0,6.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4261,13222,1936,0,1323,1542,1396,1341,1365,1516,1642,1722,1477,1254,1130,986,789,617,506,379,222,134,57,18,3,0,18950,337,120,12,0,18956,349,102,12,0,4738,280,1294,3963,517,278,4089,4260,0,8008,11170,241,0,67,198,21,0,0,1,8,2,2,173,18947,0,473,630,1398,75,128,41,2474,14200,0,5588,5871,1179,94,7,6680,0,1.5949717448967824,0.0,2.256097560975609,0.0,9.715175858695092,163,226,618,33,64,20,970,4383,0,189,165,114,255,428,565,813,579,1054,822,532,327,332,138,152,7,6399,78,6240,237,6145,332,928,5549,6156,321,3600,2877,4108,2369,2153,4324,6175,302,6208,269,4744,1464,3358,3119,4930,1547,4082,2395,537,5940,607,5870,75,6402,1065,3845,1396,171,3,4129,2348,0,12,47,3,0,0,1,3,1,0,69,6341,0,1.4393518518518518,1.5574074074074074,1.1333333333333333,1.037914691943128,1.037914691943128,48.710668519376256 +PA070103,60104,Herrera,Chitré,Llano Bonito,3898,23,462,17,0,0,3,3,0,0,1,0,0,0,0,3396,305,60,17,3673,88,1,0,0,10,6,3762,0,1,0,0,3,11,0,1,3029,681,49,0,4,0,15,3654,24,26,0,0,74,3778,0,217,62,131,168,44,0,1025,720,1904,102,16,11,3628,41,10,85,0,14,0,3386,21,346,20,1,0,4,2676,1036,1,52,7,6,3763,0,0,0,0,0,0,0,0,5,3,7,4336,71,6.808397555142173,20.35423863938347,6.8192931171937285,20.60669678448047,1.0076760190577023,3.456855479089465,2.266278454208576,3807,1935,3363,245,687,161,160,125,51,141,31,51,169,12,168,67,61,70,85,43,50,9421,1045,0,4269,6197,0,8793,1673,0,9927,539,0,3057,7409,0,2545,512,7165,244,0,265,155,133,44,162,205,285,241,252,1472,0,2,63,366,516,858,299,451,1821,9,109,241,298,435,618,551,338,52,20,194,0,0,0,11,0,4993,293,4314,0,7,96,55,877,1800,1256,219,162,3360,433,574,223,511,21,39,88,7,5309,5629,1308,2006,241,1656,27,1,9,8,2,363,58,2399,99,0,0,4838,2816,65,124,222,1278,52,194,11,0,9,268,612,505,385,1254,143,854,368,888,3986,870,415,609,915,997,1326,613,596,293,127,37,32,9,14,99,123.0,112.0,113.0,124.0,143.0,142.0,126.0,138.0,143.0,174.0,139.0,170.0,137.0,148.0,151.0,159.0,147.0,174.0,161.0,166.0,183.0,198.0,170.0,183.0,167.0,205.0,168.0,168.0,158.0,143.0,171.0,151.0,169.0,150.0,112.0,167.0,161.0,140.0,150.0,142.0,163.0,147.0,137.0,145.0,165.0,142.0,158.0,143.0,141.0,122.0,123.0,139.0,151.0,136.0,153.0,130.0,137.0,133.0,138.0,117.0,138.0,117.0,111.0,110.0,109.0,93.0,97.0,86.0,84.0,69.0,71.0,81.0,68.0,73.0,73.0,55.0,67.0,52.0,58.0,47.0,46.0,28.0,38.0,34.0,36.0,18.0,21.0,16.0,17.0,11.0,13.0,12.0,7.0,2.0,1.0,4.0,1.0,1.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2083,7468,1387,0,615,723,745,807,901,842,753,760,757,706,702,655,585,429,366,279,182,83,35,10,3,0,10672,172,85,9,0,10675,192,62,9,0,2459,178,932,2020,384,170,2714,2081,0,3189,7665,84,0,198,119,11,0,0,0,3,2,0,82,10523,0,146,108,665,45,14,11,1179,8770,0,2685,2945,907,70,7,4324,0,1.739209726443769,0.0,2.436607403089478,0.0,9.470012799414883,63,42,270,24,9,4,469,2926,0,93,121,89,186,297,434,531,397,659,444,206,140,116,43,37,14,3723,84,3592,215,3535,272,577,3230,3598,209,1633,2174,2253,1554,1137,2670,3624,183,3562,245,2545,1017,1670,2137,3132,675,1927,1880,266,3541,250,3557,36,3771,810,1967,933,97,7,2195,1612,0,39,31,3,0,0,0,0,2,0,25,3707,0,1.391976927110645,1.4758783429470372,1.0,1.0789473684210529,1.0789473684210529,51.35434725505648 +PA070105,60105,Herrera,Chitré,San Juan Bautista,4973,3,686,28,0,0,0,0,0,0,0,0,0,1,0,3949,553,30,7,4470,62,0,0,0,7,0,4515,0,1,15,0,6,2,0,0,3836,679,16,2,1,0,5,4432,9,23,0,0,75,4539,0,336,132,279,321,83,0,1219,940,2240,129,10,1,4469,5,38,23,0,4,0,3829,48,651,8,2,0,1,3573,950,2,12,2,0,4375,1,4,0,0,3,0,0,0,151,5,0,5667,24,6.653652968036529,19.273059360730592,6.674200913242009,19.419406392694064,1.010795329367702,3.980832782551223,2.5686274509803924,4588,2312,3886,205,715,236,165,112,74,178,47,73,166,41,268,71,54,80,66,86,49,11242,1057,0,6396,5903,0,10270,2029,0,11728,571,0,3540,8759,0,2626,914,8538,221,0,258,119,186,23,176,224,277,256,242,1311,1,2,98,263,461,819,301,450,2213,3,141,258,354,626,1088,1062,370,192,20,481,0,4,0,20,0,5798,557,5006,0,11,218,114,1310,2092,1262,237,105,4252,478,649,178,548,29,73,22,6,6028,6770,1915,2198,195,1663,167,0,90,7,10,395,41,2937,54,0,0,4429,3360,99,172,354,2258,187,481,21,0,7,522,1209,664,482,1273,111,800,364,923,4615,884,401,546,911,1107,1433,738,858,515,310,119,140,65,102,54,117.0,121.0,136.0,125.0,134.0,151.0,160.0,146.0,175.0,172.0,190.0,175.0,146.0,149.0,149.0,179.0,161.0,142.0,196.0,163.0,187.0,203.0,220.0,203.0,214.0,209.0,190.0,164.0,178.0,176.0,175.0,169.0,162.0,171.0,147.0,156.0,170.0,157.0,193.0,157.0,148.0,165.0,148.0,215.0,165.0,209.0,180.0,163.0,144.0,153.0,153.0,201.0,195.0,188.0,164.0,160.0,173.0,164.0,161.0,175.0,131.0,122.0,147.0,139.0,129.0,134.0,113.0,117.0,109.0,131.0,128.0,96.0,110.0,91.0,76.0,81.0,89.0,71.0,63.0,89.0,52.0,53.0,57.0,39.0,52.0,38.0,44.0,33.0,27.0,21.0,23.0,18.0,18.0,11.0,13.0,8.0,3.0,2.0,4.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2246,8534,2018,0,633,804,809,841,1027,917,824,833,841,849,901,833,668,604,501,393,253,163,83,17,4,0,12236,283,272,7,0,12243,323,225,7,0,2505,167,138,2905,546,187,4104,2246,0,2895,9694,209,0,109,124,24,1,2,0,9,1,1,174,12353,0,302,364,854,55,32,19,2330,8842,0,3577,3529,1449,59,20,4164,0,1.6444188722669737,0.0,2.3067938021454117,0.0,10.617205813408344,117,158,359,27,14,11,915,2987,0,131,114,73,160,340,434,536,434,755,483,333,197,269,122,196,11,4509,79,4436,152,4300,288,826,3762,4383,205,2582,2006,2782,1806,1743,2845,4393,195,4349,239,3124,1225,2422,2166,3755,833,2714,1874,381,4207,343,4245,45,4543,963,2427,1036,162,1,2644,1944,0,21,37,9,1,1,0,3,1,0,63,4452,0,1.3135759424711266,1.475266942689039,1.180327868852459,1.062015503875969,1.062015503875969,53.29577157802965 +PA070204,60201,Herrera,Las Minas,Las Minas,969,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,516,186,3,687,15,1,0,0,2,0,683,0,2,6,0,2,10,0,2,423,8,206,35,24,0,9,656,42,0,0,0,7,705,0,149,26,27,42,24,0,14,45,612,32,2,0,617,11,11,7,0,59,0,702,2,0,0,0,1,0,212,473,0,19,0,1,405,256,35,0,0,3,0,0,0,0,3,3,0,974,6.280172413793103,20.74712643678161,6.537356321839081,21.66522988505747,1.004255319148936,3.706382978723404,2.4567375886524823,708,370,623,41,107,26,25,22,8,26,5,7,18,2,49,20,9,6,23,52,27,1585,313,0,472,1426,0,1034,864,0,1712,186,0,518,1380,0,446,72,1271,109,0,110,25,29,2,55,64,88,58,67,384,0,0,0,51,63,130,58,78,321,3,16,36,34,73,69,54,7,7,2,13,0,0,1,0,0,876,27,830,0,0,18,2,117,292,257,40,124,362,109,128,22,74,3,200,0,0,993,995,252,238,27,307,20,0,54,0,15,160,25,322,2,0,0,1097,442,0,19,49,107,6,13,0,0,0,35,64,55,49,167,115,116,67,235,880,238,139,138,125,104,149,69,78,33,24,6,3,0,0,2,23.0,18.0,24.0,25.0,31.0,25.0,28.0,21.0,28.0,32.0,36.0,30.0,27.0,28.0,23.0,27.0,21.0,27.0,28.0,25.0,29.0,32.0,32.0,25.0,35.0,16.0,35.0,24.0,23.0,39.0,16.0,19.0,19.0,29.0,20.0,32.0,28.0,17.0,33.0,16.0,25.0,17.0,23.0,25.0,17.0,23.0,18.0,22.0,22.0,26.0,23.0,32.0,26.0,21.0,28.0,25.0,22.0,26.0,25.0,21.0,30.0,29.0,30.0,17.0,18.0,25.0,26.0,13.0,24.0,21.0,12.0,22.0,6.0,17.0,13.0,14.0,14.0,13.0,14.0,11.0,11.0,11.0,12.0,9.0,9.0,11.0,9.0,6.0,7.0,4.0,2.0,1.0,3.0,2.0,4.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,399,1238,351,0,121,134,144,128,153,137,103,126,107,111,130,119,124,109,70,66,52,37,12,5,0,0,1962,4,21,1,0,1962,10,15,1,0,521,32,65,339,117,14,501,399,0,972,1010,6,0,5,13,0,0,0,0,2,0,1,49,1918,0,9,43,135,8,1,1,508,1283,0,320,533,122,9,6,998,0,2.393023255813953,0.0,3.222405271828665,0.0,7.8174044265593565,4,20,53,1,1,0,175,454,0,42,51,43,66,106,75,73,43,95,33,35,15,22,7,0,2,691,17,642,66,622,86,103,605,542,166,51,657,411,297,50,658,636,72,572,136,311,261,159,549,408,300,220,488,323,385,290,418,17,691,173,352,168,15,1,486,222,0,1,1,0,0,0,0,0,0,0,19,687,0,1.4005641748942173,1.4033850493653033,1.0,1.0638297872340423,1.0638297872340423,56.425141242937855 +PA070201,60202,Herrera,Las Minas,Chepo,680,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,219,11,413,12,6,0,0,5,0,143,0,3,220,2,0,66,0,2,73,5,268,34,56,0,0,282,149,0,0,0,5,436,0,112,31,9,39,56,0,0,9,417,9,1,0,241,151,1,1,2,40,0,425,0,3,0,0,8,0,23,303,0,107,3,0,0,298,73,1,0,48,0,10,0,0,5,1,0,683,6.118598382749326,19.221024258760107,6.894878706199461,23.442048517520217,1.0022935779816513,3.26605504587156,2.162844036697248,437,260,457,39,50,12,11,1,5,4,2,5,6,0,24,13,2,8,7,21,19,729,476,0,119,1086,0,353,852,0,954,251,0,336,869,0,316,20,712,157,0,158,21,23,0,46,68,66,57,71,219,0,0,0,39,58,97,37,47,142,0,4,8,15,4,8,4,8,1,0,3,0,0,0,1,0,528,19,533,0,0,11,5,3,190,265,42,33,77,58,24,8,41,0,334,0,3,715,574,70,137,11,276,8,0,40,3,100,103,11,302,3,0,0,882,166,0,4,7,17,1,2,1,0,3,8,18,8,4,58,242,40,14,152,885,170,63,48,33,20,34,13,6,5,3,2,3,0,1,3,21.0,24.0,21.0,18.0,21.0,22.0,26.0,11.0,21.0,24.0,20.0,16.0,16.0,24.0,22.0,30.0,37.0,26.0,33.0,28.0,17.0,15.0,22.0,22.0,20.0,9.0,15.0,17.0,18.0,20.0,19.0,22.0,22.0,11.0,14.0,10.0,13.0,22.0,13.0,22.0,14.0,22.0,15.0,22.0,11.0,13.0,6.0,21.0,13.0,15.0,17.0,19.0,13.0,14.0,10.0,11.0,12.0,16.0,9.0,14.0,20.0,15.0,15.0,6.0,13.0,9.0,10.0,12.0,5.0,6.0,7.0,4.0,8.0,3.0,5.0,7.0,3.0,7.0,5.0,6.0,3.0,3.0,5.0,4.0,4.0,4.0,2.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,307,853,129,0,105,104,98,154,96,79,88,80,84,68,73,62,69,42,27,28,19,12,1,0,0,0,1285,3,0,1,0,1285,3,0,1,0,373,10,44,171,33,3,348,307,0,665,624,0,0,1,8,0,0,0,0,0,0,0,5,1275,0,0,4,28,3,0,1,68,1185,0,76,159,3,0,0,1051,0,2.942796610169492,0.0,4.045045045045045,0.0,5.701318851823118,0,4,9,1,0,1,35,387,0,82,66,55,64,67,29,28,14,15,3,7,1,3,0,2,1,384,53,138,299,226,211,42,395,53,384,2,435,241,196,4,433,239,198,161,276,127,34,25,412,99,338,51,386,287,150,333,104,6,431,122,241,68,6,0,362,75,0,0,2,0,0,0,0,0,0,0,3,432,0,1.6361556064073226,1.3135011441647595,1.5,1.1538461538461535,1.1538461538461535,50.045766590389015 +PA070202,60203,Herrera,Las Minas,Chumical,324,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,211,39,1,248,2,0,0,0,0,1,239,0,1,1,0,0,8,0,2,128,2,77,28,16,0,0,247,4,0,0,0,0,251,0,36,3,5,27,2,0,2,7,233,8,1,0,234,4,0,2,0,11,0,249,0,2,0,0,0,0,49,195,0,6,0,1,0,246,1,1,0,1,0,0,0,0,0,2,0,325,6.801619433198381,12.663967611336032,6.874493927125506,14.663967611336032,1.0079681274900398,3.537848605577689,1.9760956175298805,253,147,189,10,37,6,6,0,3,13,1,2,6,0,7,5,1,3,3,10,7,522,122,0,116,528,0,181,463,0,584,60,0,135,509,0,117,18,480,29,0,30,7,6,0,17,23,47,24,20,158,0,0,0,21,38,44,12,20,98,0,0,15,14,8,23,10,1,3,1,4,0,0,0,0,0,298,6,286,0,0,1,2,21,73,160,17,15,98,25,26,14,26,0,115,0,0,364,309,47,141,14,93,4,0,5,0,2,68,5,111,0,0,0,413,141,0,1,5,23,3,4,0,0,0,7,13,6,9,50,41,22,26,130,316,68,50,56,65,39,38,12,16,10,2,0,1,0,0,0,7.0,6.0,9.0,7.0,12.0,7.0,6.0,11.0,5.0,13.0,5.0,9.0,4.0,7.0,7.0,11.0,8.0,6.0,5.0,7.0,11.0,12.0,8.0,8.0,6.0,12.0,11.0,10.0,11.0,10.0,10.0,11.0,11.0,11.0,11.0,12.0,6.0,6.0,11.0,8.0,9.0,3.0,5.0,7.0,7.0,14.0,7.0,6.0,8.0,6.0,8.0,13.0,13.0,4.0,19.0,6.0,10.0,6.0,7.0,12.0,6.0,6.0,7.0,10.0,8.0,7.0,8.0,6.0,8.0,8.0,6.0,9.0,5.0,4.0,5.0,7.0,6.0,3.0,4.0,9.0,2.0,1.0,2.0,7.0,4.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,115,440,118,0,41,42,32,37,45,54,54,43,31,41,57,41,37,37,29,29,16,3,4,0,0,0,664,2,7,0,0,664,6,3,0,0,215,7,27,129,23,1,156,115,0,343,324,6,0,0,20,3,0,0,0,0,0,0,13,637,0,6,18,61,4,3,0,220,361,0,91,168,20,3,0,391,0,2.3358208955223883,0.0,2.9320388349514563,0.0,7.331352154531946,0,9,32,2,1,0,75,134,0,25,19,18,20,49,44,22,11,22,11,3,5,3,0,1,0,249,4,220,33,214,39,34,219,204,49,33,220,134,119,0,253,229,24,210,43,88,122,28,225,36,217,78,175,105,148,91,162,0,253,58,146,44,5,1,183,70,0,0,4,0,0,0,0,0,0,0,4,245,0,1.4330708661417322,1.2165354330708662,0.0,1.0,1.0,53.719367588932805 +PA070203,60204,Herrera,Las Minas,El Toro,331,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,138,5,227,0,2,0,0,3,0,97,0,2,104,0,0,28,0,1,0,0,191,25,15,0,1,153,78,0,0,0,1,232,0,51,6,0,25,19,0,0,1,229,2,0,0,131,50,0,2,0,49,0,231,0,0,0,0,0,1,14,185,0,31,2,0,0,183,12,0,0,21,0,14,0,0,2,0,0,333,6.17948717948718,20.71794871794872,6.830769230769231,22.77435897435897,1.0043103448275863,3.086206896551724,1.9698275862068968,233,134,197,5,28,9,3,1,1,5,1,1,1,0,11,9,1,5,7,1,5,316,269,0,29,556,0,157,428,0,471,114,0,116,469,0,108,8,369,100,0,102,3,3,0,18,11,36,31,20,168,0,0,0,17,18,41,13,18,57,1,0,5,4,3,5,5,5,0,0,1,0,0,0,0,0,225,4,321,0,0,2,1,6,76,158,22,59,33,17,3,1,5,0,167,0,1,341,278,22,78,1,72,1,0,52,1,43,98,9,184,0,0,0,464,71,0,0,1,13,0,1,0,0,1,5,8,3,0,12,96,15,3,86,421,98,28,19,9,13,16,5,3,4,2,1,0,0,0,0,12.0,7.0,11.0,4.0,6.0,4.0,6.0,9.0,6.0,4.0,7.0,6.0,2.0,13.0,10.0,13.0,12.0,13.0,11.0,10.0,8.0,16.0,8.0,6.0,8.0,5.0,1.0,3.0,4.0,5.0,8.0,5.0,5.0,4.0,9.0,10.0,8.0,5.0,15.0,7.0,8.0,7.0,12.0,7.0,7.0,11.0,8.0,7.0,4.0,6.0,6.0,13.0,6.0,10.0,9.0,7.0,8.0,2.0,8.0,12.0,10.0,7.0,7.0,6.0,6.0,3.0,4.0,8.0,5.0,9.0,10.0,7.0,10.0,7.0,7.0,8.0,3.0,4.0,6.0,2.0,1.0,6.0,8.0,1.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,107,393,119,0,40,29,38,59,46,18,31,45,41,36,44,37,36,29,41,23,16,6,4,0,0,0,616,2,1,0,0,616,2,1,0,0,180,3,6,119,42,2,160,107,0,396,220,3,0,0,0,3,0,0,0,0,1,0,1,614,0,0,1,29,1,0,0,63,525,0,26,126,5,1,0,461,0,3.195020746887967,0.0,3.914438502673797,0.0,5.618739903069467,0,0,19,1,0,0,26,187,0,68,39,22,34,27,9,13,6,7,3,4,0,0,1,0,0,212,21,82,151,95,138,20,213,57,176,4,229,103,130,1,232,112,121,66,167,28,38,10,223,49,184,17,216,173,60,166,67,0,233,64,131,37,1,0,202,31,0,0,0,0,0,0,0,0,1,0,0,232,0,1.463519313304721,1.1931330472103003,0.0,1.0,1.0,57.0 +PA070205,60205,Herrera,Las Minas,Leones,349,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,171,1,231,0,1,0,0,0,0,167,2,2,14,3,3,40,0,1,0,4,201,9,18,0,0,180,51,0,0,0,1,232,0,60,11,0,9,43,0,0,1,222,9,0,0,178,17,3,6,1,27,0,229,0,2,0,0,1,0,27,170,0,35,0,0,0,161,54,0,0,13,0,3,0,0,0,1,0,355,5.074418604651163,12.297674418604652,6.525581395348837,17.50232558139535,1.012931034482759,3.237068965517241,2.056034482758621,235,123,210,8,25,6,11,9,3,4,0,6,0,0,29,8,3,3,2,0,8,363,247,0,39,571,0,122,488,0,464,146,0,127,483,0,118,9,351,132,0,133,4,5,0,17,17,35,34,27,141,0,0,0,17,27,38,22,16,60,0,0,2,4,2,4,2,2,0,0,1,0,0,0,0,0,251,9,308,0,0,7,2,7,88,159,27,27,33,10,9,13,6,0,189,0,0,354,286,22,141,13,47,0,0,37,0,39,82,11,134,1,0,0,491,65,0,0,2,9,0,1,0,0,0,2,5,5,1,23,71,14,3,136,384,98,50,28,29,13,24,2,8,1,2,0,0,0,0,1,10.0,6.0,9.0,5.0,6.0,7.0,7.0,10.0,6.0,6.0,9.0,7.0,7.0,11.0,5.0,11.0,14.0,15.0,9.0,10.0,9.0,11.0,11.0,12.0,10.0,3.0,6.0,7.0,10.0,7.0,5.0,4.0,6.0,4.0,2.0,8.0,7.0,4.0,6.0,11.0,6.0,6.0,11.0,7.0,8.0,8.0,14.0,8.0,5.0,7.0,13.0,11.0,8.0,9.0,5.0,11.0,9.0,9.0,14.0,3.0,8.0,9.0,12.0,10.0,4.0,6.0,8.0,7.0,9.0,7.0,6.0,6.0,4.0,3.0,5.0,4.0,10.0,4.0,3.0,5.0,4.0,2.0,3.0,2.0,4.0,2.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,111,417,112,0,36,36,39,59,53,33,21,36,38,42,46,46,43,37,24,26,15,5,5,0,0,0,633,5,2,0,0,633,5,2,0,0,184,4,17,81,35,3,205,111,0,405,230,5,0,0,2,1,0,0,0,1,0,0,0,636,0,2,5,32,6,0,0,65,530,0,27,80,6,1,0,526,0,3.0199203187251,0.0,4.011173184357542,0.0,5.20625,2,2,22,2,0,0,25,182,0,31,37,28,34,42,20,15,9,12,5,2,0,0,0,0,0,208,27,132,103,141,94,14,221,82,153,5,230,156,79,4,231,138,97,120,115,16,104,6,229,17,218,17,218,169,66,137,98,2,233,61,131,43,0,0,182,53,0,0,1,1,0,0,0,1,0,0,0,232,0,1.5063829787234042,1.2170212765957449,1.0,1.0,1.0,55.56170212765957 +PA070206,60206,Herrera,Las Minas,Quebrada del Rosario,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,161,4,260,2,1,0,0,3,0,244,0,0,1,3,0,16,0,2,0,0,202,53,11,0,0,201,56,0,0,0,9,266,0,70,11,1,20,15,0,0,0,264,2,0,0,165,26,2,6,1,66,0,260,0,2,0,0,4,0,14,222,0,30,0,0,1,236,21,0,0,7,0,0,0,0,1,0,0,383,6.503875968992248,23.093023255813957,6.895348837209302,23.65116279069768,1.0,3.1390977443609023,1.6203007518796992,266,132,197,39,25,7,7,3,0,5,0,0,1,0,24,20,18,0,4,27,0,330,311,0,17,624,0,109,532,0,509,132,0,133,508,0,126,7,396,112,0,112,3,4,0,15,35,43,43,43,174,0,0,0,12,28,37,9,8,60,4,1,2,3,1,3,0,1,0,0,0,0,0,0,0,0,230,17,344,0,0,9,8,4,93,179,61,7,36,36,10,6,5,0,152,0,0,376,306,28,33,6,174,1,0,3,0,28,94,10,127,0,0,0,516,70,0,1,0,4,0,0,0,0,0,2,2,2,3,13,150,21,5,49,452,111,37,28,12,15,15,5,5,2,0,0,0,0,0,0,12.0,12.0,9.0,8.0,10.0,6.0,7.0,7.0,7.0,13.0,20.0,9.0,10.0,9.0,10.0,12.0,8.0,6.0,12.0,5.0,12.0,8.0,9.0,10.0,11.0,6.0,5.0,6.0,6.0,10.0,4.0,6.0,7.0,8.0,9.0,8.0,10.0,15.0,7.0,14.0,5.0,9.0,8.0,7.0,4.0,9.0,10.0,5.0,10.0,7.0,5.0,8.0,6.0,5.0,9.0,9.0,7.0,13.0,8.0,4.0,13.0,9.0,10.0,11.0,5.0,9.0,9.0,4.0,7.0,3.0,7.0,4.0,8.0,4.0,3.0,7.0,3.0,6.0,1.0,9.0,5.0,3.0,5.0,4.0,2.0,3.0,4.0,1.0,2.0,2.0,0.0,2.0,2.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,149,410,123,0,51,40,58,43,50,33,34,54,33,41,33,41,48,32,26,26,19,12,5,3,0,0,681,0,0,1,0,681,0,0,1,0,176,6,23,120,30,0,178,149,0,451,231,0,0,0,1,0,0,0,0,0,0,0,3,678,0,2,77,115,11,0,0,177,300,0,24,122,5,1,0,530,0,2.9731800766283527,0.0,3.973404255319149,0.0,4.983870967741935,1,31,59,1,0,0,67,107,0,49,57,31,54,24,13,16,12,6,4,0,0,0,0,0,0,245,21,197,69,212,54,14,252,118,148,3,263,194,72,0,266,147,119,182,84,70,112,3,263,53,213,13,253,171,95,195,71,4,262,81,149,35,1,0,207,59,0,0,0,0,0,0,0,0,0,0,0,266,0,1.413533834586466,1.150375939849624,1.0,1.0,1.0,56.57142857142857 +,60207,Herrera,Las Minas,Quebrada El Ciprián,355,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,224,15,235,18,8,0,0,4,3,109,0,1,64,5,0,88,0,1,1,0,212,40,15,0,0,141,122,0,0,0,5,268,0,44,7,0,24,14,0,0,0,266,2,0,0,118,66,0,0,4,80,0,252,0,0,0,0,16,0,7,195,1,65,0,0,0,137,60,0,1,57,0,4,0,0,8,1,0,357,5.309644670050761,18.781725888324875,5.6395939086294415,19.898477157360407,1.0149253731343284,2.970149253731343,1.835820895522388,272,170,242,20,23,7,7,2,4,2,0,0,2,0,15,12,8,3,8,7,10,358,352,0,20,690,0,154,556,0,587,123,0,148,562,0,148,0,458,104,0,106,11,6,4,18,31,37,33,49,168,0,0,0,22,34,59,19,20,76,0,1,7,2,0,1,2,1,1,0,2,0,0,0,0,0,280,10,369,0,0,4,4,5,102,202,40,20,35,31,10,3,3,0,205,0,0,396,355,27,48,3,176,3,0,30,0,51,86,13,140,1,0,0,566,87,0,1,0,3,0,2,0,0,0,0,4,2,5,22,190,10,3,54,552,95,28,20,15,6,15,11,4,2,2,0,0,0,0,1,13.0,13.0,5.0,10.0,10.0,5.0,11.0,9.0,12.0,4.0,8.0,10.0,12.0,16.0,9.0,18.0,10.0,19.0,15.0,16.0,14.0,11.0,11.0,17.0,15.0,8.0,8.0,7.0,9.0,5.0,6.0,10.0,6.0,8.0,6.0,14.0,9.0,9.0,14.0,6.0,9.0,7.0,8.0,8.0,11.0,8.0,8.0,2.0,6.0,7.0,11.0,14.0,9.0,5.0,6.0,11.0,15.0,4.0,10.0,6.0,10.0,8.0,6.0,8.0,8.0,5.0,12.0,12.0,6.0,7.0,9.0,3.0,9.0,2.0,6.0,7.0,4.0,6.0,3.0,3.0,6.0,3.0,7.0,0.0,5.0,6.0,1.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,147,476,128,0,51,41,55,78,68,37,36,52,43,31,45,46,40,42,29,23,21,11,2,0,0,0,750,1,0,0,0,750,1,0,0,0,231,4,17,138,38,0,176,147,0,478,272,1,0,0,6,0,0,0,0,2,0,0,11,732,0,1,8,326,7,1,0,89,319,0,28,97,5,0,0,621,0,3.019933554817276,0.0,4.004524886877828,0.0,5.479360852197071,0,4,119,1,1,0,34,113,0,75,42,40,40,31,9,16,3,9,3,2,1,1,0,0,0,238,34,83,189,122,150,20,252,47,225,0,272,108,164,2,270,139,133,87,185,22,65,2,270,14,258,2,270,200,72,214,58,0,272,69,162,39,2,0,225,47,0,0,0,0,0,0,0,0,0,0,2,270,0,1.4558823529411764,1.3051470588235294,0.0,1.0,1.0,53.4264705882353 +PA070308,60301,Herrera,Los Pozos,Los Pozos,1016,4,17,3,0,0,0,0,0,0,0,1,0,0,0,0,559,227,16,774,12,0,0,0,16,0,793,0,0,1,4,0,4,0,0,473,38,228,40,21,0,2,758,27,1,0,0,16,802,0,112,13,21,79,13,0,2,45,726,28,0,1,756,8,13,23,0,2,0,783,5,10,1,0,3,0,280,478,0,43,1,0,437,334,17,1,0,3,0,0,0,0,6,4,0,1041,5.435279187817259,13.08502538071066,6.267766497461929,18.034263959390863,1.0087281795511225,3.598503740648379,2.335411471321696,810,434,600,82,147,22,24,16,4,29,4,3,42,1,88,58,24,17,20,4,44,1712,414,0,449,1677,0,1459,667,0,1889,237,0,541,1585,0,489,52,1434,151,0,160,21,30,6,43,62,104,61,67,527,0,0,1,62,92,158,61,67,338,2,11,18,29,41,73,56,14,5,2,15,0,0,0,0,0,824,79,1038,0,1,36,16,141,324,401,113,59,452,49,99,36,65,0,185,0,0,1129,1089,209,374,47,225,22,0,7,2,7,198,27,402,4,0,0,1336,436,1,11,23,115,4,15,0,0,2,27,50,47,38,191,34,127,67,320,900,284,136,137,192,145,186,83,90,28,17,6,7,0,3,4,22.0,21.0,25.0,24.0,34.0,27.0,27.0,35.0,28.0,34.0,37.0,28.0,26.0,30.0,29.0,24.0,29.0,30.0,22.0,26.0,30.0,40.0,26.0,37.0,33.0,22.0,33.0,23.0,25.0,27.0,37.0,26.0,26.0,32.0,22.0,23.0,25.0,28.0,27.0,19.0,27.0,38.0,27.0,17.0,22.0,19.0,28.0,14.0,21.0,23.0,36.0,35.0,32.0,25.0,30.0,44.0,30.0,29.0,31.0,28.0,29.0,22.0,24.0,26.0,34.0,22.0,31.0,16.0,27.0,14.0,21.0,20.0,20.0,25.0,13.0,16.0,20.0,25.0,13.0,19.0,11.0,15.0,15.0,9.0,9.0,8.0,7.0,4.0,7.0,3.0,2.0,5.0,3.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,427,1383,408,0,126,151,150,131,166,130,143,122,131,105,158,162,135,110,99,93,59,29,15,2,1,0,2198,11,8,1,0,2199,12,6,1,0,508,27,59,495,122,14,566,427,0,1212,999,7,0,6,29,3,0,0,0,0,1,2,4,2173,0,76,33,160,18,34,0,334,1563,0,347,636,134,17,0,1084,0,2.3528183716075155,0.0,3.082975679542203,0.0,7.422903516681695,30,11,62,5,10,0,139,553,0,25,65,34,85,110,98,102,62,91,59,32,17,22,3,3,1,794,16,733,77,729,81,132,678,659,151,103,707,532,278,80,730,724,86,684,126,303,381,182,628,575,235,262,548,396,414,432,378,6,804,201,413,163,33,0,580,230,0,2,7,1,0,0,0,0,1,0,2,797,0,1.3938271604938273,1.3444444444444446,1.0,1.1020408163265305,1.1020408163265305,56.54074074074074 +PA070301,60302,Herrera,Los Pozos,El Capurí,207,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,110,56,4,162,4,0,0,0,4,0,161,0,0,0,0,1,8,0,0,97,7,53,5,4,0,4,154,13,0,0,0,3,170,0,19,12,0,6,3,0,0,0,150,20,0,0,163,3,0,2,0,2,0,163,0,5,0,1,1,0,18,136,0,16,0,0,0,149,13,2,0,3,0,1,0,0,0,2,0,211,6.549382716049383,22.83333333333333,6.691358024691358,23.8641975308642,1.011764705882353,3.570588235294118,2.429411764705882,173,100,153,14,10,1,5,3,1,5,1,2,3,0,8,4,7,1,1,2,5,323,118,0,70,371,0,238,203,0,379,62,0,114,327,0,106,8,290,37,0,40,6,5,0,14,20,13,15,15,130,0,0,1,11,17,28,12,13,49,2,1,6,6,8,13,7,6,0,0,3,0,0,0,0,0,159,10,233,0,3,3,1,10,69,126,8,20,53,12,8,5,34,0,56,0,1,260,211,33,88,5,35,1,0,6,1,4,48,3,142,2,0,0,300,72,1,1,2,23,0,3,0,0,1,3,8,7,3,26,7,16,9,89,247,59,27,23,41,25,25,6,8,5,3,0,0,0,0,2,10.0,5.0,5.0,10.0,6.0,11.0,2.0,8.0,5.0,7.0,5.0,12.0,1.0,6.0,5.0,6.0,7.0,8.0,6.0,6.0,10.0,10.0,6.0,7.0,7.0,6.0,9.0,7.0,3.0,6.0,5.0,9.0,6.0,3.0,3.0,6.0,5.0,6.0,8.0,6.0,1.0,7.0,8.0,11.0,4.0,8.0,7.0,12.0,3.0,12.0,5.0,4.0,4.0,6.0,4.0,1.0,6.0,2.0,3.0,3.0,8.0,4.0,10.0,1.0,7.0,3.0,5.0,2.0,7.0,0.0,2.0,4.0,7.0,4.0,7.0,5.0,4.0,4.0,1.0,3.0,0.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,98,302,71,0,36,33,29,33,40,31,26,31,31,42,23,15,30,17,24,17,6,1,6,0,0,0,468,1,0,2,0,468,1,0,2,0,152,6,6,67,22,1,119,98,0,279,191,1,0,0,19,2,3,0,0,0,0,0,12,435,0,0,6,91,2,2,0,263,107,0,45,102,9,2,0,313,0,2.593220338983051,0.0,3.2666666666666666,0.0,6.687898089171974,0,1,35,0,2,0,95,40,0,11,27,16,17,34,16,23,5,9,7,2,3,2,0,0,0,171,2,148,25,148,25,18,155,119,54,7,166,120,53,5,168,141,32,135,38,51,84,31,142,81,92,37,136,114,59,105,68,2,171,47,100,25,1,0,140,33,0,0,3,1,2,0,0,0,0,0,3,164,0,1.5028901734104043,1.2196531791907514,1.0,1.0,1.0,53.861271676300575 +PA070302,60303,Herrera,Los Pozos,El Calabacito,259,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,83,2,205,1,0,0,0,2,0,199,0,0,0,0,0,3,0,6,98,1,98,8,3,0,0,189,16,0,0,0,3,208,0,34,8,0,8,5,0,3,0,195,10,0,0,197,4,4,3,0,0,0,194,7,7,0,0,0,0,26,172,0,10,0,0,0,183,20,0,1,2,0,0,0,0,0,2,0,263,6.783251231527093,16.61576354679803,6.921182266009852,22.039408866995075,1.0096153846153846,3.802884615384616,2.1586538461538463,210,128,143,10,41,9,2,2,5,11,2,1,4,0,16,3,3,3,1,2,7,392,155,0,60,487,0,258,289,0,466,81,0,99,448,0,86,13,411,37,0,38,3,9,1,20,22,31,28,18,172,0,0,0,10,13,45,14,7,64,2,4,3,7,8,15,7,3,0,1,2,0,0,0,0,0,206,3,311,0,0,2,1,16,66,151,21,57,73,11,21,4,14,0,85,0,0,301,267,24,98,4,78,4,0,0,0,0,90,4,104,2,0,0,404,85,0,4,2,23,0,2,0,0,0,5,2,9,7,41,32,35,6,72,280,104,31,33,26,34,26,12,13,4,2,0,1,0,0,2,5.0,7.0,6.0,3.0,3.0,4.0,11.0,2.0,4.0,3.0,8.0,6.0,9.0,3.0,7.0,10.0,9.0,3.0,5.0,8.0,4.0,5.0,1.0,10.0,7.0,6.0,6.0,6.0,8.0,6.0,7.0,2.0,11.0,3.0,8.0,8.0,5.0,3.0,6.0,7.0,5.0,10.0,6.0,5.0,5.0,2.0,5.0,7.0,7.0,15.0,6.0,12.0,10.0,5.0,8.0,11.0,9.0,7.0,13.0,6.0,15.0,8.0,12.0,7.0,7.0,7.0,9.0,7.0,7.0,12.0,6.0,7.0,6.0,6.0,8.0,4.0,6.0,3.0,2.0,3.0,3.0,7.0,5.0,4.0,2.0,0.0,3.0,2.0,2.0,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,81,357,130,0,24,24,33,35,27,32,31,29,31,36,41,46,49,42,33,18,21,7,6,3,0,0,568,0,0,0,0,568,0,0,0,0,148,5,8,143,38,2,143,81,0,347,221,0,0,0,13,0,0,0,0,1,0,1,5,548,0,4,0,87,1,6,0,204,266,0,53,187,15,1,1,311,0,2.348547717842324,0.0,2.9239130434782608,0.0,6.630281690140845,0,0,35,1,2,0,82,90,0,21,33,16,35,23,20,19,7,19,8,4,3,1,0,1,0,205,5,189,21,188,22,36,174,139,71,9,201,163,47,5,205,175,35,173,37,48,125,34,176,83,127,51,159,138,72,160,50,0,210,48,109,49,4,0,180,30,0,0,1,0,0,0,0,1,0,0,1,207,0,1.4333333333333331,1.2714285714285714,1.0,1.0,1.0,60.5 +PA070303,60304,Herrera,Los Pozos,El Cedro,238,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,73,83,6,153,3,0,0,0,6,0,155,0,0,3,0,0,4,0,0,53,0,103,4,1,0,1,144,15,0,0,0,3,162,0,45,8,0,17,7,0,0,1,157,4,0,0,150,7,0,2,0,3,0,161,0,0,0,0,1,0,8,149,0,5,0,0,0,133,27,0,0,0,0,0,0,0,1,1,0,239,6.78125,23.4,6.9875,23.925,1.0,3.5123456790123457,2.4814814814814814,162,89,99,12,28,8,4,5,0,8,0,1,6,1,4,5,2,0,6,0,7,280,122,0,56,346,0,137,265,0,328,74,0,68,334,0,61,7,282,52,0,52,5,6,0,11,11,24,14,24,105,0,0,0,4,17,29,12,13,42,1,1,3,1,4,7,11,0,2,1,2,0,0,0,0,0,171,8,192,0,0,3,2,5,39,109,26,13,49,20,13,9,10,0,77,0,0,232,191,27,71,9,36,0,0,35,0,5,62,4,114,9,0,0,296,52,0,1,2,17,1,2,0,0,0,8,6,5,2,20,37,15,11,75,229,81,16,15,23,8,17,11,8,3,2,0,1,0,0,9,7.0,5.0,5.0,4.0,7.0,7.0,5.0,5.0,3.0,4.0,5.0,7.0,3.0,0.0,5.0,3.0,5.0,4.0,2.0,5.0,9.0,5.0,3.0,6.0,4.0,7.0,4.0,10.0,1.0,5.0,7.0,6.0,5.0,5.0,4.0,2.0,5.0,3.0,4.0,4.0,5.0,2.0,4.0,4.0,7.0,4.0,2.0,6.0,4.0,12.0,4.0,7.0,5.0,6.0,8.0,6.0,4.0,6.0,8.0,8.0,4.0,6.0,2.0,6.0,5.0,8.0,5.0,4.0,4.0,1.0,2.0,5.0,6.0,6.0,7.0,2.0,3.0,6.0,4.0,3.0,2.0,1.0,4.0,2.0,1.0,2.0,5.0,3.0,2.0,3.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,72,253,98,0,28,24,20,19,27,27,27,18,22,28,30,32,23,22,26,18,10,15,3,4,0,0,423,0,0,0,0,423,0,0,0,0,140,1,41,70,25,1,73,72,0,211,212,0,0,0,1,0,0,0,0,0,0,0,3,419,0,1,0,13,1,0,0,41,367,0,32,104,6,0,0,281,0,2.9696969696969697,0.0,3.462121212121212,0.0,6.238770685579196,0,0,5,0,0,0,14,143,0,27,28,16,19,22,6,7,7,16,6,1,1,2,0,0,4,157,5,138,24,141,21,27,135,100,62,1,161,28,134,2,160,131,31,117,45,20,97,10,152,14,148,29,133,98,64,83,79,1,161,42,80,34,6,0,126,36,0,0,0,0,0,0,0,0,0,0,1,161,0,1.432098765432099,1.1790123456790125,0.0,1.0,1.0,59.18518518518518 +PA070304,60305,Herrera,Los Pozos,La Arena,219,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,73,6,167,2,0,0,0,6,0,165,0,0,0,0,1,6,0,3,77,11,78,2,6,1,0,158,11,1,0,0,5,175,0,24,5,0,11,11,0,1,2,167,5,0,0,167,2,0,2,0,4,0,159,15,1,0,0,0,0,24,146,0,4,1,0,0,143,25,0,1,0,0,3,0,0,3,0,0,226,6.898809523809524,18.821428571428573,6.922619047619048,20.625,1.0057142857142858,3.8285714285714287,2.251428571428572,176,106,155,8,40,7,12,5,1,10,0,0,1,0,13,9,7,2,2,0,11,363,138,0,65,436,0,215,286,0,427,74,0,106,395,0,91,15,336,59,0,61,3,6,1,8,13,27,10,23,161,0,0,0,6,12,26,8,14,60,2,5,3,7,16,12,12,2,1,1,1,0,0,0,0,0,208,7,254,0,0,5,1,10,69,120,30,25,82,11,7,10,19,0,83,0,0,278,243,35,120,11,46,0,0,0,0,1,78,7,101,1,0,0,347,99,0,5,2,14,1,1,0,0,0,7,11,8,9,20,12,25,10,113,210,81,45,32,61,27,30,5,24,2,1,1,1,0,0,1,9.0,3.0,5.0,3.0,5.0,2.0,10.0,5.0,7.0,3.0,5.0,5.0,7.0,4.0,5.0,6.0,8.0,8.0,2.0,9.0,5.0,6.0,5.0,6.0,8.0,18.0,6.0,4.0,5.0,9.0,4.0,5.0,7.0,7.0,5.0,8.0,2.0,3.0,7.0,4.0,7.0,9.0,7.0,4.0,8.0,4.0,6.0,7.0,11.0,9.0,10.0,13.0,9.0,5.0,9.0,6.0,5.0,4.0,8.0,9.0,5.0,8.0,8.0,10.0,4.0,5.0,7.0,4.0,8.0,1.0,4.0,5.0,10.0,2.0,3.0,6.0,4.0,5.0,3.0,6.0,3.0,3.0,5.0,5.0,1.0,3.0,1.0,0.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,78,342,101,0,25,27,26,33,30,42,28,24,35,37,46,32,35,25,24,24,17,6,3,1,1,0,519,1,0,1,0,519,1,0,1,0,161,2,22,90,23,1,144,78,0,293,227,1,0,0,1,0,0,0,0,0,0,0,3,517,0,2,4,35,0,1,0,98,381,0,64,140,7,3,0,307,0,2.2418604651162792,0.0,2.892405063291139,0.0,6.765834932821497,1,0,21,0,1,0,42,111,0,7,17,8,16,28,26,25,10,22,7,2,6,1,0,1,0,172,4,157,19,156,20,36,140,134,42,11,165,128,48,7,169,144,32,150,26,54,96,34,142,41,135,47,129,120,56,132,44,1,175,33,94,48,1,0,145,31,0,0,1,0,0,0,0,0,0,0,2,173,0,1.5795454545454546,1.380681818181818,0.0,1.0,1.0,58.82386363636363 +,60306,Herrera,Los Pozos,La Pitaloza,289,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,72,112,7,178,6,4,0,0,3,0,120,0,1,52,2,0,13,0,3,0,0,183,3,3,0,2,150,38,0,0,0,3,191,0,47,14,0,41,3,0,1,4,175,11,0,0,124,60,0,4,0,2,1,187,0,1,0,0,3,0,10,133,1,47,0,0,0,172,18,0,0,1,0,0,0,0,0,0,0,296,6.547368421052632,23.068421052631574,6.678947368421053,23.77894736842105,1.0052356020942408,3.5287958115183247,2.345549738219895,192,94,139,20,14,7,5,0,2,5,1,2,1,0,9,2,5,0,2,2,4,325,137,0,33,429,0,197,265,0,383,79,0,93,369,0,88,5,309,60,0,60,1,2,0,8,30,29,23,17,145,0,0,0,9,13,29,8,15,52,0,3,3,3,2,3,5,1,1,0,0,0,0,0,0,0,197,14,218,0,0,0,12,5,55,94,8,56,41,7,16,6,15,0,126,0,0,274,208,24,123,6,55,0,0,3,0,11,66,3,84,11,0,0,356,61,0,3,1,7,1,0,0,0,0,4,3,3,6,17,26,17,5,130,238,89,30,32,38,15,19,3,4,1,1,1,0,0,0,11,3.0,8.0,5.0,4.0,8.0,1.0,4.0,6.0,7.0,7.0,7.0,7.0,8.0,5.0,6.0,6.0,5.0,4.0,4.0,8.0,5.0,5.0,10.0,6.0,9.0,4.0,6.0,4.0,10.0,7.0,8.0,7.0,8.0,2.0,5.0,3.0,5.0,4.0,5.0,5.0,4.0,7.0,10.0,7.0,2.0,6.0,8.0,4.0,8.0,6.0,4.0,3.0,4.0,6.0,3.0,6.0,7.0,5.0,8.0,5.0,5.0,6.0,5.0,7.0,10.0,5.0,11.0,8.0,8.0,8.0,4.0,7.0,5.0,2.0,5.0,6.0,5.0,4.0,1.0,1.0,4.0,1.0,6.0,3.0,1.0,4.0,1.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,86,291,105,0,28,25,33,27,35,31,30,22,30,32,20,31,33,40,23,17,15,6,4,0,0,0,482,0,0,0,0,482,0,0,0,0,157,7,58,52,23,2,97,86,0,231,251,0,0,0,0,0,0,0,0,0,0,0,4,478,0,0,0,129,1,0,0,177,175,0,30,91,5,0,0,356,0,2.890710382513661,0.0,3.633093525179856,0.0,5.854771784232365,0,0,54,1,0,0,71,66,0,27,29,16,30,30,17,15,9,10,1,1,1,2,0,0,4,180,12,106,86,141,51,26,166,70,122,3,189,33,159,2,190,154,38,115,77,8,107,12,180,81,111,20,172,143,49,137,55,0,192,66,91,34,1,0,149,43,0,0,0,0,0,0,0,0,0,0,2,190,0,1.4270833333333333,1.0833333333333333,1.0,1.0769230769230769,1.0769230769230769,56.895833333333336 +PA070306,60307,Herrera,Los Pozos,Los Cerritos,460,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,96,3,353,5,0,0,0,3,0,355,0,0,1,0,2,1,0,2,229,2,94,16,19,0,1,331,22,0,0,0,8,361,0,46,23,1,23,13,0,1,12,321,27,0,0,338,2,3,3,0,15,0,330,24,7,0,0,0,0,80,272,0,9,0,0,0,319,37,0,0,1,0,1,0,2,1,0,0,467,5.193820224719101,13.297752808988765,6.957865168539326,23.691011235955056,1.0,3.656509695290859,2.4293628808864267,361,207,254,20,59,9,3,1,1,19,1,1,4,0,24,8,5,11,8,2,9,771,126,0,163,734,0,409,488,0,809,88,0,188,709,0,170,18,667,42,0,45,4,11,5,20,37,49,33,33,263,0,0,0,20,33,53,17,22,128,2,9,9,16,19,26,22,12,0,1,8,0,0,0,0,0,372,20,446,0,1,4,8,34,119,226,36,31,155,27,47,12,18,2,128,0,2,483,457,71,160,14,136,7,0,1,2,2,107,8,157,0,0,0,586,177,0,9,8,49,1,8,0,0,2,10,27,18,16,59,65,46,26,123,387,145,62,60,80,66,58,32,28,10,8,2,1,0,1,0,9.0,10.0,8.0,16.0,8.0,4.0,11.0,13.0,15.0,8.0,13.0,9.0,13.0,8.0,12.0,9.0,12.0,10.0,9.0,13.0,14.0,8.0,9.0,12.0,12.0,9.0,12.0,21.0,17.0,14.0,11.0,10.0,8.0,14.0,11.0,8.0,10.0,6.0,21.0,13.0,6.0,12.0,11.0,12.0,11.0,10.0,11.0,6.0,12.0,14.0,9.0,18.0,19.0,12.0,17.0,20.0,14.0,10.0,15.0,16.0,17.0,12.0,16.0,12.0,10.0,10.0,12.0,8.0,9.0,9.0,8.0,10.0,12.0,10.0,7.0,9.0,5.0,3.0,10.0,8.0,4.0,6.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0,5.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,615,168,0,51,51,55,53,55,73,54,58,52,53,75,75,67,48,47,35,17,10,9,2,0,0,935,5,0,0,0,935,5,0,0,0,235,13,21,240,46,5,223,157,0,555,380,5,0,0,7,1,0,0,0,2,0,0,7,923,0,6,9,117,6,4,6,173,619,0,141,295,37,3,0,464,0,2.0951219512195123,0.0,2.729372937293729,0.0,7.348936170212766,1,5,50,4,1,3,72,225,0,19,23,29,50,51,48,41,22,33,18,18,2,3,3,1,0,353,8,337,24,342,19,75,286,310,51,59,302,144,217,11,350,332,29,318,43,104,214,79,282,164,197,121,240,190,171,221,140,6,355,93,197,68,3,0,276,85,0,0,2,1,0,0,0,0,0,0,2,356,0,1.3379501385041552,1.265927977839335,0.0,1.0,1.0,57.15512465373961 +PA070307,60308,Herrera,Los Pozos,Los Cerros de Paja,417,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,179,5,278,8,0,0,0,4,1,268,0,0,2,2,0,17,0,2,40,1,245,5,0,0,0,243,44,0,0,0,4,291,0,78,8,1,36,9,0,0,3,287,1,0,0,232,40,6,11,0,2,0,285,0,0,0,0,6,0,18,222,0,50,1,0,0,217,52,5,0,3,0,10,0,0,2,2,0,423,6.41635687732342,22.21189591078067,6.836431226765799,23.799256505576206,1.0,3.2714776632302405,2.240549828178694,291,158,222,26,33,8,10,2,2,6,3,3,7,0,11,5,4,0,11,0,15,429,303,0,21,711,0,94,638,0,597,135,0,151,581,0,151,0,474,107,0,108,8,7,1,20,26,29,33,30,222,0,0,0,24,42,53,13,21,60,1,2,3,4,6,5,7,5,1,0,1,0,0,0,0,0,261,21,380,0,0,15,2,9,92,205,43,31,69,7,24,13,13,0,152,0,0,420,351,43,175,15,34,2,0,9,0,28,95,10,172,12,0,0,567,76,0,1,1,15,1,1,0,0,0,3,9,3,5,29,4,28,12,189,490,111,21,27,26,31,29,16,3,4,0,0,0,0,1,12,8.0,9.0,10.0,12.0,12.0,13.0,10.0,13.0,8.0,14.0,6.0,12.0,5.0,18.0,12.0,12.0,11.0,10.0,4.0,9.0,11.0,7.0,10.0,8.0,9.0,6.0,11.0,10.0,15.0,7.0,7.0,10.0,8.0,14.0,8.0,8.0,4.0,10.0,15.0,11.0,11.0,5.0,12.0,6.0,10.0,13.0,12.0,6.0,6.0,16.0,3.0,15.0,16.0,10.0,5.0,12.0,12.0,8.0,10.0,11.0,10.0,2.0,6.0,11.0,8.0,8.0,9.0,8.0,6.0,5.0,2.0,5.0,7.0,6.0,7.0,5.0,6.0,6.0,10.0,0.0,10.0,4.0,5.0,3.0,3.0,0.0,4.0,4.0,3.0,2.0,1.0,0.0,3.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,162,471,138,0,51,58,53,46,45,49,47,48,44,53,49,53,37,36,27,27,25,13,7,3,0,0,766,1,1,3,0,766,1,1,3,0,258,13,90,91,29,0,128,162,0,496,274,1,0,0,0,0,0,0,0,1,0,0,8,762,0,1,2,98,5,0,0,137,528,0,48,124,8,0,1,590,0,2.95221843003413,0.0,3.611353711790393,0.0,5.692607003891051,1,1,44,3,0,0,54,188,0,76,36,27,33,30,27,26,17,8,6,0,1,1,0,1,2,271,20,231,60,238,53,21,270,168,123,3,288,73,218,0,291,192,99,194,97,104,90,5,286,6,285,42,249,188,103,204,87,2,289,80,147,58,6,0,231,60,0,0,0,0,0,0,0,0,0,0,0,291,0,1.443298969072165,1.2061855670103092,0.0,1.0,1.0,55.402061855670105 +,60309,Herrera,Los Pozos,Las Llanas,294,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,156,17,174,12,0,0,0,17,0,137,0,0,27,4,1,34,0,0,0,0,174,19,10,0,0,146,55,0,0,0,2,203,0,39,2,0,45,6,0,1,1,199,2,0,0,140,50,1,4,1,6,1,190,1,0,0,1,11,0,3,145,0,55,0,0,0,148,36,0,0,8,0,5,0,1,3,2,0,295,6.266304347826087,22.05978260869565,6.701086956521739,23.16304347826087,1.0049261083743843,3.1724137931034484,2.0935960591133007,204,106,160,22,23,2,2,1,2,4,0,0,8,0,3,3,2,2,1,2,8,267,242,0,15,494,0,131,378,0,408,101,0,98,411,0,96,2,320,91,0,91,0,6,1,5,22,28,22,23,176,0,0,0,11,11,30,6,13,52,0,0,2,2,1,3,3,1,0,0,0,0,0,0,0,0,213,7,245,0,0,1,4,1,60,129,9,46,26,9,7,9,6,0,160,2,1,305,229,14,164,9,20,0,0,12,1,28,82,4,94,0,0,0,401,57,0,1,2,4,0,0,0,0,1,3,1,1,6,18,14,7,3,166,262,141,48,38,16,11,13,3,1,0,1,0,0,0,0,0,6.0,2.0,9.0,8.0,3.0,3.0,12.0,5.0,15.0,6.0,8.0,13.0,4.0,8.0,4.0,9.0,2.0,8.0,4.0,6.0,3.0,8.0,5.0,3.0,5.0,10.0,7.0,10.0,8.0,12.0,3.0,6.0,7.0,3.0,3.0,7.0,4.0,6.0,7.0,9.0,6.0,7.0,11.0,10.0,4.0,10.0,5.0,6.0,5.0,8.0,6.0,10.0,7.0,7.0,4.0,8.0,10.0,6.0,5.0,8.0,6.0,7.0,5.0,8.0,2.0,6.0,8.0,3.0,9.0,3.0,3.0,3.0,6.0,6.0,4.0,4.0,2.0,4.0,4.0,5.0,3.0,5.0,0.0,2.0,4.0,3.0,6.0,1.0,2.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,106,326,102,0,28,41,37,29,24,47,22,33,38,34,34,37,28,29,22,19,14,12,4,1,1,0,533,1,0,0,0,533,1,0,0,0,134,15,62,90,30,0,97,106,0,310,224,0,0,0,0,1,0,0,0,0,0,0,1,532,0,0,3,140,0,0,0,110,281,0,13,107,1,0,0,413,0,2.694300518134715,0.0,3.5703703703703704,0.0,5.318352059925093,0,1,52,0,0,0,42,109,0,16,37,23,51,32,19,11,8,4,1,2,0,0,0,0,0,187,17,115,89,131,73,13,191,65,139,2,202,30,174,1,203,121,83,119,85,17,102,1,203,20,184,12,192,141,63,136,68,0,204,56,108,34,6,0,169,35,0,0,0,0,0,0,0,0,0,0,0,204,0,1.4950980392156863,1.1225490196078431,0.0,1.0,1.0,57.18627450980392 +PA070405,60401,Herrera,Ocú,Ocú,3264,41,19,10,0,0,0,0,11,0,0,5,2,0,0,60,1954,422,21,2371,65,3,0,0,14,4,2407,0,3,11,3,4,27,0,2,1895,122,375,18,37,0,10,2388,44,3,0,0,22,2457,0,474,153,94,129,27,0,169,224,1963,97,3,1,2361,16,1,59,1,18,1,2425,8,19,2,2,0,1,1098,1284,0,75,0,0,1344,951,113,3,1,14,0,1,0,22,5,3,1725,1627,6.700996677740863,18.55274086378737,6.932724252491695,22.27574750830565,1.0195360195360197,3.807081807081807,2.473748473748474,2512,1430,2562,200,531,74,70,58,31,129,17,23,109,10,137,63,32,41,62,40,43,6458,954,0,2508,4904,0,5197,2215,0,6805,607,0,2194,5218,0,1837,357,4820,398,0,405,86,95,8,172,182,279,209,206,1093,0,0,9,178,313,526,176,300,1414,25,149,112,162,183,376,422,180,37,6,101,0,0,0,8,0,3304,120,3355,0,9,32,23,384,1336,1191,194,250,1846,254,329,121,297,29,525,0,14,3898,3858,1038,1254,135,776,165,0,33,14,41,533,56,1934,42,0,0,3594,1965,11,146,71,851,32,101,8,0,14,138,448,294,158,610,243,401,254,864,3315,797,355,421,621,509,556,366,388,216,88,30,30,10,12,42,89.0,83.0,78.0,94.0,102.0,101.0,91.0,126.0,92.0,121.0,99.0,97.0,106.0,99.0,85.0,129.0,126.0,114.0,117.0,136.0,141.0,123.0,133.0,132.0,110.0,140.0,141.0,123.0,135.0,114.0,99.0,98.0,95.0,87.0,92.0,111.0,90.0,113.0,102.0,92.0,111.0,71.0,69.0,77.0,111.0,87.0,93.0,98.0,96.0,87.0,105.0,98.0,117.0,99.0,100.0,99.0,98.0,96.0,85.0,90.0,89.0,77.0,66.0,77.0,77.0,65.0,64.0,70.0,61.0,51.0,65.0,58.0,46.0,52.0,56.0,49.0,46.0,41.0,44.0,47.0,29.0,34.0,36.0,34.0,30.0,21.0,21.0,21.0,15.0,17.0,12.0,9.0,7.0,8.0,4.0,1.0,4.0,2.0,2.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1463,5166,1127,0,446,531,486,622,639,653,471,508,439,461,519,468,386,311,277,227,163,95,40,10,4,0,7660,37,54,5,0,7661,47,43,5,0,1983,89,82,1388,321,36,2394,1463,0,3383,4320,53,0,9,159,44,0,3,0,5,1,0,67,7468,0,44,85,336,22,6,8,748,6507,0,1523,2141,392,32,15,3653,0,2.1625074272133094,0.0,2.996165317426502,0.0,8.859334708612687,12,22,136,6,3,5,288,2040,0,96,152,79,176,310,275,289,199,328,211,135,90,88,31,40,6,2476,36,2260,252,2265,247,467,2045,2270,242,685,1827,1453,1059,327,2185,2366,146,2193,319,1289,904,945,1567,1660,852,1084,1428,691,1821,781,1731,22,2490,456,1403,601,52,11,1688,824,0,0,36,4,0,2,0,1,0,0,15,2454,0,1.5449861276258423,1.5291319857312724,1.375,1.0575539568345325,1.0575539568345325,54.70262738853504 +PA070401,60402,Herrera,Ocú,Cerro Largo,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,186,8,214,6,3,0,0,5,0,153,0,0,34,5,1,25,0,10,1,0,197,20,10,0,0,160,65,0,0,0,3,228,0,54,9,0,22,14,0,0,0,227,1,0,0,160,37,1,9,8,13,0,218,1,0,0,1,8,0,8,178,0,41,1,0,0,144,14,0,0,61,0,5,0,0,1,3,0,327,4.677215189873418,9.740506329113924,5.367088607594937,13.417721518987342,1.0087719298245614,3.017543859649123,1.9385964912280704,230,112,193,7,30,12,13,1,1,4,1,2,3,0,14,9,5,2,6,0,2,316,266,0,17,565,0,15,567,0,496,86,0,129,453,0,117,12,382,71,0,72,1,5,0,17,29,30,24,40,198,0,0,1,9,19,25,17,18,56,1,3,0,1,3,1,5,2,1,0,4,0,0,0,0,0,245,11,281,0,0,3,6,4,83,144,19,31,45,46,6,2,17,0,140,0,0,347,262,27,65,2,156,1,0,5,0,28,77,9,120,6,0,0,459,60,1,3,2,7,1,4,0,0,0,2,10,0,5,13,133,16,6,71,337,97,29,43,50,15,14,4,8,4,1,1,0,0,0,6,6.0,5.0,6.0,10.0,7.0,2.0,8.0,11.0,10.0,7.0,8.0,16.0,7.0,8.0,9.0,8.0,12.0,10.0,4.0,3.0,6.0,7.0,6.0,9.0,2.0,6.0,5.0,4.0,6.0,4.0,5.0,12.0,6.0,7.0,7.0,11.0,5.0,6.0,10.0,6.0,7.0,11.0,9.0,7.0,7.0,7.0,8.0,9.0,8.0,12.0,4.0,7.0,15.0,11.0,9.0,7.0,10.0,6.0,7.0,5.0,9.0,8.0,15.0,9.0,9.0,3.0,3.0,7.0,4.0,7.0,6.0,6.0,2.0,8.0,3.0,6.0,7.0,5.0,8.0,7.0,6.0,1.0,1.0,3.0,0.0,2.0,4.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,120,383,106,0,34,38,48,37,30,25,37,38,41,44,46,35,50,24,25,33,11,7,3,2,1,0,608,1,0,0,0,608,1,0,0,0,178,5,25,72,36,1,172,120,0,414,194,1,0,1,0,0,0,0,0,0,0,0,4,604,0,1,2,13,0,0,0,23,570,0,45,127,3,1,0,433,0,3.029787234042553,0.0,3.668539325842697,0.0,5.727422003284072,1,0,5,0,0,0,5,219,0,32,32,24,37,36,27,12,9,11,4,5,1,0,0,0,0,207,23,117,113,109,121,29,201,74,156,9,221,169,61,2,228,161,69,120,110,4,116,8,222,8,222,21,209,164,66,168,62,15,215,73,103,52,2,0,176,54,0,0,0,0,0,0,0,0,0,0,0,230,0,1.508695652173913,1.1391304347826088,0.0,1.0,1.0,57.11739130434783 +PA070404,60403,Herrera,Ocú,Los Llanos,1013,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,389,330,14,714,8,4,0,0,10,0,665,0,3,26,1,1,40,0,0,207,15,451,29,30,0,4,665,57,0,0,0,14,736,0,187,22,8,49,17,0,2,17,683,34,0,0,669,28,1,34,2,1,1,733,0,0,0,0,3,0,146,521,0,69,0,0,0,687,14,1,0,31,0,3,0,0,0,0,0,1019,6.661911554921541,18.774607703281028,6.680456490727532,21.96433666191156,1.0040760869565215,3.3206521739130435,2.1372282608695654,739,411,611,63,126,26,29,15,3,23,3,2,17,1,112,68,12,9,24,1,7,1431,549,0,321,1659,0,1029,951,0,1738,242,0,469,1511,0,410,59,1320,191,0,191,16,17,0,50,49,89,82,103,401,0,1,5,47,94,136,51,74,317,1,1,20,17,67,40,67,23,5,0,15,0,0,0,1,0,878,9,939,0,0,0,8,31,304,459,43,102,236,92,70,13,41,9,424,1,0,1114,955,178,295,17,361,0,0,35,0,25,234,21,463,9,0,0,1247,370,5,2,61,121,5,14,1,0,0,13,78,22,19,111,222,114,35,273,913,346,90,208,161,74,102,42,78,25,13,2,1,2,3,9,25.0,16.0,23.0,25.0,30.0,21.0,24.0,36.0,23.0,20.0,30.0,28.0,22.0,29.0,27.0,25.0,34.0,27.0,22.0,28.0,33.0,29.0,40.0,39.0,19.0,24.0,33.0,22.0,23.0,25.0,15.0,31.0,23.0,23.0,27.0,24.0,18.0,26.0,26.0,29.0,24.0,33.0,19.0,23.0,21.0,22.0,20.0,30.0,21.0,26.0,27.0,32.0,23.0,24.0,36.0,29.0,29.0,21.0,24.0,30.0,23.0,22.0,23.0,28.0,21.0,19.0,32.0,20.0,21.0,16.0,12.0,15.0,24.0,16.0,18.0,18.0,17.0,24.0,12.0,16.0,20.0,9.0,9.0,15.0,9.0,10.0,5.0,5.0,7.0,4.0,7.0,4.0,2.0,3.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,379,1296,394,0,119,124,136,136,160,127,119,123,120,119,142,133,117,108,85,87,62,31,17,4,0,0,2058,8,1,2,0,2058,8,1,2,0,586,13,2,332,86,5,666,379,0,1237,825,7,0,1,30,11,0,0,0,1,1,2,74,1949,0,12,9,71,14,11,4,230,1718,0,202,538,28,3,1,1297,0,2.682897862232779,0.0,3.539708265802269,0.0,7.390043499275012,3,6,22,4,6,3,90,605,0,34,82,40,107,138,89,73,27,68,25,26,9,11,4,6,0,710,29,583,156,600,139,121,618,556,183,48,691,454,285,15,724,575,164,550,189,257,293,132,607,346,393,237,502,387,352,246,493,10,729,181,401,145,12,0,576,163,0,0,6,2,0,0,0,1,0,1,27,702,0,1.5074424898511505,1.2922868741542626,1.0,1.0285714285714285,1.0285714285714285,57.42895805142084 +PA070403,60404,Herrera,Ocú,Llano Grande,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,107,6,416,7,0,0,0,5,1,417,0,0,1,2,0,9,0,0,224,11,171,6,12,0,5,400,17,0,0,0,12,429,0,144,13,2,24,3,0,1,4,399,25,0,0,407,1,0,16,0,5,0,420,6,3,0,0,0,0,104,306,1,18,0,0,0,401,23,1,0,0,0,0,0,2,1,1,0,615,6.96933962264151,22.50471698113208,6.985849056603773,23.1438679245283,1.0,3.5804195804195804,2.1421911421911424,429,238,314,26,37,9,7,10,3,18,1,3,10,1,29,9,6,6,22,7,5,889,192,0,221,860,0,610,471,0,991,90,0,235,846,0,193,42,781,65,0,65,6,9,2,24,30,77,43,54,264,0,0,0,28,33,72,25,39,136,9,9,12,32,24,39,34,11,0,1,3,0,0,0,0,0,444,19,546,0,0,10,6,46,144,225,48,83,167,28,54,28,26,3,157,0,0,603,503,80,255,30,85,11,0,2,0,11,158,12,227,2,0,0,699,221,0,9,0,77,1,2,0,0,0,17,19,27,13,63,22,53,31,218,445,180,62,77,115,52,96,35,27,7,7,0,0,0,1,2,7.0,4.0,7.0,7.0,9.0,12.0,10.0,17.0,14.0,10.0,15.0,9.0,16.0,12.0,10.0,13.0,18.0,8.0,10.0,23.0,8.0,15.0,16.0,16.0,15.0,16.0,14.0,23.0,13.0,13.0,13.0,11.0,11.0,10.0,12.0,14.0,8.0,9.0,11.0,10.0,16.0,10.0,15.0,12.0,5.0,7.0,18.0,14.0,12.0,16.0,15.0,14.0,17.0,16.0,16.0,12.0,13.0,17.0,16.0,16.0,26.0,24.0,9.0,14.0,17.0,17.0,11.0,13.0,8.0,19.0,10.0,7.0,10.0,13.0,11.0,11.0,7.0,10.0,10.0,8.0,7.0,12.0,11.0,9.0,5.0,6.0,8.0,6.0,3.0,6.0,4.0,2.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,159,697,250,0,34,63,62,72,70,79,57,52,58,67,78,74,90,68,51,46,44,29,7,4,1,0,1095,5,6,0,0,1095,6,5,0,0,283,8,19,254,61,13,309,159,0,551,544,11,0,1,31,34,0,0,0,0,0,0,1,1039,0,6,4,113,6,2,1,266,708,0,163,333,42,9,0,559,0,2.467391304347826,0.0,3.1923076923076925,0.0,7.636528028933093,4,1,53,2,2,1,114,252,0,19,44,12,53,73,56,58,36,44,16,9,3,2,1,2,1,415,14,388,41,377,52,73,356,380,49,65,364,324,105,27,402,387,42,368,61,267,101,99,330,176,253,158,271,257,172,261,168,5,424,113,239,68,9,0,325,104,0,0,9,5,0,0,0,0,0,0,0,415,0,1.4055944055944056,1.1724941724941724,0.0,1.0555555555555556,1.0555555555555556,59.42424242424242 +,60405,Herrera,Ocú,Peña Chatas,915,7,0,0,0,0,0,0,3,0,1,0,0,0,0,0,457,217,17,642,32,1,3,0,13,0,657,0,0,4,4,2,22,0,2,308,17,277,27,38,0,24,640,31,3,0,0,17,691,0,148,40,1,35,7,0,14,17,612,45,3,0,651,4,2,21,3,10,0,668,6,16,0,0,0,1,180,484,0,27,0,0,0,661,23,5,0,1,0,0,0,0,0,1,0,926,6.375730994152047,18.276315789473685,6.944444444444445,22.22222222222222,1.0231548480463095,3.555716353111433,2.422575976845152,707,407,614,48,117,18,14,11,5,21,3,3,64,1,40,23,8,2,9,7,10,1610,320,0,459,1471,0,1245,685,0,1796,134,0,494,1436,0,411,83,1362,74,0,75,22,28,5,48,70,97,64,56,456,0,0,1,58,82,135,67,57,285,9,20,32,26,26,56,59,56,8,3,28,0,1,0,0,0,861,35,873,0,0,21,8,79,270,367,100,57,383,58,93,36,68,6,245,0,1,1055,978,166,412,43,176,78,0,14,1,13,223,10,397,18,0,0,1159,395,1,22,6,146,11,28,1,0,1,23,92,44,33,132,87,76,50,358,795,239,156,139,215,126,142,66,48,47,12,13,12,1,4,18,27.0,27.0,30.0,19.0,13.0,30.0,28.0,33.0,28.0,29.0,29.0,27.0,11.0,25.0,25.0,28.0,34.0,30.0,22.0,31.0,30.0,26.0,29.0,34.0,24.0,30.0,29.0,26.0,35.0,20.0,25.0,29.0,22.0,23.0,26.0,16.0,22.0,28.0,28.0,20.0,21.0,24.0,20.0,24.0,23.0,20.0,25.0,22.0,15.0,26.0,21.0,19.0,29.0,26.0,34.0,26.0,24.0,28.0,28.0,20.0,21.0,25.0,25.0,19.0,18.0,20.0,18.0,21.0,16.0,34.0,24.0,25.0,23.0,13.0,20.0,13.0,16.0,16.0,13.0,16.0,17.0,15.0,17.0,4.0,12.0,13.0,6.0,3.0,5.0,3.0,3.0,2.0,0.0,2.0,4.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,381,1250,401,1,116,148,117,145,143,140,125,114,112,108,129,126,108,109,105,74,65,30,11,7,0,1,2020,4,9,0,0,2020,5,8,0,0,570,11,37,351,96,10,577,381,0,969,1060,3,1,0,54,32,0,0,0,1,0,0,15,1931,0,10,29,254,2,6,2,530,1200,0,297,566,79,15,0,1076,0,2.3361244019138754,0.0,3.16750418760469,0.0,7.878504672897196,4,10,90,0,3,2,187,411,0,28,48,35,72,107,89,63,52,85,45,25,20,20,9,7,2,677,30,621,86,610,97,106,601,594,113,138,569,421,286,51,656,648,59,585,122,250,335,189,518,476,231,304,403,342,365,412,295,5,702,180,372,133,22,4,530,177,0,0,14,4,0,0,0,0,0,0,4,685,0,1.4838255977496484,1.3755274261603376,1.0,1.0714285714285714,1.0714285714285714,57.77369165487978 +PA070402,60406,Herrera,Ocú,El Tijera,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,104,5,160,1,5,0,0,0,0,0,0,7,84,2,6,67,0,0,0,0,150,14,2,0,0,108,58,0,0,0,0,166,0,58,5,0,8,1,0,0,0,164,2,0,0,87,68,1,3,7,0,0,156,1,0,1,0,8,0,16,71,4,75,0,0,0,104,39,2,0,19,0,2,0,0,0,0,0,238,6.79020979020979,23.153846153846157,6.965034965034965,23.867132867132867,1.0,2.710843373493976,1.6686746987951808,166,94,130,7,18,8,9,1,1,3,1,0,2,0,6,7,4,0,2,0,3,204,220,0,3,421,0,14,410,0,339,85,0,83,341,0,78,5,269,72,0,72,10,1,0,6,9,23,21,15,140,0,0,0,9,13,23,6,13,43,1,2,4,1,4,2,1,3,1,0,1,0,0,0,0,0,187,0,212,0,0,0,0,7,61,130,4,10,18,3,2,0,8,1,155,0,0,252,188,16,100,0,70,0,0,1,0,26,50,2,73,1,0,0,336,50,0,4,1,6,1,1,0,0,0,3,4,2,2,10,63,2,2,99,270,75,28,30,14,3,7,10,0,0,2,0,0,0,0,1,3.0,2.0,6.0,5.0,3.0,7.0,4.0,4.0,5.0,2.0,8.0,4.0,8.0,6.0,4.0,9.0,3.0,12.0,6.0,6.0,5.0,3.0,2.0,5.0,3.0,4.0,8.0,3.0,5.0,7.0,2.0,4.0,5.0,3.0,2.0,5.0,10.0,8.0,6.0,11.0,4.0,2.0,7.0,11.0,1.0,8.0,4.0,4.0,4.0,9.0,5.0,5.0,9.0,7.0,4.0,7.0,12.0,6.0,6.0,6.0,4.0,6.0,6.0,4.0,6.0,7.0,4.0,2.0,4.0,2.0,2.0,4.0,5.0,5.0,6.0,5.0,6.0,7.0,2.0,5.0,5.0,1.0,3.0,3.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,71,284,85,0,19,22,30,36,18,27,16,40,25,29,30,37,26,19,22,25,13,4,1,0,1,0,438,0,0,2,0,438,0,0,2,0,160,2,3,42,10,4,148,71,0,357,82,1,0,0,2,0,0,0,0,0,0,0,0,438,0,0,2,1,0,0,1,30,406,0,17,54,7,0,0,362,0,2.940828402366864,0.0,3.8174603174603177,0.0,5.668181818181818,0,1,1,0,0,1,13,150,0,33,12,16,49,29,7,4,7,6,0,2,1,0,0,0,0,150,16,3,163,9,157,8,158,0,166,0,166,45,121,2,164,52,114,3,163,1,2,0,166,2,164,7,159,137,29,71,95,0,166,44,93,27,2,0,140,26,0,0,0,0,0,0,0,0,0,0,0,166,0,1.5180722891566265,1.1325301204819278,0.0,1.0,1.0,56.43975903614458 +,60407,Herrera,Ocú,Menchaca,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,290,16,491,17,5,0,0,11,0,461,0,1,10,5,0,45,0,2,104,16,360,29,15,0,0,453,57,0,1,0,13,524,0,112,17,0,57,19,0,3,5,485,30,1,0,461,11,6,26,12,8,0,509,5,3,1,1,5,0,66,388,1,69,0,0,0,471,25,3,0,18,0,0,0,0,4,3,0,729,6.050403225806452,17.45967741935484,6.366935483870968,19.29435483870968,1.0190839694656488,3.2099236641221376,1.982824427480916,534,260,497,18,80,21,22,13,7,13,1,3,6,4,23,8,6,8,13,4,3,1043,381,0,152,1272,0,463,961,0,1272,152,0,307,1117,0,282,25,1030,87,0,88,10,20,1,29,55,107,56,58,385,0,0,4,31,79,101,26,55,195,0,18,3,7,25,25,20,20,2,0,3,0,0,0,1,0,620,24,686,0,4,3,7,22,203,304,33,124,252,20,34,31,52,6,246,1,0,834,645,87,319,31,155,50,0,0,0,20,183,10,384,8,0,0,1007,218,4,20,15,60,2,3,1,0,0,9,20,10,19,105,127,47,23,284,671,214,123,82,108,100,83,40,23,11,5,2,2,2,5,8,13.0,17.0,10.0,15.0,14.0,17.0,20.0,18.0,10.0,15.0,21.0,10.0,22.0,12.0,30.0,23.0,22.0,16.0,13.0,20.0,27.0,20.0,24.0,28.0,23.0,25.0,25.0,29.0,17.0,19.0,16.0,16.0,14.0,17.0,13.0,20.0,10.0,20.0,21.0,16.0,21.0,16.0,23.0,18.0,17.0,14.0,20.0,21.0,15.0,18.0,20.0,13.0,34.0,24.0,34.0,9.0,28.0,12.0,12.0,16.0,22.0,11.0,22.0,8.0,20.0,10.0,14.0,14.0,14.0,18.0,9.0,11.0,19.0,13.0,7.0,12.0,9.0,14.0,15.0,7.0,13.0,13.0,11.0,12.0,6.0,6.0,6.0,4.0,4.0,1.0,1.0,3.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,244,962,273,0,69,80,95,94,122,115,76,87,95,88,125,77,83,70,59,57,55,21,8,2,1,0,1468,4,2,5,0,1468,4,2,5,0,366,16,84,227,74,5,463,244,0,964,511,4,0,2,10,2,0,0,0,0,0,1,15,1449,0,3,7,77,2,1,0,219,1170,0,175,326,27,4,1,946,0,2.493055555555556,0.0,3.360097323600973,0.0,6.94185260311021,2,6,34,2,1,0,86,403,0,36,52,51,49,94,73,41,34,51,26,9,5,3,1,6,3,502,32,417,117,409,125,80,454,376,158,29,505,344,190,11,523,439,95,369,165,189,180,69,465,61,473,116,418,303,231,308,226,13,521,142,273,112,7,0,418,116,0,1,2,0,0,0,0,0,0,0,6,525,0,1.5617977528089888,1.2078651685393258,1.0,1.0303030303030305,1.0303030303030305,56.59925093632959 +,60408,Herrera,Ocú,Entradero del Castillo,350,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,168,67,8,234,1,1,0,0,7,0,189,0,1,33,2,0,17,0,1,0,2,221,8,12,0,0,196,46,0,0,0,1,243,0,65,9,0,22,17,0,1,1,237,3,1,0,201,32,2,7,1,0,0,243,0,0,0,0,0,0,13,184,1,45,0,0,0,234,4,0,0,2,0,0,0,0,1,2,0,356,5.3655462184873945,9.058823529411764,5.882352941176471,12.899159663865548,1.0164609053497942,3.102880658436214,2.05761316872428,247,142,174,10,22,15,3,0,4,3,0,1,3,0,19,2,6,1,5,0,1,392,206,0,47,551,0,50,548,0,511,87,0,117,481,0,105,12,405,76,0,76,2,3,0,12,28,38,32,37,166,0,0,0,9,21,25,13,15,86,1,0,2,3,11,7,10,1,0,0,0,0,0,0,0,0,254,3,310,0,0,0,2,8,79,171,15,37,48,14,11,6,13,0,164,0,0,325,299,40,43,6,136,18,0,13,0,25,108,8,90,48,0,0,446,94,0,0,10,17,0,0,0,0,0,2,8,6,0,28,131,20,7,55,277,109,39,33,57,17,22,10,6,2,3,1,0,0,0,48,7.0,4.0,10.0,5.0,4.0,3.0,4.0,3.0,5.0,12.0,7.0,8.0,7.0,6.0,9.0,8.0,10.0,7.0,12.0,10.0,13.0,5.0,8.0,4.0,9.0,2.0,4.0,4.0,5.0,4.0,8.0,6.0,7.0,3.0,6.0,4.0,4.0,11.0,8.0,8.0,8.0,9.0,14.0,6.0,8.0,8.0,4.0,5.0,6.0,12.0,6.0,4.0,9.0,7.0,9.0,7.0,6.0,8.0,8.0,8.0,7.0,10.0,13.0,11.0,10.0,5.0,9.0,15.0,11.0,4.0,13.0,7.0,6.0,8.0,3.0,8.0,3.0,5.0,5.0,5.0,5.0,7.0,4.0,4.0,6.0,4.0,3.0,7.0,2.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,94,373,157,0,30,27,37,47,39,19,30,35,45,35,35,37,51,44,37,26,26,17,6,1,0,0,623,0,0,1,0,623,0,0,1,0,185,0,7,117,34,0,187,94,0,337,287,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,11,1,0,0,0,612,0,44,144,7,3,0,426,0,2.8838951310861423,0.0,3.796875,0.0,6.121794871794871,0,0,7,1,0,0,0,239,0,33,25,28,25,54,34,16,9,12,3,4,1,0,1,0,2,237,10,164,83,170,77,35,212,122,125,3,244,172,75,1,246,170,77,152,95,23,129,20,227,83,164,39,208,160,87,205,42,0,247,71,137,36,3,0,186,61,0,0,0,0,0,0,0,0,0,0,0,247,0,1.3157894736842106,1.2105263157894737,1.0,1.0,1.0,59.06882591093117 +PA070505,60501,Herrera,Parita,Parita,1826,1,1,0,0,0,0,0,1,0,0,0,0,0,0,842,443,72,5,1348,9,1,0,0,3,1,1352,0,1,2,0,0,4,0,3,1256,52,44,2,5,0,3,1329,13,3,0,0,17,1362,0,274,26,32,111,23,0,165,88,1047,58,4,0,1310,2,8,12,0,30,0,1220,95,44,1,2,0,0,849,501,0,12,0,0,1291,24,12,6,2,1,0,0,0,24,1,1,1435,394,6.417483044461191,18.85983421250942,6.448379804069329,19.403918613413715,1.012481644640235,3.924375917767988,2.68575624082232,1379,818,1277,122,264,48,64,44,31,65,15,16,34,3,105,49,23,26,36,31,36,3385,595,0,1403,2577,0,2725,1255,0,3744,236,0,1059,2921,0,895,164,2825,96,0,112,62,61,24,69,81,106,102,87,710,0,1,49,105,171,294,96,177,763,3,19,78,93,205,198,156,99,15,4,36,1,0,2,1,0,1648,122,1849,0,0,57,13,406,606,661,135,41,1021,92,253,41,102,3,192,29,0,2076,2104,461,716,56,445,46,0,9,0,2,222,22,1069,25,0,0,1895,1100,50,21,121,378,14,39,1,0,0,90,177,131,114,269,92,314,137,446,1662,337,162,216,352,346,520,222,177,86,42,12,8,6,7,25,45.0,46.0,61.0,48.0,63.0,58.0,61.0,59.0,58.0,62.0,50.0,58.0,51.0,42.0,47.0,46.0,44.0,54.0,56.0,49.0,62.0,54.0,57.0,61.0,54.0,77.0,75.0,54.0,68.0,59.0,66.0,47.0,50.0,63.0,58.0,60.0,58.0,48.0,48.0,35.0,47.0,42.0,36.0,45.0,39.0,62.0,44.0,52.0,63.0,49.0,50.0,46.0,61.0,63.0,63.0,49.0,59.0,51.0,55.0,52.0,48.0,40.0,53.0,39.0,40.0,53.0,33.0,36.0,43.0,50.0,41.0,26.0,37.0,38.0,34.0,34.0,29.0,28.0,32.0,19.0,21.0,17.0,27.0,15.0,11.0,20.0,9.0,12.0,11.0,9.0,8.0,8.0,3.0,5.0,7.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,809,2651,720,0,263,298,248,249,288,333,284,249,209,270,283,266,220,215,176,142,91,61,31,2,2,0,4111,39,23,7,0,4112,42,19,7,0,987,57,308,903,198,23,895,809,0,2836,1293,51,0,6,125,19,2,0,0,0,0,0,53,3975,0,244,394,870,62,210,13,1194,1193,0,864,1191,402,36,0,1687,0,1.9497816593886463,0.0,2.5893536121673004,0.0,8.941387559808613,81,144,342,36,82,5,365,324,0,40,60,23,72,121,152,198,149,222,131,83,46,46,14,13,9,1363,16,1310,69,1286,93,262,1117,1290,89,488,891,957,422,354,1025,1272,107,1304,75,885,419,525,854,953,426,620,759,185,1194,272,1107,7,1372,233,746,373,27,1,933,446,0,1,40,8,1,0,0,0,0,0,13,1316,0,1.5043478260869565,1.5246376811594202,1.3333333333333333,1.011764705882353,1.011764705882353,54.96664249456128 +PA070501,60502,Herrera,Parita,Cabuya,539,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,239,147,3,359,27,0,0,0,1,2,380,0,1,1,1,3,2,0,1,87,56,231,6,9,0,0,372,8,2,0,0,7,389,0,81,16,7,37,10,0,0,14,341,32,2,0,367,0,6,12,3,1,0,381,5,3,0,0,0,0,77,294,0,18,0,0,0,381,7,0,0,0,0,0,0,0,1,0,0,542,6.981958762886598,23.75515463917526,6.974226804123711,23.899484536082475,1.012853470437018,3.652956298200514,2.2930591259640103,395,210,291,34,91,6,16,7,5,18,6,5,52,0,24,7,5,16,10,6,5,816,260,0,64,1012,0,205,871,0,967,109,0,205,871,0,187,18,808,63,0,64,6,15,0,34,46,68,41,27,346,2,1,0,34,43,81,28,37,133,0,0,5,7,14,10,13,15,2,0,4,0,0,0,0,0,363,18,609,0,3,6,5,49,127,347,67,19,176,14,21,15,56,1,96,0,1,623,513,44,193,16,113,11,0,2,1,7,124,13,344,0,0,0,787,155,0,0,9,33,2,4,0,0,1,2,11,13,15,40,46,55,29,169,567,147,35,60,108,77,79,27,24,6,5,0,1,0,0,0,15.0,14.0,17.0,14.0,17.0,11.0,15.0,18.0,11.0,14.0,17.0,11.0,8.0,15.0,13.0,16.0,19.0,16.0,17.0,15.0,13.0,15.0,19.0,9.0,16.0,15.0,21.0,19.0,9.0,14.0,13.0,15.0,16.0,14.0,14.0,10.0,13.0,17.0,11.0,11.0,9.0,15.0,14.0,9.0,8.0,18.0,18.0,12.0,15.0,16.0,16.0,19.0,11.0,11.0,14.0,18.0,15.0,15.0,16.0,15.0,8.0,16.0,14.0,10.0,17.0,9.0,10.0,15.0,16.0,10.0,14.0,11.0,12.0,10.0,8.0,4.0,13.0,8.0,8.0,4.0,9.0,6.0,9.0,3.0,2.0,5.0,6.0,1.0,0.0,4.0,1.0,3.0,3.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,210,716,210,0,77,69,64,83,72,78,72,62,55,79,71,79,65,60,55,37,29,16,10,1,2,0,1132,0,3,1,0,1132,1,2,1,0,369,8,31,146,51,3,319,209,0,711,425,0,0,1,1,9,0,0,0,1,0,0,8,1116,0,17,6,47,8,2,1,34,1021,0,178,299,49,1,1,608,0,2.3524027459954238,0.0,3.075757575757576,0.0,6.569542253521127,5,3,23,4,1,1,18,340,0,37,41,14,39,58,65,49,29,38,12,5,5,2,0,0,0,385,10,347,48,344,51,36,359,361,34,57,338,257,138,8,387,354,41,329,66,87,242,46,349,70,325,123,272,110,285,90,305,4,391,85,199,95,16,1,311,84,0,0,0,1,0,0,0,0,0,0,3,391,0,1.573232323232323,1.2954545454545454,1.0,1.0,1.0,56.92151898734177 +PA070503,60503,Herrera,Parita,Los Castillos,378,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,64,4,265,12,0,0,0,4,0,271,0,2,2,0,0,4,0,2,118,56,99,3,5,0,0,261,5,0,0,0,15,281,0,38,24,2,27,11,0,2,9,248,22,0,0,253,0,2,6,0,20,0,278,1,2,0,0,0,0,65,207,0,9,0,0,0,263,16,0,0,0,0,0,0,2,0,0,0,383,6.978494623655914,16.97132616487455,6.989247311827957,18.154121863799283,1.0249110320284698,3.427046263345196,2.04982206405694,288,147,266,26,56,5,10,3,2,10,1,1,8,0,32,17,2,19,3,10,22,659,120,0,135,644,0,492,287,0,698,81,0,205,574,0,184,21,547,27,0,36,6,17,1,20,28,35,21,17,197,0,0,2,25,49,45,28,33,102,2,10,16,14,16,18,25,4,8,1,3,0,0,0,0,0,317,34,353,0,2,13,8,27,115,157,52,2,149,25,28,15,23,7,101,1,0,436,387,54,168,18,93,7,0,9,0,0,71,7,193,0,0,0,483,148,2,10,7,43,8,3,0,0,0,6,24,10,13,63,45,44,35,111,377,90,64,50,77,57,49,22,18,7,4,1,3,1,3,0,9.0,12.0,5.0,18.0,14.0,9.0,14.0,8.0,20.0,10.0,10.0,9.0,13.0,16.0,8.0,7.0,10.0,16.0,11.0,13.0,9.0,15.0,10.0,12.0,15.0,13.0,12.0,14.0,15.0,10.0,12.0,8.0,13.0,10.0,12.0,8.0,8.0,10.0,13.0,6.0,7.0,16.0,7.0,12.0,6.0,7.0,8.0,5.0,11.0,7.0,11.0,16.0,13.0,11.0,14.0,16.0,9.0,7.0,15.0,6.0,20.0,3.0,7.0,7.0,8.0,7.0,10.0,4.0,6.0,3.0,6.0,6.0,6.0,4.0,4.0,8.0,4.0,12.0,8.0,4.0,2.0,4.0,3.0,4.0,1.0,4.0,2.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,175,531,117,0,58,61,56,57,61,64,55,45,48,38,65,53,45,30,26,36,14,10,1,0,0,0,820,0,3,0,0,820,0,3,0,0,190,16,90,143,34,1,174,175,0,426,397,0,0,8,8,1,0,0,0,0,0,0,6,800,0,10,34,112,4,1,0,101,561,0,135,247,22,10,0,409,0,2.4103343465045595,0.0,3.105691056910569,0.0,7.551640340218712,2,15,49,3,1,0,35,183,0,20,17,24,24,40,46,26,23,36,12,8,3,4,1,4,0,272,16,251,37,248,40,33,255,258,30,40,248,168,120,13,275,257,31,248,40,111,137,61,227,160,128,120,168,107,181,142,146,4,284,73,144,64,7,0,199,89,0,1,3,0,0,0,0,0,0,0,2,282,0,1.5138888888888888,1.34375,0.0,1.0,1.0,54.170138888888886 +PA070502,60504,Herrera,Parita,Llano de La Cruz,196,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,23,1,129,9,0,0,0,1,0,134,0,0,4,0,0,1,0,0,95,10,34,0,0,0,0,134,2,1,0,0,2,139,0,39,8,1,9,1,0,3,4,122,8,2,0,121,1,1,1,0,15,0,130,6,2,0,0,0,1,45,90,0,4,0,0,0,130,3,0,0,0,0,0,0,6,0,0,0,197,6.69172932330827,10.263157894736842,6.924812030075188,17.526315789473685,1.0,3.5899280575539567,1.935251798561151,139,67,96,5,15,4,9,4,1,4,5,4,4,2,7,2,1,1,6,6,7,315,38,0,73,280,0,226,127,0,331,22,0,75,278,0,65,10,271,7,0,9,3,5,0,10,10,12,10,13,87,0,0,3,8,22,28,10,12,62,0,0,7,10,14,2,8,3,1,1,3,0,0,0,0,0,129,25,176,0,1,5,2,37,42,66,29,2,54,11,39,0,14,2,33,0,0,191,168,25,54,5,64,2,0,3,0,0,42,2,92,2,0,0,216,87,3,0,10,10,1,3,0,0,0,7,6,8,7,27,19,21,16,43,161,52,12,24,29,26,26,14,6,4,1,1,1,0,0,2,2.0,1.0,2.0,1.0,5.0,1.0,5.0,3.0,7.0,2.0,3.0,2.0,2.0,5.0,5.0,3.0,3.0,6.0,3.0,7.0,4.0,6.0,3.0,2.0,2.0,4.0,5.0,4.0,7.0,2.0,1.0,3.0,8.0,2.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,1.0,2.0,7.0,5.0,10.0,7.0,6.0,3.0,1.0,4.0,3.0,6.0,8.0,5.0,7.0,6.0,6.0,7.0,9.0,6.0,7.0,6.0,3.0,2.0,5.0,5.0,8.0,8.0,6.0,6.0,4.0,0.0,3.0,2.0,2.0,4.0,1.0,2.0,2.0,1.0,0.0,1.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,46,228,85,0,11,18,17,22,17,22,17,19,22,25,21,29,34,23,33,11,10,3,5,0,0,0,354,2,3,0,0,355,2,2,0,0,89,13,37,71,24,1,78,46,0,206,152,1,0,0,1,1,0,0,0,0,0,0,2,355,0,7,9,48,1,0,0,96,198,0,45,97,42,1,1,173,0,2.2684563758389262,0.0,2.754385964912281,0.0,8.192200557103064,4,4,16,0,0,0,40,75,0,20,12,7,10,16,20,12,14,12,7,3,3,1,1,0,1,138,1,132,7,128,11,16,123,123,16,38,101,99,40,4,135,136,3,124,15,51,73,25,114,95,44,55,84,49,90,75,64,1,138,35,67,33,4,0,101,38,0,0,0,0,0,0,0,0,0,0,0,139,0,1.3741007194244603,1.20863309352518,1.0,1.0,1.0,58.20863309352518 +PA070504,60505,Herrera,Parita,París,526,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,19,3,390,13,0,0,0,3,0,396,0,0,2,1,1,6,0,0,332,9,48,2,1,0,14,386,10,1,0,0,9,406,0,54,20,3,29,16,0,19,21,338,28,0,0,391,4,5,3,0,3,0,381,2,22,0,0,0,1,201,198,0,7,0,0,357,30,8,2,1,0,0,1,0,4,3,0,0,528,6.858227848101266,22.359493670886074,6.974683544303797,23.61772151898734,1.0147783251231528,3.7192118226600974,2.541871921182266,412,250,325,45,49,15,16,7,5,21,6,7,17,1,38,15,7,8,11,39,12,946,177,0,290,833,0,757,366,0,1037,86,0,264,859,0,216,48,803,56,0,57,12,15,1,15,41,40,33,39,220,0,0,6,39,53,88,34,46,188,1,5,15,19,30,35,45,23,8,2,11,0,1,0,1,0,472,19,543,0,0,7,2,84,159,240,48,12,233,38,45,29,40,0,102,2,1,617,559,76,245,31,129,5,1,2,1,1,90,5,303,7,0,0,644,246,6,7,18,94,6,11,2,0,0,11,36,17,28,80,25,75,42,177,495,113,51,58,125,121,90,41,37,14,10,6,3,2,3,7,17.0,9.0,12.0,15.0,18.0,13.0,11.0,18.0,11.0,18.0,12.0,19.0,10.0,16.0,17.0,10.0,20.0,11.0,22.0,15.0,19.0,13.0,16.0,13.0,15.0,11.0,13.0,14.0,17.0,14.0,22.0,8.0,21.0,8.0,11.0,13.0,17.0,11.0,17.0,6.0,14.0,19.0,18.0,11.0,14.0,14.0,10.0,13.0,13.0,21.0,16.0,21.0,15.0,17.0,11.0,16.0,18.0,7.0,18.0,14.0,15.0,19.0,15.0,15.0,14.0,18.0,16.0,10.0,9.0,16.0,14.0,11.0,10.0,12.0,15.0,9.0,10.0,14.0,10.0,0.0,6.0,4.0,9.0,0.0,5.0,7.0,3.0,1.0,3.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,216,735,225,0,71,71,74,78,76,69,70,64,76,71,80,73,78,69,62,43,24,16,5,4,2,0,1147,24,5,0,0,1147,27,2,0,0,322,23,68,254,51,3,239,216,0,606,554,16,0,0,36,12,1,0,0,0,0,0,13,1114,0,37,42,224,5,5,4,137,722,0,234,345,87,11,2,497,0,1.849794238683128,0.0,2.4885714285714284,0.0,8.243197278911564,13,24,90,1,1,1,56,226,0,16,21,15,23,47,57,71,49,49,19,14,5,14,2,5,5,397,15,376,36,355,57,76,336,376,36,123,289,267,145,40,372,375,37,373,39,195,178,119,293,282,130,187,225,63,349,123,289,2,410,80,230,85,17,0,300,112,0,0,10,3,0,0,0,0,0,0,2,397,0,1.4975728155339805,1.3567961165048543,1.0,1.0,1.0,55.560679611650485 +PA070506,60506,Herrera,Parita,Portobelillo,412,20,0,0,0,0,0,0,0,0,0,0,1,0,0,0,177,149,4,309,17,0,0,0,4,0,316,0,0,7,0,0,7,0,0,162,42,96,25,5,0,0,316,4,1,0,0,9,330,0,33,13,1,34,21,0,2,9,309,10,0,0,269,1,7,16,0,37,0,323,4,3,0,0,0,0,81,233,0,15,0,1,158,163,2,6,0,0,0,0,0,0,0,1,0,433,7.0,22.74303405572756,7.0,23.758513931888544,1.003030303030303,3.478787878787879,2.372727272727273,332,182,283,24,74,9,21,10,4,14,2,4,2,0,29,8,2,6,4,9,11,753,167,0,211,709,0,599,321,0,848,72,0,196,724,0,174,22,689,35,0,35,7,11,1,20,45,29,34,17,217,0,0,18,36,60,61,21,22,151,0,4,11,17,14,39,42,4,2,0,2,0,0,0,0,0,356,16,474,0,0,5,4,52,124,200,38,60,174,22,72,12,16,0,73,0,1,506,455,79,175,15,75,17,0,8,1,3,102,5,265,1,0,0,542,191,18,4,12,75,2,2,0,0,1,7,33,20,23,57,26,41,29,135,441,131,48,39,90,69,77,21,21,13,6,1,0,0,3,1,10.0,12.0,10.0,9.0,13.0,8.0,14.0,14.0,16.0,9.0,13.0,6.0,13.0,14.0,13.0,13.0,10.0,15.0,13.0,11.0,14.0,11.0,9.0,17.0,14.0,15.0,13.0,13.0,14.0,13.0,15.0,14.0,7.0,14.0,12.0,12.0,13.0,12.0,9.0,13.0,12.0,4.0,19.0,13.0,10.0,10.0,11.0,5.0,13.0,12.0,22.0,9.0,16.0,15.0,16.0,11.0,12.0,16.0,16.0,13.0,12.0,11.0,12.0,17.0,9.0,6.0,7.0,5.0,8.0,11.0,10.0,5.0,4.0,8.0,6.0,9.0,4.0,7.0,9.0,5.0,6.0,8.0,4.0,5.0,5.0,3.0,5.0,0.0,3.0,3.0,2.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,174,632,155,0,54,61,59,62,65,68,62,59,58,51,78,68,61,37,33,34,28,14,7,2,0,0,957,4,0,0,0,957,4,0,0,0,255,9,86,172,38,4,223,174,0,650,308,3,0,0,25,5,0,0,0,0,0,0,2,929,0,7,10,122,2,0,3,94,723,0,170,280,50,3,0,458,0,2.109452736318408,0.0,2.9267399267399266,0.0,7.86888657648283,2,5,50,2,0,0,43,230,0,28,28,13,25,42,53,45,26,28,14,15,5,4,1,3,1,326,6,297,35,290,42,47,285,292,40,49,283,206,126,10,322,303,29,274,58,95,179,65,267,246,86,129,203,126,206,152,180,4,328,73,173,84,2,0,252,80,0,0,6,1,0,0,0,0,0,0,0,325,0,1.5240963855421688,1.370481927710843,0.0,1.1,1.1,55.774096385542165 +PA070507,60507,Herrera,Parita,Potuga,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,27,3,386,6,0,0,0,2,1,390,0,0,0,0,1,4,0,0,201,11,179,2,2,0,0,375,11,1,0,0,8,395,0,73,12,6,40,20,0,5,26,339,25,0,0,343,1,12,10,0,29,0,379,5,5,1,0,0,5,105,275,0,15,0,0,114,267,11,0,0,0,0,0,0,1,2,0,0,546,4.823979591836735,8.665816326530612,5.01530612244898,9.35204081632653,1.010126582278481,3.4658227848101264,2.3746835443037977,399,193,296,40,54,7,17,9,2,15,9,5,11,3,41,17,0,5,16,10,7,755,251,0,148,858,0,563,443,0,914,92,0,240,766,0,212,28,725,41,0,44,15,16,2,26,30,51,43,38,229,0,1,0,37,49,89,20,42,150,1,4,5,15,21,39,25,9,0,0,5,0,0,0,0,0,371,34,514,0,3,12,7,101,142,194,20,57,225,9,60,18,14,1,72,2,0,561,499,56,209,18,72,40,0,6,0,2,94,9,299,5,0,0,645,185,0,7,17,60,0,5,0,0,0,8,22,17,15,65,45,50,35,148,452,122,55,76,113,93,73,29,23,12,5,0,0,1,1,5,9.0,9.0,15.0,21.0,11.0,15.0,17.0,13.0,14.0,17.0,17.0,12.0,10.0,14.0,15.0,10.0,9.0,14.0,11.0,18.0,15.0,13.0,27.0,12.0,16.0,17.0,18.0,14.0,9.0,10.0,17.0,12.0,14.0,16.0,11.0,10.0,8.0,9.0,13.0,7.0,11.0,15.0,17.0,20.0,13.0,13.0,8.0,17.0,16.0,12.0,11.0,8.0,10.0,9.0,14.0,10.0,16.0,15.0,9.0,16.0,15.0,8.0,11.0,10.0,8.0,13.0,8.0,18.0,15.0,13.0,13.0,5.0,4.0,13.0,6.0,4.0,11.0,8.0,11.0,4.0,7.0,5.0,8.0,6.0,6.0,8.0,3.0,2.0,2.0,3.0,1.0,1.0,3.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,209,642,209,0,65,76,68,62,83,68,70,47,76,66,52,66,52,67,41,38,32,18,8,4,1,0,1039,15,6,0,0,1040,16,4,0,0,288,5,33,173,48,8,296,209,0,662,387,11,0,1,24,18,0,0,0,0,0,0,14,1003,0,14,17,46,10,5,0,60,908,0,202,306,96,11,0,445,0,2.2803738317757007,0.0,2.9365079365079363,0.0,7.4216981132075475,5,8,26,6,2,0,28,324,0,26,33,18,34,66,65,52,27,36,21,11,3,4,0,2,1,392,7,353,46,342,57,47,352,350,49,78,321,240,159,22,377,338,61,336,63,103,233,65,334,160,239,114,285,75,324,90,309,4,395,111,209,69,10,0,277,122,0,1,7,2,0,0,0,0,0,0,3,386,0,1.406015037593985,1.25062656641604,1.0,1.0,1.0,55.82456140350877 +PA070606,60601,Herrera,Pesé,Pesé,1163,6,0,0,0,0,0,0,0,0,0,0,3,0,0,672,256,11,5,932,7,2,0,0,2,1,938,0,0,1,1,1,3,0,0,891,30,18,2,0,0,3,927,5,2,0,0,10,944,0,109,15,47,36,18,0,107,99,707,31,0,0,923,2,1,17,0,1,0,934,1,8,1,0,0,0,499,433,0,12,0,0,940,0,0,0,0,0,0,0,1,0,3,0,1172,0,6.975531914893617,22.282978723404256,6.98936170212766,23.937234042553197,1.007415254237288,3.680084745762712,2.4184322033898304,954,512,868,75,179,30,43,19,6,50,5,6,23,1,54,12,14,15,28,30,21,2298,361,0,903,1756,0,2133,526,0,2495,164,0,670,1989,0,570,100,1924,65,0,76,34,34,18,47,54,89,60,55,397,0,0,13,94,131,205,76,137,530,2,25,38,57,123,157,119,46,8,1,31,0,0,0,2,0,1135,153,1151,0,3,58,31,255,408,418,38,32,825,96,130,32,110,1,52,0,1,1378,1393,349,497,37,333,28,0,2,1,2,84,18,709,14,0,0,1286,716,14,28,80,276,6,31,2,0,1,68,116,96,110,241,25,172,134,325,1151,184,107,139,225,230,357,161,111,45,31,7,4,1,4,14,28.0,29.0,21.0,34.0,34.0,34.0,35.0,29.0,34.0,54.0,46.0,32.0,34.0,31.0,37.0,36.0,44.0,37.0,27.0,32.0,37.0,34.0,50.0,33.0,42.0,37.0,58.0,50.0,42.0,45.0,38.0,34.0,46.0,40.0,45.0,42.0,39.0,43.0,34.0,21.0,24.0,32.0,42.0,39.0,35.0,38.0,34.0,17.0,32.0,30.0,31.0,43.0,34.0,41.0,31.0,30.0,42.0,41.0,37.0,49.0,42.0,33.0,41.0,27.0,29.0,25.0,29.0,21.0,26.0,22.0,19.0,19.0,18.0,24.0,21.0,18.0,15.0,19.0,6.0,9.0,13.0,12.0,13.0,9.0,13.0,11.0,8.0,2.0,8.0,1.0,3.0,2.0,3.0,1.0,0.0,2.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,512,1860,399,0,146,186,180,176,196,232,203,179,172,151,180,199,172,123,101,67,60,30,9,6,3,0,2731,17,22,1,0,2733,19,18,1,0,630,55,270,553,120,36,595,512,0,1892,856,23,0,5,14,0,0,0,3,0,0,0,85,2664,0,88,223,156,8,10,4,694,1588,0,674,783,245,29,0,1040,0,1.9390739236393173,0.0,2.682926829268293,0.0,9.139299891735837,31,76,64,4,2,1,220,556,0,31,35,35,52,85,108,140,110,162,73,60,22,21,8,7,2,943,11,909,45,908,46,174,780,911,43,470,484,652,302,258,696,870,84,903,51,626,277,412,542,739,215,469,485,117,837,126,828,18,936,186,509,237,22,0,603,351,0,3,4,0,0,0,2,0,0,0,33,912,0,1.4444444444444444,1.460167714884696,1.0,1.0232558139534884,1.0232558139534884,54.5083857442348 +PA070605,60602,Herrera,Pesé,Las Cabras,857,17,0,3,0,0,0,0,0,0,0,0,0,0,0,0,474,235,15,672,37,0,0,0,12,3,711,0,0,2,2,0,7,0,2,601,8,103,5,5,1,1,693,14,2,1,0,14,724,0,55,21,11,49,17,0,5,19,667,29,4,0,639,6,3,28,1,47,0,687,15,21,0,1,0,0,121,566,2,35,0,0,0,706,12,6,0,0,0,0,0,0,0,0,0,877,6.933147632311978,21.972144846796656,6.97075208913649,23.317548746518103,1.0124309392265194,3.335635359116022,2.157458563535912,733,446,690,60,106,19,21,15,6,26,5,4,16,0,56,29,19,17,26,41,12,1593,442,0,270,1765,0,756,1279,0,1812,223,0,514,1521,0,472,42,1387,134,0,136,32,31,2,61,78,101,67,73,510,0,0,1,66,104,158,60,86,261,1,9,28,22,35,47,18,31,2,0,15,0,0,0,0,0,792,69,966,0,2,22,7,48,301,462,118,37,417,51,77,25,49,1,232,3,1,1119,1028,91,509,34,202,10,0,7,3,2,165,16,654,1,0,0,1357,329,1,14,27,82,2,15,0,0,3,25,33,25,31,137,68,124,69,346,1066,291,108,134,165,143,131,47,41,10,3,1,5,0,1,1,26.0,28.0,30.0,28.0,37.0,33.0,36.0,30.0,33.0,39.0,30.0,28.0,23.0,26.0,25.0,39.0,37.0,31.0,33.0,37.0,35.0,40.0,35.0,28.0,25.0,25.0,40.0,25.0,32.0,33.0,21.0,41.0,36.0,36.0,33.0,28.0,26.0,39.0,24.0,28.0,29.0,26.0,29.0,31.0,26.0,21.0,26.0,21.0,27.0,19.0,30.0,17.0,38.0,24.0,24.0,21.0,17.0,15.0,22.0,24.0,29.0,14.0,16.0,23.0,28.0,33.0,19.0,17.0,18.0,11.0,13.0,17.0,24.0,12.0,7.0,8.0,12.0,15.0,10.0,13.0,4.0,5.0,8.0,6.0,6.0,6.0,4.0,0.0,4.0,3.0,4.0,4.0,1.0,1.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,452,1404,291,0,149,171,132,177,163,155,167,145,141,114,133,99,110,98,73,58,29,17,10,6,0,0,2130,4,4,9,0,2130,5,3,9,0,598,26,109,383,72,8,499,452,0,1270,873,4,0,0,20,14,0,0,0,6,0,0,19,2088,0,129,158,273,7,4,2,234,1340,0,334,609,53,5,0,1146,0,2.2885283893395134,0.0,2.9458204334365323,0.0,6.942710759198882,40,58,113,4,2,2,81,433,0,32,80,33,96,112,117,96,50,64,32,6,4,7,1,2,1,719,14,660,73,661,72,114,619,634,99,128,605,452,281,30,703,636,97,616,117,383,233,153,580,322,411,294,439,191,542,195,538,12,721,153,429,138,13,0,546,187,0,0,5,2,0,0,0,1,0,0,4,721,0,1.5266030013642564,1.4024556616643928,1.0,1.1153846153846154,1.1153846153846154,51.90723055934516 +PA070603,60603,Herrera,Pesé,El Pájaro,448,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,135,3,321,2,0,0,0,3,0,320,0,0,0,2,1,3,0,0,215,4,96,3,2,0,6,299,10,0,1,0,16,326,0,62,13,4,44,1,0,3,4,293,26,0,0,316,0,2,2,0,6,0,314,7,4,0,1,0,0,64,252,0,10,0,0,0,318,6,0,0,0,0,0,0,0,1,1,0,450,7.0,21.21296296296296,7.0,22.41358024691358,1.0,3.539877300613497,1.9355828220858893,326,174,220,10,55,11,7,3,1,13,0,3,2,2,30,6,5,10,7,5,9,671,125,0,113,683,0,389,407,0,746,50,0,129,667,0,108,21,651,16,0,18,9,13,2,21,26,46,25,17,305,0,0,0,12,31,36,12,29,92,4,11,7,8,13,32,15,1,2,1,8,0,0,0,0,0,318,20,411,0,1,16,0,35,72,195,16,93,118,24,29,12,21,2,129,0,1,439,388,36,161,17,68,49,1,3,1,0,116,5,209,1,0,0,555,130,0,12,1,41,2,8,0,0,1,7,17,13,14,41,76,35,20,114,352,158,31,55,68,64,56,16,20,2,2,1,1,0,0,1,6.0,6.0,9.0,10.0,9.0,9.0,7.0,5.0,9.0,8.0,5.0,4.0,7.0,3.0,9.0,2.0,10.0,11.0,10.0,5.0,5.0,7.0,13.0,11.0,13.0,17.0,7.0,10.0,12.0,10.0,8.0,12.0,5.0,10.0,8.0,9.0,12.0,13.0,9.0,4.0,7.0,9.0,5.0,6.0,8.0,13.0,8.0,7.0,11.0,9.0,8.0,18.0,13.0,12.0,14.0,17.0,14.0,13.0,13.0,20.0,15.0,15.0,18.0,14.0,14.0,15.0,13.0,4.0,9.0,12.0,10.0,15.0,8.0,6.0,8.0,15.0,7.0,6.0,3.0,4.0,6.0,7.0,4.0,4.0,8.0,4.0,4.0,3.0,3.0,0.0,2.0,3.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,106,534,187,0,40,38,28,38,49,56,43,47,35,48,65,77,76,53,47,35,29,14,6,3,0,0,822,4,1,0,0,822,4,1,0,0,253,8,79,152,53,3,173,106,0,503,320,4,0,0,6,2,0,0,0,0,0,0,10,809,0,6,22,124,3,2,0,84,586,0,108,262,33,4,0,420,0,2.436046511627907,0.0,2.952380952380953,0.0,7.292623941958888,1,6,63,3,1,0,33,219,0,28,46,16,51,46,36,37,20,22,10,7,3,4,0,0,0,311,15,304,22,290,36,50,276,299,27,60,266,271,55,2,324,293,33,285,41,94,191,63,263,160,166,116,210,177,149,168,158,0,326,86,168,68,4,0,242,84,0,0,2,1,0,0,0,0,0,0,3,320,0,1.3466257668711656,1.1901840490797546,1.0,1.0625,1.0625,60.05521472392638 +PA070601,60604,Herrera,Pesé,El Barrero,847,16,2,0,0,0,0,0,0,0,0,0,2,0,0,0,604,69,9,672,1,1,0,0,8,0,668,0,0,0,2,2,10,0,0,634,8,40,0,0,0,0,670,5,0,0,0,7,682,0,71,28,11,51,22,0,12,42,615,13,0,0,650,2,0,25,0,5,0,666,6,6,0,3,0,1,205,455,0,22,0,0,0,654,24,0,1,0,0,0,0,0,1,2,0,867,6.997050147492625,18.57079646017699,6.991150442477876,19.2905604719764,1.004398826979472,3.655425219941349,2.124633431085044,687,391,630,46,134,23,23,10,9,33,3,4,13,1,56,28,6,3,15,21,16,1626,301,0,412,1515,0,1171,756,0,1784,143,0,453,1474,0,396,57,1391,83,0,83,15,35,5,39,49,69,48,63,498,0,0,0,36,86,158,39,68,366,1,14,8,15,55,59,67,39,3,0,8,0,0,0,1,0,775,83,902,0,0,42,37,103,282,378,87,52,494,44,79,26,59,4,146,0,1,1008,999,124,422,33,219,49,0,3,3,1,168,13,625,0,0,0,1124,407,0,19,42,156,3,8,1,0,3,20,57,56,37,174,104,107,77,223,923,208,54,109,192,167,197,67,49,28,10,1,1,1,0,0,19.0,18.0,25.0,18.0,26.0,25.0,24.0,29.0,34.0,29.0,28.0,30.0,25.0,23.0,30.0,29.0,20.0,15.0,29.0,20.0,23.0,33.0,42.0,16.0,28.0,43.0,40.0,39.0,29.0,20.0,27.0,22.0,21.0,21.0,30.0,29.0,25.0,24.0,23.0,24.0,26.0,18.0,28.0,24.0,24.0,32.0,22.0,23.0,17.0,36.0,25.0,28.0,32.0,25.0,28.0,18.0,30.0,26.0,32.0,21.0,19.0,24.0,27.0,23.0,16.0,26.0,14.0,12.0,18.0,21.0,22.0,16.0,16.0,15.0,17.0,12.0,10.0,12.0,17.0,14.0,9.0,12.0,9.0,6.0,10.0,6.0,8.0,5.0,4.0,3.0,4.0,3.0,1.0,0.0,3.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,383,1296,328,0,106,141,136,113,142,171,121,125,120,130,138,127,109,91,86,65,46,26,11,3,0,0,1997,4,5,1,0,1997,5,4,1,0,461,35,70,455,88,11,504,383,0,1345,653,9,0,0,23,1,0,0,0,0,0,0,4,1979,0,3,0,7,0,0,0,21,1976,0,369,597,90,15,1,935,0,1.9806157354618017,0.0,2.6713836477987423,0.0,8.023418036870952,2,0,1,0,0,0,4,680,0,41,67,12,61,90,86,92,50,88,49,23,12,10,3,1,0,677,10,636,51,625,62,88,599,629,58,155,532,413,274,68,619,605,82,608,79,331,277,184,503,271,416,276,411,113,574,125,562,13,674,144,367,166,10,0,489,198,0,0,6,0,0,0,0,0,0,0,2,679,0,1.467248908296943,1.4541484716157205,0.0,1.125,1.125,55.50072780203784 +PA070604,60605,Herrera,Pesé,El Pedregoso,696,25,0,0,0,0,0,0,0,0,0,0,1,0,0,0,396,132,6,513,15,0,0,0,5,1,525,0,1,0,0,0,8,0,0,485,12,35,2,0,0,0,506,9,1,0,0,18,534,0,128,27,6,11,15,0,8,19,483,23,1,0,481,2,8,20,0,23,0,508,15,11,0,0,0,0,149,359,1,23,1,1,0,526,5,1,0,0,0,0,0,0,1,1,0,722,6.990583804143126,21.084745762711865,7.0,23.854990583804145,1.00749063670412,3.5898876404494384,2.5093632958801497,539,297,471,26,84,15,21,5,9,17,5,2,8,1,28,5,8,14,23,4,11,1222,210,0,269,1163,0,1113,319,0,1315,117,0,320,1112,0,286,34,1052,60,0,63,13,24,6,29,39,79,43,37,363,0,0,3,35,88,77,30,50,222,4,19,13,27,37,37,44,22,8,1,19,0,0,0,0,0,572,20,721,0,0,8,5,77,205,299,38,102,282,30,79,18,44,0,134,0,1,767,733,106,267,26,169,17,0,2,1,3,152,31,399,1,0,0,857,307,3,19,9,92,7,19,0,0,1,18,44,41,28,113,68,62,50,167,664,181,71,76,155,92,139,40,45,16,13,1,3,2,1,1,21.0,16.0,8.0,23.0,19.0,21.0,18.0,20.0,21.0,20.0,16.0,19.0,13.0,20.0,20.0,16.0,19.0,20.0,19.0,26.0,13.0,22.0,35.0,19.0,18.0,16.0,25.0,27.0,18.0,20.0,9.0,24.0,15.0,20.0,18.0,16.0,14.0,13.0,22.0,18.0,16.0,16.0,10.0,14.0,21.0,16.0,13.0,18.0,20.0,21.0,22.0,21.0,27.0,19.0,22.0,26.0,18.0,24.0,16.0,20.0,19.0,17.0,17.0,17.0,13.0,11.0,12.0,19.0,17.0,24.0,14.0,8.0,18.0,14.0,14.0,10.0,14.0,14.0,10.0,10.0,9.0,7.0,7.0,6.0,5.0,2.0,9.0,3.0,6.0,1.0,4.0,2.0,2.0,0.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,275,945,280,0,87,100,88,100,107,106,86,83,77,88,111,104,83,83,68,58,34,21,9,5,2,0,1492,5,1,2,0,1492,6,0,2,0,301,29,124,365,73,8,325,275,0,891,607,2,0,2,11,1,0,0,0,0,5,0,2,1479,0,3,11,46,0,0,1,62,1377,0,251,450,78,5,6,710,0,2.0890625,0.0,2.834080717488789,0.0,7.846,2,4,16,0,0,1,21,495,0,11,53,25,50,79,77,73,50,51,27,19,8,6,6,3,0,522,17,492,47,500,39,66,473,497,42,142,397,355,184,42,497,486,53,472,67,190,282,117,422,435,104,242,297,270,269,239,300,13,526,125,288,117,9,0,411,128,0,0,3,0,0,0,0,0,0,0,2,534,0,1.4230055658627088,1.3599257884972171,0.0,1.0526315789473684,1.0526315789473684,56.6252319109462 +PA070602,60606,Herrera,Pesé,El Ciruelo,352,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,117,0,276,3,0,0,0,0,0,269,0,0,3,0,0,6,0,1,201,8,65,3,2,0,0,265,13,0,0,0,1,279,0,33,6,0,32,18,0,1,10,253,15,0,0,250,4,7,17,1,0,0,273,3,2,0,0,0,1,56,205,0,17,1,0,0,258,16,2,0,1,0,1,0,0,1,0,0,368,6.894160583941606,19.317518248175183,6.91970802919708,21.945255474452555,1.003584229390681,3.5268817204301075,1.8064516129032255,280,164,241,16,28,12,14,2,1,12,1,0,5,1,28,6,4,3,4,25,1,569,175,0,56,688,0,493,251,0,672,72,0,156,588,0,143,13,535,53,0,54,5,8,1,23,19,46,47,15,225,1,0,0,19,38,44,22,19,72,5,8,5,14,16,26,9,2,0,0,1,0,0,0,0,0,312,3,369,0,0,1,2,16,92,196,31,34,82,8,18,3,17,0,187,0,0,418,359,46,150,7,83,26,0,3,0,0,84,3,251,3,0,0,526,112,0,8,3,34,0,1,0,0,0,1,11,3,11,34,75,13,20,147,381,125,56,43,62,36,39,9,10,6,6,0,0,1,0,3,13.0,8.0,9.0,3.0,9.0,12.0,7.0,13.0,7.0,12.0,5.0,6.0,10.0,8.0,15.0,4.0,15.0,6.0,7.0,18.0,12.0,13.0,13.0,14.0,11.0,17.0,12.0,15.0,10.0,8.0,13.0,10.0,9.0,11.0,9.0,10.0,5.0,9.0,5.0,11.0,6.0,7.0,7.0,5.0,6.0,10.0,9.0,8.0,9.0,12.0,7.0,17.0,12.0,16.0,10.0,15.0,5.0,14.0,12.0,14.0,13.0,9.0,10.0,4.0,5.0,5.0,3.0,4.0,5.0,7.0,5.0,10.0,6.0,4.0,7.0,9.0,7.0,3.0,5.0,3.0,10.0,6.0,6.0,2.0,2.0,4.0,5.0,5.0,1.0,2.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,137,509,131,0,42,51,44,50,63,62,52,40,31,48,62,60,41,24,32,27,26,17,4,1,0,0,775,2,0,0,0,775,2,0,0,0,241,6,41,136,34,4,178,137,0,511,265,1,0,0,27,0,0,0,0,0,0,0,2,748,0,3,2,6,2,3,1,5,755,0,79,160,17,0,1,520,0,2.1772151898734178,0.0,3.036529680365297,0.0,6.754182754182755,1,1,1,0,1,0,1,275,0,17,48,22,36,48,36,23,11,15,8,9,2,2,1,0,2,271,9,237,43,244,36,30,250,220,60,43,237,185,95,2,278,248,32,220,60,89,131,41,239,203,77,99,181,209,71,138,142,11,269,67,150,57,6,0,218,62,0,0,5,0,0,0,0,0,0,0,1,274,0,1.4928571428571429,1.2821428571428573,0.0,1.125,1.125,54.95 +,60607,Herrera,Pesé,Sabana Grande,685,7,0,0,0,0,0,0,0,0,0,0,0,0,0,6,526,26,1,541,17,0,0,0,1,0,552,0,0,1,0,0,6,0,0,482,11,62,0,4,0,0,522,22,1,0,0,14,559,0,60,14,6,39,14,0,3,13,523,19,1,0,544,1,4,9,0,1,0,542,12,5,0,0,0,0,161,389,0,8,0,1,63,453,37,1,0,0,0,5,0,0,0,0,0,692,5.710669077757685,12.298372513562388,6.330922242314648,16.21518987341772,1.0107334525939178,3.89087656529517,2.361359570661896,565,327,481,33,109,19,20,13,6,26,3,0,15,0,32,6,13,30,5,20,4,1271,265,0,202,1334,0,995,541,0,1375,161,0,318,1218,0,292,26,1153,65,0,71,18,13,4,49,52,85,66,43,500,0,0,0,33,60,103,26,37,189,3,9,21,20,28,66,11,16,4,1,8,0,0,0,0,0,605,12,806,0,0,3,1,58,208,409,51,80,308,18,44,19,29,1,192,2,0,841,776,96,339,21,147,4,0,6,0,10,187,20,467,3,0,0,1047,268,0,9,6,82,3,8,0,0,0,9,35,9,20,131,62,52,55,244,753,233,85,90,142,91,119,44,27,17,9,3,0,0,1,3,25.0,17.0,19.0,20.0,20.0,26.0,12.0,22.0,14.0,19.0,27.0,22.0,23.0,14.0,16.0,18.0,22.0,11.0,17.0,27.0,19.0,29.0,24.0,21.0,11.0,25.0,22.0,24.0,26.0,21.0,22.0,19.0,18.0,16.0,18.0,12.0,22.0,16.0,24.0,15.0,28.0,14.0,23.0,15.0,18.0,9.0,26.0,18.0,24.0,18.0,18.0,27.0,20.0,27.0,25.0,24.0,24.0,20.0,20.0,26.0,20.0,20.0,16.0,18.0,18.0,16.0,14.0,18.0,16.0,21.0,12.0,17.0,16.0,14.0,17.0,12.0,18.0,10.0,11.0,11.0,8.0,8.0,9.0,8.0,12.0,4.0,9.0,8.0,2.0,2.0,8.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,296,1015,306,0,101,93,102,95,104,118,93,89,98,95,117,114,92,85,76,62,45,25,11,2,0,0,1614,1,1,1,0,1614,1,1,1,0,351,43,106,386,91,11,333,296,0,1122,493,2,0,0,18,1,0,1,0,0,0,0,14,1583,0,8,16,74,3,0,1,82,1433,0,267,529,61,4,1,755,0,2.249258160237389,0.0,3.012448132780083,0.0,7.040197897340755,4,9,25,3,0,0,42,482,0,16,65,14,65,97,94,63,45,46,27,12,11,6,1,1,2,555,10,527,38,516,49,75,490,490,75,70,495,371,194,11,554,517,48,494,71,153,341,117,448,416,149,216,349,417,148,377,188,2,563,109,305,148,3,0,430,135,0,0,3,1,0,1,0,0,0,0,5,555,0,1.488495575221239,1.3734513274336284,1.0,1.027027027027027,1.027027027027027,57.08141592920354 +PA070607,60608,Herrera,Pesé,Rincón Hondo,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,346,127,1,470,5,0,0,0,1,0,475,0,0,0,0,0,0,0,1,376,6,88,3,3,0,0,469,5,0,0,0,2,476,0,73,15,3,35,4,0,0,15,460,1,0,0,464,4,3,4,0,1,0,456,5,15,0,0,0,0,155,316,0,5,0,0,0,415,61,0,0,0,0,0,0,0,0,0,0,606,6.266806722689076,14.735294117647058,6.504201680672269,17.050420168067227,1.0,3.762605042016807,2.554621848739496,476,308,399,14,90,13,18,5,4,29,2,1,3,1,46,21,10,4,27,18,7,1103,211,0,274,1040,0,763,551,0,1231,83,0,297,1017,0,257,40,976,41,0,41,14,18,1,35,49,60,45,34,347,0,0,0,44,49,81,26,43,196,2,10,20,15,42,29,23,69,2,0,19,0,0,0,0,0,477,37,707,0,2,14,14,84,177,348,86,12,286,26,46,15,35,0,99,0,3,685,678,107,251,18,125,6,0,0,3,1,130,16,310,3,0,0,794,271,0,11,22,102,2,19,0,0,2,25,57,24,21,93,49,52,38,153,661,176,37,88,107,51,103,43,49,27,10,3,4,0,1,3,12.0,10.0,17.0,10.0,10.0,10.0,14.0,19.0,14.0,26.0,13.0,14.0,18.0,13.0,16.0,10.0,14.0,17.0,15.0,20.0,18.0,24.0,19.0,22.0,18.0,17.0,14.0,26.0,29.0,16.0,20.0,12.0,14.0,12.0,14.0,15.0,12.0,12.0,14.0,15.0,7.0,16.0,16.0,11.0,18.0,13.0,14.0,19.0,19.0,18.0,18.0,17.0,22.0,25.0,24.0,27.0,15.0,23.0,18.0,20.0,26.0,26.0,18.0,18.0,15.0,14.0,8.0,23.0,12.0,15.0,14.0,14.0,19.0,15.0,8.0,11.0,13.0,11.0,9.0,10.0,14.0,5.0,6.0,4.0,4.0,7.0,5.0,5.0,5.0,3.0,1.0,5.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,216,882,265,0,59,83,74,76,101,102,72,68,68,83,106,103,103,72,70,54,33,25,8,3,0,0,1359,0,4,0,0,1359,1,3,0,0,312,15,61,387,71,4,297,216,0,837,525,1,0,2,1,0,0,0,0,10,0,0,25,1325,0,12,35,170,23,3,0,407,713,0,242,473,78,5,5,560,0,2.27563025210084,0.0,2.9681818181818183,0.0,8.0997798972854,2,13,77,8,1,0,132,243,0,31,53,15,50,73,47,49,38,52,27,14,7,8,7,3,2,473,3,456,20,456,20,110,366,430,46,73,403,360,116,30,446,432,44,444,32,281,163,101,375,233,243,221,255,163,313,245,231,1,475,95,274,103,4,0,373,103,0,1,0,0,0,0,0,1,0,0,9,465,0,1.4390756302521008,1.4243697478991597,0.0,1.0769230769230769,1.0769230769230769,58.09873949579832 +PA070705,60701,Herrera,Santa María,Santa María,891,0,4,0,0,0,0,0,0,0,0,1,4,0,0,120,495,89,11,688,16,0,0,0,11,0,696,0,0,7,1,2,6,0,3,515,59,108,6,3,0,24,686,16,3,0,0,10,715,0,66,26,17,55,16,0,131,35,509,35,3,2,693,1,2,12,0,7,0,710,2,3,0,0,0,0,288,419,0,8,0,0,578,132,3,0,0,0,0,0,0,0,1,1,898,2,6.922861150070126,21.049088359046284,6.96914446002805,22.666199158485277,1.006993006993007,3.707692307692308,2.504895104895105,725,358,776,63,178,17,30,34,7,38,6,5,18,6,46,22,10,6,12,2,16,1754,369,0,702,1421,0,1273,850,0,1924,199,0,615,1508,0,544,71,1405,103,0,104,35,45,4,50,62,77,67,55,253,0,0,7,63,127,175,58,103,559,1,5,12,19,56,80,62,16,13,0,14,0,0,0,1,0,730,42,1078,0,2,13,7,186,357,490,25,20,562,33,42,40,65,0,20,2,1,1091,1170,202,363,41,146,9,0,3,1,9,58,9,816,2,0,0,1005,606,7,6,49,149,13,14,1,0,1,26,63,57,58,133,26,124,83,201,1191,151,90,95,146,167,203,79,67,38,21,6,3,1,1,2,38.0,24.0,36.0,40.0,45.0,47.0,47.0,45.0,48.0,41.0,41.0,38.0,35.0,28.0,25.0,31.0,33.0,25.0,33.0,41.0,33.0,32.0,46.0,28.0,35.0,40.0,33.0,37.0,37.0,32.0,33.0,29.0,35.0,34.0,36.0,25.0,23.0,25.0,24.0,36.0,27.0,33.0,31.0,23.0,23.0,27.0,22.0,21.0,18.0,21.0,24.0,27.0,14.0,28.0,18.0,25.0,16.0,23.0,22.0,15.0,31.0,18.0,23.0,23.0,15.0,22.0,17.0,16.0,16.0,15.0,19.0,12.0,18.0,17.0,19.0,17.0,7.0,7.0,8.0,14.0,10.0,10.0,7.0,3.0,3.0,6.0,7.0,4.0,6.0,5.0,1.0,2.0,4.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,578,1384,299,0,183,228,167,163,174,179,167,133,137,109,111,101,110,86,85,53,33,28,11,1,2,0,2240,13,7,1,0,2241,13,6,1,0,555,32,56,309,82,22,627,578,0,1006,1245,10,0,6,103,4,0,1,1,4,1,0,41,2100,0,142,174,480,29,1,4,744,687,0,463,689,199,9,1,900,0,2.0300518134715024,0.0,2.753303964757709,0.0,8.181335692171606,41,66,190,14,1,2,197,214,0,61,35,29,43,87,97,109,73,82,30,30,18,17,4,5,0,708,17,663,62,634,91,98,627,661,64,253,472,419,306,115,610,673,52,651,74,396,255,231,494,411,314,258,467,163,562,131,594,9,716,155,376,176,18,0,412,313,0,0,15,1,0,0,1,3,1,0,15,689,0,1.5048275862068965,1.6137931034482758,1.0,1.0833333333333333,1.0833333333333333,52.79724137931034 +PA070701,60702,Herrera,Santa María,Chupampa,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,84,4,424,24,0,0,0,4,0,448,0,0,1,0,1,2,0,0,312,6,114,1,18,1,0,445,3,2,0,0,2,452,0,84,17,0,19,7,0,7,24,409,12,0,0,444,3,5,0,0,0,0,446,0,6,0,0,0,0,197,250,0,5,0,0,338,108,6,0,0,0,0,0,0,0,0,0,0,579,6.984513274336283,22.54646017699115,7.0,22.97566371681416,1.0154867256637168,3.836283185840708,2.5730088495575223,459,253,400,30,75,25,24,20,6,27,5,3,7,0,11,3,2,11,7,0,4,1069,209,0,373,905,0,638,640,0,1172,106,0,291,987,0,247,44,937,50,0,54,16,20,3,24,36,33,31,44,302,0,1,1,33,51,90,24,64,182,0,7,21,28,44,86,32,18,3,2,27,0,0,0,1,0,504,23,651,0,2,6,7,97,173,342,37,2,279,23,50,17,98,1,53,0,0,677,657,136,146,19,193,20,0,7,0,2,110,12,435,3,0,0,726,282,1,8,12,118,3,27,1,0,0,21,56,38,29,93,79,58,61,92,599,122,56,69,125,83,134,41,60,20,10,2,5,4,1,3,14.0,13.0,15.0,14.0,17.0,22.0,16.0,12.0,19.0,14.0,21.0,7.0,12.0,16.0,18.0,9.0,17.0,15.0,12.0,15.0,25.0,17.0,19.0,23.0,23.0,12.0,23.0,16.0,17.0,23.0,18.0,17.0,19.0,17.0,14.0,20.0,14.0,12.0,12.0,12.0,15.0,12.0,21.0,8.0,14.0,8.0,22.0,18.0,11.0,16.0,18.0,17.0,25.0,20.0,17.0,15.0,26.0,17.0,21.0,16.0,14.0,20.0,11.0,22.0,19.0,19.0,16.0,15.0,10.0,13.0,17.0,8.0,14.0,8.0,10.0,10.0,11.0,13.0,11.0,9.0,11.0,11.0,9.0,4.0,6.0,5.0,5.0,4.0,5.0,3.0,5.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,230,844,260,0,73,83,74,68,107,91,85,70,70,75,97,95,86,73,57,54,41,22,9,4,0,0,1317,6,9,2,0,1318,8,6,2,0,307,14,21,306,74,5,377,230,0,845,479,10,0,2,16,12,0,0,0,0,0,0,14,1290,0,20,31,81,11,1,1,190,999,0,252,391,108,5,0,578,0,2.216168717047452,0.0,2.850117096018735,0.0,8.44752623688156,8,5,35,8,1,0,65,337,0,25,31,16,30,70,58,51,36,63,35,22,7,6,3,6,0,454,5,431,28,412,47,76,383,405,54,116,343,307,152,64,395,382,77,414,45,158,256,137,322,162,297,214,245,128,331,118,341,5,454,97,241,114,7,0,325,134,0,0,4,4,0,0,0,0,0,0,6,445,0,1.4749455337690631,1.431372549019608,1.0,1.0588235294117647,1.0588235294117647,58.010893246187365 +PA070703,60703,Herrera,Santa María,El Rincón,721,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,383,162,31,520,25,0,0,0,8,23,571,0,0,1,1,0,3,0,0,469,6,96,1,3,0,1,554,4,0,1,0,17,576,0,86,23,1,30,5,0,2,20,547,7,0,0,553,0,3,10,0,10,0,570,3,2,0,1,0,0,148,421,0,7,0,0,571,0,4,0,0,0,0,0,0,0,1,0,0,722,6.874782608695652,19.68,6.966956521739131,22.410434782608696,1.0190972222222223,3.7760416666666665,2.5850694444444446,588,304,496,45,212,12,12,14,3,36,3,7,18,0,51,13,5,13,7,4,10,1304,352,0,259,1397,0,1036,620,0,1458,198,0,406,1250,0,378,28,1158,92,0,95,24,39,8,46,60,84,64,65,379,0,0,0,59,72,113,55,74,294,0,1,9,18,20,39,24,7,2,1,4,0,0,0,0,0,595,38,855,0,1,13,10,134,246,378,46,51,410,21,72,15,25,0,83,3,0,919,831,96,336,16,157,23,0,1,0,0,133,4,414,1,0,0,1069,333,0,1,16,63,2,4,0,0,0,15,32,19,25,73,71,132,47,219,796,186,71,94,161,142,164,53,49,17,10,2,2,0,2,1,21.0,19.0,26.0,28.0,28.0,28.0,38.0,24.0,24.0,26.0,23.0,22.0,21.0,27.0,22.0,31.0,28.0,16.0,24.0,25.0,33.0,33.0,34.0,32.0,22.0,32.0,21.0,17.0,14.0,22.0,26.0,19.0,20.0,18.0,20.0,18.0,19.0,17.0,21.0,14.0,11.0,23.0,21.0,17.0,22.0,12.0,13.0,15.0,18.0,25.0,22.0,19.0,31.0,20.0,27.0,23.0,30.0,20.0,27.0,24.0,13.0,15.0,25.0,14.0,12.0,17.0,11.0,14.0,13.0,13.0,11.0,24.0,8.0,22.0,16.0,19.0,11.0,12.0,19.0,8.0,14.0,4.0,8.0,7.0,4.0,9.0,10.0,5.0,5.0,1.0,2.0,2.0,2.0,2.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,377,1075,298,0,122,140,115,124,154,106,103,89,94,83,119,124,79,68,81,69,37,30,8,5,0,0,1743,6,1,0,0,1743,6,1,0,0,489,13,38,229,66,4,534,377,0,1234,512,4,0,11,59,0,0,0,0,0,0,0,15,1665,0,96,206,640,88,6,3,587,124,0,351,496,138,8,0,757,0,2.354341736694678,0.0,3.0,0.0,6.942285714285714,29,85,241,40,2,1,154,36,0,39,32,17,47,68,85,86,54,83,32,19,9,11,3,2,0,561,27,526,62,493,95,72,516,560,28,101,487,253,335,44,544,523,65,529,59,165,364,106,482,394,194,178,410,92,496,97,491,6,582,132,279,166,11,0,398,190,0,4,11,0,0,0,0,0,0,0,5,568,0,1.5629251700680271,1.413265306122449,1.0,1.0,1.0,56.22278911564626 +PA070702,60704,Herrera,Santa María,El Limón,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,9,3,426,9,0,0,0,3,0,435,0,0,0,0,1,2,0,0,349,2,57,5,24,0,1,430,6,0,0,0,2,438,0,88,25,3,32,12,0,5,31,382,20,0,0,425,1,7,3,0,2,0,429,3,6,0,0,0,0,134,289,1,14,0,0,174,260,4,0,0,0,0,0,0,0,0,0,0,598,6.981735159817352,22.57990867579909,6.981735159817352,22.874429223744293,1.0136986301369864,3.8493150684931514,2.221461187214612,444,239,367,13,105,19,17,8,6,26,0,5,7,2,33,18,3,4,13,0,7,978,227,0,222,983,0,611,594,0,1132,73,0,249,956,0,228,21,919,37,0,37,18,13,0,17,38,41,30,28,302,0,0,4,24,43,101,26,42,254,0,8,9,22,16,49,40,31,4,0,6,0,0,0,2,0,456,39,620,0,1,23,7,91,153,319,57,0,224,24,59,13,117,1,46,0,0,631,627,114,133,19,201,15,0,2,0,4,143,10,264,0,0,0,670,301,4,8,11,109,4,6,2,0,0,18,39,29,26,68,101,61,49,104,527,165,59,84,97,79,134,39,44,17,11,0,0,0,2,0,9.0,11.0,18.0,15.0,14.0,16.0,14.0,11.0,17.0,18.0,15.0,9.0,14.0,17.0,15.0,11.0,15.0,14.0,19.0,15.0,15.0,17.0,21.0,16.0,18.0,16.0,17.0,18.0,26.0,19.0,9.0,19.0,13.0,17.0,8.0,10.0,12.0,15.0,16.0,8.0,9.0,13.0,9.0,16.0,10.0,12.0,22.0,18.0,12.0,9.0,11.0,21.0,19.0,22.0,20.0,19.0,18.0,15.0,23.0,17.0,19.0,7.0,22.0,12.0,19.0,17.0,16.0,18.0,11.0,14.0,13.0,12.0,12.0,12.0,14.0,14.0,6.0,15.0,7.0,9.0,7.0,9.0,9.0,4.0,11.0,5.0,3.0,2.0,4.0,9.0,2.0,3.0,2.0,0.0,2.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,213,778,267,0,67,76,70,74,87,96,66,61,57,73,93,92,79,76,63,51,40,23,9,4,1,0,1253,4,0,1,0,1253,4,0,1,0,323,9,15,266,53,5,375,212,0,775,480,3,0,0,33,7,0,0,0,3,0,0,11,1204,0,9,57,77,13,3,2,137,960,0,211,368,87,10,0,582,0,2.2244525547445257,0.0,2.8875305623471883,0.0,8.389507154213037,5,22,43,6,1,2,47,318,0,17,33,22,40,61,65,51,35,51,30,21,7,4,3,4,0,438,6,405,39,393,51,70,374,393,51,85,359,289,155,60,384,389,55,384,60,243,141,96,348,198,246,193,251,179,265,208,236,5,439,103,219,115,7,0,316,128,0,0,6,6,0,0,0,0,0,0,4,428,0,1.4211711711711712,1.412162162162162,0.0,1.0,1.0,58.52927927927928 +PA070704,60705,Herrera,Santa María,Los Canelos,791,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,550,45,6,577,18,0,0,0,5,1,587,0,0,3,1,2,7,0,1,394,39,154,2,5,0,7,575,15,2,1,0,8,601,0,89,51,21,27,11,0,2,63,512,24,0,0,570,3,0,25,0,3,0,599,1,1,0,0,0,0,118,458,0,25,0,0,0,568,30,2,0,0,0,0,0,0,1,0,0,801,6.916387959866221,8.96989966555184,6.988294314381271,10.02675585284281,1.021630615640599,3.5207986688851918,2.469217970049917,614,343,737,65,122,16,33,38,7,41,5,10,89,1,21,3,0,4,2,1,1,1591,388,0,446,1533,0,1379,600,0,1745,234,0,536,1443,0,480,56,1319,124,0,126,22,47,5,57,62,94,62,63,334,0,0,0,68,100,139,47,119,368,0,0,35,40,43,64,48,15,14,0,7,0,0,0,0,0,730,112,900,0,0,25,43,125,330,409,16,20,594,26,103,12,40,0,15,0,0,1154,967,130,471,12,161,13,0,3,0,2,51,8,703,4,0,0,1107,497,1,0,7,109,14,7,0,0,0,17,52,37,38,123,16,166,98,295,1082,110,51,92,171,272,196,54,53,19,7,2,5,2,1,4,29.0,36.0,38.0,39.0,43.0,45.0,39.0,33.0,39.0,38.0,39.0,25.0,29.0,39.0,30.0,33.0,28.0,25.0,38.0,31.0,47.0,49.0,39.0,39.0,57.0,34.0,28.0,46.0,33.0,31.0,27.0,22.0,34.0,29.0,25.0,23.0,38.0,34.0,35.0,27.0,20.0,22.0,27.0,28.0,28.0,25.0,22.0,27.0,15.0,23.0,24.0,28.0,21.0,24.0,25.0,23.0,15.0,21.0,16.0,12.0,20.0,15.0,22.0,16.0,14.0,13.0,14.0,16.0,15.0,17.0,9.0,10.0,14.0,13.0,7.0,9.0,5.0,4.0,6.0,4.0,7.0,5.0,2.0,3.0,3.0,4.0,1.0,2.0,3.0,4.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,541,1385,195,0,185,194,162,155,231,172,137,157,125,112,122,87,87,75,53,28,20,14,3,1,1,0,2083,15,21,2,0,2086,16,17,2,0,631,13,121,270,55,9,482,540,0,993,1110,18,0,3,402,24,0,0,1,0,1,0,12,1678,0,23,70,228,8,0,0,459,1333,0,498,549,103,23,3,945,0,2.1317440401505645,0.0,2.9405405405405407,0.0,7.509665252239509,8,21,79,4,0,0,152,350,0,12,20,20,29,82,115,112,45,94,39,15,11,11,4,4,1,600,14,533,81,508,106,109,505,542,72,106,508,276,338,51,563,552,62,521,93,231,290,159,455,445,169,241,373,179,435,169,445,8,606,124,321,150,19,1,366,248,0,1,66,3,0,0,0,0,0,0,6,538,0,1.8764227642276423,1.5723577235772357,1.0,1.0454545454545454,1.0454545454545454,49.69869706840391 +PA090105,70101,Los Santos,Guararé,Guararé,2567,1,111,9,0,0,0,0,0,0,0,0,0,0,0,585,1226,137,5,1927,21,0,0,0,5,0,1938,0,0,1,1,2,11,0,0,1710,160,28,1,2,0,52,1889,11,14,0,0,39,1953,0,392,65,108,141,29,0,353,280,1261,53,6,0,1836,12,75,3,0,27,0,1565,55,331,2,0,0,0,1127,809,7,7,1,2,1913,0,12,2,0,0,0,0,0,22,4,0,2037,651,6.37922077922078,17.892987012987014,6.703896103896104,21.37818181818182,1.002048131080389,3.7337429595494114,2.4142345110087047,1957,970,1624,122,309,75,70,41,38,74,11,21,55,21,124,56,27,53,26,13,29,4592,579,0,2165,3006,0,3932,1239,0,4940,231,0,1437,3734,0,1094,343,3596,138,0,151,60,53,8,74,129,147,137,127,741,1,2,33,139,205,368,154,198,1002,1,62,58,95,175,259,352,218,64,3,147,0,1,2,5,0,2354,116,2303,0,30,23,11,493,893,812,78,27,1518,246,240,93,264,11,66,16,6,2626,2762,714,739,120,813,65,0,2,7,8,257,38,1161,10,0,0,2293,1234,35,69,139,815,51,132,5,0,4,167,397,204,181,400,100,527,161,329,2014,391,188,311,403,490,584,293,310,131,101,46,42,19,55,10,53.0,55.0,46.0,63.0,61.0,52.0,58.0,64.0,91.0,72.0,101.0,72.0,66.0,87.0,67.0,79.0,69.0,70.0,66.0,68.0,81.0,68.0,79.0,62.0,67.0,76.0,58.0,60.0,82.0,63.0,58.0,46.0,62.0,75.0,65.0,74.0,64.0,65.0,83.0,84.0,86.0,89.0,78.0,93.0,74.0,62.0,64.0,63.0,63.0,55.0,70.0,83.0,72.0,64.0,77.0,46.0,62.0,58.0,69.0,69.0,76.0,48.0,61.0,73.0,58.0,58.0,60.0,49.0,63.0,62.0,50.0,41.0,46.0,45.0,47.0,42.0,21.0,43.0,39.0,27.0,29.0,19.0,36.0,15.0,24.0,18.0,14.0,20.0,11.0,10.0,13.0,8.0,8.0,5.0,4.0,4.0,2.0,1.0,2.0,1.0,4.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1008,3437,943,0,278,337,393,352,357,339,306,370,420,307,366,304,316,292,229,172,123,73,38,10,6,0,5270,81,36,1,0,5273,88,26,1,0,1186,68,302,1078,236,92,1418,1008,0,1880,3438,70,0,17,36,2,0,0,0,2,0,0,50,5281,0,121,144,247,14,4,3,726,4129,0,1229,1518,524,19,9,2089,0,1.746973365617433,0.0,2.41415313225058,0.0,9.728285077951002,53,69,105,10,3,2,310,1405,0,69,78,42,86,165,198,276,188,296,187,125,60,74,28,83,2,1928,29,1869,88,1807,150,392,1565,1789,168,941,1016,1103,854,563,1394,1829,128,1771,186,1124,647,808,1149,1267,690,1112,845,306,1651,302,1655,20,1937,451,1018,423,65,0,1219,738,0,7,12,0,0,0,0,1,0,0,15,1922,0,1.3418497700562084,1.4113438937148697,1.2727272727272727,1.0869565217391304,1.0869565217391304,55.33776188042923 +PA090101,70102,Los Santos,Guararé,El Espinal,645,2,1,0,0,0,0,0,0,0,0,0,2,0,0,0,479,16,3,491,4,0,0,0,2,1,487,0,0,1,1,3,6,0,0,235,175,85,0,3,0,0,472,6,1,0,0,19,498,0,62,11,4,48,25,0,22,31,412,33,0,0,451,5,35,5,0,2,0,408,56,34,0,0,0,0,168,322,3,5,0,0,0,464,31,0,0,0,0,0,0,0,2,1,0,650,7.0,20.12323232323232,7.0,20.89090909090909,1.0,3.483935742971888,2.206827309236948,500,260,312,42,68,20,24,6,7,14,3,9,12,0,20,13,6,8,10,8,9,1002,231,0,239,994,0,525,708,0,1147,86,0,246,987,0,224,22,934,53,0,53,10,21,2,36,37,55,40,20,318,0,1,13,41,26,84,30,33,225,0,21,2,17,21,38,43,19,7,0,20,0,0,0,0,0,536,19,577,0,2,8,4,90,141,274,44,28,297,35,33,32,51,6,84,15,0,646,631,102,215,32,184,19,0,1,0,2,152,6,295,0,0,0,706,247,13,21,26,93,7,19,0,0,0,23,39,33,28,103,78,90,50,111,473,198,51,84,112,112,114,47,45,17,13,4,5,1,1,0,13.0,14.0,9.0,8.0,18.0,20.0,17.0,20.0,15.0,11.0,19.0,17.0,14.0,13.0,8.0,10.0,14.0,13.0,6.0,16.0,16.0,17.0,11.0,15.0,10.0,15.0,17.0,16.0,9.0,16.0,10.0,17.0,17.0,18.0,11.0,16.0,15.0,17.0,14.0,22.0,15.0,16.0,13.0,13.0,12.0,16.0,10.0,11.0,16.0,8.0,15.0,10.0,17.0,15.0,23.0,24.0,21.0,28.0,25.0,16.0,20.0,17.0,22.0,14.0,20.0,15.0,17.0,14.0,14.0,14.0,13.0,17.0,11.0,13.0,9.0,14.0,16.0,16.0,8.0,7.0,9.0,11.0,4.0,10.0,10.0,9.0,8.0,3.0,9.0,4.0,1.0,4.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,216,775,286,0,62,83,71,59,69,73,73,84,69,61,80,114,93,74,63,61,44,33,7,4,0,0,1265,6,4,2,0,1265,6,4,2,0,370,19,30,214,64,6,358,216,0,548,720,9,0,0,53,4,0,0,0,0,0,0,1,1219,0,7,27,27,5,6,5,55,1145,0,218,356,84,7,11,601,0,1.839857651245552,0.0,2.472636815920398,0.0,8.041503523884103,4,14,14,2,4,1,29,432,0,19,51,17,51,51,76,72,35,52,26,24,5,13,4,2,0,481,19,448,52,451,49,106,394,432,68,116,384,298,202,17,483,453,47,428,72,143,285,111,389,169,331,240,260,118,382,215,285,6,494,146,247,98,9,0,372,128,0,0,7,2,0,0,0,0,0,0,1,490,0,1.292,1.262,1.0,1.16,1.16,57.958 +PA090103,70103,Los Santos,Guararé,El Macano,188,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,14,3,99,0,2,0,0,1,0,89,0,0,5,1,0,5,0,2,0,12,72,6,12,0,0,90,11,0,0,0,1,102,0,66,4,0,13,5,0,1,0,90,9,2,0,86,9,4,2,0,1,0,95,5,1,0,0,1,0,10,83,0,6,3,0,0,79,19,2,0,0,0,1,0,0,0,1,0,190,6.112244897959184,22.489795918367346,6.969387755102041,24.0,1.0,2.9705882352941178,1.8333333333333333,102,51,70,4,10,4,3,1,0,2,0,3,3,0,4,2,0,2,1,0,0,201,44,0,32,213,0,68,177,0,227,18,0,50,195,0,45,5,186,9,0,10,1,4,0,6,5,11,9,10,84,0,0,2,7,9,11,1,5,41,0,0,1,6,7,7,5,0,2,0,1,0,0,0,0,0,99,13,116,0,0,7,1,12,29,57,2,16,44,7,4,3,8,0,46,0,0,135,118,15,43,3,35,8,0,7,1,4,31,3,64,5,0,0,156,50,2,1,6,12,1,0,0,0,1,3,2,3,3,20,27,11,7,35,117,32,11,12,30,18,14,6,6,0,2,0,0,0,0,5,3.0,3.0,1.0,1.0,4.0,1.0,3.0,2.0,5.0,2.0,4.0,2.0,2.0,4.0,3.0,5.0,2.0,1.0,4.0,3.0,4.0,4.0,2.0,4.0,1.0,0.0,10.0,5.0,2.0,2.0,6.0,3.0,4.0,3.0,0.0,4.0,4.0,5.0,1.0,1.0,3.0,3.0,1.0,0.0,2.0,5.0,2.0,3.0,5.0,4.0,4.0,2.0,2.0,4.0,4.0,3.0,5.0,2.0,6.0,2.0,5.0,7.0,4.0,3.0,1.0,3.0,2.0,1.0,4.0,4.0,3.0,1.0,4.0,4.0,6.0,1.0,1.0,1.0,3.0,1.0,4.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,40,162,51,0,12,13,15,15,15,19,16,15,9,19,16,18,20,14,18,7,7,3,1,0,1,0,253,0,0,0,0,253,0,0,0,0,95,5,9,15,6,1,82,40,0,129,124,0,0,0,0,0,0,0,0,0,1,0,0,252,0,0,5,61,0,0,0,84,103,0,25,45,12,0,0,171,0,2.2616822429906542,0.0,3.164383561643836,0.0,7.474308300395257,0,3,26,0,0,0,28,45,0,10,11,7,9,17,14,12,6,8,4,3,0,0,0,0,1,99,3,81,21,82,20,10,92,55,47,4,98,43,59,0,102,90,12,79,23,20,59,12,90,30,72,35,67,56,46,54,48,0,102,32,52,15,3,0,86,16,0,0,0,0,0,0,0,0,0,0,0,102,0,1.3235294117647058,1.156862745098039,0.0,1.0,1.0,58.00980392156863 +PA090104,70104,Los Santos,Guararé,Guararé Arriba,229,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,21,4,150,0,0,0,0,4,0,152,0,0,0,0,0,1,0,1,139,8,5,1,0,0,1,144,2,1,0,0,7,154,0,40,4,2,22,10,0,0,6,132,16,0,0,131,0,8,4,0,11,0,134,16,4,0,0,0,0,49,102,0,2,0,1,148,0,0,0,0,0,0,0,0,1,3,2,0,232,6.966216216216216,21.60135135135135,6.986486486486487,23.91891891891892,1.0,3.415584415584416,2.2467532467532467,154,73,83,2,26,6,14,4,1,2,2,2,6,4,11,7,5,2,3,0,5,287,77,0,82,282,0,252,112,0,342,22,0,78,286,0,63,15,277,9,0,9,0,5,0,9,12,10,12,11,91,0,0,1,9,15,27,9,12,76,0,0,3,6,8,20,9,3,4,0,3,0,0,0,0,0,142,14,190,0,0,6,3,37,47,76,9,21,70,15,15,9,16,0,28,0,0,183,196,39,48,12,49,4,1,0,0,0,52,3,76,1,0,0,213,89,1,3,7,28,3,2,0,0,0,6,14,11,10,16,21,22,16,40,144,72,19,27,32,26,31,11,10,5,1,0,0,0,0,1,3.0,2.0,4.0,6.0,0.0,2.0,6.0,4.0,3.0,3.0,8.0,4.0,2.0,6.0,2.0,3.0,4.0,7.0,5.0,6.0,2.0,5.0,6.0,5.0,2.0,6.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,7.0,3.0,4.0,5.0,2.0,3.0,4.0,2.0,4.0,1.0,6.0,3.0,4.0,7.0,1.0,4.0,5.0,5.0,4.0,6.0,5.0,4.0,7.0,4.0,8.0,7.0,3.0,3.0,6.0,6.0,4.0,3.0,5.0,7.0,6.0,8.0,8.0,6.0,5.0,3.0,2.0,6.0,4.0,2.0,0.0,6.0,2.0,4.0,0.0,3.0,0.0,5.0,4.0,5.0,2.0,2.0,3.0,2.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,55,219,105,0,15,18,22,25,20,23,21,18,16,21,24,29,22,34,22,14,12,16,6,1,0,0,377,1,1,0,0,377,2,0,0,0,113,6,7,46,20,4,128,55,0,167,209,3,0,0,7,3,0,0,0,0,0,0,1,368,0,2,11,21,2,2,0,195,146,0,58,101,36,3,0,181,0,1.7966101694915255,0.0,2.37007874015748,0.0,8.408970976253299,1,1,8,1,1,0,80,62,0,8,25,1,24,16,19,21,11,14,9,4,2,0,0,0,0,149,5,138,16,135,19,40,114,141,13,43,111,49,105,24,130,130,24,134,20,81,53,39,115,106,48,73,81,59,95,71,83,0,154,44,68,32,10,0,105,49,0,0,2,1,0,0,0,0,0,0,1,150,0,1.1883116883116882,1.2727272727272727,1.0,1.0,1.0,59.94155844155844 +PA090106,70105,Los Santos,Guararé,La Enea,888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,539,66,1,614,2,0,0,0,1,0,608,0,0,3,0,0,5,0,1,524,78,7,1,6,0,1,614,2,0,0,0,1,617,0,171,25,34,36,5,0,84,61,449,21,2,0,577,4,25,1,0,10,0,532,26,59,0,0,0,0,347,259,7,4,0,0,534,78,3,0,0,0,0,0,0,2,0,0,752,136,5.842276422764227,16.90731707317073,6.921951219512195,23.30894308943089,1.0081037277147489,3.873581847649919,2.19935170178282,622,363,509,21,64,24,16,9,15,15,9,8,12,1,29,15,12,8,16,4,13,1411,205,0,469,1147,0,1194,422,0,1520,96,0,432,1184,0,392,40,1137,47,0,47,25,28,5,29,48,47,39,59,271,0,0,25,29,64,125,33,52,271,0,3,19,34,76,104,92,47,10,1,28,0,0,0,5,0,814,14,633,0,0,7,2,120,224,241,43,5,422,158,105,25,44,0,38,33,0,839,849,181,236,25,375,8,0,0,0,1,110,9,221,16,0,0,745,376,25,6,47,221,8,28,5,0,0,36,68,70,58,105,71,272,74,74,553,171,73,106,157,165,213,86,74,37,16,5,10,4,2,16,21.0,13.0,20.0,18.0,19.0,23.0,34.0,24.0,33.0,22.0,27.0,35.0,21.0,14.0,14.0,17.0,12.0,21.0,13.0,21.0,19.0,19.0,19.0,29.0,33.0,21.0,21.0,29.0,27.0,15.0,27.0,27.0,19.0,35.0,20.0,24.0,22.0,23.0,23.0,29.0,27.0,24.0,20.0,22.0,18.0,17.0,18.0,21.0,14.0,21.0,25.0,23.0,26.0,20.0,35.0,24.0,20.0,16.0,21.0,19.0,16.0,14.0,13.0,29.0,16.0,18.0,10.0,16.0,16.0,19.0,12.0,18.0,13.0,11.0,20.0,10.0,4.0,12.0,16.0,10.0,6.0,6.0,12.0,5.0,6.0,5.0,4.0,3.0,3.0,2.0,0.0,2.0,2.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,338,1084,266,0,91,136,111,84,119,113,128,121,111,91,129,100,88,79,74,52,35,17,8,1,0,0,1661,19,8,0,0,1662,20,6,0,0,459,17,53,336,85,15,385,338,0,553,1116,19,0,0,14,0,0,0,0,7,0,0,35,1632,0,16,30,136,4,23,4,564,911,0,348,461,112,14,5,748,0,1.7422818791946308,0.0,2.3853383458646618,0.0,9.135071090047392,7,16,64,3,11,1,203,317,0,15,36,11,28,46,73,95,66,106,70,33,9,15,11,6,2,619,3,602,20,583,39,127,495,578,44,236,386,366,256,179,443,572,50,566,56,377,189,232,390,446,176,335,287,149,473,176,446,13,609,142,345,122,13,0,438,184,0,0,3,0,0,0,0,2,0,0,9,608,0,1.3488745980707395,1.364951768488746,1.25,1.0,1.0,52.736334405144696 +PA090107,70106,Los Santos,Guararé,La Pasera,616,10,0,4,0,0,0,0,0,0,0,0,1,0,0,21,376,26,4,400,23,0,0,0,4,0,423,0,0,2,0,0,2,0,0,324,74,18,4,4,0,3,404,6,5,0,0,12,427,0,60,66,39,32,6,0,65,20,291,50,1,0,394,2,16,10,0,5,0,395,20,12,0,0,0,0,172,244,1,10,0,0,21,364,31,2,0,0,0,0,0,5,4,0,0,631,6.855769230769231,17.322115384615383,6.985576923076923,19.44951923076923,1.009367681498829,3.4355971896955504,2.189695550351288,432,232,376,52,68,13,18,5,3,15,1,5,25,0,18,17,3,5,10,1,7,1051,127,0,352,826,0,936,242,0,1083,95,0,345,833,0,307,38,778,55,0,57,11,22,1,27,31,39,27,34,230,0,0,7,46,44,66,28,43,209,0,1,22,30,50,16,35,63,24,3,11,0,0,0,1,0,581,23,465,0,3,9,6,55,190,184,23,13,325,30,83,39,39,0,83,1,0,621,624,144,244,39,155,17,0,1,0,0,65,4,271,2,0,0,597,293,7,4,29,110,17,11,1,0,0,20,56,48,40,97,42,120,44,137,472,108,54,56,86,155,161,54,53,20,13,5,3,1,2,2,11.0,25.0,12.0,19.0,18.0,19.0,20.0,15.0,22.0,15.0,12.0,22.0,10.0,29.0,16.0,12.0,19.0,17.0,20.0,25.0,20.0,29.0,16.0,28.0,27.0,25.0,24.0,26.0,17.0,17.0,21.0,18.0,17.0,15.0,18.0,15.0,17.0,10.0,20.0,16.0,20.0,12.0,18.0,12.0,15.0,9.0,15.0,15.0,16.0,18.0,14.0,15.0,12.0,18.0,11.0,22.0,7.0,12.0,12.0,17.0,7.0,17.0,6.0,12.0,7.0,7.0,6.0,13.0,10.0,8.0,6.0,9.0,7.0,6.0,13.0,10.0,8.0,4.0,8.0,4.0,5.0,4.0,5.0,3.0,3.0,3.0,1.0,2.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,828,152,0,85,91,89,93,120,109,89,78,77,73,70,70,49,44,41,34,20,8,4,1,0,0,1226,18,0,1,0,1226,18,0,1,0,351,14,47,177,36,3,352,265,0,464,772,9,0,4,36,16,0,2,1,1,0,0,8,1177,0,12,69,156,4,4,0,223,777,0,279,354,59,3,0,550,0,1.850943396226415,0.0,2.70487106017192,0.0,8.567068273092369,4,22,71,2,3,0,90,240,0,14,31,7,12,27,70,66,42,70,38,24,9,9,9,3,0,416,16,391,41,382,50,64,368,386,46,121,311,218,214,39,393,413,19,362,70,216,146,136,296,342,90,205,227,216,216,181,251,3,429,106,239,76,11,0,308,124,0,3,10,6,0,0,0,0,0,0,2,411,0,1.4375,1.4444444444444444,1.0,1.0,1.0,50.201388888888886 +PA090108,70107,Los Santos,Guararé,Las Trancas,292,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,8,4,199,0,0,0,0,4,0,197,0,0,1,0,0,5,0,0,147,0,53,1,2,0,0,187,15,0,0,0,1,203,0,60,15,1,15,1,0,0,9,180,13,1,0,191,1,9,1,0,1,0,182,19,2,0,0,0,0,28,173,0,2,0,0,0,201,2,0,0,0,0,0,0,0,0,0,0,295,6.886699507389163,16.147783251231527,6.921182266009852,18.31527093596059,1.0098522167487685,3.38423645320197,2.0886699507389164,205,88,144,10,35,4,11,0,5,6,0,1,5,1,24,12,4,4,14,5,8,384,116,0,71,429,0,246,254,0,465,35,0,98,402,0,87,11,384,18,0,20,4,4,4,10,19,27,20,15,163,0,0,2,17,20,29,10,9,61,0,0,9,9,16,11,15,3,1,0,2,0,0,0,0,0,198,8,268,0,0,6,0,33,57,140,21,17,76,14,25,7,21,0,63,0,0,270,245,42,69,11,62,8,0,14,0,1,83,10,120,11,0,0,345,89,2,0,7,29,1,1,0,0,0,8,12,8,6,28,30,27,22,65,214,95,32,33,39,29,29,14,15,1,3,0,0,0,0,11,5.0,0.0,4.0,6.0,3.0,8.0,2.0,3.0,5.0,5.0,5.0,2.0,6.0,7.0,6.0,6.0,4.0,4.0,8.0,6.0,7.0,12.0,10.0,5.0,5.0,7.0,1.0,7.0,5.0,11.0,7.0,5.0,1.0,5.0,4.0,3.0,2.0,2.0,4.0,5.0,6.0,1.0,6.0,3.0,8.0,3.0,5.0,4.0,10.0,9.0,8.0,6.0,10.0,16.0,5.0,7.0,8.0,8.0,6.0,4.0,6.0,4.0,16.0,11.0,5.0,9.0,5.0,6.0,5.0,7.0,3.0,6.0,10.0,6.0,3.0,6.0,6.0,2.0,8.0,8.0,5.0,4.0,5.0,6.0,2.0,5.0,1.0,3.0,4.0,0.0,5.0,1.0,0.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,67,311,137,0,18,23,26,28,39,31,22,16,24,31,45,33,42,32,28,30,22,13,11,1,0,0,511,4,0,0,0,511,4,0,0,0,131,1,16,72,27,1,200,67,0,277,236,2,0,0,0,0,0,0,0,0,0,0,4,511,0,5,9,103,2,0,1,125,270,0,66,146,21,12,0,270,0,2.232142857142857,0.0,2.8650306748466257,0.0,7.335922330097087,2,5,38,0,0,0,50,110,0,21,29,4,27,32,21,17,16,21,6,2,4,0,0,0,5,200,5,180,25,174,31,38,167,149,56,19,186,93,112,0,205,175,30,154,51,47,107,33,172,54,151,82,123,105,100,107,98,0,205,67,88,44,6,0,147,58,0,0,0,0,0,0,0,0,0,0,0,205,0,1.3170731707317074,1.195121951219512,0.0,1.0,1.0,61.79512195121952 +PA090109,70108,Los Santos,Guararé,Llano Abajo,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,15,1,226,0,0,0,0,1,0,221,0,1,0,1,0,4,0,0,20,149,50,5,2,0,1,208,10,0,0,0,9,227,0,58,12,1,12,1,0,0,8,203,16,0,0,213,1,9,1,0,3,0,160,57,10,0,0,0,0,38,187,0,2,0,0,0,219,8,0,0,0,0,0,0,0,0,0,0,311,7.0,24.0,7.0,24.0,1.0,3.308370044052864,2.176211453744493,227,130,144,18,20,8,2,4,3,3,1,2,10,2,26,27,7,1,4,3,14,459,90,0,102,447,0,300,249,0,499,50,0,105,444,0,88,17,408,36,0,36,4,5,0,18,18,15,21,19,180,0,0,0,13,14,23,13,17,75,0,0,1,9,15,23,11,12,6,0,1,0,0,0,0,0,264,1,253,0,0,0,1,15,59,133,38,8,74,20,22,16,14,0,119,0,0,303,271,32,121,17,59,27,4,5,0,1,65,5,150,0,0,0,364,100,1,1,9,40,2,1,0,0,0,18,14,2,11,28,60,21,23,88,234,87,37,30,57,53,36,15,9,5,5,2,4,0,0,0,5.0,5.0,4.0,11.0,6.0,2.0,9.0,5.0,4.0,5.0,5.0,7.0,10.0,7.0,2.0,3.0,10.0,6.0,5.0,6.0,8.0,13.0,5.0,10.0,5.0,7.0,8.0,6.0,8.0,11.0,5.0,9.0,4.0,5.0,5.0,6.0,5.0,11.0,2.0,6.0,6.0,5.0,13.0,6.0,7.0,6.0,6.0,12.0,6.0,8.0,8.0,9.0,9.0,10.0,7.0,9.0,5.0,3.0,4.0,11.0,13.0,10.0,5.0,10.0,3.0,8.0,4.0,6.0,2.0,4.0,6.0,2.0,8.0,8.0,7.0,11.0,6.0,4.0,6.0,8.0,7.0,4.0,4.0,3.0,7.0,0.0,1.0,1.0,2.0,3.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,87,360,127,0,31,25,31,30,41,40,28,30,37,38,43,32,41,24,31,35,25,7,2,3,0,0,572,1,1,0,0,572,1,1,0,0,205,2,14,77,32,1,156,87,0,329,245,0,0,0,1,0,0,0,0,0,0,0,8,565,0,4,60,102,0,0,2,181,225,0,73,156,11,7,0,327,0,1.9193548387096773,0.0,2.462365591397849,0.0,7.411149825783972,2,26,50,0,0,2,67,80,0,16,27,7,18,32,42,27,17,17,11,5,4,3,0,1,0,217,10,206,21,203,24,30,197,179,48,36,191,154,73,2,225,198,29,189,38,75,114,45,182,116,111,109,118,99,128,96,131,3,224,58,131,28,10,0,170,57,0,0,1,0,0,0,0,0,0,0,2,224,0,1.3348017621145374,1.193832599118943,0.0,1.0,1.0,57.48017621145375 +PA090102,70109,Los Santos,Guararé,El Hato,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,68,1,134,1,0,0,0,1,0,135,0,0,0,1,0,0,0,0,33,50,53,0,0,0,0,127,5,1,0,0,3,136,0,62,8,2,10,5,0,2,2,124,8,0,0,121,3,8,4,0,0,0,114,21,1,0,0,0,0,11,122,0,3,0,0,0,124,7,2,0,2,0,0,0,1,0,0,0,223,7.0,23.72519083969466,7.0,23.72519083969466,1.0,3.551470588235294,2.1838235294117645,136,69,101,2,24,8,12,6,0,9,0,0,2,0,3,2,1,1,4,3,8,256,98,0,28,326,0,138,216,0,334,20,0,55,299,0,50,5,284,15,0,15,4,2,0,14,14,18,8,14,141,0,0,0,5,9,17,3,6,56,0,0,0,2,5,6,11,2,1,0,1,0,0,0,0,0,134,3,188,0,1,2,0,11,28,120,26,3,42,12,13,2,6,0,62,0,0,184,185,24,34,3,62,14,0,0,0,2,51,3,148,1,0,0,241,58,0,0,10,15,0,1,0,0,0,6,7,3,6,12,44,25,11,23,180,69,21,17,27,20,16,5,10,2,0,0,1,0,0,1,4.0,3.0,2.0,6.0,4.0,5.0,1.0,8.0,5.0,6.0,1.0,3.0,5.0,3.0,1.0,2.0,4.0,3.0,2.0,2.0,2.0,3.0,5.0,9.0,11.0,4.0,3.0,8.0,4.0,5.0,6.0,5.0,4.0,0.0,6.0,2.0,3.0,4.0,1.0,2.0,4.0,3.0,3.0,6.0,2.0,6.0,4.0,3.0,9.0,6.0,5.0,4.0,6.0,10.0,6.0,5.0,5.0,7.0,2.0,2.0,5.0,4.0,6.0,3.0,6.0,5.0,6.0,7.0,5.0,5.0,3.0,2.0,5.0,4.0,6.0,1.0,4.0,7.0,3.0,4.0,1.0,2.0,3.0,0.0,3.0,1.0,2.0,0.0,0.0,2.0,1.0,2.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,57,222,90,0,19,25,13,13,30,24,21,12,18,28,31,21,24,28,20,19,9,5,6,3,0,0,368,1,0,0,0,368,1,0,0,0,136,0,25,26,22,1,102,57,0,268,100,1,0,0,2,0,0,0,0,0,0,0,0,367,0,3,2,76,0,6,0,117,165,0,40,100,13,0,0,216,0,2.03680981595092,0.0,2.754237288135593,0.0,6.86449864498645,2,1,31,0,5,0,39,58,0,13,24,8,17,19,25,10,5,5,3,5,0,1,1,0,0,133,3,122,14,119,17,32,104,110,26,9,127,71,65,2,134,112,24,118,18,43,75,13,123,42,94,56,80,46,90,69,67,1,135,30,67,38,1,0,96,40,0,0,1,0,0,0,0,0,0,0,0,135,0,1.3529411764705883,1.3602941176470589,0.0,1.2,1.2,58.59558823529412 +PA090110,70110,Los Santos,Guararé,Perales,217,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,39,2,162,1,1,0,0,1,0,155,0,0,1,0,2,6,0,1,148,2,14,0,1,0,0,151,2,0,1,0,11,165,0,27,7,2,16,3,0,4,7,146,8,0,0,144,2,11,2,0,5,1,149,15,1,0,0,0,0,61,99,0,5,0,0,0,151,12,0,0,0,0,0,0,1,1,0,0,220,6.852760736196319,18.104294478527606,7.0,23.196319018404907,1.018181818181818,3.4606060606060605,2.096969696969697,168,76,124,9,23,2,3,2,1,2,3,0,6,0,19,18,3,3,4,3,14,350,60,0,122,288,0,326,84,0,384,26,0,108,302,0,98,10,292,10,0,14,5,5,2,5,7,14,9,13,110,0,0,2,8,11,30,9,11,45,1,5,11,12,17,24,18,10,7,1,4,0,0,0,0,0,165,15,204,0,1,10,0,36,66,84,11,7,85,8,26,8,15,0,38,0,0,231,188,60,43,10,60,4,0,2,1,1,49,7,85,0,0,0,227,81,2,10,13,45,4,2,0,0,1,8,22,12,16,29,35,20,8,29,166,61,24,25,34,24,32,19,14,10,6,2,1,0,1,0,1.0,2.0,2.0,4.0,5.0,4.0,5.0,3.0,2.0,7.0,4.0,5.0,3.0,6.0,5.0,2.0,7.0,5.0,7.0,7.0,2.0,6.0,4.0,6.0,5.0,6.0,5.0,4.0,1.0,6.0,3.0,5.0,4.0,2.0,5.0,6.0,10.0,2.0,6.0,5.0,4.0,5.0,7.0,3.0,6.0,2.0,3.0,6.0,6.0,8.0,6.0,7.0,4.0,11.0,6.0,4.0,6.0,5.0,5.0,7.0,9.0,2.0,3.0,5.0,7.0,7.0,8.0,6.0,4.0,9.0,3.0,6.0,6.0,3.0,6.0,2.0,3.0,2.0,7.0,2.0,4.0,5.0,2.0,4.0,2.0,1.0,1.0,2.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,58,258,103,0,14,21,23,28,23,22,19,29,25,25,34,27,26,34,24,16,17,6,4,2,0,0,414,3,2,0,0,414,3,2,0,0,73,3,8,95,26,5,151,58,0,200,218,1,0,0,0,0,0,0,0,5,0,0,3,411,0,1,2,39,0,0,0,74,303,0,80,139,29,12,0,159,0,2.1436781609195403,0.0,2.8015873015873014,0.0,8.964200477326969,1,0,16,0,0,0,24,127,0,18,18,4,13,24,21,18,10,13,10,4,6,6,1,2,0,160,8,141,27,127,41,31,137,133,35,31,137,65,103,1,167,151,17,127,41,42,85,46,122,78,90,60,108,83,85,69,99,1,167,58,85,19,6,0,113,55,0,0,0,0,0,0,0,0,0,0,2,166,0,1.375,1.119047619047619,0.0,1.0,1.0,58.32142857142857 +PA090214,70201,Los Santos,Las Tablas,Las Tablas,4000,1,133,13,0,3,20,2,0,0,0,6,2,4,0,2947,155,4,4,3086,20,0,0,0,3,1,3094,0,0,5,1,4,6,0,0,2925,168,14,1,1,0,1,3039,5,20,0,0,46,3110,0,636,47,202,116,36,0,553,691,1702,148,15,1,3070,6,17,4,0,13,0,2964,13,129,4,0,0,0,2167,935,1,7,0,0,2849,17,118,7,0,0,0,0,0,117,2,0,4166,18,6.700402144772118,17.68699731903485,6.871648793565684,20.25435656836461,1.0106109324758843,3.970739549839229,2.5784565916398714,3147,1455,2363,122,451,146,147,106,36,118,19,44,467,34,218,77,38,68,65,29,81,7243,1073,0,3440,4876,0,6174,2142,0,7926,390,0,2157,6159,0,1737,420,5970,189,0,197,81,81,24,92,168,210,155,167,1116,0,6,58,166,283,660,216,324,1456,4,45,159,230,400,455,850,253,169,17,253,0,0,3,18,0,3996,280,3529,0,5,113,33,1071,1251,781,136,290,2891,380,459,112,241,4,89,22,4,4215,4440,1326,1404,127,1189,134,0,18,4,7,284,54,1587,177,0,0,3412,2124,74,54,332,1425,127,239,18,0,4,310,689,427,354,792,99,723,232,646,2737,554,381,436,710,849,1088,507,538,281,179,69,62,23,64,177,76.0,82.0,103.0,78.0,72.0,86.0,74.0,89.0,103.0,87.0,78.0,102.0,91.0,95.0,94.0,102.0,94.0,109.0,115.0,122.0,114.0,125.0,137.0,148.0,121.0,141.0,149.0,125.0,113.0,120.0,117.0,86.0,104.0,118.0,101.0,122.0,123.0,127.0,108.0,116.0,122.0,120.0,113.0,108.0,96.0,96.0,101.0,112.0,106.0,124.0,125.0,115.0,123.0,122.0,98.0,111.0,95.0,124.0,109.0,127.0,112.0,99.0,123.0,100.0,108.0,98.0,100.0,82.0,101.0,96.0,72.0,81.0,80.0,94.0,81.0,67.0,53.0,60.0,55.0,43.0,54.0,40.0,60.0,39.0,38.0,25.0,46.0,25.0,19.0,18.0,10.0,14.0,13.0,7.0,9.0,7.0,4.0,4.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1310,5746,1599,0,411,439,460,542,645,648,526,596,559,539,583,566,542,477,408,278,231,133,53,17,2,0,8340,188,115,12,0,8347,205,91,12,0,1814,100,298,1743,356,171,2863,1310,0,2205,6298,152,0,54,240,8,0,0,0,5,1,0,140,8207,0,107,101,179,23,4,7,737,7497,0,2195,2166,1173,97,12,3012,0,1.6988551518168242,0.0,2.3391459074733096,0.0,10.3578278451762,37,35,72,6,2,4,326,2665,0,61,75,64,115,226,339,433,312,513,326,224,125,146,61,100,23,3109,38,3032,115,2945,202,725,2422,2940,207,1596,1551,1796,1351,862,2285,3030,117,2859,288,2148,711,1380,1767,2416,731,1699,1448,256,2891,362,2785,15,3132,796,1510,717,124,33,1677,1470,0,7,53,3,0,0,0,2,0,0,57,3025,0,1.3254716981132075,1.3962264150943395,1.1666666666666667,1.05,1.05,55.48585954877661 +PA090201,70202,Los Santos,Las Tablas,Bajo Corral,310,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,41,3,193,1,0,0,0,3,0,188,0,0,3,0,0,6,0,0,98,5,81,2,9,0,2,190,2,0,0,0,5,197,0,72,3,0,30,11,0,1,4,175,17,0,0,159,10,23,5,0,0,0,184,8,5,0,0,0,0,24,163,0,10,0,0,0,185,11,0,0,0,0,0,0,0,1,0,0,313,6.88265306122449,22.918367346938776,7.0,24.0,1.0,3.4568527918781724,2.3197969543147208,197,102,100,10,25,4,11,0,3,5,1,2,3,2,10,8,5,2,2,0,3,373,85,0,57,401,0,199,259,0,433,25,0,75,383,0,61,14,367,16,0,17,3,2,2,8,8,31,11,18,177,0,0,0,13,16,34,7,10,60,1,2,2,7,5,3,14,5,0,0,2,0,0,0,0,0,223,3,210,0,0,1,0,38,46,80,15,31,53,52,8,7,7,0,97,0,0,268,197,20,95,7,93,0,0,9,0,0,74,5,79,4,0,0,335,71,0,4,4,21,0,1,0,0,0,6,8,8,3,9,29,62,5,96,137,97,33,40,57,43,23,11,9,5,3,2,0,0,1,4,3.0,0.0,1.0,3.0,5.0,2.0,2.0,5.0,3.0,5.0,1.0,9.0,5.0,4.0,3.0,5.0,7.0,6.0,3.0,5.0,5.0,7.0,8.0,3.0,5.0,6.0,5.0,4.0,3.0,4.0,5.0,6.0,3.0,2.0,1.0,3.0,2.0,2.0,4.0,3.0,6.0,5.0,9.0,7.0,4.0,3.0,6.0,6.0,8.0,7.0,11.0,8.0,7.0,6.0,7.0,10.0,2.0,7.0,5.0,3.0,5.0,6.0,5.0,8.0,3.0,9.0,5.0,11.0,4.0,8.0,13.0,10.0,6.0,8.0,8.0,5.0,6.0,4.0,10.0,8.0,8.0,4.0,7.0,3.0,1.0,2.0,2.0,1.0,4.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,51,261,153,0,12,17,22,26,28,22,17,14,31,30,39,27,27,37,45,33,23,12,2,1,0,0,464,1,0,0,0,464,1,0,0,0,175,2,20,50,30,3,134,51,0,269,193,3,0,0,5,0,0,0,0,0,0,0,5,455,0,4,8,21,3,3,0,98,328,0,60,145,38,1,0,221,0,2.3475935828877006,0.0,2.7828947368421053,0.0,7.298924731182796,1,3,9,2,2,0,35,145,0,7,25,13,20,40,28,13,13,17,7,7,2,0,0,2,3,195,2,183,14,178,19,26,171,156,41,13,184,142,55,6,191,172,25,165,32,103,62,23,174,83,114,49,148,75,122,67,130,1,196,67,88,37,5,0,155,42,0,0,2,0,0,0,0,0,0,0,2,193,0,1.3604060913705585,1.0,0.0,1.0,1.0,61.12182741116752 +PA090202,70203,Los Santos,Las Tablas,Bayano,434,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,122,1,236,10,0,0,0,1,0,176,0,1,51,0,0,18,0,1,3,14,204,21,2,0,3,198,40,2,0,0,7,247,0,138,11,1,26,12,0,0,5,230,12,0,0,169,40,28,4,1,5,0,244,2,0,0,0,1,0,25,198,0,24,0,0,0,172,68,0,0,2,0,3,0,2,0,0,0,435,6.633333333333334,23.02083333333333,6.95,23.816666666666663,1.0040485829959511,3.1214574898785425,1.9959514170040489,248,116,154,12,43,11,4,3,0,9,1,2,5,0,13,15,4,2,6,3,5,492,89,0,37,544,0,239,342,0,506,75,0,112,469,0,96,16,419,50,0,50,6,7,1,14,26,42,30,20,162,0,0,0,13,28,42,10,14,70,0,0,6,4,9,10,7,2,3,0,3,0,0,0,2,0,276,13,254,0,1,7,2,24,64,130,30,6,67,32,30,12,5,0,139,0,2,335,273,34,142,12,95,2,0,0,2,7,78,7,118,0,0,0,427,81,0,2,9,17,3,2,2,0,2,5,14,2,11,16,48,51,7,133,255,109,35,62,61,32,25,11,9,3,2,0,2,1,1,0,9.0,7.0,5.0,6.0,5.0,4.0,10.0,6.0,7.0,6.0,14.0,3.0,8.0,6.0,8.0,9.0,6.0,9.0,6.0,6.0,7.0,7.0,2.0,9.0,6.0,6.0,2.0,9.0,10.0,8.0,8.0,8.0,9.0,6.0,5.0,5.0,3.0,13.0,7.0,5.0,6.0,9.0,7.0,8.0,2.0,6.0,7.0,9.0,4.0,6.0,12.0,6.0,12.0,8.0,9.0,5.0,12.0,5.0,8.0,9.0,5.0,6.0,5.0,10.0,6.0,14.0,8.0,13.0,6.0,7.0,4.0,6.0,8.0,7.0,6.0,6.0,3.0,6.0,4.0,3.0,7.0,3.0,11.0,2.0,3.0,4.0,3.0,1.0,6.0,3.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,104,353,151,0,32,33,39,36,31,35,36,33,32,32,47,39,32,48,31,22,26,17,6,1,0,0,604,3,0,1,0,604,3,0,1,0,213,5,111,55,25,3,92,104,0,392,213,3,0,2,1,0,0,0,0,0,0,0,2,603,0,0,20,101,1,0,1,118,367,0,56,140,23,4,3,382,0,2.6352459016393444,0.0,3.368131868131868,0.0,6.440789473684211,0,8,46,1,0,0,56,137,0,12,30,18,36,49,37,27,15,10,6,1,2,1,2,2,0,230,18,163,85,177,71,30,218,118,130,9,239,136,112,1,247,222,26,150,98,59,91,11,237,43,205,61,187,170,78,145,103,2,246,84,100,59,5,0,181,67,0,0,1,0,0,0,0,0,0,0,1,246,0,1.3508064516129032,1.1008064516129032,0.0,1.0,1.0,58.24596774193548 +PA090203,70204,Los Santos,Las Tablas,El Carate,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,40,5,462,3,0,0,0,4,1,462,0,1,0,0,3,1,0,3,407,32,23,2,2,0,4,450,4,6,0,0,10,470,0,83,23,18,20,10,0,102,45,317,6,0,0,437,5,22,2,0,4,0,369,14,87,0,0,0,0,234,228,0,8,0,0,456,0,7,1,0,0,0,0,0,2,4,0,0,624,6.462203023758099,18.585313174946005,6.76889848812095,22.095032397408207,1.002127659574468,3.729787234042553,2.4382978723404256,471,279,368,24,62,23,23,11,9,11,7,3,10,7,36,11,9,12,17,3,9,1061,176,0,488,749,0,829,408,0,1172,65,0,311,926,0,242,69,893,33,0,36,6,23,3,13,32,41,27,28,220,0,0,5,36,55,69,19,34,218,1,0,22,39,62,96,92,18,19,2,21,0,0,0,0,0,579,23,547,0,0,9,3,89,179,211,49,19,355,41,66,36,57,0,41,2,1,647,661,195,188,41,157,15,0,2,1,0,70,8,374,2,0,0,554,292,5,9,59,197,17,16,0,0,1,22,94,54,47,92,33,92,53,114,549,105,56,63,85,100,130,65,83,36,18,1,9,2,4,2,13.0,13.0,17.0,28.0,14.0,8.0,21.0,9.0,22.0,14.0,14.0,15.0,10.0,13.0,27.0,15.0,13.0,17.0,17.0,22.0,15.0,20.0,20.0,25.0,15.0,18.0,16.0,17.0,19.0,28.0,24.0,26.0,17.0,23.0,17.0,19.0,22.0,15.0,19.0,17.0,22.0,11.0,24.0,18.0,16.0,11.0,14.0,16.0,15.0,20.0,17.0,18.0,17.0,10.0,14.0,11.0,18.0,18.0,8.0,18.0,10.0,10.0,14.0,13.0,20.0,17.0,15.0,9.0,14.0,10.0,10.0,10.0,13.0,10.0,5.0,3.0,9.0,10.0,5.0,7.0,6.0,9.0,8.0,3.0,6.0,5.0,6.0,2.0,2.0,6.0,4.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,238,859,211,0,85,74,79,84,95,98,107,92,91,76,76,73,67,65,48,34,32,21,10,1,0,0,1285,12,10,1,0,1286,13,8,1,0,355,15,63,271,54,21,291,238,0,518,778,12,0,0,8,0,0,0,0,0,0,0,34,1266,0,11,0,30,0,0,0,62,1205,0,326,409,93,8,3,469,0,1.6143344709897611,0.0,2.2797029702970297,0.0,9.422018348623851,4,0,13,0,0,0,33,421,0,36,25,15,25,50,50,40,43,73,42,26,18,14,5,9,0,460,11,444,27,426,45,86,385,405,66,173,298,236,235,38,433,437,34,411,60,250,161,173,298,324,147,265,206,69,402,84,387,4,467,97,268,93,13,0,266,205,0,0,2,0,0,0,0,0,0,0,10,459,0,1.3736730360934182,1.4033970276008492,0.0,1.0,1.0,51.66454352441614 +PA090204,70205,Los Santos,Las Tablas,El Cocal,1141,3,0,0,0,0,0,0,0,0,0,0,0,0,0,103,684,78,8,853,12,0,0,0,7,1,851,0,0,7,2,0,6,0,7,746,87,20,4,6,0,10,852,7,1,0,0,13,873,0,101,89,21,55,5,0,133,98,611,29,2,0,788,2,37,13,0,33,0,772,30,70,0,0,0,1,454,402,1,14,0,2,841,4,19,1,0,0,0,0,0,2,3,3,0,1144,5.576388888888889,12.337962962962964,6.505787037037037,18.65740740740741,1.009163802978236,3.6689576174112255,2.3516609392898054,881,450,699,68,88,31,33,16,10,21,2,11,18,5,64,18,11,12,27,9,14,1989,248,0,759,1478,0,1446,791,0,2101,136,0,599,1638,0,489,110,1566,72,0,83,22,26,9,41,52,71,72,48,379,0,0,13,57,71,155,62,75,375,1,3,39,85,98,100,182,47,21,0,45,0,0,0,5,0,1054,60,951,0,1,29,12,156,353,313,89,40,668,79,102,53,161,1,36,4,5,1121,1212,310,360,59,358,14,2,0,6,3,121,10,484,17,0,0,1050,553,16,10,75,303,10,43,5,0,6,74,139,105,77,201,59,207,66,180,854,206,113,144,178,212,236,118,126,54,38,9,13,5,10,17,20.0,31.0,19.0,26.0,35.0,26.0,21.0,33.0,28.0,29.0,42.0,23.0,32.0,31.0,28.0,29.0,26.0,21.0,33.0,25.0,39.0,38.0,39.0,39.0,26.0,32.0,27.0,44.0,28.0,27.0,35.0,28.0,39.0,35.0,24.0,35.0,28.0,34.0,31.0,34.0,30.0,36.0,37.0,30.0,30.0,37.0,34.0,30.0,32.0,23.0,24.0,33.0,41.0,34.0,28.0,31.0,32.0,37.0,24.0,24.0,27.0,19.0,37.0,21.0,32.0,27.0,25.0,21.0,19.0,11.0,21.0,22.0,19.0,15.0,11.0,16.0,16.0,17.0,19.0,13.0,14.0,9.0,10.0,6.0,8.0,6.0,2.0,0.0,5.0,5.0,1.0,1.0,2.0,1.0,5.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,424,1559,350,0,131,137,156,134,181,158,161,162,163,156,160,148,136,103,88,81,47,18,10,3,0,0,2304,17,12,0,0,2304,18,11,0,0,613,34,129,389,73,26,646,423,0,783,1535,15,0,12,14,1,0,0,0,1,0,1,13,2291,0,90,45,201,2,7,1,291,1696,0,590,619,150,18,2,954,0,1.6782039289055193,0.0,2.372972972972973,0.0,9.324903557651092,42,19,86,2,2,0,123,607,0,39,56,25,51,88,104,105,68,137,83,44,23,32,6,18,2,872,9,827,54,801,80,158,723,792,89,362,519,482,399,110,771,837,44,778,103,417,361,322,559,565,316,407,474,149,732,159,722,8,873,211,488,162,20,0,548,333,0,1,6,0,0,0,0,0,0,1,4,869,0,1.2724177071509648,1.3757094211123724,1.25,1.0666666666666669,1.0666666666666669,53.037457434733255 +PA090205,70206,Los Santos,Las Tablas,El Manantial,873,6,0,6,0,0,0,0,0,0,0,0,3,0,0,90,422,18,1,523,7,0,0,0,0,1,517,3,0,4,0,2,3,0,2,384,121,11,3,0,0,12,517,3,4,0,0,7,531,0,224,43,36,36,15,0,151,67,287,25,1,0,504,1,16,5,0,5,0,452,14,65,0,0,0,0,334,192,1,4,0,0,96,343,92,0,0,0,0,0,0,0,0,0,0,888,6.943502824858757,23.220338983050848,6.975517890772128,23.58003766478343,1.015065913370998,3.5819209039548023,2.3559322033898304,542,320,401,62,60,18,16,3,12,11,11,9,29,3,28,10,4,15,19,0,5,1267,145,0,508,904,0,1189,223,0,1324,88,0,392,1020,0,334,58,980,40,0,42,18,19,6,33,36,43,46,34,214,0,0,2,36,61,81,37,42,213,1,1,37,57,62,97,105,33,20,3,32,0,0,1,0,0,715,27,541,0,1,9,6,107,209,155,47,23,480,51,92,30,18,0,52,11,3,738,759,206,290,35,159,42,0,1,4,2,56,12,341,13,0,0,619,327,2,12,56,222,17,28,0,0,3,42,95,74,62,138,49,96,57,126,567,93,58,64,97,148,187,68,96,46,24,10,11,7,8,13,18.0,22.0,28.0,17.0,24.0,24.0,13.0,23.0,23.0,22.0,25.0,17.0,14.0,21.0,16.0,14.0,16.0,19.0,15.0,14.0,17.0,21.0,19.0,26.0,16.0,27.0,23.0,27.0,25.0,32.0,29.0,25.0,17.0,32.0,30.0,27.0,27.0,33.0,18.0,29.0,19.0,29.0,16.0,21.0,15.0,20.0,15.0,10.0,20.0,14.0,14.0,19.0,18.0,24.0,11.0,12.0,13.0,16.0,18.0,12.0,19.0,12.0,14.0,19.0,12.0,15.0,9.0,15.0,9.0,11.0,7.0,10.0,12.0,12.0,9.0,9.0,10.0,11.0,6.0,4.0,2.0,8.0,3.0,8.0,5.0,4.0,2.0,4.0,0.0,3.0,1.0,2.0,4.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,307,990,200,0,109,105,93,78,99,134,133,134,100,79,86,71,76,59,50,40,26,13,9,3,0,0,1443,39,12,3,0,1443,41,10,3,0,425,13,31,269,38,14,400,307,0,403,1060,34,0,0,19,1,0,0,0,1,1,0,19,1456,0,9,24,85,2,1,3,128,1245,0,430,402,91,12,15,547,0,1.6009104704097117,0.0,2.2472647702407,0.0,9.36005344021376,3,6,36,1,1,2,65,428,0,12,12,6,21,41,45,76,59,103,65,37,13,15,9,17,8,536,6,520,22,501,41,96,446,504,38,256,286,303,239,87,455,514,28,484,58,279,205,229,313,461,81,357,185,47,495,59,483,3,539,101,318,95,28,0,366,176,0,0,6,1,0,0,0,0,1,0,3,531,0,1.3616236162361623,1.400369003690037,1.3333333333333333,1.0769230769230769,1.0769230769230769,48.798892988929886 +PA090206,70207,Los Santos,Las Tablas,El Muñoz,212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,7,0,146,0,0,0,0,0,0,142,0,2,0,0,0,1,0,1,116,14,9,2,5,0,0,143,2,0,0,0,1,146,0,46,6,4,3,8,0,7,7,121,11,0,0,139,1,4,1,0,1,0,144,1,1,0,0,0,0,37,106,0,3,0,0,0,137,7,1,1,0,0,0,0,0,0,0,0,213,6.9375,19.68055555555556,7.0,23.20833333333333,1.0068493150684932,3.76027397260274,2.410958904109589,147,71,122,10,22,10,8,1,0,3,2,0,3,1,7,1,2,1,10,0,1,316,67,0,85,298,0,224,159,0,353,30,0,89,294,0,78,11,278,16,0,18,3,3,1,12,7,20,11,13,93,0,0,0,10,23,31,11,14,49,0,0,6,11,7,12,16,5,1,0,6,0,0,0,0,0,159,8,197,0,0,4,3,27,59,73,23,15,74,16,15,6,36,0,18,0,0,188,212,45,45,8,57,6,1,3,0,1,26,7,93,7,0,0,251,72,0,1,3,31,1,5,0,0,0,10,8,10,13,23,14,31,13,45,166,39,15,40,34,33,27,13,12,9,3,1,1,0,0,7,3.0,7.0,3.0,4.0,0.0,6.0,3.0,5.0,2.0,3.0,3.0,9.0,4.0,3.0,8.0,8.0,8.0,5.0,7.0,5.0,9.0,11.0,8.0,5.0,2.0,2.0,6.0,1.0,5.0,4.0,8.0,1.0,11.0,6.0,3.0,2.0,3.0,5.0,2.0,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,5.0,6.0,5.0,4.0,4.0,13.0,7.0,8.0,6.0,4.0,4.0,13.0,9.0,5.0,5.0,5.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,6.0,5.0,7.0,3.0,2.0,5.0,5.0,5.0,4.0,2.0,4.0,5.0,2.0,4.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,63,260,77,0,17,19,27,33,35,18,29,15,16,22,36,36,20,11,23,21,18,2,1,1,0,0,397,2,1,0,0,397,2,1,0,0,107,1,12,55,30,3,129,63,0,256,142,2,0,0,9,0,0,0,0,0,0,0,1,390,0,2,10,11,0,0,1,107,269,0,73,106,22,8,0,191,0,1.8666666666666667,0.0,2.687022900763359,0.0,7.92,2,3,2,0,0,0,37,103,0,10,11,7,12,23,24,17,6,13,8,6,1,4,2,1,2,144,3,134,13,130,17,26,121,115,32,24,123,95,52,2,145,134,13,127,20,59,68,29,118,57,90,61,86,58,89,53,94,0,147,35,76,32,4,0,90,57,0,0,2,0,0,0,0,0,0,0,1,144,0,1.2789115646258504,1.4421768707482994,0.0,1.0,1.0,57.49659863945578 +PA090207,70208,Los Santos,Las Tablas,El Pedregoso,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,9,0,118,0,0,0,0,0,0,116,0,0,1,0,0,0,0,1,108,0,7,0,1,0,2,115,3,0,0,0,0,118,0,49,17,1,5,3,0,0,6,108,4,0,0,116,0,1,0,0,1,0,115,1,2,0,0,0,0,25,93,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,193,6.898305084745763,23.771186440677965,7.0,24.0,1.0,3.830508474576271,2.5254237288135597,118,63,73,4,13,5,3,1,1,3,2,1,0,1,12,3,2,2,4,5,8,233,42,0,66,209,0,151,124,0,260,15,0,55,220,0,50,5,211,9,0,9,1,2,0,3,7,9,7,8,95,0,0,5,7,13,14,7,6,31,0,0,3,10,10,13,6,5,1,0,3,0,0,0,0,0,114,2,144,0,0,1,1,29,31,60,14,10,63,4,24,10,7,0,6,0,1,142,146,41,26,10,32,2,0,3,1,0,32,5,53,0,0,0,173,39,5,1,16,23,0,3,0,0,1,6,12,10,4,12,3,17,17,34,92,41,14,16,32,22,40,18,7,3,3,0,0,0,0,0,5.0,1.0,5.0,2.0,1.0,0.0,3.0,2.0,5.0,4.0,2.0,2.0,4.0,3.0,2.0,5.0,1.0,4.0,2.0,4.0,0.0,3.0,1.0,4.0,0.0,4.0,2.0,2.0,2.0,1.0,5.0,1.0,8.0,1.0,3.0,2.0,3.0,3.0,5.0,3.0,2.0,4.0,5.0,6.0,5.0,7.0,4.0,2.0,2.0,4.0,3.0,5.0,1.0,4.0,3.0,4.0,5.0,6.0,7.0,2.0,4.0,3.0,5.0,2.0,4.0,10.0,6.0,2.0,5.0,2.0,4.0,1.0,5.0,4.0,7.0,6.0,0.0,3.0,5.0,0.0,3.0,2.0,0.0,1.0,4.0,2.0,3.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,41,168,79,0,14,14,13,16,8,11,18,16,22,19,16,24,18,25,21,14,10,6,1,2,0,0,287,0,0,1,0,287,0,0,1,0,73,5,23,68,14,1,63,41,0,152,136,0,0,0,0,0,0,0,0,0,0,0,8,280,0,0,0,25,0,0,0,48,215,0,56,101,35,0,0,96,0,2.05925925925926,0.0,2.649484536082474,0.0,8.0625,0,0,13,0,0,0,26,79,0,4,9,2,5,16,15,21,12,19,8,3,2,2,0,0,0,118,0,111,7,105,13,25,93,102,16,18,100,77,41,0,118,108,10,108,10,49,59,25,93,58,60,58,60,46,72,53,65,2,116,30,61,26,1,0,93,25,0,0,0,0,0,0,0,0,0,0,3,115,0,1.2033898305084745,1.2372881355932204,0.0,1.0,1.0,59.96610169491525 +PA090208,70209,Los Santos,Las Tablas,La Laja,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,238,0,0,238,2,0,0,0,0,0,238,0,0,1,0,0,0,0,1,212,23,4,0,0,0,1,237,0,0,0,0,3,240,0,96,12,8,15,12,0,16,12,202,9,1,0,221,0,13,0,0,6,0,216,16,8,0,0,0,0,145,93,2,0,0,0,150,75,15,0,0,0,0,0,0,0,0,0,0,383,6.645833333333333,23.9875,6.65,24.0,1.0041666666666669,4.116666666666666,2.675,241,132,152,14,29,6,11,3,1,6,1,2,5,2,12,7,4,2,11,3,7,496,88,0,192,392,0,393,191,0,558,26,0,130,454,0,105,25,440,14,0,15,4,7,4,6,11,10,10,9,110,0,0,3,8,17,40,15,20,135,0,4,2,12,21,18,33,51,5,0,14,0,0,0,0,0,289,3,260,0,0,1,0,77,81,81,17,4,153,28,60,11,15,0,22,3,0,290,315,95,58,14,119,3,0,3,0,1,37,5,109,1,0,0,252,143,3,10,22,104,4,14,0,0,0,22,34,23,24,44,24,62,22,37,203,51,22,41,64,58,59,31,40,17,6,5,6,0,1,1,6.0,3.0,9.0,3.0,3.0,5.0,6.0,6.0,6.0,6.0,5.0,8.0,10.0,7.0,2.0,4.0,7.0,8.0,8.0,5.0,4.0,7.0,11.0,3.0,5.0,11.0,7.0,8.0,6.0,6.0,4.0,13.0,8.0,7.0,6.0,6.0,11.0,6.0,7.0,7.0,10.0,12.0,5.0,6.0,6.0,7.0,6.0,13.0,11.0,9.0,7.0,9.0,10.0,12.0,9.0,7.0,12.0,6.0,5.0,7.0,10.0,8.0,8.0,9.0,7.0,11.0,10.0,12.0,9.0,8.0,5.0,6.0,7.0,12.0,3.0,2.0,6.0,3.0,9.0,3.0,7.0,3.0,1.0,3.0,2.0,1.0,0.0,1.0,2.0,2.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,85,386,134,0,24,29,32,32,30,38,38,37,39,46,47,37,42,50,33,23,16,6,5,1,0,0,592,11,2,0,0,592,11,2,0,0,158,5,0,136,23,1,197,85,0,280,315,10,0,2,4,0,0,0,0,0,0,0,5,594,0,21,2,24,0,4,0,42,512,0,147,168,73,5,1,211,0,1.7447552447552448,0.0,2.437185929648241,0.0,10.04793388429752,6,1,13,0,3,0,19,199,0,4,16,7,18,26,32,31,17,37,22,10,5,9,2,5,0,241,0,235,6,224,17,51,190,223,18,94,147,127,114,39,202,226,15,229,12,127,102,91,150,160,81,132,109,33,208,55,186,2,239,62,135,37,7,0,146,95,0,2,2,0,0,0,0,0,0,0,2,235,0,1.2033195020746887,1.3070539419087135,0.0,1.1111111111111112,1.1111111111111112,56.60995850622407 +PA090209,70210,Los Santos,Las Tablas,La Miel,150,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,72,25,0,95,2,0,0,0,0,0,89,0,0,2,0,0,6,0,0,5,3,89,0,0,0,0,91,6,0,0,0,0,97,0,38,2,0,8,6,0,0,6,82,9,0,0,85,6,4,1,0,1,0,94,1,0,0,0,1,1,18,75,0,4,0,0,0,90,5,1,0,0,0,0,0,0,1,0,0,152,6.88421052631579,24.0,6.926315789473684,24.0,1.0103092783505154,3.381443298969072,2.329896907216495,99,53,56,5,12,6,5,2,1,2,0,1,1,0,13,0,0,0,2,4,4,193,46,0,28,211,0,61,178,0,213,26,0,43,196,0,40,3,176,20,0,21,4,3,0,2,6,12,14,4,74,0,0,0,5,8,23,2,11,28,0,0,2,3,5,3,4,1,1,1,2,0,0,0,0,0,117,1,105,0,0,0,0,13,26,47,19,0,31,8,11,5,2,0,61,0,0,137,106,16,49,5,47,1,0,0,0,0,22,5,51,1,0,0,173,38,0,0,3,7,1,1,0,0,0,4,2,4,3,8,30,15,7,45,86,15,11,23,38,31,19,9,7,2,1,0,0,0,0,1,0.0,1.0,0.0,3.0,4.0,3.0,4.0,1.0,2.0,2.0,7.0,1.0,0.0,2.0,1.0,1.0,4.0,3.0,2.0,4.0,4.0,1.0,2.0,3.0,0.0,4.0,6.0,2.0,5.0,1.0,3.0,2.0,3.0,3.0,3.0,4.0,2.0,4.0,1.0,5.0,1.0,3.0,2.0,2.0,1.0,5.0,1.0,2.0,1.0,3.0,4.0,4.0,4.0,5.0,7.0,7.0,5.0,2.0,4.0,5.0,3.0,5.0,3.0,7.0,4.0,2.0,0.0,3.0,3.0,2.0,1.0,5.0,5.0,2.0,1.0,3.0,2.0,1.0,1.0,6.0,0.0,2.0,1.0,1.0,2.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,31,162,50,0,8,12,11,14,10,18,14,16,9,12,24,23,22,10,14,13,6,4,2,1,0,0,240,1,2,0,0,240,1,2,0,0,78,2,31,43,9,0,49,31,0,139,102,2,0,1,4,1,0,0,0,0,0,0,1,236,0,0,0,10,0,0,0,10,223,0,27,53,15,4,1,143,0,2.597938144329897,0.0,3.210526315789474,0.0,7.02880658436214,0,0,5,0,0,0,4,90,0,1,2,0,11,18,21,13,10,13,2,5,0,0,1,0,1,98,1,90,9,82,17,16,83,65,34,9,90,53,46,0,99,86,13,67,32,42,25,13,86,25,74,33,66,58,41,49,50,0,99,30,41,27,1,0,78,21,0,1,1,1,0,0,0,0,0,0,0,96,0,1.383838383838384,1.0707070707070707,0.0,1.125,1.125,56.82828282828283 +PA090210,70211,Los Santos,Las Tablas,La Palma,864,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,68,9,447,3,0,0,0,7,2,450,0,0,3,0,0,4,0,2,250,171,15,17,0,0,6,440,5,1,0,0,13,459,0,317,15,3,71,1,0,1,25,399,32,2,0,414,2,32,6,0,5,0,356,93,10,0,0,0,0,219,231,0,9,0,0,445,0,0,0,0,0,0,0,0,10,4,0,0,866,6.952808988764045,20.878651685393255,6.995505617977528,22.919101123595507,1.0,4.05446623093682,2.747276688453159,459,217,261,13,82,20,34,5,7,10,3,6,3,2,39,12,9,11,13,1,8,887,205,0,256,836,0,546,546,0,1033,59,0,209,883,0,190,19,857,26,0,27,11,13,1,18,20,26,21,27,288,0,0,6,25,34,74,27,44,211,1,1,11,26,34,57,63,11,5,0,10,0,0,0,0,0,445,17,567,0,1,13,0,194,124,210,30,9,206,52,53,22,26,1,95,4,0,571,551,105,144,22,175,7,0,6,0,2,126,7,150,2,0,0,593,276,6,2,23,116,3,10,0,0,0,20,35,21,35,60,54,88,25,124,344,146,68,80,116,118,140,43,36,10,9,3,4,0,3,2,7.0,6.0,9.0,8.0,7.0,12.0,10.0,10.0,15.0,9.0,11.0,12.0,10.0,12.0,13.0,14.0,8.0,12.0,15.0,15.0,8.0,15.0,12.0,9.0,6.0,10.0,13.0,11.0,11.0,8.0,12.0,7.0,5.0,7.0,6.0,9.0,14.0,15.0,13.0,12.0,11.0,9.0,10.0,6.0,8.0,10.0,1.0,8.0,13.0,10.0,12.0,9.0,13.0,15.0,15.0,16.0,14.0,20.0,13.0,9.0,23.0,20.0,19.0,24.0,12.0,13.0,16.0,10.0,27.0,18.0,19.0,17.0,12.0,15.0,18.0,14.0,23.0,22.0,26.0,16.0,12.0,21.0,12.0,7.0,14.0,12.0,5.0,8.0,6.0,2.0,2.0,2.0,6.0,0.0,0.0,4.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,151,587,384,0,37,56,58,64,50,53,37,63,44,42,64,72,98,84,81,101,66,33,10,7,2,0,1118,3,1,0,0,1118,3,1,0,0,238,17,45,268,62,11,330,151,0,702,419,1,0,0,14,1,0,0,0,0,0,0,2,1105,0,13,43,154,7,3,1,420,481,0,179,309,205,15,1,413,0,2.0764705882352943,0.0,2.72,0.0,8.962566844919786,4,22,70,4,2,1,171,185,0,15,25,16,32,56,64,77,46,67,30,5,8,11,2,4,1,449,10,428,31,400,59,119,340,401,58,105,354,269,190,100,359,399,60,407,52,205,202,103,356,223,236,162,297,123,336,121,338,1,458,142,183,130,4,0,288,171,0,0,4,1,0,0,0,0,0,0,0,454,0,1.2440087145969498,1.2004357298474946,1.0,1.0555555555555556,1.0555555555555556,63.37037037037037 +PA090211,70212,Los Santos,Las Tablas,La Tiza,876,0,5,0,0,0,0,0,0,0,0,0,0,0,0,448,224,19,1,685,6,0,0,0,0,1,689,0,0,0,0,0,3,0,0,659,30,2,0,0,0,1,680,0,2,0,0,10,692,0,113,10,60,6,0,0,78,145,459,10,0,0,660,6,11,0,0,15,0,670,10,11,0,0,0,1,354,331,0,6,0,1,250,434,8,0,0,0,0,0,0,0,0,0,81,800,6.764450867052023,19.31791907514451,6.835260115606936,21.258670520231213,1.0,3.550578034682081,2.4002890173410405,692,341,536,45,92,28,35,4,12,20,8,9,19,2,58,15,13,3,15,1,6,1536,247,0,474,1309,0,1320,463,0,1691,92,0,436,1347,0,393,43,1296,51,0,56,17,23,8,22,53,56,35,32,321,0,0,0,44,82,145,48,69,274,0,5,44,59,77,119,117,33,19,3,21,0,0,0,1,0,830,42,779,0,1,20,13,154,276,267,62,20,506,79,96,38,114,1,14,6,4,900,943,225,321,46,215,42,1,2,6,5,91,15,432,20,0,0,878,406,0,10,66,255,16,19,1,0,6,47,98,62,64,148,36,168,74,169,632,167,71,123,162,165,278,83,64,31,26,6,7,4,4,20,21.0,10.0,13.0,16.0,18.0,25.0,22.0,19.0,30.0,18.0,19.0,23.0,20.0,24.0,25.0,22.0,28.0,22.0,22.0,31.0,23.0,26.0,30.0,28.0,27.0,25.0,31.0,29.0,36.0,19.0,33.0,34.0,21.0,31.0,28.0,23.0,16.0,22.0,24.0,28.0,37.0,29.0,27.0,20.0,26.0,12.0,24.0,19.0,26.0,24.0,23.0,24.0,24.0,29.0,22.0,19.0,19.0,19.0,26.0,16.0,17.0,32.0,23.0,18.0,19.0,21.0,18.0,21.0,12.0,18.0,16.0,21.0,16.0,21.0,16.0,3.0,13.0,13.0,14.0,9.0,11.0,13.0,3.0,7.0,6.0,7.0,6.0,4.0,3.0,1.0,2.0,0.0,3.0,3.0,3.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,303,1233,307,0,78,114,111,125,134,140,147,113,139,105,122,99,109,90,90,52,40,21,11,3,0,0,1805,31,6,1,0,1805,34,3,1,0,469,19,128,293,65,14,552,303,0,597,1224,22,0,0,27,0,0,0,0,0,0,0,3,1813,0,0,7,24,2,1,0,12,1797,0,486,494,145,13,1,704,0,1.7762237762237765,0.0,2.5008431703204046,0.0,9.380358111774282,0,2,10,2,1,0,6,671,0,36,25,13,46,71,90,104,59,103,62,32,13,14,12,10,2,685,7,660,32,638,54,119,573,632,60,238,454,354,338,95,597,645,47,636,56,338,298,221,471,488,204,339,353,27,665,50,642,5,687,176,352,143,21,0,400,292,0,0,11,0,0,0,0,0,0,0,1,680,0,1.300578034682081,1.3627167630057804,1.0,1.0,1.0,53.3742774566474 +PA090212,70213,Los Santos,Las Tablas,Las Palmitas,1265,3,26,0,0,0,0,0,0,0,0,0,0,0,0,614,360,22,1,992,4,0,0,0,1,0,989,0,2,3,0,0,2,0,1,942,39,9,1,1,0,5,989,0,0,0,0,8,997,0,188,23,49,29,8,0,249,172,543,33,0,0,947,8,32,6,0,4,0,948,29,19,0,0,0,1,703,286,0,8,0,0,691,279,8,2,0,0,0,0,0,17,0,0,434,860,6.549079754601227,19.54601226993865,6.749488752556237,21.415132924335374,1.0100300902708124,3.9658976930792376,2.448345035105316,1007,532,829,51,106,53,44,17,20,28,5,8,37,6,50,27,10,25,10,5,10,2442,193,0,1181,1454,0,2260,375,0,2509,126,0,790,1845,0,645,145,1793,52,0,59,36,31,1,34,52,90,65,46,361,0,0,4,61,104,160,47,101,426,0,28,82,104,107,220,219,39,69,2,83,0,0,0,4,0,1270,80,1078,0,1,42,21,188,479,316,34,61,956,75,172,36,40,3,45,5,1,1329,1414,486,499,50,252,39,0,6,1,4,102,21,602,6,0,0,1041,687,4,35,83,455,43,77,3,0,1,81,269,139,114,229,38,201,81,197,1018,173,94,128,154,269,326,163,194,109,46,18,25,7,13,6,27.0,25.0,25.0,31.0,27.0,34.0,33.0,25.0,41.0,47.0,40.0,34.0,38.0,31.0,41.0,32.0,35.0,40.0,41.0,51.0,52.0,48.0,42.0,43.0,35.0,45.0,44.0,45.0,40.0,42.0,31.0,53.0,44.0,29.0,44.0,29.0,46.0,47.0,54.0,39.0,30.0,42.0,30.0,37.0,44.0,42.0,40.0,36.0,39.0,32.0,40.0,43.0,33.0,39.0,37.0,38.0,34.0,28.0,36.0,27.0,30.0,23.0,21.0,26.0,37.0,31.0,21.0,20.0,18.0,9.0,22.0,16.0,18.0,15.0,16.0,18.0,14.0,12.0,8.0,13.0,14.0,8.0,9.0,7.0,6.0,6.0,1.0,4.0,2.0,7.0,4.0,3.0,0.0,4.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,499,1915,329,0,135,180,184,199,220,216,201,215,183,189,192,163,137,99,87,65,44,20,11,2,1,0,2677,44,22,0,0,2679,49,15,0,0,694,33,42,499,78,39,860,498,0,911,1810,22,0,1,34,9,0,0,0,0,0,0,32,2667,0,75,29,103,6,1,3,247,2279,0,813,841,184,22,2,881,0,1.6471048513302031,0.0,2.336018411967779,0.0,10.22712358731316,30,10,53,3,1,2,102,806,0,25,33,16,38,57,98,146,105,189,100,54,40,54,26,25,1,1001,6,974,33,940,67,197,810,943,64,494,513,655,352,205,802,965,42,918,89,609,309,467,540,847,160,557,450,155,852,185,822,5,1002,216,563,195,33,0,609,398,0,0,10,3,0,0,0,0,0,0,12,982,0,1.3197616683217477,1.404170804369414,1.0,1.1176470588235294,1.1176470588235294,50.15888778550149 +PA090213,70214,Los Santos,Las Tablas,Las Tablas Abajo,1082,1,0,0,0,0,0,0,0,0,0,0,0,0,0,203,571,11,1,781,4,1,0,0,0,0,778,0,1,6,0,1,0,0,0,702,62,21,0,1,0,0,768,7,2,0,0,9,786,0,140,53,23,76,5,0,252,91,425,17,0,1,748,4,11,7,0,16,0,639,7,137,1,0,0,2,554,224,0,6,2,0,237,533,12,1,0,0,0,0,0,1,0,2,155,928,6.946291560102302,12.707161125319692,6.934782608695652,13.168797953964194,1.0,3.632315521628499,2.213740458015267,786,441,695,39,73,35,17,13,14,20,10,8,17,2,20,14,4,2,22,7,7,1809,244,0,774,1279,0,1089,964,0,1916,137,0,637,1416,0,581,56,1343,73,0,73,40,30,2,41,59,64,56,45,280,0,1,9,52,65,140,40,80,341,0,29,31,42,69,108,226,46,20,3,59,0,0,0,2,0,1026,24,792,0,0,11,6,127,353,249,43,20,709,79,39,40,119,0,51,6,0,1045,1125,349,343,40,288,23,0,0,0,3,70,8,604,5,0,0,857,467,9,30,51,345,22,59,2,0,0,74,191,99,93,168,32,168,78,147,890,123,50,87,126,155,261,123,162,92,35,25,20,6,10,5,30.0,21.0,41.0,25.0,30.0,41.0,33.0,28.0,44.0,35.0,29.0,35.0,28.0,35.0,25.0,34.0,29.0,29.0,36.0,29.0,31.0,32.0,26.0,28.0,33.0,39.0,33.0,26.0,32.0,37.0,34.0,38.0,35.0,32.0,39.0,47.0,36.0,33.0,36.0,39.0,35.0,33.0,33.0,37.0,31.0,23.0,29.0,19.0,31.0,23.0,26.0,23.0,35.0,23.0,30.0,18.0,18.0,21.0,31.0,18.0,15.0,27.0,12.0,17.0,15.0,14.0,14.0,17.0,14.0,19.0,18.0,8.0,13.0,10.0,13.0,13.0,12.0,3.0,5.0,7.0,8.0,5.0,4.0,4.0,6.0,4.0,2.0,2.0,2.0,0.0,1.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,480,1466,224,0,147,181,152,157,150,167,178,191,169,125,137,106,86,78,62,40,27,10,5,2,0,0,2124,16,30,0,0,2124,21,25,0,0,586,10,19,383,36,13,643,480,0,530,1613,27,0,0,33,2,0,0,0,1,1,0,7,2126,0,27,15,88,8,1,2,65,1964,0,627,603,123,9,11,797,0,1.6058394160583942,0.0,2.2743628185907045,0.0,9.482027649769586,13,13,53,6,1,2,30,668,0,36,20,8,29,61,62,99,56,150,88,57,37,43,18,18,4,775,11,760,26,744,42,149,637,729,57,397,389,416,370,175,611,754,32,742,44,505,237,344,442,495,291,489,297,119,667,124,662,13,773,157,479,133,17,0,483,303,0,0,6,1,0,0,0,0,0,0,2,777,0,1.3295165394402035,1.431297709923664,1.0,1.1428571428571428,1.1428571428571428,47.96310432569975 +PA090215,70215,Los Santos,Las Tablas,Nuario,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,17,0,74,0,0,0,0,0,0,58,0,1,10,0,0,5,0,0,0,4,69,1,0,0,0,70,4,0,0,0,0,74,0,67,5,0,6,3,0,0,2,63,9,0,0,53,17,4,0,0,0,0,69,0,5,0,0,0,0,16,53,0,3,2,0,0,51,23,0,0,0,0,0,0,0,0,0,0,155,6.72972972972973,23.83783783783784,6.837837837837838,24.0,1.0135135135135136,3.6486486486486487,2.081081081081081,75,47,39,5,3,0,1,0,0,3,0,0,0,0,6,3,1,1,1,1,1,142,28,0,22,148,0,70,100,0,146,24,0,23,147,0,23,0,130,17,0,18,0,2,0,5,6,17,5,12,48,0,0,1,2,3,3,3,5,27,0,0,0,4,1,4,1,0,2,0,1,0,0,0,0,0,68,0,94,0,0,0,0,16,16,48,10,4,17,5,0,1,0,0,45,0,0,91,82,7,36,1,22,1,0,1,0,0,15,1,45,2,0,0,121,28,1,1,1,6,2,2,0,0,0,2,3,2,0,7,15,6,3,30,70,17,4,10,18,20,14,7,3,3,3,0,0,1,1,2,0.0,1.0,2.0,0.0,1.0,0.0,2.0,1.0,2.0,2.0,1.0,3.0,1.0,3.0,1.0,1.0,3.0,0.0,4.0,3.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,1.0,6.0,0.0,3.0,4.0,0.0,1.0,0.0,4.0,0.0,1.0,1.0,2.0,3.0,4.0,1.0,3.0,3.0,3.0,2.0,1.0,1.0,1.0,2.0,3.0,2.0,1.0,0.0,1.0,1.0,3.0,1.0,3.0,3.0,5.0,4.0,4.0,5.0,3.0,4.0,3.0,2.0,2.0,4.0,3.0,4.0,3.0,6.0,1.0,0.0,0.0,1.0,2.0,2.0,3.0,1.0,1.0,2.0,1.0,0.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,20,100,53,0,4,7,9,11,5,8,8,8,14,8,8,9,21,14,20,4,9,4,2,0,0,0,165,6,2,0,0,165,7,1,0,0,56,0,13,47,9,1,27,20,0,61,104,8,0,0,21,0,0,0,0,0,0,0,1,151,0,0,4,8,1,0,0,10,150,0,18,57,14,1,4,79,0,2.189873417721519,0.0,2.9473684210526314,0.0,6.526011560693641,0,1,4,1,0,0,2,67,0,3,4,2,7,12,12,12,7,5,3,6,0,0,0,1,1,72,3,60,15,59,16,19,56,31,44,3,72,62,13,0,75,71,4,59,16,36,23,11,64,30,45,32,43,37,38,45,30,3,72,21,45,9,0,0,65,10,0,0,4,0,0,0,0,0,0,0,0,71,0,1.2133333333333334,1.0933333333333333,0.0,1.0,1.0,61.76 +PA090216,70216,Los Santos,Las Tablas,Palmira,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,17,2,47,1,1,0,0,1,0,37,9,0,1,0,0,3,0,0,9,4,37,0,0,0,0,49,1,0,0,0,0,50,0,14,3,0,0,0,0,0,0,45,5,0,0,38,6,3,3,0,0,0,47,0,3,0,0,0,0,4,42,0,4,0,0,0,47,1,0,1,0,0,0,0,0,1,0,0,67,6.9375,23.75,7.0,24.0,1.0,2.94,1.9,50,30,36,7,4,1,1,0,0,0,2,0,9,0,4,0,0,0,1,0,1,94,32,0,17,109,0,51,75,0,114,12,0,27,99,0,27,0,89,10,0,10,1,1,0,1,1,3,3,4,38,0,0,0,4,4,11,3,12,18,0,0,3,0,0,2,5,0,0,0,2,0,0,0,0,0,53,1,66,0,0,1,0,6,22,28,6,4,17,3,7,0,3,0,24,0,0,78,62,11,25,3,11,4,0,0,0,5,8,2,42,5,0,0,90,20,0,1,0,7,0,2,0,0,0,2,0,4,6,7,8,3,1,23,67,18,2,11,8,10,10,3,5,1,0,0,0,0,0,5,3.0,7.0,2.0,2.0,2.0,2.0,1.0,0.0,0.0,1.0,2.0,4.0,0.0,1.0,2.0,1.0,3.0,4.0,1.0,4.0,3.0,0.0,4.0,2.0,3.0,3.0,2.0,1.0,1.0,0.0,4.0,4.0,1.0,2.0,0.0,2.0,2.0,4.0,3.0,2.0,3.0,1.0,3.0,2.0,2.0,0.0,0.0,4.0,2.0,3.0,0.0,3.0,0.0,0.0,1.0,1.0,3.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,29,93,18,0,16,4,9,13,12,7,11,13,11,9,4,9,4,8,2,0,2,2,3,1,0,0,135,1,2,2,0,135,3,0,2,0,58,0,7,12,3,3,28,29,0,92,45,3,0,0,4,0,0,0,0,0,0,0,0,136,0,0,0,4,0,0,0,1,135,0,20,31,5,2,0,82,0,2.055555555555556,0.0,2.921052631578948,0.0,7.178571428571429,0,0,2,0,0,0,0,48,0,1,4,3,7,9,5,6,4,6,2,2,0,0,0,0,1,49,1,39,11,43,7,13,37,39,11,5,45,32,18,2,48,43,7,44,6,7,37,7,43,26,24,19,31,28,22,21,29,0,50,13,25,8,4,0,38,12,0,0,1,0,0,0,0,0,0,0,0,49,0,1.56,1.24,0.0,1.0,1.0,52.1 +PA090217,70217,Los Santos,Las Tablas,Peña Blanca,475,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,334,27,9,354,7,0,0,0,9,0,362,0,0,2,0,1,4,0,1,352,8,6,1,0,0,3,354,3,2,0,0,11,370,0,51,27,6,19,2,0,33,38,270,29,0,0,324,2,16,4,0,24,0,344,11,13,0,0,1,1,139,228,0,2,1,0,8,348,9,0,0,0,0,0,0,0,4,1,0,476,6.975342465753425,23.893150684931506,6.983561643835617,23.912328767123288,1.0,3.683783783783784,2.327027027027027,370,195,291,26,57,14,9,8,2,19,2,3,42,5,44,11,12,6,15,7,9,866,126,0,293,699,0,677,315,0,912,80,0,246,746,0,209,37,696,50,0,50,15,10,1,11,11,27,26,11,227,0,0,0,21,34,66,26,35,124,0,1,22,31,63,70,45,19,11,0,32,0,0,2,1,0,481,25,418,0,1,5,4,93,134,123,33,35,287,44,74,29,30,0,40,1,0,509,534,135,180,38,125,21,1,2,3,0,70,4,209,2,0,0,502,214,1,7,43,118,12,26,0,1,3,28,52,60,32,87,26,79,26,113,346,94,57,58,96,107,124,53,55,23,11,3,10,0,4,2,15.0,9.0,8.0,19.0,16.0,17.0,7.0,8.0,6.0,14.0,18.0,4.0,13.0,8.0,10.0,13.0,10.0,14.0,10.0,18.0,9.0,18.0,18.0,12.0,17.0,17.0,16.0,13.0,14.0,15.0,24.0,12.0,16.0,12.0,16.0,18.0,18.0,8.0,18.0,13.0,7.0,11.0,10.0,10.0,15.0,11.0,9.0,9.0,9.0,8.0,16.0,21.0,12.0,14.0,18.0,9.0,12.0,16.0,13.0,8.0,12.0,13.0,13.0,13.0,9.0,12.0,7.0,12.0,8.0,12.0,6.0,5.0,10.0,8.0,9.0,8.0,14.0,5.0,8.0,6.0,5.0,6.0,9.0,8.0,6.0,2.0,5.0,6.0,2.0,6.0,2.0,3.0,4.0,3.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,172,667,204,0,67,52,53,65,74,75,80,75,53,46,81,58,60,51,38,41,34,21,13,5,1,0,1033,3,6,1,0,1033,5,4,1,0,291,11,90,174,54,12,239,172,0,468,571,4,0,0,5,0,0,0,0,0,0,0,14,1024,0,20,21,84,6,0,0,135,777,0,245,271,95,9,1,422,0,1.8183760683760684,0.0,2.5460122699386503,0.0,9.204218600191757,4,9,36,2,0,0,58,261,0,13,23,13,20,28,37,53,36,57,28,26,9,12,5,10,0,357,13,352,18,336,34,81,289,327,43,120,250,213,157,33,337,340,30,331,39,195,136,126,244,244,126,169,201,56,314,94,276,0,370,92,183,78,17,1,223,147,0,0,2,0,0,0,0,0,0,0,5,363,0,1.371967654986523,1.4393530997304582,0.0,1.0714285714285714,1.0714285714285714,55.18918918918919 +PA090218,70218,Los Santos,Las Tablas,Río Hondo,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,34,1,70,0,0,0,0,1,0,68,0,0,2,0,0,1,0,0,0,5,66,0,0,0,0,68,3,0,0,0,0,71,0,27,6,0,11,6,0,0,1,68,2,0,0,65,1,5,0,0,0,0,67,4,0,0,0,0,0,1,67,1,2,0,0,0,70,0,1,0,0,0,0,0,0,0,0,0,121,6.885714285714286,20.8,6.928571428571429,21.928571428571427,1.0,3.563380281690141,2.464788732394366,71,42,46,3,7,3,2,1,1,3,1,2,0,0,8,0,1,0,0,1,4,153,26,0,29,150,0,90,89,0,166,13,0,24,155,0,23,1,152,3,0,3,0,2,0,3,8,10,2,7,75,0,0,1,1,3,3,3,7,22,0,1,2,3,5,6,4,2,2,0,4,0,0,0,0,0,90,1,83,0,0,0,0,13,14,43,12,1,25,11,3,3,5,0,44,0,0,95,87,17,37,3,22,2,0,10,0,0,25,2,36,0,0,0,122,35,1,1,1,9,2,3,0,0,0,2,7,1,5,6,21,12,7,30,64,39,13,17,15,10,9,3,4,3,2,1,1,0,1,0,0.0,2.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,2.0,1.0,3.0,6.0,4.0,3.0,1.0,2.0,1.0,0.0,1.0,2.0,1.0,0.0,1.0,4.0,1.0,1.0,2.0,0.0,2.0,2.0,2.0,3.0,6.0,2.0,1.0,1.0,4.0,0.0,1.0,1.0,4.0,6.0,1.0,1.0,1.0,3.0,4.0,4.0,8.0,3.0,5.0,0.0,3.0,4.0,1.0,3.0,2.0,2.0,1.0,3.0,3.0,2.0,1.0,4.0,4.0,2.0,3.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,6.0,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,13,111,58,0,3,5,5,5,17,6,7,7,14,7,13,22,13,11,14,6,20,6,0,1,0,0,182,0,0,0,0,182,0,0,0,0,60,2,10,35,15,0,47,13,0,109,73,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,1,7,0,0,0,25,149,0,27,63,12,4,0,76,0,2.2222222222222223,0.0,2.836065573770492,0.0,7.9945054945054945,0,0,3,0,0,0,9,59,0,7,11,5,9,8,5,6,5,3,7,0,2,2,0,1,0,70,1,60,11,60,11,32,39,52,19,3,68,52,19,2,69,68,3,58,13,46,12,13,58,39,32,22,49,58,13,57,14,0,71,14,38,19,0,0,54,17,0,0,0,0,0,0,0,0,0,0,0,71,0,1.3380281690140845,1.2253521126760565,0.0,1.0,1.0,64.12676056338029 +PA090219,70219,Los Santos,Las Tablas,San José,354,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,229,26,1,251,4,1,0,0,0,0,248,0,0,5,0,0,3,0,0,231,8,16,0,0,0,1,252,1,0,0,0,3,256,0,61,6,1,29,1,0,5,21,207,22,1,0,222,7,11,0,1,15,0,238,10,8,0,0,0,0,106,148,0,2,0,0,196,0,21,1,0,2,0,0,0,35,1,0,0,355,6.875576036866359,23.783410138248847,6.953917050691245,23.972350230414747,1.015625,3.859375,1.8515625,261,144,167,15,20,5,15,6,5,3,5,3,5,2,23,8,3,2,6,0,2,566,65,0,214,417,0,486,145,0,587,44,0,136,495,0,118,18,475,20,0,22,5,6,1,16,16,24,22,19,167,0,0,2,16,19,45,11,23,87,0,2,4,19,28,24,30,7,6,2,7,0,0,0,1,0,373,10,204,0,0,8,2,56,74,61,13,0,177,100,10,8,13,0,75,0,0,333,323,81,135,8,150,8,0,1,0,2,49,5,65,0,0,0,368,125,2,5,16,58,5,7,1,0,0,25,20,23,24,30,34,105,33,89,161,54,32,77,86,71,70,35,37,10,12,0,5,1,5,0,8.0,4.0,6.0,7.0,9.0,6.0,6.0,9.0,6.0,8.0,4.0,8.0,4.0,13.0,3.0,7.0,9.0,8.0,9.0,9.0,5.0,12.0,10.0,7.0,3.0,5.0,6.0,8.0,3.0,9.0,9.0,9.0,11.0,7.0,6.0,7.0,4.0,7.0,9.0,12.0,10.0,8.0,16.0,8.0,3.0,6.0,4.0,9.0,4.0,4.0,12.0,5.0,5.0,6.0,10.0,8.0,12.0,8.0,16.0,3.0,10.0,8.0,9.0,9.0,10.0,8.0,7.0,7.0,15.0,9.0,8.0,6.0,8.0,15.0,11.0,7.0,3.0,5.0,8.0,6.0,5.0,1.0,6.0,1.0,5.0,2.0,6.0,2.0,1.0,2.0,3.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,101,394,161,0,34,35,32,42,37,31,42,39,45,27,38,47,46,46,48,29,18,13,7,0,0,0,653,0,0,3,0,653,0,0,3,0,152,5,20,166,30,11,171,101,0,310,342,4,0,0,31,10,0,0,0,0,0,0,3,612,0,4,23,49,1,1,0,131,447,0,151,187,88,3,1,226,0,1.7903780068728523,0.0,2.451456310679612,0.0,8.382621951219512,1,12,20,0,1,0,63,164,0,2,7,6,15,29,42,37,22,37,28,6,9,12,0,8,0,254,7,241,20,229,32,66,195,236,25,109,152,158,103,47,214,246,15,230,31,147,83,96,165,204,57,138,123,127,134,111,150,1,260,66,145,45,5,0,197,64,0,0,10,2,0,0,0,0,0,0,1,248,0,1.2758620689655171,1.2375478927203063,1.0,1.0476190476190477,1.0476190476190477,58.08045977011494 +PA090220,70220,Los Santos,Las Tablas,San Miguel,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,39,9,4,48,0,0,0,0,4,0,42,3,0,3,0,0,3,1,0,47,0,5,0,0,0,0,45,0,0,0,0,7,52,0,21,0,0,0,0,0,0,0,49,3,0,0,45,0,7,0,0,0,0,46,5,1,0,0,0,0,4,48,0,0,0,0,0,45,5,0,0,0,0,0,0,0,2,0,0,74,7.0,23.04,7.0,24.0,1.0,3.0576923076923075,2.0576923076923075,53,25,20,1,5,3,2,0,0,0,0,4,1,0,4,1,0,1,0,0,1,97,16,0,15,98,0,75,38,0,106,7,0,18,95,0,18,0,86,9,0,9,0,0,0,1,4,8,2,2,41,0,0,0,4,4,8,0,2,15,0,0,1,4,2,3,3,0,0,0,0,0,0,0,0,0,67,0,41,0,0,0,0,8,10,23,0,0,21,15,1,3,1,0,26,0,0,64,50,15,26,3,23,0,0,0,0,0,13,1,9,0,0,0,80,18,0,1,3,6,0,0,0,0,0,2,2,2,4,10,8,13,0,26,43,18,7,4,16,8,11,2,4,0,1,0,0,0,0,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,1.0,0.0,0.0,3.0,2.0,0.0,2.0,1.0,1.0,0.0,3.0,3.0,2.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,3.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,2.0,0.0,3.0,1.0,2.0,2.0,5.0,4.0,2.0,4.0,3.0,2.0,1.0,1.0,3.0,3.0,0.0,1.0,1.0,2.0,1.0,2.0,0.0,1.0,1.0,2.0,1.0,2.0,0.0,3.0,0.0,1.0,2.0,1.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,12,73,29,0,1,5,6,4,8,6,5,4,5,7,15,11,8,6,6,7,4,3,0,3,0,0,114,0,0,0,0,114,0,0,0,0,32,2,17,20,7,0,24,12,0,53,61,0,0,0,0,0,0,0,0,0,0,0,38,76,0,3,0,0,0,0,0,46,65,0,19,43,9,0,0,43,0,2.382978723404255,0.0,2.914285714285714,0.0,7.271929824561403,0,0,0,0,0,0,17,36,0,3,3,5,6,10,4,9,3,7,1,0,1,0,0,0,0,48,5,41,12,39,14,9,44,42,11,1,52,39,14,0,53,49,4,43,10,18,25,5,48,35,18,21,32,47,6,38,15,0,53,16,25,11,1,0,39,14,0,0,0,0,0,0,0,0,0,0,17,36,0,1.2075471698113207,0.9433962264150944,0.0,1.0,1.0,58.11320754716981 +PA090221,70221,Los Santos,Las Tablas,Santo Domingo,1315,11,0,0,0,0,0,0,4,0,0,0,12,0,0,642,135,11,0,788,0,0,0,0,0,0,785,0,0,1,0,0,2,0,0,734,33,11,1,1,0,8,772,0,3,0,0,13,788,0,402,56,14,45,21,0,66,153,521,48,0,0,734,4,30,9,0,11,0,701,53,31,2,0,1,0,418,358,1,7,3,1,759,8,20,0,0,0,0,0,0,0,1,0,1048,294,6.838627700127065,20.701397712833543,6.890724269377382,22.204574332909782,1.0063451776649746,3.906091370558376,2.4911167512690358,805,433,564,71,122,23,41,13,13,31,12,5,91,8,43,18,11,15,10,4,20,1835,284,0,709,1410,0,1233,886,0,1982,137,0,498,1621,0,442,56,1550,71,0,76,29,19,10,29,41,48,34,61,422,0,2,17,35,74,159,57,69,322,0,9,28,67,92,96,154,104,15,2,47,0,1,0,0,0,1074,51,835,0,2,12,20,239,272,248,48,28,692,111,119,65,30,0,89,10,1,1060,1172,309,441,69,265,30,0,2,1,1,90,17,391,58,0,0,1005,477,17,12,79,311,13,45,1,0,2,51,122,96,70,146,47,216,65,310,736,169,93,108,198,217,286,112,120,53,40,14,11,6,11,58,37.0,24.0,25.0,27.0,31.0,30.0,28.0,26.0,20.0,24.0,18.0,32.0,22.0,23.0,20.0,28.0,23.0,31.0,29.0,25.0,34.0,32.0,34.0,33.0,32.0,33.0,39.0,30.0,41.0,23.0,33.0,36.0,29.0,23.0,23.0,25.0,33.0,19.0,24.0,30.0,30.0,26.0,24.0,29.0,29.0,16.0,26.0,22.0,25.0,32.0,26.0,30.0,40.0,31.0,38.0,31.0,26.0,26.0,31.0,26.0,22.0,24.0,26.0,22.0,24.0,25.0,23.0,22.0,18.0,26.0,18.0,23.0,12.0,23.0,28.0,18.0,20.0,18.0,11.0,23.0,13.0,15.0,17.0,8.0,12.0,15.0,5.0,5.0,4.0,4.0,1.0,5.0,2.0,0.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,387,1424,421,0,144,128,115,136,165,166,144,131,138,121,165,140,118,114,104,90,65,33,13,2,0,0,2170,32,30,0,0,2170,41,21,0,0,581,20,23,432,97,20,672,387,0,944,1247,41,0,0,126,20,0,0,0,0,0,0,4,2082,0,24,35,76,1,1,3,92,2000,0,589,574,264,7,13,785,0,1.6134371957156768,0.0,2.2948717948717947,0.0,9.397401433691757,7,15,26,1,1,0,46,709,0,19,24,16,38,71,87,115,82,124,76,48,26,30,11,20,6,797,8,772,33,736,69,199,606,751,54,310,495,406,399,177,628,756,49,719,86,474,245,280,525,490,315,412,393,51,754,142,663,6,799,181,430,160,34,4,539,266,0,0,21,4,0,0,0,0,0,0,3,777,0,1.3102595797280594,1.4487021013597032,1.0,1.0232558139534884,1.0232558139534884,55.57391304347826 +PA090222,70222,Los Santos,Las Tablas,Sesteadero,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,350,4,0,381,3,0,0,0,0,0,380,0,1,2,0,0,1,0,0,326,53,5,0,0,0,0,376,0,2,0,0,6,384,0,108,12,3,28,4,0,45,29,281,29,0,0,341,0,21,3,0,19,0,332,39,13,0,0,0,0,229,151,1,3,0,0,303,71,10,0,0,0,0,0,0,0,0,0,0,539,6.552083333333333,23.80989583333333,6.6328125,23.963541666666668,1.0026041666666667,4.192708333333333,2.734375,385,213,307,14,44,18,14,5,8,18,6,2,16,3,36,16,4,9,9,2,18,905,124,0,377,652,0,633,396,0,978,51,0,241,788,0,207,34,769,19,0,20,7,13,4,16,17,30,15,30,168,0,1,7,16,33,72,19,29,209,0,6,12,31,51,35,54,104,8,0,21,0,1,0,0,0,465,38,463,0,1,12,12,142,145,132,32,12,313,39,42,14,53,1,33,3,1,542,511,172,160,23,131,7,0,5,1,3,66,3,182,7,0,0,424,282,8,9,43,170,8,21,1,0,1,38,70,50,42,70,33,74,33,92,331,92,51,63,93,95,113,70,65,34,13,6,12,2,6,7,6.0,8.0,3.0,7.0,6.0,10.0,10.0,11.0,13.0,13.0,8.0,14.0,11.0,8.0,10.0,13.0,13.0,17.0,13.0,12.0,10.0,18.0,15.0,22.0,8.0,14.0,14.0,10.0,18.0,15.0,9.0,13.0,13.0,10.0,13.0,6.0,12.0,12.0,10.0,7.0,10.0,14.0,16.0,18.0,14.0,9.0,22.0,10.0,15.0,19.0,14.0,15.0,22.0,12.0,21.0,15.0,8.0,11.0,21.0,16.0,8.0,10.0,13.0,9.0,14.0,14.0,8.0,12.0,15.0,9.0,12.0,14.0,13.0,13.0,10.0,15.0,9.0,13.0,8.0,12.0,8.0,8.0,5.0,6.0,5.0,8.0,5.0,4.0,1.0,5.0,1.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,138,673,242,0,30,57,51,68,73,71,58,47,72,75,84,71,54,58,62,57,32,23,8,1,1,0,1028,14,10,1,0,1028,14,10,1,0,210,24,25,283,51,19,303,138,0,428,610,15,0,0,3,0,0,0,0,0,0,0,15,1035,0,26,17,68,0,0,0,237,705,0,263,325,150,5,1,309,0,1.7203389830508475,0.0,2.2958579881656807,0.0,10.304843304843304,8,5,28,0,0,0,94,250,0,3,22,11,19,36,38,46,32,55,46,26,20,9,8,13,1,382,3,366,19,356,29,78,307,347,38,167,218,199,186,72,313,363,22,347,38,221,126,143,242,229,156,235,150,70,315,104,281,5,380,84,204,85,12,0,273,112,0,0,2,0,0,0,0,0,0,0,3,380,0,1.4077922077922078,1.3272727272727274,1.0,1.0625,1.0625,58.77142857142857 +PA090223,70223,Los Santos,Las Tablas,Valle Rico,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,33,0,131,0,0,0,0,0,0,123,0,0,2,0,0,6,0,0,91,7,33,0,0,0,0,122,8,0,0,0,1,131,0,63,4,4,9,13,0,0,0,120,11,0,0,121,4,5,0,0,1,0,129,0,0,0,0,2,0,24,102,0,5,0,0,0,100,29,2,0,0,0,0,0,0,0,0,0,224,6.767441860465116,21.209302325581397,6.976744186046512,23.72093023255814,1.0,3.3053435114503817,2.106870229007633,131,69,89,0,21,2,5,1,2,3,0,0,1,0,7,1,4,0,6,0,5,249,64,0,89,224,0,166,147,0,287,26,0,63,250,0,58,5,232,18,0,18,0,7,0,5,15,17,8,10,98,0,0,0,4,4,11,4,12,46,0,3,4,5,12,15,8,3,0,1,3,0,0,0,0,0,139,2,151,0,0,2,0,25,37,67,21,1,51,14,5,14,3,0,53,0,0,167,157,31,48,14,32,15,0,0,0,6,43,2,48,0,0,0,190,65,0,2,9,22,1,3,0,0,0,5,10,11,4,21,24,12,5,49,101,51,18,23,28,46,27,10,6,6,4,1,3,0,0,0,3.0,1.0,3.0,4.0,1.0,2.0,6.0,5.0,5.0,2.0,3.0,1.0,3.0,0.0,2.0,2.0,4.0,6.0,5.0,4.0,1.0,7.0,0.0,3.0,3.0,1.0,0.0,2.0,7.0,2.0,3.0,3.0,3.0,3.0,1.0,4.0,3.0,3.0,3.0,4.0,4.0,0.0,4.0,4.0,8.0,2.0,3.0,2.0,6.0,11.0,4.0,2.0,7.0,3.0,4.0,5.0,4.0,5.0,3.0,5.0,5.0,5.0,4.0,5.0,4.0,6.0,6.0,5.0,7.0,4.0,4.0,7.0,7.0,2.0,4.0,2.0,4.0,7.0,6.0,1.0,4.0,2.0,3.0,1.0,1.0,1.0,4.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,41,186,97,0,12,20,9,21,14,12,13,17,20,24,20,22,23,28,24,20,11,8,3,2,1,0,324,0,0,0,0,324,0,0,0,0,83,1,28,71,14,4,82,41,0,178,146,0,0,0,12,0,0,0,0,1,0,0,3,308,0,0,1,9,0,0,0,23,291,0,49,87,29,1,0,158,0,2.388888888888889,0.0,3.1401869158878504,0.0,7.691358024691358,0,0,4,0,0,0,11,116,0,0,13,4,10,19,19,22,7,14,9,8,2,3,0,1,0,125,6,116,15,108,23,23,108,92,39,13,118,94,37,1,130,112,19,102,29,61,41,22,109,74,57,52,79,110,21,99,32,1,130,40,63,27,1,0,87,44,0,0,3,0,0,0,0,1,0,0,1,126,0,1.2748091603053435,1.1984732824427482,0.0,1.0,1.0,62.02290076335878 +PA090224,70224,Los Santos,Las Tablas,Vallerriquito,199,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,25,2,109,2,1,0,0,1,0,110,0,0,1,0,0,2,0,0,0,73,36,1,3,0,0,107,5,0,0,0,1,113,0,59,4,0,15,11,0,0,4,93,12,4,0,88,2,20,1,0,1,1,105,6,2,0,0,0,0,20,90,0,3,0,0,78,32,3,0,0,0,0,0,0,0,0,0,0,202,7.0,24.0,7.0,24.0,1.0,3.637168141592921,2.345132743362832,113,58,49,4,9,2,3,0,1,0,1,0,3,0,3,1,0,2,3,0,3,206,30,0,52,184,0,117,119,0,222,14,0,44,192,0,41,3,187,5,0,7,1,2,0,11,9,10,4,8,74,0,0,3,7,17,18,5,6,24,0,1,7,3,6,4,7,0,1,0,1,0,0,0,0,0,104,2,118,0,0,0,0,26,26,53,13,0,48,15,9,4,3,0,27,0,0,128,115,30,48,4,24,0,0,0,0,1,27,4,37,1,0,0,167,38,3,2,2,11,0,1,0,0,0,6,9,5,6,7,6,24,4,39,79,26,20,18,28,30,23,6,6,4,2,0,0,0,0,1,3.0,2.0,2.0,0.0,0.0,1.0,3.0,4.0,1.0,3.0,1.0,1.0,4.0,2.0,4.0,3.0,2.0,3.0,1.0,2.0,4.0,2.0,2.0,3.0,2.0,0.0,1.0,1.0,2.0,0.0,5.0,1.0,0.0,3.0,1.0,2.0,1.0,3.0,3.0,2.0,6.0,4.0,4.0,2.0,3.0,2.0,6.0,1.0,2.0,2.0,4.0,5.0,5.0,5.0,3.0,7.0,3.0,2.0,0.0,5.0,1.0,3.0,6.0,2.0,4.0,2.0,5.0,7.0,5.0,2.0,8.0,4.0,3.0,7.0,2.0,3.0,3.0,1.0,1.0,5.0,1.0,5.0,2.0,0.0,0.0,0.0,2.0,1.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,31,136,76,0,7,12,12,11,13,4,10,11,19,13,22,17,16,21,24,13,8,8,1,1,0,0,242,0,0,1,0,242,0,0,1,0,76,2,24,52,18,1,39,31,0,91,151,1,0,5,2,1,0,0,0,0,0,0,1,234,0,12,2,21,0,0,0,15,193,0,45,89,29,3,0,77,0,2.2788461538461537,0.0,2.607142857142857,0.0,7.390946502057613,2,1,11,0,0,0,9,90,0,6,8,10,6,19,18,18,6,12,2,3,2,1,1,0,1,110,3,103,10,103,10,26,87,89,24,13,100,89,24,2,111,99,14,97,16,61,36,19,94,53,60,33,80,65,48,53,60,0,113,39,57,15,2,0,80,33,0,2,0,1,0,0,0,0,0,0,1,109,0,1.1327433628318584,1.0176991150442478,1.0,1.0,1.0,60.0353982300885 +PA090305,70301,Los Santos,Los Santos,La Villa de Los Santos,4449,13,149,9,0,0,0,0,0,0,0,4,6,0,0,2923,558,38,9,3492,27,0,0,0,7,2,3514,0,1,4,0,0,8,0,1,2695,745,71,8,3,1,5,3414,6,23,0,0,85,3528,0,498,91,243,205,55,0,992,530,1887,109,6,4,3439,6,34,23,0,26,0,2876,67,584,0,0,0,1,2789,720,3,15,0,1,3145,295,12,2,1,0,0,1,0,68,3,1,3967,663,6.974217844727694,23.858632676709156,6.988991888760139,23.958864426419467,1.0090702947845804,3.822845804988662,2.493764172335601,3570,1772,2841,213,530,159,162,93,50,115,25,53,108,33,178,54,25,54,77,12,61,8319,992,0,4535,4776,0,7452,1859,0,8864,447,0,2632,6679,0,1964,668,6478,201,0,221,123,131,34,159,190,246,185,176,964,4,8,100,197,323,639,219,337,1576,9,201,206,248,470,787,850,217,174,23,276,2,5,0,11,0,4523,327,3703,0,13,144,71,967,1444,973,158,161,3253,306,508,144,387,5,191,7,10,4612,5112,1686,1502,169,1337,89,0,18,10,8,346,40,2164,26,0,0,3395,2332,101,244,308,1739,156,264,14,0,10,329,977,577,351,857,191,684,278,596,3326,581,319,502,754,811,1109,589,775,431,243,80,85,34,59,26,103.0,96.0,110.0,104.0,125.0,110.0,117.0,129.0,139.0,138.0,126.0,116.0,114.0,119.0,117.0,127.0,105.0,103.0,127.0,125.0,131.0,134.0,145.0,143.0,130.0,147.0,154.0,129.0,144.0,135.0,137.0,162.0,151.0,144.0,157.0,126.0,118.0,145.0,126.0,144.0,126.0,137.0,120.0,144.0,118.0,113.0,114.0,112.0,108.0,109.0,112.0,137.0,147.0,140.0,138.0,132.0,86.0,124.0,125.0,108.0,122.0,114.0,91.0,93.0,115.0,97.0,101.0,86.0,99.0,83.0,95.0,82.0,82.0,75.0,58.0,72.0,66.0,60.0,68.0,53.0,43.0,47.0,52.0,45.0,36.0,34.0,26.0,22.0,16.0,9.0,15.0,12.0,13.0,11.0,2.0,8.0,6.0,5.0,4.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1763,6374,1587,0,538,633,592,587,683,709,751,659,645,556,674,575,535,466,392,319,223,107,53,23,4,0,9428,221,70,5,0,9433,240,46,5,0,2189,147,436,1880,336,145,2828,1763,0,2995,6585,144,0,34,65,7,1,0,0,7,2,1,111,9496,0,671,408,684,35,57,16,1302,6551,0,2784,2782,1002,73,17,3066,0,1.6370223978919631,0.0,2.280214578731461,0.0,10.378239407651172,275,168,325,24,24,8,546,2200,0,53,96,54,133,242,340,392,340,657,406,260,168,216,84,114,5,3503,67,3427,143,3342,228,604,2966,3345,225,1997,1573,2114,1456,1244,2326,3358,212,3351,219,2276,1075,1813,1757,2817,753,2160,1410,284,3286,375,3195,46,3524,779,1905,766,120,0,1899,1671,0,11,17,1,0,0,0,1,0,1,44,3495,0,1.2918767507002802,1.4319327731092435,1.0869565217391304,1.0575539568345325,1.0575539568345325,53.26274509803922 +PA090302,70302,Los Santos,Los Santos,El Guásimo,327,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,230,9,3,239,0,0,0,0,3,0,240,0,0,0,0,0,1,0,1,3,137,98,3,0,0,1,226,8,1,0,0,7,242,0,44,10,1,26,4,0,1,8,222,11,0,0,212,0,1,4,0,25,0,205,24,13,0,0,0,0,37,200,0,5,0,0,1,232,7,0,0,0,0,0,0,0,1,1,0,328,6.9875,22.266666666666666,7.0,23.72083333333333,1.008264462809917,3.669421487603306,2.024793388429752,245,123,175,15,35,5,7,8,3,8,1,1,3,0,28,8,4,0,5,2,8,493,113,0,110,496,0,316,290,0,558,48,0,132,474,0,107,25,445,29,0,34,4,11,1,16,19,28,13,23,170,0,0,2,10,29,33,9,24,116,0,9,1,5,3,17,8,19,0,0,2,0,0,0,0,0,208,42,312,0,2,3,27,24,82,160,22,24,90,19,41,8,18,0,74,0,0,323,306,62,64,9,105,10,0,0,0,0,67,7,193,2,0,0,380,121,2,13,1,44,0,1,0,0,0,9,16,14,15,24,64,26,19,63,290,97,29,37,43,35,52,15,17,3,6,1,1,0,1,2,4.0,5.0,8.0,6.0,4.0,5.0,13.0,6.0,11.0,5.0,2.0,12.0,5.0,5.0,5.0,5.0,10.0,5.0,8.0,8.0,9.0,8.0,14.0,10.0,12.0,3.0,8.0,5.0,7.0,11.0,2.0,6.0,7.0,12.0,8.0,7.0,8.0,2.0,9.0,11.0,9.0,3.0,8.0,2.0,3.0,5.0,7.0,8.0,4.0,13.0,12.0,12.0,12.0,10.0,12.0,11.0,11.0,11.0,8.0,6.0,7.0,10.0,5.0,4.0,9.0,9.0,8.0,7.0,5.0,8.0,9.0,5.0,10.0,9.0,6.0,9.0,4.0,10.0,2.0,5.0,3.0,2.0,2.0,5.0,3.0,3.0,0.0,1.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,96,397,136,0,27,40,29,36,53,34,35,37,25,37,58,47,35,37,39,30,15,9,4,2,0,0,627,0,0,2,0,627,0,0,2,0,177,2,28,104,30,1,191,96,0,398,231,0,0,0,4,0,0,0,0,0,0,0,15,610,0,8,30,81,1,3,0,100,406,0,104,193,27,2,0,303,0,2.0,0.0,2.665024630541872,0.0,7.523052464228935,1,14,50,1,0,0,41,138,0,21,31,14,26,38,25,24,18,24,9,5,2,4,1,1,1,238,7,221,24,210,35,28,217,195,50,33,212,145,100,2,243,222,23,203,42,126,77,40,205,40,205,93,152,69,176,105,140,13,232,68,132,43,2,0,178,67,0,0,1,0,0,0,0,0,0,0,5,239,0,1.3183673469387756,1.2489795918367348,1.0,1.0,1.0,57.4 +PA090303,70303,Los Santos,Los Santos,La Colorada,473,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,300,72,1,370,2,0,0,0,1,0,362,2,0,1,1,1,5,0,1,183,19,112,43,16,0,0,348,14,2,0,0,9,373,0,64,9,0,30,0,0,0,12,329,32,0,0,356,1,5,6,0,5,0,291,63,19,0,0,0,0,63,303,1,5,0,1,0,358,9,0,0,0,0,0,0,5,0,1,0,480,6.73841961852861,18.49863760217984,6.743869209809264,19.75204359673025,1.0080428954423593,3.812332439678284,1.9571045576407504,380,218,300,20,57,7,11,3,6,10,0,1,3,2,37,12,1,11,6,1,4,815,171,0,178,808,0,544,442,0,915,71,0,232,754,0,208,24,717,37,0,40,8,18,8,16,34,39,25,25,262,0,0,1,29,42,75,27,30,174,0,7,12,9,25,13,26,30,2,3,6,0,0,0,0,0,424,21,467,0,0,1,14,32,142,222,33,38,142,47,48,18,26,1,161,1,1,537,481,81,160,25,149,19,0,10,1,2,107,12,275,6,0,0,604,204,1,9,21,67,1,5,0,0,1,13,29,20,15,43,89,63,33,139,475,144,35,65,75,73,56,34,27,13,7,3,1,3,1,6,10.0,8.0,10.0,4.0,9.0,12.0,13.0,16.0,10.0,14.0,8.0,11.0,12.0,8.0,10.0,17.0,19.0,10.0,16.0,24.0,12.0,11.0,20.0,14.0,12.0,17.0,11.0,17.0,12.0,7.0,7.0,9.0,10.0,10.0,7.0,6.0,10.0,13.0,25.0,14.0,13.0,12.0,14.0,12.0,10.0,11.0,10.0,11.0,16.0,12.0,15.0,16.0,12.0,13.0,17.0,7.0,19.0,12.0,12.0,20.0,15.0,17.0,15.0,12.0,10.0,18.0,14.0,12.0,7.0,11.0,16.0,5.0,10.0,10.0,9.0,10.0,11.0,7.0,5.0,6.0,7.0,3.0,7.0,1.0,3.0,2.0,4.0,2.0,1.0,4.0,3.0,4.0,1.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,155,663,200,0,41,65,49,86,69,64,43,68,61,60,73,70,69,62,50,39,21,13,12,1,2,0,1006,10,1,1,0,1006,10,1,1,0,302,12,33,174,45,4,293,155,0,636,376,6,0,4,10,0,0,0,0,0,0,0,17,987,0,5,41,135,4,7,2,439,385,0,143,309,36,3,0,527,0,2.30715935334873,0.0,2.9465408805031448,0.0,7.926326129666012,1,15,60,4,3,1,159,137,0,24,48,12,43,58,49,40,28,37,15,7,5,6,0,3,1,369,11,341,39,351,29,58,322,332,48,57,323,260,120,5,375,348,32,333,47,118,215,92,288,122,258,155,225,195,185,246,134,2,378,93,217,66,4,0,294,86,0,0,3,0,0,0,0,0,0,0,3,374,0,1.4131578947368422,1.2657894736842106,0.0,1.0588235294117647,1.0588235294117647,56.83157894736842 +PA090304,70304,Los Santos,Los Santos,La Espigadilla,778,2,43,0,0,0,0,0,0,0,0,0,3,0,0,0,627,31,5,638,20,0,0,0,5,0,655,0,1,1,0,1,5,0,0,368,231,39,21,0,1,3,636,6,2,0,0,19,663,0,47,17,6,81,9,0,25,39,557,42,0,0,597,2,21,6,0,37,0,557,65,38,1,0,1,1,218,430,0,13,2,0,608,33,17,2,0,0,0,0,0,1,2,0,0,826,6.389057750759879,19.50607902735562,6.878419452887538,22.958966565349545,1.0075414781297134,3.656108597285068,2.051282051282051,671,372,535,30,89,13,17,14,8,20,5,1,5,2,50,24,10,13,32,7,12,1466,246,0,477,1235,0,1052,660,0,1563,149,0,439,1273,0,340,99,1224,49,0,64,21,18,6,54,69,78,63,48,425,0,3,3,42,61,119,32,45,243,3,18,16,39,37,71,80,17,14,3,20,0,0,0,0,0,829,34,724,0,1,12,5,61,234,310,59,60,462,51,75,49,74,5,142,1,0,897,885,183,308,55,294,10,0,9,0,2,208,33,345,7,0,0,1019,330,5,25,21,157,11,19,0,0,0,41,81,53,46,151,96,110,100,185,658,256,87,101,141,135,195,72,66,29,18,6,6,3,2,7,17.0,18.0,21.0,14.0,18.0,19.0,19.0,23.0,22.0,24.0,21.0,24.0,14.0,22.0,19.0,33.0,21.0,18.0,16.0,19.0,26.0,33.0,16.0,24.0,17.0,24.0,20.0,22.0,23.0,19.0,12.0,22.0,29.0,18.0,26.0,24.0,21.0,23.0,26.0,32.0,28.0,16.0,21.0,19.0,23.0,28.0,26.0,19.0,21.0,20.0,20.0,21.0,24.0,25.0,24.0,22.0,24.0,37.0,31.0,22.0,30.0,14.0,18.0,20.0,19.0,17.0,23.0,19.0,14.0,25.0,16.0,17.0,19.0,15.0,18.0,19.0,19.0,15.0,9.0,16.0,17.0,12.0,8.0,6.0,7.0,7.0,5.0,4.0,6.0,2.0,1.0,3.0,4.0,0.0,2.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,295,1136,351,0,88,107,100,107,116,108,107,126,107,114,114,136,101,98,85,78,50,24,10,5,1,0,1747,31,2,2,0,1747,33,0,2,0,561,16,42,287,67,12,502,295,0,1110,652,20,0,2,15,12,0,0,0,1,0,0,11,1741,0,9,22,248,16,0,1,361,1125,0,408,640,71,10,0,653,0,1.8304020100502512,0.0,2.3989726027397262,0.0,7.984287317620651,3,9,101,6,0,0,148,404,0,21,70,23,51,83,71,77,64,100,36,28,14,16,5,6,3,653,18,628,43,608,63,105,566,587,84,187,484,313,358,67,604,591,80,582,89,309,273,193,478,385,286,362,309,121,550,230,441,9,662,156,377,133,5,0,467,204,0,1,4,3,0,0,0,0,0,0,2,661,0,1.3368107302533532,1.3189269746646797,1.0,1.0,1.0,57.25931445603577 +PA090306,70305,Los Santos,Los Santos,Las Cruces,604,4,0,4,0,0,0,0,2,0,0,0,4,0,0,0,348,154,11,470,32,4,0,0,6,1,499,0,0,4,0,2,7,0,1,11,265,215,7,14,1,0,484,21,1,0,0,7,513,0,34,18,1,29,17,0,21,20,410,62,0,0,475,7,9,16,0,6,0,435,55,22,0,0,0,1,130,363,0,20,0,0,350,139,15,2,0,0,0,0,0,0,5,2,0,618,6.998015873015873,23.34325396825397,6.998015873015873,23.714285714285715,1.0077972709551657,3.317738791423002,1.8538011695906436,521,307,436,20,79,11,16,6,5,19,5,7,31,0,44,20,8,5,13,6,19,1101,264,0,291,1074,0,793,572,0,1228,137,0,312,1053,0,261,51,970,83,0,84,17,14,0,46,48,52,44,48,364,0,0,2,31,67,83,33,46,185,2,12,9,38,22,36,39,31,1,1,9,0,0,0,1,0,602,40,602,0,2,5,13,40,159,304,76,23,293,40,54,17,41,0,190,2,1,759,704,105,265,21,202,24,0,18,3,10,133,9,411,4,0,0,856,245,3,19,18,92,1,9,1,0,2,16,40,27,28,88,107,72,67,195,675,166,60,78,113,122,119,40,50,20,8,1,5,1,1,4,20.0,25.0,22.0,31.0,20.0,23.0,22.0,21.0,20.0,15.0,26.0,13.0,13.0,11.0,19.0,24.0,10.0,20.0,17.0,24.0,22.0,24.0,22.0,19.0,17.0,24.0,13.0,25.0,17.0,30.0,30.0,21.0,20.0,12.0,17.0,22.0,17.0,15.0,17.0,16.0,15.0,13.0,19.0,11.0,17.0,11.0,19.0,15.0,22.0,10.0,20.0,30.0,22.0,24.0,22.0,19.0,17.0,16.0,21.0,18.0,15.0,8.0,11.0,17.0,12.0,14.0,16.0,15.0,8.0,4.0,7.0,11.0,4.0,13.0,10.0,14.0,15.0,11.0,10.0,12.0,11.0,8.0,1.0,9.0,7.0,5.0,7.0,5.0,4.0,3.0,4.0,4.0,1.0,2.0,2.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,301,919,243,0,118,101,82,95,104,109,100,87,75,77,118,91,63,57,45,62,36,24,13,6,0,0,1446,9,7,1,0,1446,9,7,1,0,492,9,45,213,59,12,332,301,0,761,692,10,0,1,195,11,3,0,0,0,0,0,3,1250,0,17,24,109,0,1,0,279,1033,0,211,431,38,6,0,777,0,2.0966101694915253,0.0,2.6741573033707864,0.0,7.301435406698564,4,5,54,0,1,0,123,334,0,45,49,18,44,58,75,60,38,65,24,16,9,10,2,3,1,510,11,447,74,437,84,78,443,425,96,111,410,302,219,28,493,469,52,403,118,220,183,123,398,297,224,235,286,212,309,212,309,8,513,118,306,95,2,2,396,125,0,1,36,5,2,0,0,0,0,0,2,475,0,1.451242829827916,1.3460803059273423,1.0,1.0384615384615383,1.0384615384615383,55.061420345489445 +PA090307,70306,Los Santos,Los Santos,Las Guabas,381,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,206,90,8,285,11,1,0,0,7,0,300,0,1,0,0,0,3,0,0,6,224,58,9,5,0,2,282,10,0,0,0,12,304,0,23,12,4,30,11,0,1,7,264,24,8,0,283,1,4,6,0,10,0,259,20,25,0,0,0,0,56,240,0,8,0,0,163,126,13,1,0,0,0,0,0,0,1,0,0,385,6.947019867549669,22.625827814569536,6.996688741721854,23.09271523178808,1.0098684210526316,3.5657894736842106,2.213815789473684,308,136,190,19,34,7,11,3,4,6,4,1,3,2,22,12,7,5,5,4,8,577,122,0,133,566,0,423,276,0,632,67,0,137,562,0,120,17,536,26,0,26,7,7,0,23,38,24,13,18,233,0,0,0,14,34,44,21,20,71,3,0,3,19,21,12,10,28,8,0,2,0,0,0,0,0,311,17,332,0,0,6,7,34,79,172,33,14,112,17,40,12,10,0,136,0,0,375,353,62,79,14,103,66,0,3,0,6,87,5,155,6,0,0,483,99,0,6,14,52,4,2,0,0,0,7,18,20,13,27,96,46,20,81,270,136,38,59,60,49,46,25,21,11,3,1,1,0,2,6,13.0,3.0,8.0,5.0,6.0,9.0,3.0,9.0,9.0,3.0,5.0,11.0,9.0,6.0,8.0,5.0,7.0,5.0,11.0,3.0,9.0,15.0,8.0,6.0,7.0,12.0,14.0,11.0,11.0,9.0,7.0,10.0,4.0,10.0,6.0,7.0,10.0,10.0,6.0,7.0,8.0,4.0,11.0,16.0,3.0,9.0,10.0,7.0,6.0,11.0,10.0,10.0,13.0,15.0,11.0,14.0,14.0,8.0,10.0,13.0,6.0,10.0,10.0,7.0,8.0,9.0,3.0,9.0,9.0,8.0,8.0,8.0,10.0,13.0,10.0,6.0,10.0,5.0,5.0,8.0,7.0,7.0,8.0,4.0,2.0,5.0,2.0,2.0,1.0,3.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,107,454,167,0,35,33,39,31,45,57,37,40,42,43,59,59,41,38,49,34,28,13,5,0,0,0,725,0,2,1,0,725,1,1,1,0,235,2,31,80,32,0,241,107,0,404,323,1,0,1,14,0,0,0,0,0,0,0,2,711,0,16,8,106,4,0,0,189,405,0,124,224,32,4,0,344,0,2.2044025157232703,0.0,2.6962025316455698,0.0,7.521978021978022,5,4,47,0,0,0,84,168,0,21,54,10,31,35,51,36,21,20,9,7,4,5,1,2,0,293,15,279,29,275,33,51,257,255,53,55,253,212,96,4,304,265,43,266,42,72,194,65,243,166,142,115,193,147,161,180,128,1,307,108,141,54,5,0,220,88,0,1,4,0,0,0,0,0,0,0,1,302,0,1.2175324675324677,1.146103896103896,1.0,1.0,1.0,57.83116883116883 +PA090309,70307,Los Santos,Los Santos,Los Ángeles,441,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,283,74,6,350,7,0,0,0,6,0,357,0,0,0,1,0,5,0,0,113,202,35,1,4,0,8,339,11,1,0,0,12,363,0,28,6,5,35,8,0,23,22,296,21,1,0,297,7,26,11,0,22,0,316,22,25,0,0,0,0,125,216,0,22,0,0,4,347,3,3,1,0,0,0,0,5,0,0,0,447,6.988700564971752,23.24576271186441,7.0,23.805084745762716,1.019283746556474,3.487603305785124,1.911845730027548,371,181,268,14,36,6,16,12,2,11,3,2,21,0,43,13,5,7,7,6,8,776,129,0,211,694,0,575,330,0,836,69,0,211,694,0,175,36,638,56,0,56,11,10,0,18,19,39,32,25,228,0,1,0,18,45,69,22,31,114,0,1,9,31,18,46,32,13,5,2,9,0,0,1,0,0,481,10,355,0,0,4,3,50,107,121,17,60,219,34,45,30,50,5,96,10,1,488,455,77,171,33,181,27,0,0,1,1,88,6,181,8,0,0,563,154,0,20,17,79,4,9,0,0,1,16,39,23,17,91,76,59,40,129,331,113,56,58,72,112,94,33,29,12,12,3,7,1,2,8,8.0,12.0,8.0,10.0,8.0,10.0,8.0,15.0,8.0,10.0,16.0,14.0,10.0,7.0,13.0,14.0,13.0,13.0,10.0,11.0,17.0,14.0,14.0,15.0,10.0,10.0,18.0,14.0,11.0,13.0,13.0,13.0,15.0,9.0,16.0,12.0,14.0,17.0,18.0,8.0,8.0,11.0,12.0,6.0,8.0,9.0,12.0,9.0,12.0,7.0,19.0,10.0,17.0,14.0,9.0,15.0,8.0,10.0,21.0,12.0,17.0,11.0,12.0,12.0,9.0,5.0,8.0,10.0,8.0,8.0,10.0,9.0,5.0,12.0,2.0,14.0,7.0,7.0,5.0,10.0,4.0,8.0,6.0,3.0,5.0,3.0,3.0,2.0,1.0,0.0,0.0,4.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,622,164,0,46,51,60,61,70,66,66,69,45,49,69,66,61,39,38,43,26,9,8,1,0,0,923,18,2,0,0,923,18,2,0,0,267,10,108,149,59,1,192,157,0,444,488,11,0,1,29,1,0,0,0,0,0,0,1,911,0,13,18,36,2,0,2,72,800,0,186,250,55,9,0,443,0,1.8193069306930691,0.0,2.471631205673759,0.0,7.975609756097561,7,8,19,1,0,1,35,300,0,12,29,24,35,41,51,51,26,45,17,15,9,6,1,7,1,353,18,334,37,339,32,53,318,327,44,109,262,198,173,33,338,340,31,326,45,147,179,97,274,200,171,164,207,66,305,115,256,6,365,102,190,70,9,1,249,122,0,0,6,0,0,0,0,0,0,0,1,364,0,1.3118279569892473,1.2231182795698925,0.0,1.0,1.0,55.00808625336927 +PA090310,70308,Los Santos,Los Santos,Los Olivos,656,13,0,0,0,0,0,0,0,0,0,1,2,0,0,0,507,14,15,511,10,0,0,0,15,0,518,0,1,4,1,1,10,0,1,247,179,90,13,7,0,0,509,8,0,0,0,19,536,0,51,17,3,35,27,0,22,23,446,44,1,0,496,5,7,7,0,21,0,453,38,44,0,0,0,1,194,332,2,8,0,0,237,270,20,0,0,0,0,0,0,2,5,2,0,672,6.903225806451613,22.024667931688803,6.94876660341556,22.9696394686907,1.0111940298507462,3.625,2.2723880597014925,545,313,437,39,76,16,8,4,7,17,5,1,15,1,37,17,12,12,21,9,27,1234,190,0,467,957,0,880,544,0,1333,91,0,361,1063,0,289,72,1022,41,0,44,14,15,2,32,37,58,38,43,275,1,0,8,28,48,97,40,58,255,6,12,27,39,53,59,60,39,15,2,18,0,0,0,1,0,669,70,590,0,3,22,15,72,211,264,41,2,363,59,93,30,51,3,133,0,0,755,729,170,242,32,242,33,0,13,0,4,102,16,389,0,0,0,734,350,8,26,48,135,11,16,1,0,0,16,80,64,30,130,96,108,59,156,633,163,64,79,111,128,124,57,62,39,18,3,3,0,0,0,11.0,18.0,22.0,9.0,16.0,11.0,21.0,17.0,15.0,15.0,22.0,17.0,20.0,19.0,13.0,20.0,17.0,20.0,25.0,30.0,20.0,14.0,14.0,25.0,31.0,22.0,22.0,19.0,13.0,17.0,17.0,18.0,23.0,16.0,22.0,20.0,21.0,20.0,22.0,14.0,15.0,20.0,19.0,18.0,16.0,12.0,18.0,17.0,23.0,17.0,27.0,24.0,28.0,18.0,38.0,34.0,18.0,21.0,16.0,18.0,16.0,13.0,21.0,17.0,10.0,14.0,15.0,16.0,17.0,17.0,13.0,12.0,11.0,10.0,14.0,12.0,8.0,10.0,13.0,5.0,9.0,6.0,8.0,3.0,4.0,6.0,5.0,1.0,0.0,6.0,0.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,246,996,242,0,76,79,91,112,104,93,96,97,88,87,135,107,77,79,60,48,30,18,5,2,0,0,1467,12,2,3,0,1467,14,0,3,0,437,24,38,263,52,10,414,246,0,802,674,8,0,3,21,3,2,0,2,7,0,1,9,1436,0,97,60,155,4,0,1,519,648,0,305,459,81,16,1,622,0,1.874425727411945,0.0,2.502136752136752,0.0,8.919137466307278,36,22,64,3,0,0,201,219,0,41,47,20,44,59,56,59,46,73,42,20,14,13,4,4,0,523,22,500,45,488,57,80,465,476,69,137,408,337,208,72,473,486,59,475,70,217,258,189,356,233,312,278,267,156,389,252,293,9,536,118,323,92,12,0,387,158,0,0,7,2,0,0,1,2,0,1,7,525,0,1.385321100917431,1.3376146788990826,1.3333333333333333,1.0952380952380951,1.0952380952380951,54.95412844036697 +PA090308,70309,Los Santos,Los Santos,Llano Largo,1138,2,0,0,0,0,0,0,0,0,0,0,1,0,0,55,810,59,16,910,14,2,0,0,13,1,925,0,0,0,1,1,10,0,3,718,140,43,11,3,0,25,874,15,3,0,0,48,940,0,54,32,49,41,24,0,50,82,775,32,1,0,867,6,32,19,0,16,0,827,45,67,0,0,1,0,387,536,0,15,2,0,909,0,4,13,0,0,0,1,0,6,6,1,0,1141,5.7261774370208105,15.47645125958379,6.572836801752464,21.84775465498357,1.0106382978723405,3.521276595744681,2.3861702127659576,951,539,828,82,127,25,30,11,14,33,7,12,28,2,46,37,10,32,24,3,28,2060,520,0,732,1848,0,1660,920,0,2457,123,0,685,1895,0,591,94,1828,67,0,71,23,39,9,48,75,94,76,77,619,0,1,15,72,105,152,67,104,442,6,38,22,46,61,101,100,56,16,0,43,0,0,1,1,0,1175,96,1104,0,3,30,39,120,415,425,104,40,620,95,196,69,149,2,116,2,6,1349,1340,274,338,78,494,20,0,43,8,2,182,17,746,5,0,0,1425,546,15,47,59,225,13,44,1,0,4,50,118,105,46,205,123,288,108,224,1206,253,106,108,174,226,256,122,119,60,24,13,9,1,7,5,21.0,32.0,33.0,23.0,24.0,27.0,37.0,41.0,37.0,39.0,42.0,36.0,37.0,37.0,29.0,38.0,37.0,40.0,43.0,41.0,36.0,40.0,44.0,42.0,32.0,35.0,42.0,44.0,38.0,28.0,44.0,36.0,36.0,41.0,36.0,43.0,33.0,38.0,40.0,33.0,40.0,38.0,34.0,42.0,22.0,38.0,36.0,32.0,30.0,28.0,41.0,30.0,37.0,28.0,38.0,38.0,36.0,34.0,36.0,31.0,28.0,28.0,31.0,31.0,33.0,27.0,24.0,23.0,24.0,21.0,22.0,23.0,17.0,17.0,18.0,18.0,15.0,12.0,6.0,17.0,15.0,15.0,10.0,11.0,9.0,6.0,6.0,5.0,3.0,4.0,4.0,2.0,7.0,5.0,1.0,1.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,495,1800,394,0,133,181,181,199,194,187,193,187,176,164,174,175,151,119,97,68,60,24,19,7,0,0,2655,26,7,1,0,2655,27,6,1,0,798,19,119,415,82,19,742,495,0,1492,1172,25,0,3,38,1,0,0,0,0,0,0,47,2600,0,39,45,226,3,2,3,122,2249,0,538,854,131,8,1,1157,0,1.929180887372013,0.0,2.6747868453105967,0.0,8.494607660840462,17,19,87,3,1,2,52,770,0,54,65,35,60,82,121,124,99,125,61,43,29,33,9,8,2,911,40,855,96,858,93,102,849,852,99,246,705,427,524,190,761,817,134,850,101,368,482,331,620,591,360,454,497,141,810,226,725,7,944,208,532,189,22,0,670,281,0,2,9,0,0,0,0,0,0,0,7,933,0,1.4185068349106205,1.409043112513144,1.0,1.0,1.0,53.07991587802314 +,70310,Los Santos,Los Santos,Sabana Grande,911,12,0,3,0,0,0,0,0,0,0,0,4,0,0,2,702,39,0,733,10,0,0,0,0,0,729,0,1,3,3,0,7,0,0,76,569,95,1,2,0,0,724,10,3,1,0,5,743,0,70,19,23,42,29,0,47,58,580,58,0,0,688,8,21,13,0,13,0,658,59,25,0,0,0,1,268,462,2,10,1,0,617,103,17,4,0,0,0,0,0,2,0,0,0,930,6.963364993215739,23.127544097693352,6.995929443690637,23.772048846675712,1.0134589502018845,3.3364737550471064,2.1978465679676984,757,411,612,36,92,33,37,11,9,21,8,5,18,1,74,16,7,2,21,12,6,1605,355,0,475,1485,0,1130,830,0,1763,197,0,434,1526,0,344,90,1399,127,0,127,17,21,5,56,60,97,54,50,420,0,0,6,51,66,119,44,57,305,0,11,37,56,54,85,77,50,9,0,26,0,0,0,0,0,848,25,940,0,0,11,10,126,255,444,87,28,484,70,84,35,64,1,128,0,2,1025,1026,189,378,39,247,10,0,3,2,4,173,19,572,14,0,0,1097,448,6,24,24,183,7,24,0,0,2,32,82,46,58,165,75,132,85,196,875,232,63,126,179,185,167,75,80,31,17,1,4,1,1,14,23.0,21.0,25.0,22.0,23.0,22.0,27.0,31.0,20.0,24.0,20.0,19.0,24.0,21.0,22.0,21.0,22.0,28.0,24.0,32.0,28.0,31.0,34.0,24.0,15.0,34.0,34.0,24.0,35.0,26.0,30.0,29.0,27.0,27.0,20.0,23.0,27.0,27.0,27.0,33.0,25.0,29.0,25.0,22.0,23.0,12.0,16.0,16.0,21.0,25.0,28.0,25.0,33.0,22.0,33.0,21.0,38.0,23.0,33.0,21.0,24.0,23.0,30.0,21.0,26.0,27.0,20.0,24.0,25.0,30.0,19.0,20.0,19.0,12.0,25.0,21.0,17.0,18.0,15.0,17.0,13.0,9.0,5.0,10.0,7.0,10.0,5.0,8.0,10.0,7.0,5.0,3.0,2.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,344,1297,410,0,114,124,106,127,132,153,133,137,124,90,141,136,124,126,95,88,44,40,12,4,1,0,2018,21,5,7,0,2020,21,3,7,0,577,11,51,348,90,15,615,344,0,1051,977,23,0,5,120,11,0,0,0,0,0,0,3,1912,0,2,21,46,4,2,1,19,1956,0,405,553,135,9,2,947,0,1.812638580931264,0.0,2.4553846153846157,0.0,8.132130667966845,0,11,22,1,1,1,11,710,0,31,76,22,53,101,116,83,48,108,51,36,6,9,5,3,5,748,9,692,65,670,87,156,601,652,105,229,528,409,348,108,649,664,93,656,101,273,383,206,551,400,357,360,397,108,649,171,586,8,749,169,409,165,14,0,530,227,0,1,24,3,0,0,0,0,0,0,0,729,0,1.3540290620871862,1.3553500660501985,1.0,1.027027027027027,1.027027027027027,56.486129458388376 +PA090312,70311,Los Santos,Los Santos,Santa Ana,1045,12,18,0,0,0,0,0,0,0,0,1,3,0,0,0,677,33,6,695,15,0,0,0,6,0,695,0,2,8,0,0,10,0,1,482,121,102,2,6,0,3,694,5,1,0,0,16,716,0,217,43,15,69,15,0,18,44,597,56,1,0,633,13,42,16,0,12,0,506,87,121,1,0,0,1,278,411,3,20,4,0,702,1,11,0,0,0,0,0,0,0,2,0,0,1079,6.893557422969188,23.68767507002801,6.974789915966387,23.946778711484598,1.0083798882681565,3.4762569832402237,2.3896648044692737,726,391,586,54,106,16,30,6,9,28,5,9,38,0,68,56,7,8,25,5,18,1629,267,0,513,1383,0,1401,495,0,1774,122,0,475,1421,0,373,102,1356,65,0,67,23,15,8,39,53,69,48,68,380,1,1,12,55,79,122,58,86,338,1,31,15,33,33,47,86,71,26,4,24,0,0,0,3,0,931,53,774,0,2,22,7,108,257,291,38,80,432,57,73,42,79,5,105,174,1,1033,971,187,359,46,341,18,1,15,1,4,138,14,463,21,0,0,1034,404,13,42,28,195,16,23,3,0,1,28,102,47,39,153,106,247,55,206,810,195,78,126,197,169,163,72,86,42,26,3,10,2,4,21,25.0,30.0,20.0,33.0,28.0,13.0,23.0,29.0,21.0,24.0,25.0,31.0,24.0,16.0,24.0,27.0,28.0,25.0,25.0,38.0,24.0,26.0,29.0,30.0,37.0,32.0,30.0,20.0,26.0,27.0,22.0,24.0,28.0,32.0,20.0,19.0,26.0,25.0,34.0,26.0,25.0,20.0,29.0,25.0,31.0,28.0,28.0,31.0,24.0,23.0,21.0,26.0,27.0,25.0,36.0,21.0,31.0,23.0,31.0,25.0,18.0,26.0,27.0,23.0,22.0,20.0,18.0,21.0,16.0,8.0,22.0,27.0,17.0,17.0,10.0,14.0,16.0,14.0,15.0,13.0,8.0,9.0,10.0,2.0,12.0,7.0,3.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,366,1326,312,0,136,110,120,143,146,135,126,130,130,134,135,131,116,83,93,72,41,14,3,5,1,0,1922,28,49,5,0,1923,58,18,5,0,639,20,139,273,70,11,486,366,0,1046,913,45,0,6,42,1,0,4,0,3,0,0,46,1902,0,36,32,258,9,25,1,621,1022,0,358,499,94,9,19,1025,0,1.902728351126928,0.0,2.5408496732026142,0.0,8.578343313373253,12,19,116,4,10,1,236,328,0,27,47,32,55,87,97,77,57,94,55,27,23,23,6,6,9,708,18,662,64,648,78,104,622,662,64,201,525,390,336,96,630,666,60,655,71,369,286,230,496,541,185,344,382,88,638,123,603,14,712,163,391,142,30,0,464,262,0,1,9,1,0,1,0,0,0,0,14,700,0,1.4228650137741048,1.337465564738292,1.0,1.064516129032258,1.064516129032258,53.91597796143251 +PA090313,70312,Los Santos,Los Santos,Tres Quebradas,377,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,295,8,2,303,0,1,1,0,0,0,303,0,0,1,0,0,0,0,1,0,270,23,8,4,0,0,289,6,1,0,0,9,305,0,18,18,7,23,6,0,12,26,247,20,0,0,295,0,2,4,0,4,0,263,28,13,0,0,0,1,110,190,2,3,0,0,295,0,8,0,0,0,0,2,0,0,0,0,0,378,6.871287128712871,23.524752475247524,6.983498349834983,23.96039603960396,1.0163934426229508,3.6950819672131145,2.413114754098361,311,175,268,15,40,15,12,0,4,3,1,6,12,2,44,5,7,4,5,2,10,683,145,0,247,581,0,439,389,0,763,65,0,233,595,0,183,50,543,52,0,53,6,19,0,15,18,36,20,18,179,0,0,0,13,30,65,23,30,103,0,0,21,31,25,65,30,11,1,0,16,0,0,0,0,0,347,26,383,0,0,13,6,31,133,161,55,3,199,38,15,13,56,0,44,0,2,417,447,113,83,17,125,25,0,2,2,0,91,8,166,4,0,0,436,194,0,6,16,88,1,15,0,0,2,17,51,33,19,44,48,67,44,48,314,121,42,61,66,55,68,43,45,24,9,2,5,0,5,4,10.0,5.0,8.0,13.0,8.0,13.0,17.0,11.0,12.0,11.0,13.0,12.0,9.0,8.0,7.0,21.0,14.0,7.0,9.0,11.0,17.0,12.0,7.0,13.0,5.0,12.0,12.0,12.0,13.0,5.0,6.0,14.0,13.0,5.0,10.0,11.0,6.0,16.0,12.0,14.0,13.0,18.0,7.0,11.0,16.0,6.0,14.0,8.0,13.0,8.0,8.0,13.0,11.0,14.0,12.0,6.0,9.0,9.0,11.0,14.0,5.0,12.0,7.0,7.0,7.0,11.0,7.0,8.0,3.0,11.0,4.0,8.0,5.0,9.0,10.0,3.0,13.0,11.0,7.0,7.0,5.0,7.0,6.0,8.0,5.0,1.0,5.0,0.0,4.0,1.0,3.0,0.0,4.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,536,171,0,44,64,49,62,54,54,48,59,65,49,58,49,38,40,36,41,31,11,11,1,0,0,853,8,2,1,0,853,8,2,1,0,256,9,17,131,51,3,240,157,0,429,434,1,0,3,22,7,0,0,0,0,0,0,0,832,0,8,7,7,1,0,0,12,829,0,189,282,33,2,0,358,0,1.758974358974359,0.0,2.278745644599303,0.0,8.430555555555555,4,3,5,0,0,0,4,295,0,12,25,12,32,37,30,24,26,40,23,20,8,10,3,7,1,301,10,290,21,283,28,49,262,265,46,106,205,148,163,27,284,285,26,270,41,223,47,97,214,159,152,174,137,45,266,85,226,3,308,55,188,57,11,0,212,99,0,1,3,3,0,0,0,0,0,0,0,304,0,1.3408360128617365,1.437299035369775,1.0,1.0666666666666669,1.0666666666666669,56.37299035369775 +PA090301,70313,Los Santos,Los Santos,Agua Buena,557,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,431,17,4,443,5,1,0,0,0,3,450,0,0,0,0,1,0,0,1,4,420,22,4,0,0,2,433,1,1,0,0,17,452,0,25,17,3,54,11,0,24,44,363,20,1,0,443,7,0,1,0,1,0,387,35,30,0,0,0,0,168,278,0,6,0,0,442,1,7,1,0,0,0,0,0,0,0,1,0,567,6.931111111111111,21.38222222222222,6.975555555555555,23.324444444444445,1.0066371681415929,3.745575221238938,2.43141592920354,460,275,333,39,84,13,7,4,5,18,4,0,18,0,46,15,4,3,12,4,25,969,227,0,303,893,0,671,525,0,1095,101,0,251,945,0,213,38,888,57,0,58,16,9,4,32,44,65,44,37,276,0,0,0,35,42,70,24,43,167,0,0,14,30,36,71,50,7,9,2,11,0,0,0,0,0,544,29,534,0,2,12,12,44,148,263,67,12,358,65,21,20,58,0,44,0,0,634,626,99,213,21,196,36,0,1,0,0,146,7,321,0,0,0,710,245,0,2,28,106,6,10,0,0,0,33,43,35,29,62,53,168,65,85,517,163,49,65,131,90,105,45,48,22,12,3,5,1,4,0,16.0,20.0,11.0,17.0,22.0,13.0,11.0,10.0,13.0,20.0,20.0,14.0,11.0,16.0,12.0,8.0,15.0,13.0,19.0,10.0,11.0,15.0,19.0,18.0,23.0,19.0,17.0,24.0,22.0,18.0,15.0,20.0,14.0,20.0,13.0,23.0,17.0,17.0,13.0,12.0,8.0,10.0,12.0,12.0,10.0,5.0,5.0,12.0,14.0,7.0,18.0,12.0,21.0,20.0,23.0,18.0,23.0,20.0,15.0,20.0,25.0,18.0,11.0,15.0,10.0,9.0,11.0,12.0,13.0,14.0,15.0,9.0,13.0,12.0,16.0,12.0,16.0,8.0,7.0,7.0,14.0,13.0,10.0,8.0,13.0,4.0,5.0,1.0,2.0,1.0,2.0,3.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,226,779,255,0,86,67,73,65,86,100,82,82,52,43,94,96,79,59,65,50,58,13,8,2,0,0,1243,12,3,2,0,1243,12,3,2,0,397,11,79,215,63,6,263,226,0,660,591,9,0,0,36,8,0,0,0,1,0,0,7,1208,0,10,54,56,0,1,0,108,1031,0,213,384,51,6,0,606,0,1.8166969147005445,0.0,2.3300970873786406,0.0,7.891269841269842,3,18,27,0,1,0,43,368,0,19,41,13,31,72,59,57,38,54,23,20,4,12,6,6,0,449,11,423,37,423,37,54,406,397,63,133,327,239,221,47,413,405,55,408,52,185,223,119,341,203,257,224,236,29,431,62,398,3,457,103,254,89,14,0,338,122,0,0,6,2,0,0,0,1,0,0,3,448,0,1.3782608695652174,1.3608695652173912,1.0,1.0,1.0,57.35652173913044 +PA090314,70314,Los Santos,Los Santos,Villa Lourdes,529,0,1,3,0,0,0,0,0,0,0,0,2,0,0,0,326,125,3,414,37,1,0,0,2,0,446,0,0,1,0,0,7,0,0,20,272,150,8,4,0,0,431,9,3,0,0,11,454,0,34,9,1,22,13,0,15,28,357,50,4,0,429,6,2,6,0,11,0,412,35,6,0,0,0,1,66,380,0,8,0,0,5,397,49,1,0,0,0,0,0,0,2,0,0,535,6.871396895787139,20.13082039911308,6.971175166297117,22.9179600886918,1.0088105726872247,3.26431718061674,1.751101321585903,460,242,350,39,42,13,20,8,4,6,4,7,7,1,34,11,3,3,8,6,7,961,165,0,237,889,0,588,538,0,998,128,0,251,875,0,204,47,795,80,0,80,12,18,0,42,32,37,41,37,275,0,0,1,36,44,53,27,39,165,1,5,20,28,21,23,16,51,12,2,8,0,0,0,0,0,537,25,470,0,2,0,16,30,143,230,61,6,230,38,58,16,65,0,154,0,0,615,588,100,210,18,194,34,0,5,0,5,95,9,343,31,0,0,678,214,2,14,24,86,9,5,0,0,0,12,36,19,24,79,107,79,58,148,569,146,59,77,62,99,68,30,31,18,6,2,1,2,2,31,23.0,13.0,19.0,22.0,19.0,18.0,21.0,16.0,12.0,8.0,15.0,10.0,14.0,12.0,13.0,10.0,21.0,10.0,16.0,18.0,20.0,21.0,21.0,18.0,17.0,19.0,18.0,21.0,20.0,14.0,13.0,19.0,15.0,16.0,15.0,25.0,15.0,14.0,14.0,17.0,15.0,18.0,11.0,20.0,15.0,13.0,14.0,17.0,8.0,11.0,22.0,14.0,18.0,15.0,19.0,14.0,16.0,14.0,17.0,8.0,13.0,16.0,12.0,17.0,12.0,11.0,9.0,11.0,8.0,16.0,9.0,11.0,12.0,11.0,6.0,8.0,7.0,7.0,9.0,9.0,1.0,6.0,8.0,1.0,4.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,235,796,172,0,96,75,64,75,97,92,78,85,79,63,88,69,70,55,49,40,20,4,2,2,0,0,1188,6,6,3,0,1188,6,6,3,0,388,12,23,145,37,7,356,235,0,569,627,7,0,2,103,4,0,0,0,0,0,0,5,1089,0,7,11,148,2,12,0,285,738,0,203,305,28,5,2,660,0,2.028225806451613,0.0,2.673024523160763,0.0,7.497090606816292,2,5,69,1,4,0,120,259,0,53,41,23,47,60,71,45,26,27,21,14,4,10,1,2,13,444,16,405,55,392,68,67,393,374,86,88,372,259,201,18,442,416,44,365,95,227,138,105,355,202,258,191,269,165,295,182,278,0,460,113,266,73,8,0,336,124,0,1,20,3,0,0,0,0,0,0,3,433,0,1.3369565217391304,1.2782608695652171,0.0,1.0769230769230769,1.0769230769230769,51.99130434782609 +,70315,Los Santos,Los Santos,El Ejido,955,5,4,0,0,0,0,0,0,0,1,1,1,0,0,175,556,22,3,741,12,0,0,0,3,0,746,0,0,5,0,1,4,0,0,390,340,23,0,1,0,2,735,10,4,0,0,7,756,0,76,21,40,59,12,0,227,76,434,18,1,0,718,4,19,13,0,2,0,647,23,86,0,0,0,0,495,248,0,13,0,0,576,154,8,3,0,0,0,0,0,14,1,0,0,967,6.944444444444445,23.589430894308943,6.985094850948509,23.752032520325205,1.0066137566137563,3.669312169312169,2.522486772486773,762,428,649,79,68,28,22,16,8,23,12,4,81,6,33,15,7,11,23,6,11,1867,155,51,928,1094,51,1761,261,51,1891,131,51,628,1445,0,466,162,1346,48,51,49,33,31,8,47,41,71,48,33,265,0,0,5,52,83,112,49,82,334,5,32,40,57,69,135,192,34,35,10,65,0,1,0,4,51,1065,37,731,51,0,14,9,79,346,256,35,15,721,70,75,39,93,2,69,14,0,1047,1139,375,334,40,286,43,0,5,0,5,73,12,496,55,28,28,815,467,5,59,48,342,29,64,4,51,0,63,209,108,61,218,72,153,67,151,823,122,85,90,138,143,241,117,166,97,56,16,14,9,14,55,33.0,29.0,24.0,27.0,25.0,32.0,38.0,33.0,33.0,28.0,28.0,25.0,26.0,30.0,39.0,37.0,34.0,21.0,33.0,26.0,42.0,19.0,32.0,39.0,32.0,43.0,35.0,39.0,29.0,35.0,29.0,34.0,34.0,30.0,31.0,36.0,31.0,43.0,31.0,41.0,36.0,36.0,35.0,25.0,27.0,33.0,34.0,29.0,27.0,26.0,27.0,28.0,38.0,27.0,17.0,28.0,28.0,20.0,21.0,26.0,21.0,31.0,28.0,21.0,12.0,25.0,16.0,9.0,14.0,21.0,10.0,20.0,17.0,11.0,6.0,9.0,6.0,4.0,4.0,9.0,5.0,3.0,3.0,8.0,2.0,3.0,3.0,1.0,1.0,0.0,0.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,450,1517,219,0,138,164,148,151,164,181,158,182,159,149,137,123,113,85,64,32,21,8,8,1,0,0,2091,22,23,0,50,2091,27,18,0,50,589,11,60,372,42,19,592,450,51,672,1442,21,51,2,22,3,0,0,0,0,0,0,8,2100,51,47,24,77,3,9,1,243,1731,51,645,673,87,13,3,714,51,1.5683003128258604,0.0291970802919708,2.231003039513678,0.0425531914893617,9.576852698993596,21,12,43,3,3,1,86,593,0,6,23,18,35,51,53,103,79,125,80,70,33,42,17,25,1,751,11,717,45,707,55,112,650,706,56,402,360,427,335,162,600,731,31,713,49,462,251,377,385,639,123,509,253,81,681,129,633,9,753,145,471,123,23,2,508,254,0,1,8,0,0,0,0,0,0,0,0,753,0,1.3704188481675392,1.4908376963350785,1.0,1.0,1.0,48.4002624671916 +PA090410,70401,Los Santos,Macaracas,Macaracas,1315,5,8,5,0,0,0,0,0,0,0,2,2,0,0,17,872,118,7,991,16,1,0,0,5,1,993,0,0,8,0,0,12,0,1,952,16,34,3,8,0,1,984,11,0,0,0,19,1014,0,113,51,32,99,24,0,68,117,790,35,4,0,952,9,1,13,0,39,0,994,12,8,0,0,0,0,475,524,1,14,0,0,888,77,14,4,0,3,0,2,0,13,13,0,1015,322,6.700715015321757,22.825331971399383,6.9570990806945865,23.68641470888662,1.0029585798816567,3.849112426035503,2.586785009861933,1021,539,854,66,162,36,40,17,14,32,9,12,28,2,61,25,5,10,25,7,9,2385,344,0,1034,1695,0,2159,570,0,2562,167,0,743,1986,0,618,125,1909,77,0,87,29,24,3,66,102,94,60,67,489,0,0,8,80,102,178,70,113,479,0,2,51,68,125,99,183,33,46,7,58,0,3,2,1,0,1244,114,1176,0,2,48,17,213,434,385,84,60,772,89,121,36,137,2,164,0,1,1375,1457,442,380,41,361,74,1,21,2,4,193,18,630,15,0,0,1367,678,8,12,96,286,33,51,3,0,2,70,169,105,82,293,135,158,83,261,1082,233,108,164,235,275,311,119,149,80,29,8,19,0,5,15,27.0,26.0,24.0,26.0,27.0,30.0,20.0,46.0,44.0,28.0,35.0,32.0,24.0,46.0,35.0,39.0,42.0,41.0,32.0,47.0,32.0,42.0,34.0,46.0,44.0,40.0,42.0,47.0,36.0,31.0,39.0,35.0,44.0,31.0,23.0,25.0,32.0,29.0,41.0,36.0,35.0,34.0,25.0,43.0,38.0,30.0,36.0,36.0,39.0,30.0,47.0,39.0,44.0,41.0,41.0,31.0,37.0,45.0,45.0,33.0,36.0,32.0,31.0,33.0,33.0,34.0,32.0,32.0,28.0,33.0,22.0,28.0,31.0,29.0,19.0,27.0,22.0,16.0,14.0,12.0,20.0,18.0,9.0,13.0,15.0,10.0,4.0,4.0,11.0,4.0,2.0,6.0,4.0,7.0,5.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,470,1844,518,0,130,168,172,201,198,196,172,163,175,171,212,191,165,159,129,91,75,33,24,6,1,0,2803,16,8,5,0,2803,18,6,5,0,692,18,187,541,108,11,805,470,0,1265,1548,19,0,2,16,1,0,0,0,0,0,0,12,2801,0,57,43,40,1,1,1,14,2675,0,619,763,221,10,6,1213,0,1.9596036585365852,0.0,2.670639219934994,0.0,9.1454802259887,21,19,19,1,0,1,7,953,0,22,46,22,58,100,141,150,74,168,91,56,30,28,16,11,4,995,26,942,79,938,83,186,835,940,81,266,755,637,384,169,852,949,72,901,120,596,305,332,689,799,222,447,574,187,834,257,764,10,1011,214,559,230,18,0,653,368,0,0,7,1,0,0,0,0,0,0,5,1008,0,1.346718903036239,1.4270323212536729,1.0,1.0192307692307692,1.0192307692307692,56.14691478942213 +PA090401,70402,Los Santos,Macaracas,Bahía Honda,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,163,17,236,6,2,1,0,14,0,237,0,0,2,5,0,15,0,0,20,10,212,11,6,0,0,191,49,0,2,0,17,259,0,37,10,0,25,17,0,1,1,233,24,0,0,194,28,18,2,0,17,0,248,8,3,0,0,0,0,15,214,0,30,0,0,0,233,17,0,0,2,0,1,0,0,6,0,0,348,4.556,11.432,4.788,12.928,1.0077220077220077,3.0617760617760617,1.833976833976834,261,147,184,27,31,6,9,2,1,6,3,1,8,0,7,6,6,11,17,18,7,474,181,0,30,625,0,363,292,0,556,99,0,156,499,0,152,4,467,32,0,40,11,10,11,24,36,30,26,29,202,0,0,0,21,27,38,11,30,76,0,0,3,6,8,9,2,2,2,0,1,0,0,0,0,0,324,14,267,0,0,6,1,2,69,138,32,26,43,21,17,3,14,0,238,0,0,398,288,26,151,3,113,2,0,41,0,16,94,26,159,26,0,0,496,89,0,2,5,10,2,1,0,0,0,5,4,4,7,17,98,36,10,157,371,100,56,42,34,14,28,7,6,1,1,0,0,0,0,26,12.0,8.0,8.0,3.0,10.0,10.0,9.0,10.0,7.0,4.0,13.0,6.0,3.0,9.0,6.0,10.0,13.0,11.0,8.0,18.0,19.0,10.0,13.0,13.0,9.0,11.0,15.0,8.0,8.0,11.0,11.0,6.0,8.0,9.0,5.0,11.0,10.0,9.0,7.0,7.0,10.0,7.0,11.0,11.0,5.0,4.0,10.0,6.0,5.0,6.0,9.0,2.0,9.0,9.0,9.0,10.0,8.0,5.0,5.0,8.0,11.0,9.0,8.0,10.0,7.0,9.0,4.0,5.0,6.0,9.0,6.0,4.0,8.0,11.0,7.0,6.0,3.0,3.0,5.0,2.0,4.0,5.0,1.0,1.0,3.0,3.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,118,454,114,0,41,40,37,60,64,53,39,44,44,31,38,36,45,33,36,19,14,9,1,2,0,0,685,1,0,0,0,685,1,0,0,0,265,7,30,62,18,0,186,118,0,434,252,0,0,0,8,0,0,0,0,0,0,0,2,676,0,4,24,77,2,19,1,154,405,0,32,121,3,2,0,528,0,2.565217391304348,0.0,3.4444444444444446,0.0,6.150145772594752,2,15,27,1,10,0,64,142,0,32,35,29,43,42,25,15,14,13,3,1,1,0,0,0,8,230,31,165,96,182,79,18,243,136,125,4,257,148,113,12,249,205,56,161,100,126,35,19,242,96,165,55,206,183,78,178,83,1,260,70,135,48,8,0,208,53,0,0,6,0,0,0,0,0,0,0,2,253,0,1.524904214559387,1.103448275862069,0.0,1.0,1.0,52.616858237547895 +PA090402,70403,Los Santos,Macaracas,Bajos de Güera,292,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,76,95,4,171,0,1,0,0,2,1,126,0,2,32,1,2,12,0,0,0,8,156,9,2,0,0,146,29,0,0,0,0,175,0,73,14,4,23,3,0,0,5,158,12,0,0,137,35,0,2,1,0,0,174,0,0,0,0,1,0,9,148,0,18,0,0,0,51,120,0,0,3,0,0,0,0,1,0,0,293,6.976608187134503,24.0,7.0,24.0,1.0057142857142858,3.4171428571428573,2.222857142857143,177,106,138,14,16,6,2,2,2,4,1,2,1,0,7,1,4,0,2,0,5,318,133,0,51,400,0,110,341,0,384,67,0,88,363,0,84,4,312,51,0,54,2,4,1,10,20,27,17,11,136,0,0,0,11,21,23,15,9,50,1,1,5,7,6,8,6,4,2,0,0,0,0,0,0,0,180,3,238,0,2,1,0,8,61,139,20,10,35,29,21,3,2,0,93,0,0,251,220,22,81,3,33,25,0,19,0,13,48,10,120,0,0,0,331,71,0,1,6,12,0,0,0,0,0,4,4,7,3,17,55,17,6,70,250,74,20,32,33,24,18,9,10,0,0,0,0,0,1,0,4.0,5.0,6.0,5.0,3.0,6.0,8.0,4.0,6.0,3.0,6.0,6.0,3.0,6.0,7.0,11.0,5.0,4.0,5.0,8.0,9.0,7.0,7.0,14.0,6.0,9.0,6.0,5.0,3.0,8.0,4.0,2.0,1.0,6.0,2.0,7.0,6.0,6.0,6.0,4.0,8.0,4.0,5.0,1.0,5.0,4.0,9.0,6.0,8.0,8.0,9.0,7.0,4.0,6.0,6.0,8.0,6.0,8.0,8.0,8.0,5.0,6.0,8.0,4.0,6.0,4.0,4.0,4.0,6.0,5.0,6.0,3.0,3.0,5.0,5.0,4.0,4.0,3.0,1.0,3.0,3.0,3.0,2.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,78,308,85,0,23,27,28,33,43,31,15,29,23,35,32,38,29,23,22,15,13,2,6,3,1,0,470,1,0,0,0,470,1,0,0,0,149,2,8,91,17,1,125,78,0,226,244,1,0,0,1,0,0,0,0,0,0,0,4,466,0,0,31,34,1,0,1,84,320,0,46,103,8,1,0,313,0,2.5416666666666665,0.0,3.307142857142857,0.0,6.350318471337579,0,9,16,0,0,1,40,111,0,20,25,13,24,33,14,17,10,13,2,2,2,0,0,1,0,165,12,120,57,138,39,32,145,98,79,6,171,91,86,1,176,137,40,103,74,86,17,15,162,25,152,51,126,100,77,133,44,2,175,40,105,31,1,0,145,32,0,0,0,0,0,0,0,0,0,0,2,175,0,1.4180790960451977,1.2429378531073447,2.0,1.25,1.25,55.01129943502825 +PA090404,70404,Los Santos,Macaracas,Corozal,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,146,4,223,8,0,0,0,4,0,223,0,0,2,2,0,8,0,0,174,1,54,3,3,0,0,216,14,0,0,0,5,235,0,22,5,2,22,17,0,0,10,198,26,1,0,205,15,1,3,0,11,0,207,17,8,0,0,1,2,32,187,0,16,0,0,0,223,5,0,0,4,0,1,0,0,2,0,0,303,6.758771929824562,10.68859649122807,6.942982456140351,17.37719298245614,1.0127659574468084,3.3063829787234043,2.046808510638298,238,124,189,18,36,3,9,2,3,6,0,2,6,1,19,7,6,4,10,9,6,499,111,0,86,524,0,204,406,0,552,58,0,166,444,0,148,18,412,32,0,34,2,9,0,14,33,38,29,32,168,0,0,0,7,27,32,28,19,82,0,6,4,4,5,21,12,1,2,0,1,0,0,0,0,0,290,7,265,0,0,3,3,10,101,125,19,10,79,20,14,8,56,0,119,0,1,340,297,53,110,8,113,3,0,9,1,16,68,4,144,5,0,0,424,92,0,4,7,32,2,1,0,0,1,3,10,14,9,63,42,31,20,104,315,105,32,31,54,22,36,17,9,8,3,0,0,0,0,5,4.0,6.0,10.0,7.0,5.0,3.0,8.0,9.0,11.0,12.0,9.0,6.0,12.0,4.0,10.0,13.0,7.0,8.0,9.0,9.0,9.0,12.0,15.0,8.0,10.0,10.0,10.0,8.0,5.0,8.0,5.0,6.0,6.0,10.0,11.0,7.0,10.0,8.0,11.0,9.0,12.0,8.0,13.0,9.0,8.0,10.0,5.0,12.0,7.0,7.0,5.0,8.0,8.0,7.0,7.0,10.0,6.0,4.0,11.0,7.0,5.0,7.0,5.0,5.0,8.0,9.0,4.0,7.0,3.0,5.0,8.0,6.0,8.0,5.0,6.0,4.0,5.0,4.0,6.0,4.0,5.0,0.0,3.0,0.0,3.0,1.0,0.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,116,418,103,0,32,43,41,46,54,41,38,45,50,41,35,38,30,28,33,23,11,6,2,0,0,0,637,0,0,0,0,637,0,0,0,0,218,7,46,57,21,0,172,116,0,381,256,0,0,0,8,0,0,0,0,0,0,0,0,629,0,0,24,61,2,38,1,156,355,0,64,136,16,0,0,421,0,2.116279069767442,0.0,2.9502762430939224,0.0,6.8869701726844585,0,14,29,1,16,1,57,120,0,20,29,19,22,42,27,26,20,14,6,5,2,1,0,1,4,231,7,199,39,194,44,27,211,150,88,13,225,126,112,1,237,214,24,178,60,58,120,34,204,65,173,56,182,158,80,150,88,2,236,61,127,43,7,0,175,63,0,0,2,0,0,0,0,0,0,0,0,236,0,1.4285714285714286,1.2478991596638656,0.0,1.0,1.0,53.17226890756302 +PA090403,70405,Los Santos,Macaracas,Chupa,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,10,0,214,0,0,0,0,0,0,213,0,0,0,0,1,0,0,0,165,2,30,5,12,0,0,202,8,0,0,0,4,214,0,42,4,5,23,9,0,0,7,198,9,0,0,190,0,4,8,0,12,0,194,10,10,0,0,0,0,68,141,0,5,0,0,132,73,4,4,0,0,0,0,0,1,0,0,0,297,6.990430622009569,23.96650717703349,7.0,23.95215311004785,1.0,3.6542056074766354,2.55607476635514,214,126,167,6,36,2,3,2,3,4,4,0,3,1,10,7,4,5,2,1,9,397,150,0,67,480,0,330,217,0,503,44,0,144,403,0,121,23,373,30,0,30,7,9,0,12,20,21,20,11,122,0,0,0,15,21,29,10,21,87,0,0,6,10,26,8,40,4,3,0,14,0,0,1,0,0,233,9,265,0,1,6,1,32,92,104,27,10,88,26,26,9,17,2,68,1,1,275,296,39,105,10,35,28,0,13,8,3,61,5,144,6,0,0,307,95,0,1,29,57,4,14,0,0,8,7,12,17,9,31,50,31,18,59,259,62,17,33,35,40,54,27,14,15,5,1,2,0,1,6,7.0,5.0,6.0,6.0,4.0,8.0,10.0,7.0,6.0,5.0,10.0,8.0,6.0,15.0,3.0,9.0,3.0,11.0,8.0,8.0,4.0,5.0,10.0,3.0,4.0,6.0,3.0,4.0,6.0,9.0,10.0,4.0,11.0,4.0,12.0,4.0,15.0,7.0,2.0,3.0,10.0,5.0,12.0,9.0,5.0,7.0,6.0,4.0,5.0,5.0,4.0,4.0,6.0,8.0,8.0,4.0,10.0,10.0,6.0,8.0,11.0,8.0,7.0,5.0,11.0,9.0,7.0,5.0,7.0,2.0,9.0,7.0,7.0,3.0,5.0,7.0,4.0,7.0,5.0,3.0,3.0,5.0,3.0,2.0,2.0,4.0,1.0,4.0,2.0,2.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,106,343,122,0,28,36,42,39,26,28,41,31,41,27,30,38,42,30,31,26,15,13,6,0,1,0,570,1,0,0,0,570,1,0,0,0,134,4,38,140,46,1,102,106,0,405,165,1,0,0,31,0,0,0,0,0,0,0,0,540,0,4,1,75,1,0,2,73,415,0,90,184,28,6,1,262,0,2.1056603773584905,0.0,2.701030927835052,0.0,8.295971978984237,1,0,30,0,0,1,34,148,0,14,25,5,19,20,34,24,15,25,6,14,2,7,1,2,1,211,3,206,8,204,10,51,163,196,18,56,158,143,71,1,213,171,43,184,30,77,107,55,159,108,106,93,121,90,124,127,87,1,213,50,123,37,4,0,152,62,0,0,7,0,0,0,0,0,0,0,0,207,0,1.2850467289719627,1.383177570093458,1.0,1.0,1.0,58.845794392523366 +PA090405,70406,Los Santos,Macaracas,El Cedro,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,89,6,183,0,2,0,0,3,1,178,0,0,1,1,0,9,0,0,36,11,120,12,10,0,0,174,11,1,0,0,3,189,0,38,10,1,14,23,0,1,10,165,13,0,0,179,7,0,3,0,0,0,178,0,11,0,0,0,0,18,163,0,8,0,0,20,137,30,0,0,1,0,0,0,0,0,1,0,275,6.823529411764706,20.449197860962567,7.0,23.737967914438503,1.0105820105820107,3.259259259259259,1.7566137566137563,191,87,136,21,30,6,8,1,1,7,2,3,8,1,13,8,0,1,6,8,5,395,87,0,109,373,0,184,298,0,432,50,0,115,367,0,93,22,338,29,0,29,1,8,1,12,22,21,14,29,115,0,0,0,16,17,29,8,14,62,0,1,8,9,16,11,24,8,0,0,7,0,0,0,0,0,226,3,223,0,0,1,1,8,70,106,13,26,75,12,18,5,15,0,103,0,0,260,242,55,103,5,50,8,0,7,0,3,56,9,114,20,0,0,306,81,1,3,15,41,0,5,0,0,0,12,16,15,6,20,17,21,7,115,236,80,22,25,20,18,32,16,14,2,6,4,0,3,4,20,7.0,4.0,4.0,5.0,2.0,5.0,8.0,3.0,6.0,6.0,11.0,3.0,4.0,8.0,9.0,9.0,2.0,9.0,9.0,5.0,11.0,6.0,4.0,7.0,9.0,9.0,5.0,3.0,5.0,6.0,9.0,10.0,4.0,5.0,3.0,7.0,10.0,6.0,7.0,1.0,4.0,7.0,10.0,9.0,6.0,7.0,10.0,4.0,7.0,8.0,6.0,6.0,6.0,3.0,8.0,11.0,3.0,9.0,3.0,5.0,7.0,8.0,9.0,6.0,7.0,7.0,5.0,7.0,4.0,3.0,5.0,7.0,10.0,4.0,3.0,3.0,0.0,0.0,6.0,2.0,3.0,2.0,0.0,3.0,3.0,1.0,1.0,1.0,0.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,85,330,87,0,22,28,35,34,37,28,31,31,36,36,29,31,37,26,29,11,11,5,4,1,0,0,497,3,0,2,0,497,3,0,2,0,146,4,10,49,19,4,185,85,0,320,179,3,0,0,0,0,0,0,0,0,0,0,2,500,0,2,7,64,3,0,0,44,382,0,72,128,9,2,0,291,0,2.2744186046511627,0.0,2.891025641025641,0.0,7.667330677290836,1,3,39,1,0,0,13,134,0,30,28,9,19,25,14,21,12,12,6,5,1,2,0,4,3,184,7,159,32,156,35,28,163,133,58,13,178,110,81,2,189,177,14,144,47,35,109,40,151,18,173,63,128,111,80,105,86,3,188,60,90,37,4,0,132,59,0,0,0,0,0,0,0,0,0,0,1,190,0,1.361256544502618,1.2670157068062826,1.0,1.0,1.0,55.37696335078534 +PA090406,70407,Los Santos,Macaracas,Espino Amarillo,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,46,2,66,7,1,0,0,1,0,66,0,0,0,0,1,8,0,0,0,4,71,0,0,0,0,68,7,0,0,0,0,75,0,10,1,0,12,8,0,1,0,67,7,0,0,63,6,6,0,0,0,0,71,3,1,0,0,0,0,8,60,0,7,0,0,0,52,9,0,0,14,0,0,0,0,0,0,0,106,7.0,23.9344262295082,7.0,24.0,1.0133333333333334,3.453333333333333,1.8666666666666667,76,40,52,14,10,1,5,3,1,2,2,0,5,0,1,1,1,2,0,1,0,157,47,0,28,176,0,46,158,0,175,29,0,62,142,0,58,4,127,15,0,17,5,1,1,6,12,6,7,10,60,0,0,0,8,12,14,9,7,16,0,0,1,1,3,2,2,2,0,0,2,0,0,0,0,0,72,3,112,0,0,0,1,0,47,50,5,10,11,6,1,0,4,0,52,0,1,107,104,8,33,0,31,1,0,1,1,10,28,4,29,20,0,0,158,22,0,0,0,5,0,2,0,0,1,3,2,0,1,3,20,7,5,33,114,36,9,9,6,4,6,3,0,3,1,0,0,0,0,20,1.0,1.0,2.0,3.0,4.0,5.0,1.0,4.0,2.0,1.0,6.0,4.0,4.0,5.0,3.0,2.0,8.0,5.0,3.0,3.0,2.0,3.0,1.0,3.0,0.0,3.0,0.0,2.0,3.0,3.0,1.0,3.0,2.0,1.0,2.0,3.0,3.0,5.0,2.0,5.0,0.0,5.0,3.0,3.0,2.0,2.0,5.0,4.0,1.0,1.0,3.0,1.0,3.0,2.0,3.0,2.0,2.0,0.0,1.0,5.0,7.0,2.0,2.0,1.0,3.0,4.0,2.0,1.0,1.0,0.0,4.0,1.0,4.0,1.0,2.0,1.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,46,131,34,0,11,13,22,21,9,11,9,18,13,13,12,10,15,8,12,5,4,3,2,0,0,0,210,0,1,0,0,210,0,1,0,0,75,2,11,18,5,0,54,46,0,106,104,1,0,0,0,0,0,0,0,0,0,0,0,211,0,0,13,23,0,0,3,5,167,0,16,42,1,0,0,152,0,2.217391304347826,0.0,3.2333333333333334,0.0,6.3364928909952605,0,7,8,0,0,1,2,58,0,8,11,10,15,10,5,4,6,1,1,1,0,0,1,0,3,71,5,61,15,61,15,10,66,39,37,0,76,53,23,2,74,63,13,51,25,8,43,9,67,15,61,20,56,56,20,55,21,0,76,20,37,16,3,0,60,16,0,0,0,0,0,0,0,0,0,0,0,76,0,1.4078947368421053,1.368421052631579,0.0,1.0,1.0,55.89473684210526 +PA090407,70408,Los Santos,Macaracas,La Mesa,355,9,0,0,0,0,0,0,0,0,0,0,1,0,0,0,109,140,1,245,4,1,0,0,0,0,207,0,2,21,0,0,16,0,4,50,7,147,14,28,0,4,221,25,0,0,0,4,250,0,72,9,0,31,2,0,0,2,233,15,0,0,191,31,1,11,2,14,0,244,2,2,0,0,2,0,13,221,0,16,0,0,171,31,43,0,0,1,0,0,0,0,3,1,0,365,6.648979591836735,21.11020408163265,6.918367346938775,23.63673469387755,1.012,3.32,2.312,254,145,189,30,28,4,6,5,3,0,0,1,8,0,26,5,6,6,2,6,15,468,165,0,55,578,0,174,459,0,538,95,0,145,488,0,138,7,427,61,0,62,9,9,0,22,30,33,25,17,159,0,0,6,19,24,57,19,15,64,0,2,7,9,9,8,18,1,6,0,3,0,0,0,0,0,202,14,352,0,1,3,3,19,85,194,36,18,69,14,20,13,13,0,85,0,2,363,310,41,86,13,49,2,0,22,3,8,79,5,277,2,0,0,435,85,6,3,7,24,5,3,0,0,3,9,9,5,2,16,41,33,15,83,412,115,18,35,25,23,19,9,6,5,3,0,1,0,0,2,5.0,7.0,14.0,14.0,16.0,13.0,8.0,11.0,10.0,7.0,10.0,8.0,7.0,10.0,7.0,12.0,5.0,7.0,7.0,7.0,7.0,12.0,11.0,12.0,8.0,4.0,10.0,4.0,10.0,4.0,11.0,12.0,7.0,5.0,8.0,2.0,4.0,6.0,6.0,7.0,10.0,6.0,6.0,6.0,11.0,7.0,10.0,16.0,7.0,7.0,10.0,11.0,8.0,10.0,9.0,8.0,5.0,7.0,12.0,5.0,1.0,10.0,6.0,11.0,8.0,9.0,4.0,10.0,7.0,7.0,7.0,5.0,9.0,8.0,4.0,6.0,2.0,9.0,7.0,3.0,3.0,2.0,4.0,2.0,4.0,4.0,1.0,1.0,0.0,1.0,3.0,0.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,147,395,131,0,56,49,42,38,50,32,43,25,39,47,48,37,36,37,33,27,15,7,9,2,1,0,671,1,0,1,0,671,1,0,1,0,218,1,29,89,30,1,158,147,0,380,292,1,0,0,1,0,0,0,0,0,0,0,1,671,0,12,0,8,1,0,0,2,650,0,51,137,17,2,0,466,0,2.5426356589147288,0.0,3.173469387755102,0.0,6.450222882615156,6,0,6,1,0,0,2,239,0,46,60,12,37,40,15,19,9,4,1,3,3,1,1,1,1,241,13,177,77,183,71,33,221,170,84,9,245,167,87,4,250,200,54,176,78,52,124,19,235,27,227,58,196,130,124,169,85,0,254,74,144,29,7,0,193,61,0,0,1,0,0,0,0,0,0,0,0,253,0,1.4291338582677164,1.220472440944882,1.0,1.0666666666666669,1.0666666666666669,56.511811023622045 +PA090408,70409,Los Santos,Macaracas,Las Palmas,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,91,8,154,5,1,0,0,7,0,144,0,0,20,0,0,2,0,1,91,2,55,10,9,0,0,140,22,1,0,0,4,167,0,37,6,0,26,8,0,2,9,150,6,0,0,136,11,3,9,0,8,0,158,4,4,0,0,1,0,21,132,0,14,0,0,0,124,32,2,0,7,0,2,0,0,0,0,0,244,5.839743589743589,16.16025641025641,6.871794871794871,21.096153846153847,1.0,3.065868263473054,2.005988023952096,167,92,84,19,16,2,3,0,2,3,1,1,5,0,14,6,5,0,9,8,7,282,102,0,49,335,0,165,219,0,329,55,0,74,310,0,64,10,271,39,0,40,1,3,0,11,18,22,25,23,89,0,0,0,8,17,24,10,10,58,1,1,1,5,3,5,2,3,4,0,0,0,0,0,0,0,165,25,173,0,2,10,9,7,46,85,17,18,61,1,5,8,12,0,101,0,0,216,179,42,82,8,42,0,0,14,0,3,55,7,104,2,0,0,280,68,0,1,3,8,3,0,0,0,0,4,7,11,4,25,32,9,8,90,195,73,20,18,15,11,30,16,5,6,2,1,0,0,1,2,2.0,2.0,1.0,6.0,4.0,4.0,3.0,3.0,5.0,2.0,6.0,4.0,2.0,4.0,6.0,5.0,4.0,6.0,2.0,6.0,4.0,3.0,11.0,3.0,5.0,7.0,8.0,6.0,2.0,5.0,3.0,3.0,6.0,8.0,3.0,3.0,1.0,4.0,4.0,4.0,3.0,9.0,7.0,2.0,6.0,3.0,3.0,6.0,1.0,5.0,7.0,10.0,7.0,9.0,5.0,9.0,9.0,2.0,6.0,2.0,4.0,8.0,6.0,2.0,6.0,6.0,7.0,5.0,4.0,2.0,4.0,2.0,2.0,9.0,6.0,4.0,9.0,3.0,1.0,6.0,4.0,2.0,2.0,2.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,54,253,88,0,15,17,22,23,26,28,23,16,27,18,38,28,26,24,23,23,10,5,1,2,0,0,395,0,0,0,0,395,0,0,0,0,155,1,16,43,23,1,102,54,0,165,230,0,0,1,0,0,0,0,0,1,0,0,0,393,0,2,5,76,2,1,0,172,137,0,54,97,10,0,0,234,0,2.727272727272727,0.0,3.4047619047619047,0.0,6.518987341772152,1,1,33,0,1,0,68,63,0,31,25,13,17,16,13,12,14,7,9,2,3,2,0,1,2,158,9,127,40,136,31,17,150,106,61,10,157,112,55,3,164,116,51,110,57,60,50,19,148,50,117,42,125,100,67,108,59,1,166,54,81,28,4,0,133,34,0,0,0,0,0,0,0,0,0,0,0,167,0,1.2934131736526946,1.0718562874251496,0.0,1.0,1.0,56.550898203592816 +PA090409,70410,Los Santos,Macaracas,Llano de Piedra,891,1,0,5,0,0,0,0,0,0,0,0,4,0,0,0,608,46,4,647,7,0,0,0,3,1,616,0,0,6,19,1,14,0,2,458,7,144,18,31,0,0,598,49,1,0,0,10,658,0,137,19,9,54,20,0,10,25,579,44,0,0,586,51,9,8,0,4,0,619,11,24,0,0,3,1,155,468,1,33,0,1,409,186,47,2,5,2,0,1,0,4,1,1,0,901,6.973520249221184,23.90809968847352,7.0,24.0,1.009118541033435,3.5987841945288754,2.405775075987842,668,361,521,26,112,21,23,6,4,27,3,9,21,2,77,24,9,6,19,7,33,1292,418,0,236,1474,0,721,989,0,1511,199,0,407,1303,0,360,47,1144,159,0,160,16,24,3,30,44,87,57,42,429,2,0,1,42,64,110,41,59,220,0,1,19,42,44,38,48,63,11,1,10,0,0,0,2,0,644,122,816,0,2,16,83,70,245,372,97,32,304,51,69,33,52,0,247,1,3,927,877,174,283,38,163,29,1,69,3,23,223,24,458,41,0,0,1082,291,1,2,58,128,8,10,2,0,2,24,59,47,22,97,99,100,56,260,844,276,78,106,96,116,105,46,51,31,7,3,4,0,0,41,20.0,18.0,28.0,28.0,20.0,23.0,22.0,25.0,17.0,21.0,20.0,19.0,22.0,27.0,23.0,18.0,23.0,16.0,21.0,29.0,37.0,21.0,30.0,32.0,26.0,24.0,20.0,21.0,26.0,22.0,32.0,28.0,20.0,16.0,17.0,16.0,15.0,15.0,24.0,16.0,26.0,25.0,15.0,15.0,14.0,15.0,23.0,18.0,16.0,20.0,28.0,22.0,25.0,19.0,22.0,22.0,30.0,22.0,37.0,17.0,26.0,22.0,33.0,19.0,20.0,20.0,15.0,15.0,13.0,13.0,16.0,15.0,19.0,17.0,16.0,22.0,14.0,15.0,12.0,12.0,12.0,15.0,16.0,7.0,14.0,4.0,10.0,11.0,5.0,5.0,1.0,3.0,8.0,2.0,4.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,333,1116,355,0,114,108,111,107,146,113,113,86,95,92,116,128,120,76,83,75,64,35,18,4,0,0,1786,4,11,3,0,1787,7,7,3,0,497,18,111,334,96,11,404,333,0,887,909,8,0,0,50,34,0,1,0,1,0,0,14,1704,0,21,10,33,2,0,0,32,1706,0,242,463,60,9,2,1028,0,2.3201581027667983,0.0,2.899824253075572,0.0,7.454545454545454,9,2,15,0,0,0,10,632,0,54,93,30,62,80,87,71,39,57,34,22,4,8,4,2,17,647,21,567,101,566,102,124,544,517,151,97,571,393,275,20,648,572,96,502,166,274,228,109,559,252,416,219,449,272,396,338,330,4,664,172,349,130,17,0,450,218,0,0,11,5,0,1,0,0,0,0,3,648,0,1.3877245508982037,1.312874251497006,2.0,1.0555555555555556,1.0555555555555556,56.98053892215569 +PA090411,70411,Los Santos,Macaracas,Mogollón,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,60,0,85,2,0,0,0,0,0,69,0,0,9,1,0,8,0,0,0,4,73,9,1,0,0,71,15,0,0,0,1,87,0,52,5,0,6,6,0,0,0,84,3,0,0,56,21,3,7,0,0,0,82,0,0,0,0,5,0,8,62,1,16,0,0,0,61,16,0,0,6,0,3,0,0,1,0,0,156,6.5064935064935066,21.96103896103896,6.974025974025974,24.0,1.0,2.931034482758621,1.6781609195402298,87,42,35,3,8,2,2,1,1,0,1,0,1,0,4,2,1,1,4,2,3,144,35,0,15,164,0,21,158,0,153,26,0,30,149,0,29,1,128,21,0,21,2,0,0,8,10,20,9,7,56,0,0,0,6,6,8,5,2,12,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,92,2,75,0,0,2,0,3,17,38,7,10,11,12,2,4,1,0,64,0,0,108,75,8,36,4,39,0,0,7,0,3,28,4,26,9,0,0,150,15,0,1,0,3,0,0,0,0,0,2,2,3,0,12,33,10,0,32,91,32,8,13,9,10,5,2,0,4,0,0,0,0,0,9,0.0,1.0,2.0,1.0,1.0,1.0,0.0,3.0,3.0,2.0,0.0,1.0,2.0,3.0,3.0,2.0,3.0,2.0,0.0,2.0,3.0,2.0,1.0,2.0,1.0,3.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,2.0,3.0,5.0,0.0,0.0,1.0,1.0,5.0,2.0,1.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,4.0,1.0,5.0,0.0,8.0,4.0,6.0,2.0,3.0,3.0,4.0,2.0,3.0,5.0,2.0,2.0,6.0,6.0,0.0,2.0,2.0,4.0,1.0,3.0,3.0,1.0,0.0,3.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,23,115,45,0,5,9,9,9,9,6,5,9,11,14,12,23,17,16,12,8,5,3,1,0,0,0,182,0,1,0,0,182,0,1,0,0,62,1,33,26,8,0,30,23,0,89,94,0,0,1,1,4,0,0,0,0,0,0,2,175,0,0,9,13,0,0,0,26,135,0,12,30,2,1,0,138,0,2.7058823529411766,0.0,3.2222222222222223,0.0,5.355191256830601,0,3,7,0,0,0,15,62,0,23,16,7,9,12,9,4,1,2,0,3,0,1,0,0,0,80,7,62,25,66,21,10,77,22,65,0,87,65,22,3,84,78,9,50,37,9,41,5,82,4,83,16,71,72,15,65,22,0,87,33,41,12,1,0,74,13,0,0,1,1,0,0,0,0,0,0,1,84,0,1.2413793103448276,0.8620689655172413,0.0,1.0,1.0,58.4367816091954 +PA090504,70501,Los Santos,Pedasí,Pedasí,1737,7,34,0,0,0,0,0,0,0,0,0,6,0,0,696,377,11,2,1070,14,0,0,0,2,0,1072,0,1,6,2,0,5,0,0,1062,6,13,5,0,0,0,1060,3,3,0,0,20,1086,0,408,96,128,50,10,0,24,204,762,94,2,0,1020,4,22,12,0,28,0,818,137,121,9,0,0,1,527,539,13,3,2,2,806,113,163,0,1,0,0,0,0,2,0,1,1288,496,6.802218114602588,19.851201478743068,6.942698706099815,22.641404805914974,1.0128913443830572,3.746777163904236,2.3812154696132595,1106,625,775,76,137,37,36,43,12,40,16,13,60,4,79,17,9,21,18,7,25,2509,320,0,950,1879,0,2181,648,0,2659,170,0,609,2220,0,510,99,2148,72,0,82,40,30,10,50,69,83,67,67,458,0,5,3,87,109,220,93,114,626,3,20,44,48,87,116,145,76,11,2,59,0,0,1,4,0,1214,64,1319,0,5,42,10,306,352,561,67,33,573,97,340,38,53,2,85,81,0,1528,1452,162,530,50,467,51,0,9,0,3,124,20,823,68,0,0,1350,763,3,27,69,315,11,55,4,0,0,74,92,85,47,209,134,256,81,300,1227,188,65,152,243,340,285,126,135,50,49,14,19,7,12,68,29.0,37.0,37.0,48.0,41.0,35.0,33.0,41.0,53.0,29.0,36.0,40.0,34.0,32.0,31.0,34.0,34.0,34.0,30.0,34.0,35.0,39.0,38.0,35.0,34.0,39.0,51.0,52.0,37.0,43.0,44.0,37.0,42.0,37.0,55.0,45.0,47.0,44.0,33.0,37.0,31.0,38.0,39.0,41.0,35.0,39.0,40.0,33.0,25.0,31.0,33.0,54.0,45.0,43.0,32.0,43.0,41.0,33.0,41.0,38.0,34.0,41.0,35.0,40.0,30.0,41.0,32.0,40.0,21.0,38.0,35.0,26.0,27.0,23.0,22.0,20.0,13.0,23.0,10.0,13.0,16.0,13.0,13.0,6.0,9.0,10.0,11.0,5.0,3.0,9.0,6.0,5.0,1.0,1.0,0.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,556,1925,499,0,192,191,173,166,181,222,215,206,184,168,207,196,180,172,133,79,57,38,13,6,1,0,2559,188,230,3,0,2562,345,70,3,0,868,30,100,574,114,53,685,556,0,1206,1434,340,0,0,54,3,0,0,0,4,0,0,13,2906,0,28,51,160,23,4,5,99,2610,0,434,498,223,13,89,1723,0,1.9030732860520092,0.0,2.557285873192436,0.0,9.095637583892618,8,26,79,12,1,3,48,929,0,64,44,17,60,106,141,133,103,177,91,57,17,25,16,22,27,1087,19,1046,60,1009,97,208,898,1001,105,460,646,529,577,148,958,1034,72,929,177,708,221,463,643,873,233,564,542,55,1051,87,1019,5,1101,287,572,199,48,0,733,373,0,0,6,0,0,0,0,2,0,0,4,1094,0,1.3815551537070525,1.3128390596745028,1.6666666666666667,1.0,1.0,53.59764918625678 +PA090501,70502,Los Santos,Pedasí,Los Asientos,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,25,3,302,11,0,0,0,3,0,290,0,1,14,4,2,5,0,0,289,0,23,2,2,0,0,309,4,0,0,0,3,316,0,159,12,8,20,13,0,2,24,249,41,0,0,250,14,31,7,0,14,0,277,34,5,0,0,0,0,73,228,0,14,1,0,175,101,27,1,7,0,1,1,0,2,0,1,0,528,7.0,20.28052805280528,7.0,24.0,1.0031645569620251,3.34493670886076,2.1265822784810124,317,155,164,16,18,12,8,2,3,8,4,1,5,1,24,30,1,2,7,2,7,562,127,0,100,589,0,144,545,0,616,73,0,121,568,0,111,10,520,48,0,48,5,10,0,11,19,31,21,17,214,0,2,0,19,28,38,19,32,113,1,7,1,4,7,8,6,23,1,0,3,0,0,0,1,0,293,10,341,0,1,1,2,47,74,169,31,20,132,8,47,14,26,1,66,6,0,389,325,43,157,19,61,19,0,0,1,0,79,4,208,0,0,0,469,123,0,5,8,34,1,3,1,0,1,14,15,11,11,36,37,31,18,129,288,89,10,58,38,75,85,31,24,7,7,0,0,1,1,0,8.0,4.0,9.0,4.0,9.0,5.0,7.0,8.0,4.0,12.0,9.0,5.0,4.0,13.0,9.0,6.0,15.0,5.0,5.0,5.0,9.0,9.0,4.0,8.0,9.0,16.0,6.0,5.0,6.0,5.0,10.0,6.0,7.0,10.0,10.0,14.0,5.0,13.0,6.0,10.0,6.0,10.0,7.0,13.0,4.0,7.0,7.0,9.0,7.0,8.0,16.0,14.0,10.0,9.0,11.0,9.0,13.0,6.0,12.0,10.0,9.0,10.0,11.0,11.0,9.0,6.0,3.0,8.0,5.0,10.0,11.0,8.0,6.0,12.0,11.0,11.0,6.0,5.0,6.0,10.0,7.0,4.0,8.0,4.0,5.0,3.0,0.0,5.0,1.0,2.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,110,442,162,0,34,36,40,36,39,38,43,48,40,38,60,50,50,32,48,38,28,11,4,1,0,0,693,15,5,1,0,693,16,4,1,0,253,14,57,96,49,6,129,110,0,383,314,17,0,0,0,0,0,0,0,0,0,0,11,703,0,5,4,20,1,0,0,8,676,0,122,175,43,1,6,367,0,2.078767123287671,0.0,2.599099099099099,0.0,7.336134453781512,2,2,9,0,0,0,5,299,0,23,39,4,35,28,51,45,24,35,16,9,1,3,3,1,0,312,5,281,36,274,43,47,270,252,65,32,285,80,237,9,308,292,25,241,76,159,82,51,266,128,189,104,213,22,295,35,282,0,317,117,148,47,5,0,217,100,0,0,0,0,0,0,0,0,0,0,5,312,0,1.227129337539432,1.025236593059937,0.0,1.1111111111111112,1.1111111111111112,56.61198738170347 +PA090502,70503,Los Santos,Pedasí,Mariabé,299,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,9,0,133,0,0,0,0,0,0,123,0,0,8,0,1,1,0,0,120,3,10,0,0,0,0,131,2,0,0,0,0,133,0,137,15,4,10,2,0,0,11,108,14,0,0,110,3,15,0,0,5,0,98,18,17,0,0,0,0,48,81,0,3,1,0,111,0,12,6,1,0,0,0,0,3,0,0,0,301,7.0,24.0,7.0,24.0,1.0,3.857142857142857,2.571428571428572,133,74,106,13,23,3,6,4,2,6,1,1,1,0,13,8,2,1,3,0,2,286,64,0,58,292,0,172,178,0,329,21,0,85,265,0,74,11,256,9,0,9,3,5,0,8,7,13,6,5,93,0,0,1,16,14,28,6,9,75,1,2,1,2,7,11,13,8,1,0,4,0,0,0,2,0,131,19,169,0,1,8,4,45,47,64,7,6,64,5,15,12,16,0,30,4,0,194,179,31,53,13,45,4,0,0,0,2,21,4,102,0,0,0,191,79,1,1,7,34,0,4,2,0,0,7,11,8,4,24,13,20,11,52,168,31,10,23,51,34,18,11,12,5,4,0,2,2,2,0,7.0,8.0,3.0,5.0,5.0,4.0,5.0,6.0,6.0,5.0,3.0,5.0,5.0,5.0,7.0,5.0,6.0,3.0,8.0,6.0,5.0,6.0,3.0,4.0,5.0,3.0,1.0,3.0,7.0,6.0,1.0,6.0,3.0,4.0,1.0,6.0,7.0,6.0,2.0,4.0,2.0,4.0,9.0,3.0,3.0,4.0,4.0,4.0,5.0,6.0,5.0,7.0,2.0,5.0,2.0,5.0,5.0,9.0,3.0,2.0,2.0,8.0,6.0,1.0,4.0,4.0,3.0,5.0,4.0,4.0,7.0,3.0,2.0,5.0,1.0,5.0,5.0,5.0,0.0,1.0,3.0,1.0,0.0,0.0,4.0,3.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,79,221,73,0,28,26,25,28,23,20,15,25,21,23,21,24,21,20,18,16,8,8,1,2,0,0,362,10,1,0,0,362,10,1,0,0,119,5,13,53,14,3,87,79,0,144,217,12,0,0,5,1,0,0,0,0,0,0,2,365,0,2,1,26,1,0,0,11,332,0,50,85,42,2,2,192,0,2.01948051948052,0.0,2.617391304347826,0.0,8.265415549597856,2,1,9,0,0,0,8,113,0,7,4,4,10,26,17,20,8,15,6,10,0,2,1,3,0,131,2,123,10,113,20,22,111,122,11,43,90,76,57,17,116,119,14,116,17,80,36,29,104,59,74,64,69,13,120,13,120,2,131,32,65,35,1,0,93,40,0,0,2,0,0,0,0,0,0,0,1,130,0,1.4586466165413534,1.3458646616541354,1.0,0.0,0.0,56.97744360902256 +PA090505,70504,Los Santos,Pedasí,Purio,338,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,197,8,1,203,2,0,0,0,0,1,197,0,2,3,0,2,2,0,0,194,0,11,0,0,0,1,200,1,1,0,0,4,206,0,107,13,0,10,3,0,0,17,178,11,0,0,196,1,8,0,0,0,1,178,12,16,0,0,0,0,62,142,0,2,0,0,168,26,9,2,0,0,0,0,0,0,1,0,0,340,6.980295566502463,23.68472906403941,6.980295566502463,23.773399014778324,1.0048543689320388,3.587378640776699,2.388349514563106,208,99,114,14,28,4,12,5,3,7,1,0,2,1,10,5,3,1,2,1,7,359,117,0,51,425,0,217,259,0,451,25,0,63,413,0,62,1,399,14,0,14,2,6,1,3,7,19,15,18,153,0,0,1,19,20,24,12,23,85,1,9,0,1,10,13,7,10,0,1,2,0,0,0,0,0,164,34,260,0,3,16,6,75,44,95,21,25,81,10,21,10,18,0,52,2,0,252,246,51,75,10,56,2,0,0,0,0,68,6,120,0,0,0,318,101,1,2,8,26,0,2,0,0,0,7,8,6,11,29,21,23,20,73,191,89,21,26,54,42,41,15,11,5,2,0,0,0,1,0,10.0,2.0,5.0,5.0,4.0,3.0,6.0,1.0,2.0,2.0,5.0,10.0,4.0,6.0,3.0,6.0,0.0,5.0,6.0,7.0,5.0,6.0,7.0,5.0,2.0,6.0,6.0,3.0,9.0,7.0,4.0,6.0,4.0,4.0,3.0,4.0,4.0,1.0,3.0,3.0,6.0,3.0,5.0,7.0,1.0,2.0,2.0,5.0,6.0,4.0,5.0,6.0,7.0,5.0,7.0,9.0,7.0,10.0,10.0,6.0,11.0,6.0,8.0,9.0,9.0,10.0,14.0,8.0,7.0,6.0,6.0,4.0,9.0,7.0,8.0,7.0,4.0,4.0,6.0,2.0,7.0,5.0,7.0,2.0,7.0,4.0,1.0,7.0,1.0,4.0,3.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,68,272,158,0,26,14,28,24,25,31,21,15,22,19,30,42,43,45,34,23,28,17,7,3,1,0,497,1,0,0,0,497,1,0,0,0,169,5,6,57,33,1,159,68,0,242,256,0,0,0,5,0,0,0,0,0,0,0,5,488,0,7,1,62,4,0,0,156,268,0,67,122,75,2,0,232,0,2.1479820627802693,0.0,2.63905325443787,0.0,7.875502008032129,0,1,26,3,0,0,79,99,0,17,29,5,19,31,27,24,14,22,11,5,1,1,0,1,0,207,1,192,16,189,19,44,164,179,29,31,177,120,88,30,178,170,38,182,26,51,131,24,184,107,101,57,151,12,196,21,187,1,207,58,102,45,3,0,137,71,0,0,1,0,0,0,0,0,0,0,2,205,0,1.2115384615384617,1.1826923076923077,1.0,1.2142857142857142,1.2142857142857142,63.13942307692308 +PA090503,70505,Los Santos,Pedasí,Oria Arriba,463,6,39,0,0,0,0,0,0,0,0,0,2,0,0,0,179,11,3,173,17,2,0,0,1,0,165,0,4,10,4,1,8,0,1,124,0,64,0,5,0,0,171,5,7,0,0,10,193,0,216,25,49,12,13,0,2,27,104,59,1,0,147,21,7,4,0,14,0,135,17,36,3,0,1,1,46,135,3,6,3,0,0,108,72,2,0,2,0,3,0,6,0,0,0,510,6.805555555555555,22.616666666666667,6.85,23.16111111111111,1.005181347150259,2.5854922279792745,1.155440414507772,196,66,87,5,6,3,1,1,0,1,1,0,10,0,4,5,0,1,2,1,6,278,88,0,107,259,0,171,195,0,319,47,0,60,306,0,47,13,268,38,0,38,0,7,0,8,12,9,11,14,91,1,2,0,5,6,19,5,9,62,0,0,0,1,3,11,6,30,2,0,14,0,0,0,0,0,187,5,144,0,0,2,1,18,34,71,13,8,85,15,19,0,9,1,57,4,2,222,155,6,110,1,33,20,0,19,3,6,22,2,120,12,0,0,207,68,0,1,6,41,2,11,0,0,3,22,7,19,13,27,20,17,5,59,189,36,8,8,23,32,30,9,11,3,3,2,7,0,4,12,3.0,3.0,4.0,1.0,4.0,9.0,6.0,3.0,5.0,3.0,4.0,5.0,6.0,6.0,3.0,3.0,5.0,1.0,2.0,2.0,6.0,3.0,4.0,6.0,5.0,6.0,3.0,12.0,6.0,7.0,9.0,9.0,8.0,5.0,9.0,9.0,3.0,4.0,6.0,6.0,6.0,2.0,2.0,5.0,3.0,3.0,1.0,7.0,7.0,4.0,5.0,2.0,7.0,4.0,7.0,5.0,6.0,4.0,9.0,4.0,4.0,5.0,2.0,9.0,8.0,3.0,2.0,4.0,2.0,3.0,4.0,2.0,4.0,4.0,2.0,5.0,0.0,1.0,4.0,2.0,1.0,1.0,1.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,65,260,52,0,15,26,24,13,24,34,40,28,18,22,25,28,28,14,16,12,7,2,1,0,0,0,296,58,23,0,0,296,68,13,0,0,95,1,11,49,12,4,140,65,0,82,232,63,0,1,0,0,0,0,0,1,0,0,2,373,0,4,1,26,0,1,0,10,335,0,46,46,9,0,12,264,0,1.1785714285714286,0.0,2.6031746031746037,0.0,8.180371352785146,4,1,15,0,0,0,5,171,0,42,23,10,10,21,16,21,9,12,6,5,1,4,1,5,8,184,12,155,41,141,55,20,176,133,63,66,130,85,111,6,190,159,37,92,104,66,26,56,140,97,99,73,123,64,132,71,125,0,196,100,74,12,10,0,130,66,0,1,0,0,0,0,0,1,0,0,2,192,0,1.1326530612244898,0.7908163265306123,0.0,1.0,1.0,48.285714285714285 +PA090605,70601,Los Santos,Pocrí,Pocrí,670,4,0,0,0,0,0,1,0,0,0,2,4,0,0,0,338,39,14,369,8,2,0,0,11,1,381,0,0,4,0,0,5,0,1,371,4,12,0,1,0,3,372,8,2,0,0,9,391,0,174,14,6,84,5,0,4,20,330,36,1,0,347,3,28,3,0,9,1,321,40,30,0,0,0,0,161,224,0,5,1,0,186,190,10,0,0,0,0,0,0,0,4,1,0,681,7.0,22.088082901554404,7.0,22.01036269430052,1.0230179028132993,3.8491048593350383,2.544757033248082,406,182,281,12,41,12,14,4,3,7,3,5,11,2,24,7,8,2,12,15,4,819,135,0,270,684,0,431,523,0,901,53,0,180,774,0,158,22,749,25,0,25,7,9,5,16,18,29,16,16,209,0,0,3,23,41,103,25,35,179,0,5,10,14,24,26,66,14,24,1,10,0,0,0,1,0,408,19,475,0,0,6,7,151,113,151,24,36,163,43,63,17,23,0,81,31,3,492,491,92,166,18,113,20,0,12,3,3,77,9,179,6,0,0,525,226,3,6,15,97,20,9,1,0,3,21,29,18,25,43,64,73,23,128,346,123,61,70,78,106,83,49,27,15,16,2,1,0,0,6,9.0,6.0,7.0,7.0,7.0,9.0,8.0,8.0,10.0,10.0,12.0,7.0,11.0,10.0,15.0,13.0,10.0,9.0,18.0,11.0,12.0,8.0,10.0,12.0,14.0,9.0,14.0,9.0,9.0,6.0,12.0,7.0,6.0,11.0,6.0,8.0,7.0,9.0,13.0,13.0,12.0,10.0,13.0,10.0,9.0,9.0,6.0,10.0,10.0,15.0,13.0,14.0,15.0,15.0,16.0,20.0,16.0,12.0,19.0,8.0,17.0,10.0,17.0,18.0,11.0,10.0,12.0,16.0,10.0,14.0,13.0,8.0,20.0,11.0,14.0,17.0,13.0,14.0,9.0,15.0,11.0,7.0,9.0,5.0,2.0,10.0,5.0,6.0,4.0,2.0,2.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,136,581,266,0,36,45,55,61,56,47,42,50,54,50,73,75,73,62,66,68,34,27,9,0,0,0,966,13,3,1,0,966,15,1,1,0,262,13,85,175,56,8,248,136,0,444,524,15,0,1,30,0,0,0,0,1,0,0,18,933,0,20,78,99,2,1,1,178,604,0,150,219,160,7,0,447,0,1.9068181818181815,0.0,2.623762376237624,0.0,9.1617497456765,8,30,52,2,1,1,77,235,0,29,32,13,33,51,57,40,42,43,26,17,4,6,6,0,1,399,7,369,37,355,51,81,325,361,45,99,307,216,190,37,369,375,31,343,63,193,150,91,315,150,256,156,250,47,359,40,366,3,403,123,195,78,10,1,263,143,0,0,9,0,0,0,0,0,0,0,6,391,0,1.2088452088452089,1.2063882063882063,1.2,1.0434782608695652,1.0434782608695652,60.17733990147783 +PA090601,70602,Los Santos,Pocrí,El Cañafístulo,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,2,1,113,2,0,0,0,1,0,116,0,0,0,0,0,0,0,0,78,0,30,5,2,0,1,111,3,0,0,0,2,116,0,83,2,0,22,1,0,0,3,107,5,1,0,77,1,34,0,0,4,0,91,21,4,0,0,0,0,15,99,0,2,0,0,80,32,4,0,0,0,0,0,0,0,0,0,0,224,6.991379310344827,23.810344827586206,7.0,23.879310344827587,1.0086206896551724,3.4741379310344827,2.3448275862068964,117,58,59,2,19,3,6,1,2,4,0,0,0,0,7,4,1,0,3,3,3,197,65,0,13,249,0,12,250,0,230,32,0,35,227,0,31,4,207,20,0,20,3,2,2,7,7,12,9,7,114,0,0,1,5,10,9,5,5,30,0,0,1,1,3,3,2,4,0,0,0,0,0,0,0,0,92,19,135,0,0,3,14,29,18,68,4,16,19,17,9,0,4,0,61,0,0,150,121,9,66,0,18,13,0,3,1,0,43,6,60,9,0,0,201,35,1,0,1,8,0,0,0,0,1,4,0,1,3,6,18,16,5,57,119,55,17,19,22,14,10,4,0,1,1,0,0,0,0,9,3.0,1.0,2.0,3.0,4.0,4.0,1.0,6.0,1.0,0.0,0.0,2.0,1.0,3.0,3.0,2.0,1.0,3.0,0.0,0.0,3.0,2.0,2.0,1.0,6.0,2.0,2.0,2.0,2.0,3.0,2.0,0.0,2.0,2.0,4.0,2.0,2.0,2.0,2.0,2.0,4.0,3.0,1.0,2.0,3.0,2.0,0.0,4.0,2.0,3.0,2.0,7.0,5.0,3.0,6.0,3.0,4.0,5.0,3.0,4.0,6.0,5.0,6.0,7.0,3.0,2.0,6.0,9.0,7.0,6.0,4.0,5.0,5.0,4.0,3.0,5.0,0.0,1.0,4.0,2.0,2.0,5.0,1.0,4.0,1.0,3.0,5.0,1.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,34,144,93,0,13,12,9,6,14,11,10,10,13,11,23,19,27,30,21,12,13,13,3,1,0,0,271,0,0,0,0,271,0,0,0,0,103,1,29,27,25,0,52,34,0,158,113,0,0,0,0,0,0,0,0,0,0,0,1,270,0,0,10,13,2,2,0,14,230,0,24,82,28,2,0,135,0,2.834862385321101,0.0,3.075268817204301,0.0,6.302583025830258,0,8,6,1,1,0,5,96,0,15,15,9,20,22,13,11,7,2,1,2,0,0,0,0,0,116,1,110,7,110,7,21,96,103,14,9,108,77,40,1,116,103,14,98,19,21,77,4,113,2,115,25,92,55,62,64,53,0,117,35,54,28,0,0,91,26,0,0,0,0,0,0,0,0,0,0,0,117,0,1.2820512820512822,1.0341880341880345,0.0,1.0,1.0,64.91452991452991 +PA090602,70603,Los Santos,Pocrí,Lajamina,402,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,67,3,195,3,0,0,0,3,0,191,0,0,2,1,1,6,0,0,120,18,60,1,2,0,0,188,10,0,0,0,3,201,0,150,14,3,32,4,0,0,5,177,18,1,0,181,1,12,2,0,5,0,168,26,7,0,0,0,0,55,143,0,3,0,0,131,67,3,0,0,0,0,0,0,0,0,0,0,404,6.606965174129353,21.12437810945273,6.930348258706467,23.36318407960199,1.0049751243781095,3.72636815920398,2.427860696517413,202,91,97,10,35,1,10,1,1,1,0,3,7,0,14,6,4,5,6,7,15,359,81,0,61,379,0,189,251,0,419,21,0,69,371,0,62,7,357,14,0,14,1,0,0,7,7,19,19,9,169,0,0,0,10,18,29,8,12,75,0,0,1,10,8,15,2,6,0,0,1,0,0,0,0,0,187,18,220,0,0,8,3,37,44,109,19,11,54,13,32,1,9,1,94,0,1,250,209,26,109,2,45,5,0,17,1,1,70,6,110,0,0,0,307,87,0,0,13,16,0,2,0,0,1,3,5,9,8,20,31,24,9,95,209,79,24,28,34,28,31,14,7,1,2,1,0,1,0,0,4.0,4.0,6.0,5.0,2.0,2.0,1.0,4.0,3.0,3.0,4.0,1.0,7.0,7.0,7.0,2.0,4.0,4.0,4.0,6.0,7.0,3.0,3.0,4.0,2.0,7.0,4.0,5.0,4.0,9.0,4.0,5.0,4.0,2.0,3.0,1.0,3.0,4.0,3.0,4.0,5.0,4.0,6.0,1.0,5.0,4.0,5.0,4.0,10.0,5.0,10.0,5.0,6.0,14.0,8.0,8.0,5.0,8.0,7.0,7.0,9.0,5.0,5.0,10.0,3.0,7.0,8.0,8.0,7.0,6.0,6.0,10.0,9.0,10.0,7.0,6.0,2.0,7.0,6.0,3.0,7.0,5.0,4.0,3.0,3.0,5.0,3.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,60,260,139,0,21,13,26,20,19,29,18,15,21,28,43,35,32,36,42,24,22,11,2,2,0,0,456,1,1,1,0,456,1,1,1,0,143,6,23,56,28,2,141,60,0,241,215,3,0,0,6,4,0,0,0,0,0,0,5,444,0,6,8,39,3,0,0,39,364,0,58,136,39,5,1,220,0,2.393782383419689,0.0,3.0694444444444446,0.0,7.570806100217865,2,7,24,2,0,0,25,142,0,28,26,11,25,26,28,20,10,18,2,4,1,2,1,0,0,196,6,181,21,174,28,31,171,156,46,25,177,121,81,3,199,175,27,162,40,94,68,19,183,6,196,55,147,44,158,43,159,0,202,74,86,35,7,0,141,61,0,0,2,3,0,0,0,0,0,0,3,194,0,1.2376237623762376,1.034653465346535,0.0,1.0,1.0,62.12871287128713 +PA090603,70604,Los Santos,Pocrí,Paraíso,464,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,224,7,4,231,0,0,0,0,3,1,224,0,0,4,1,0,3,0,3,145,7,26,0,0,0,57,215,9,1,0,0,10,235,0,183,12,1,26,9,0,1,7,199,27,1,0,201,2,29,2,0,1,0,191,29,15,0,0,0,0,86,144,1,4,0,0,145,77,12,0,0,0,0,0,0,0,1,0,0,467,6.995726495726496,23.935897435897434,7.0,23.982905982905983,1.0,3.5659574468085107,2.502127659574468,236,117,128,14,34,4,16,9,3,7,6,5,9,1,25,5,4,2,4,2,2,473,103,0,100,476,0,177,399,0,543,33,0,93,483,0,84,9,463,20,0,22,1,3,2,9,9,20,18,8,153,0,1,0,18,21,50,21,24,109,0,1,0,2,10,18,39,7,3,0,6,0,0,0,1,0,220,22,303,0,1,10,7,84,58,100,45,16,101,16,25,10,19,0,61,6,2,324,265,48,96,10,66,11,0,7,2,1,67,2,66,11,0,0,349,114,0,0,8,65,2,6,1,0,2,12,18,13,7,25,23,37,10,95,194,85,40,37,78,50,55,13,17,5,2,1,1,0,0,11,3.0,3.0,2.0,5.0,8.0,3.0,4.0,6.0,5.0,5.0,10.0,6.0,5.0,7.0,3.0,9.0,4.0,9.0,8.0,5.0,3.0,6.0,4.0,2.0,4.0,8.0,8.0,5.0,5.0,10.0,5.0,8.0,7.0,4.0,9.0,10.0,6.0,7.0,8.0,5.0,3.0,5.0,7.0,4.0,3.0,3.0,7.0,6.0,4.0,6.0,5.0,9.0,4.0,6.0,5.0,6.0,14.0,13.0,10.0,11.0,12.0,10.0,13.0,8.0,9.0,8.0,7.0,8.0,8.0,9.0,13.0,6.0,4.0,6.0,8.0,8.0,6.0,2.0,5.0,5.0,11.0,12.0,4.0,6.0,8.0,3.0,4.0,4.0,4.0,4.0,3.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,75,342,172,0,21,23,31,35,19,36,33,36,22,26,29,54,52,40,37,26,41,19,6,3,0,0,576,5,8,0,0,576,5,8,0,0,171,6,35,111,39,3,149,75,0,299,284,6,0,1,20,0,0,0,0,0,0,0,5,563,0,14,12,93,3,0,0,203,264,0,89,164,80,6,1,249,0,2.0211864406779663,0.0,2.5444444444444443,0.0,8.691001697792869,4,7,45,3,0,0,83,94,0,14,23,7,14,42,31,29,24,25,11,7,0,5,0,0,3,223,13,206,30,204,32,59,177,204,32,44,192,139,97,8,228,208,28,190,46,74,116,36,200,79,157,90,146,21,215,26,210,0,236,73,102,57,4,0,174,62,0,1,6,0,0,0,0,0,0,0,3,226,0,1.3728813559322033,1.1228813559322033,0.0,1.0833333333333333,1.0833333333333333,61.69915254237288 +PA090604,70605,Los Santos,Pocrí,Paritilla,542,1,0,0,0,0,0,0,0,0,0,0,1,0,0,15,212,84,2,296,15,0,0,0,2,0,306,0,0,2,1,1,3,0,0,283,4,24,1,1,0,0,296,11,1,0,0,5,313,0,159,8,3,45,15,0,1,21,267,21,3,0,266,4,37,3,0,3,0,265,37,10,1,0,0,0,105,204,0,4,0,0,242,62,4,2,0,0,0,0,0,0,3,0,0,544,6.827922077922078,23.564935064935064,6.896103896103896,23.7987012987013,1.0191693290734825,3.808306709265176,2.5207667731629395,320,151,157,16,51,5,2,5,2,7,0,4,1,2,33,14,10,4,8,10,14,611,90,0,138,563,0,152,549,0,632,69,0,104,597,0,100,4,568,29,0,30,10,6,1,22,16,29,29,14,233,1,0,2,16,20,45,12,15,114,0,5,2,8,9,17,25,14,4,0,2,0,0,0,0,0,278,11,372,0,0,2,5,69,56,196,36,15,98,34,27,4,13,0,111,0,2,375,348,71,102,8,73,15,0,18,2,1,104,7,186,6,0,0,459,131,2,5,5,54,3,2,0,0,2,16,21,8,18,22,40,46,13,103,294,144,30,39,58,39,53,19,18,11,9,1,0,2,0,6,7.0,5.0,5.0,5.0,8.0,9.0,6.0,9.0,5.0,3.0,5.0,8.0,6.0,4.0,7.0,8.0,7.0,5.0,9.0,4.0,5.0,5.0,8.0,5.0,7.0,7.0,3.0,5.0,5.0,8.0,4.0,3.0,6.0,2.0,9.0,5.0,5.0,2.0,8.0,5.0,4.0,4.0,5.0,3.0,8.0,5.0,8.0,10.0,3.0,7.0,8.0,14.0,8.0,12.0,17.0,13.0,12.0,10.0,11.0,12.0,15.0,10.0,13.0,10.0,14.0,17.0,17.0,9.0,19.0,8.0,11.0,10.0,11.0,18.0,13.0,11.0,12.0,5.0,12.0,12.0,11.0,7.0,8.0,6.0,2.0,5.0,6.0,6.0,4.0,2.0,2.0,7.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,92,376,255,0,30,32,30,33,30,28,24,25,24,33,59,58,62,70,63,52,34,23,13,0,0,0,718,2,3,0,0,718,3,2,0,0,210,6,22,134,51,5,203,92,0,342,377,4,0,1,16,0,0,1,0,0,0,0,10,695,0,1,12,83,6,0,0,73,548,0,88,215,77,11,1,331,0,2.5682539682539685,0.0,2.9647058823529413,0.0,7.590594744121715,0,7,43,3,0,0,26,241,0,36,44,17,36,44,31,32,17,31,5,14,5,2,2,1,2,314,6,303,17,289,31,79,241,263,57,45,275,199,121,22,298,292,28,282,38,147,135,39,281,34,286,81,239,70,250,63,257,0,320,110,150,57,3,0,217,103,0,1,3,0,0,1,0,0,0,0,3,312,0,1.171875,1.0875,0.0,1.125,1.125,64.703125 +PA090710,70701,Los Santos,Tonosí,Tonosí,1088,9,3,4,0,0,0,0,1,0,0,0,15,0,0,13,649,127,20,746,43,1,0,0,16,3,790,0,0,4,0,3,11,0,1,479,221,93,6,1,0,9,779,9,1,0,0,20,809,1,93,32,58,79,32,0,27,137,552,90,0,3,679,118,0,4,1,7,0,755,2,48,1,0,3,0,213,566,2,22,6,0,518,182,11,10,0,0,0,0,0,33,55,0,683,437,6.952180028129395,23.296765119549928,6.985935302390999,23.69057665260197,1.0086526576019776,3.4215080346106306,2.2299134734239803,831,409,580,71,105,32,24,18,11,23,5,13,45,3,56,34,7,33,29,7,18,1776,297,0,474,1599,0,1422,651,0,1883,190,0,492,1581,0,436,56,1485,96,0,104,23,31,17,53,62,96,56,62,467,0,1,5,70,100,163,50,65,305,7,48,32,30,53,53,68,23,17,2,10,0,0,0,0,0,1107,35,744,0,1,14,4,89,243,297,82,33,530,122,128,30,80,0,158,90,0,1117,1053,196,394,33,448,47,0,20,0,15,166,35,339,4,0,0,1233,422,6,45,28,129,13,10,0,0,0,48,58,53,43,232,159,180,79,290,743,204,124,171,227,233,189,103,91,37,26,11,3,1,3,4,25.0,18.0,25.0,29.0,33.0,19.0,34.0,36.0,31.0,34.0,36.0,28.0,32.0,23.0,24.0,23.0,28.0,22.0,28.0,21.0,34.0,27.0,25.0,37.0,22.0,37.0,38.0,43.0,29.0,33.0,14.0,27.0,23.0,24.0,27.0,39.0,29.0,31.0,35.0,35.0,31.0,29.0,21.0,28.0,22.0,22.0,24.0,23.0,22.0,21.0,24.0,33.0,32.0,22.0,35.0,22.0,41.0,24.0,26.0,23.0,24.0,27.0,22.0,23.0,39.0,18.0,35.0,18.0,33.0,23.0,23.0,24.0,25.0,14.0,14.0,15.0,15.0,13.0,6.0,7.0,4.0,8.0,6.0,4.0,3.0,4.0,9.0,4.0,6.0,7.0,2.0,2.0,2.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,427,1391,352,0,130,154,143,122,145,180,115,169,131,112,146,136,135,127,100,56,25,30,9,4,1,0,2081,47,35,7,0,2081,52,30,7,0,682,31,256,258,89,21,406,427,0,904,1237,29,0,25,47,4,0,0,1,3,1,0,97,1992,0,54,118,399,26,13,3,567,990,0,341,494,97,11,5,1222,0,2.152173913043478,0.0,2.8187221396731057,0.0,7.769124423963134,17,48,173,9,8,0,226,350,0,27,38,24,62,101,118,111,81,109,63,31,18,20,3,8,2,809,22,735,96,733,98,140,691,759,72,224,607,453,378,79,752,766,65,649,182,519,130,196,635,548,283,304,527,257,574,269,562,9,822,243,389,166,33,1,564,267,0,8,15,1,0,0,1,1,0,0,47,758,0,1.3425480769230769,1.265625,1.0,1.054054054054054,1.054054054054054,53.51263537906137 +PA090701,70702,Los Santos,Tonosí,Altos de Güera,315,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,87,9,188,1,2,0,0,7,0,153,0,1,25,4,1,14,0,0,0,1,176,3,9,0,9,178,17,0,0,0,3,198,0,55,5,2,49,7,0,1,11,167,18,1,0,135,58,0,1,1,3,0,192,0,4,0,0,2,0,17,167,0,14,0,0,0,146,50,0,0,0,0,1,0,0,0,1,0,316,6.403061224489796,21.357142857142858,6.918367346938775,23.6530612244898,1.0,3.4393939393939394,2.272727272727273,198,119,120,16,29,1,3,1,1,2,1,3,4,0,14,8,5,3,1,3,5,314,170,0,45,439,0,159,325,0,422,62,0,91,393,0,80,11,345,48,0,48,3,6,0,11,16,27,25,20,145,0,0,0,7,19,34,14,21,55,0,3,2,7,5,8,4,2,1,0,1,0,0,0,0,0,203,11,238,0,1,0,5,13,59,127,12,27,73,11,10,4,8,0,104,2,0,284,214,20,112,4,62,8,0,6,0,2,49,4,161,0,0,0,364,62,0,4,8,12,1,1,0,0,0,6,11,10,6,10,47,16,26,82,236,65,20,56,28,22,45,11,7,5,0,0,2,0,1,0,4.0,2.0,3.0,5.0,6.0,6.0,5.0,2.0,5.0,8.0,9.0,5.0,4.0,4.0,9.0,5.0,11.0,7.0,6.0,10.0,7.0,7.0,4.0,6.0,4.0,4.0,3.0,4.0,3.0,6.0,7.0,5.0,9.0,4.0,7.0,5.0,9.0,2.0,8.0,8.0,2.0,6.0,5.0,5.0,5.0,8.0,6.0,6.0,5.0,8.0,4.0,8.0,9.0,9.0,7.0,13.0,11.0,4.0,11.0,11.0,7.0,3.0,9.0,8.0,8.0,0.0,8.0,2.0,6.0,7.0,6.0,4.0,4.0,5.0,6.0,5.0,8.0,4.0,1.0,2.0,3.0,5.0,1.0,1.0,6.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,77,329,92,0,20,26,31,39,28,20,32,32,23,33,37,50,35,23,25,20,16,5,2,1,0,0,498,0,0,0,0,498,0,0,0,0,180,0,2,71,15,0,153,77,0,183,315,0,0,0,0,0,0,0,0,1,0,0,2,495,0,0,0,7,1,0,0,5,485,0,71,125,14,3,0,285,0,2.778947368421053,0.0,3.3835616438356166,0.0,6.514056224899599,0,0,3,0,0,0,2,193,0,19,24,6,35,27,20,23,14,12,10,2,2,3,0,1,0,189,9,140,58,155,43,37,161,116,82,13,185,86,112,4,194,133,65,102,96,67,35,18,180,33,165,48,150,118,80,152,46,1,197,56,113,27,2,0,169,29,0,0,0,0,0,0,0,0,0,0,0,198,0,1.4343434343434345,1.0808080808080809,1.0,1.0,1.0,57.186868686868685 +PA090702,70703,Los Santos,Tonosí,Cañas,487,2,0,1,0,0,0,0,0,0,0,0,3,0,0,0,255,21,11,271,5,1,0,0,9,1,256,0,5,14,1,1,10,0,0,0,214,70,1,2,0,0,280,4,2,0,0,1,287,2,113,51,21,12,4,0,4,45,217,21,0,0,229,49,2,3,0,4,0,267,5,14,0,0,0,1,54,217,0,13,3,0,0,227,51,0,0,2,0,1,0,2,4,0,0,493,6.58273381294964,23.068345323741006,6.773381294964029,23.33453237410072,1.0034843205574913,3.087108013937282,1.7665505226480835,291,149,179,15,21,9,11,2,2,13,2,0,9,0,11,8,1,0,3,2,7,582,92,0,118,556,0,398,276,0,635,39,0,116,558,0,108,8,534,24,0,25,2,7,1,16,23,35,23,20,185,0,0,0,18,30,40,16,29,127,1,6,2,0,13,17,17,14,5,0,2,0,0,0,0,0,389,8,232,0,1,3,0,19,63,103,45,2,164,44,59,10,32,0,82,6,0,358,345,22,170,12,149,32,0,12,0,2,59,1,102,2,0,0,425,135,0,6,15,42,4,2,0,0,0,12,7,21,8,74,65,59,21,130,218,73,23,57,68,108,81,30,24,4,7,0,4,1,3,2,11.0,9.0,4.0,5.0,8.0,3.0,6.0,11.0,5.0,12.0,8.0,9.0,4.0,10.0,5.0,4.0,8.0,7.0,9.0,9.0,8.0,6.0,8.0,10.0,7.0,8.0,16.0,13.0,7.0,12.0,11.0,6.0,8.0,8.0,13.0,11.0,8.0,10.0,9.0,7.0,10.0,11.0,14.0,8.0,11.0,5.0,9.0,11.0,8.0,11.0,9.0,5.0,12.0,10.0,13.0,13.0,11.0,9.0,8.0,13.0,9.0,10.0,8.0,8.0,8.0,10.0,10.0,6.0,6.0,9.0,5.0,4.0,3.0,3.0,4.0,5.0,8.0,6.0,0.0,10.0,4.0,1.0,5.0,8.0,2.0,1.0,1.0,5.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,110,467,126,0,37,37,36,37,39,56,46,45,54,44,49,54,43,41,19,29,20,11,1,4,1,0,647,49,7,0,0,649,54,0,0,0,258,3,105,93,23,2,109,110,0,263,397,43,0,1,5,1,0,0,0,0,1,0,5,690,0,10,11,42,1,0,1,225,413,0,85,155,15,6,3,439,0,2.21,0.0,2.909090909090909,0.0,7.772403982930299,2,5,20,0,0,1,92,171,0,8,14,5,21,30,45,36,31,55,21,6,4,5,2,3,2,288,3,251,40,238,53,52,239,238,53,70,221,91,200,2,289,254,37,183,108,156,27,58,233,178,113,122,169,83,208,128,163,2,289,86,143,55,7,0,206,85,0,1,3,0,0,0,0,0,1,0,1,285,0,1.2302405498281788,1.1855670103092784,1.0,1.0,1.0,53.42611683848797 +PA090704,70704,Los Santos,Tonosí,El Bebedero,714,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,457,46,3,501,2,0,1,0,2,0,474,0,3,8,1,1,19,0,0,334,58,101,1,10,1,1,498,5,0,0,0,3,506,0,82,40,12,61,15,0,0,27,429,50,0,0,371,120,0,13,1,1,0,498,1,1,0,0,6,0,79,404,0,21,2,0,0,484,22,0,0,0,0,0,0,0,0,0,0,718,6.938735177865612,23.731225296442688,7.0,24.0,1.005928853754941,3.341897233201581,2.2351778656126484,511,266,309,57,61,32,16,11,4,12,3,3,12,0,30,3,1,2,13,1,0,1063,172,0,206,1029,0,868,367,0,1090,145,0,291,944,0,264,27,869,75,0,79,13,16,3,36,31,63,54,42,317,0,0,0,37,66,115,30,38,194,1,1,4,18,18,14,20,20,2,0,3,0,0,0,0,0,536,25,586,0,4,11,5,24,171,297,21,73,231,22,49,15,37,0,201,1,1,699,598,84,264,17,178,5,0,8,1,6,131,12,282,38,0,0,852,212,0,1,30,47,2,3,0,0,1,8,28,24,26,76,69,70,35,224,510,165,61,121,120,107,85,31,39,9,6,2,1,0,2,38,11.0,18.0,18.0,15.0,11.0,14.0,15.0,20.0,12.0,16.0,17.0,19.0,13.0,15.0,17.0,18.0,22.0,9.0,17.0,12.0,27.0,18.0,13.0,24.0,16.0,20.0,17.0,17.0,13.0,19.0,17.0,23.0,18.0,23.0,18.0,10.0,12.0,18.0,10.0,17.0,9.0,12.0,13.0,19.0,13.0,13.0,18.0,18.0,15.0,22.0,15.0,22.0,29.0,15.0,24.0,15.0,10.0,15.0,19.0,16.0,14.0,12.0,14.0,12.0,20.0,16.0,19.0,15.0,17.0,11.0,10.0,16.0,14.0,16.0,10.0,7.0,10.0,8.0,5.0,5.0,9.0,1.0,6.0,7.0,5.0,5.0,4.0,2.0,1.0,1.0,3.0,3.0,1.0,1.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,231,832,234,0,73,77,81,78,98,86,99,67,66,86,105,75,72,78,66,35,28,13,9,5,0,0,1290,4,0,3,0,1290,4,0,3,0,466,4,5,139,32,6,414,231,0,489,805,3,0,0,14,5,0,0,0,0,0,0,8,1270,0,3,21,32,1,5,3,69,1163,0,169,312,24,4,1,787,0,2.4538606403013183,0.0,2.9664268585131897,0.0,7.020817270624518,1,8,21,1,4,0,37,439,0,26,56,21,53,79,77,60,29,54,17,8,5,8,3,2,11,505,6,448,63,460,51,100,411,431,80,80,431,218,293,20,491,467,44,341,170,308,33,77,434,367,144,159,352,270,241,253,258,4,507,136,272,95,8,0,331,180,0,0,4,1,0,0,0,0,0,0,3,503,0,1.3679060665362035,1.1702544031311155,1.0,1.0555555555555556,1.0555555555555556,53.98238747553816 +PA090705,70705,Los Santos,Tonosí,El Cacao,516,4,0,4,0,0,0,0,0,0,0,0,1,0,0,2,314,35,8,344,7,1,0,0,7,0,350,0,0,1,1,3,2,0,2,0,273,74,3,6,1,2,343,7,0,0,0,9,359,0,41,21,30,28,45,0,1,32,294,31,1,0,277,61,0,4,1,16,0,352,0,4,1,1,1,0,54,296,1,8,0,0,8,338,6,4,0,0,0,0,0,0,2,1,0,525,6.409090909090909,16.97159090909091,6.946022727272728,22.960227272727277,1.011142061281337,3.253481894150418,2.147632311977716,364,187,264,55,43,6,16,10,3,9,5,2,6,0,33,6,1,5,11,2,1,677,245,0,124,798,0,467,455,0,818,104,0,231,691,0,210,21,618,73,0,81,15,15,2,21,27,54,29,44,175,0,1,0,32,58,81,23,28,145,1,5,6,9,17,18,15,6,10,0,4,0,0,0,0,0,426,9,399,0,0,3,5,21,128,227,22,1,220,23,55,4,48,0,78,0,0,525,445,66,235,5,110,2,0,10,0,6,66,15,277,5,0,0,598,164,0,6,19,37,7,3,0,0,0,6,16,20,22,61,40,49,29,192,466,105,35,59,49,67,98,40,32,6,5,2,0,0,1,5,11.0,13.0,13.0,11.0,16.0,21.0,12.0,15.0,8.0,16.0,13.0,21.0,13.0,18.0,13.0,12.0,11.0,11.0,10.0,17.0,14.0,15.0,17.0,18.0,11.0,21.0,16.0,15.0,11.0,10.0,10.0,18.0,11.0,15.0,11.0,21.0,24.0,14.0,10.0,16.0,8.0,8.0,8.0,11.0,8.0,12.0,12.0,8.0,13.0,16.0,5.0,19.0,8.0,15.0,11.0,14.0,5.0,22.0,6.0,7.0,13.0,11.0,14.0,9.0,15.0,8.0,8.0,8.0,6.0,7.0,5.0,6.0,11.0,9.0,4.0,5.0,4.0,4.0,2.0,4.0,1.0,5.0,4.0,4.0,2.0,3.0,2.0,1.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,214,637,119,0,64,72,78,61,75,73,65,85,43,61,58,54,62,37,35,19,16,8,3,1,0,0,959,10,0,1,0,959,10,0,1,0,353,5,45,66,9,5,273,214,0,587,379,4,0,9,7,0,0,0,0,0,0,0,5,949,0,5,12,38,1,0,2,52,860,0,148,199,18,5,0,600,0,2.220472440944882,0.0,2.922535211267605,0.0,6.9989690721649485,1,7,16,1,0,2,20,317,0,32,39,12,33,37,48,50,35,36,15,13,5,5,1,1,1,353,11,306,58,311,53,46,318,311,53,53,311,160,204,9,355,307,57,250,114,241,9,56,308,192,172,91,273,53,311,57,307,1,363,108,182,70,4,0,275,89,0,4,3,0,0,0,0,0,0,0,0,357,0,1.4423076923076923,1.2225274725274726,0.0,1.0909090909090908,1.0909090909090908,51.604395604395606 +PA090706,70706,Los Santos,Tonosí,El Cortezo,364,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,126,3,203,17,0,0,0,3,0,206,0,0,0,1,0,16,0,0,0,6,199,9,6,2,1,213,10,0,0,0,0,223,0,85,5,0,37,16,0,0,7,207,9,0,0,144,73,0,0,0,6,0,223,0,0,0,0,0,0,7,192,0,24,0,0,0,218,3,0,0,0,0,2,0,0,0,0,0,366,6.606334841628959,23.78280542986425,6.950226244343892,23.945701357466064,1.0269058295964126,3.2645739910313902,2.2466367713004485,229,130,132,18,12,8,4,4,1,2,1,2,1,0,7,1,1,1,4,0,2,313,207,0,27,493,0,151,369,0,420,100,0,98,422,0,97,1,336,86,0,86,1,10,2,12,16,32,18,15,159,0,0,0,11,17,39,11,15,44,1,2,4,6,5,7,3,4,0,0,0,0,0,0,0,0,218,2,262,0,1,0,1,4,65,158,10,25,27,17,8,0,11,0,157,0,0,312,232,15,116,0,79,6,0,4,0,10,75,4,159,0,0,0,406,62,0,1,0,13,0,0,0,0,0,5,4,4,1,14,53,16,5,118,289,114,29,41,26,16,14,7,5,2,1,0,0,0,0,0,4.0,9.0,6.0,5.0,8.0,8.0,4.0,4.0,7.0,7.0,5.0,3.0,4.0,10.0,9.0,6.0,5.0,8.0,10.0,6.0,8.0,7.0,9.0,8.0,5.0,9.0,7.0,5.0,7.0,4.0,6.0,5.0,8.0,7.0,1.0,7.0,6.0,7.0,4.0,1.0,8.0,5.0,7.0,3.0,3.0,6.0,5.0,5.0,9.0,9.0,10.0,9.0,11.0,8.0,10.0,9.0,3.0,6.0,6.0,7.0,13.0,9.0,9.0,6.0,9.0,6.0,7.0,7.0,8.0,6.0,6.0,4.0,10.0,4.0,6.0,3.0,1.0,4.0,5.0,5.0,3.0,8.0,1.0,2.0,3.0,1.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,93,341,110,0,32,30,31,35,37,32,27,25,26,34,48,31,46,34,30,18,17,7,3,1,0,0,543,0,0,1,0,543,0,0,1,0,212,3,30,60,19,0,127,93,0,319,225,0,0,0,2,1,0,0,0,0,1,0,4,536,0,0,9,22,0,0,0,92,421,0,23,97,5,0,0,419,0,2.9371980676328504,0.0,3.333333333333333,0.0,5.689338235294118,0,2,14,0,0,0,41,172,0,39,35,22,48,37,17,12,2,12,2,2,1,0,0,0,0,222,7,191,38,195,34,39,190,166,63,3,226,77,152,2,227,152,77,162,67,157,5,7,222,48,181,36,193,143,86,127,102,3,226,61,135,32,1,0,194,35,0,0,1,1,0,0,0,0,0,0,0,227,0,1.3624454148471616,1.0131004366812226,0.0,1.0,1.0,55.4061135371179 +PA090707,70707,Los Santos,Tonosí,Flores,326,6,6,1,0,0,0,0,0,0,0,0,1,0,0,0,190,22,2,210,2,0,0,0,0,2,196,0,0,8,0,7,2,0,1,0,149,62,3,0,0,0,199,15,0,0,0,0,214,0,103,2,3,12,5,0,0,15,184,15,0,0,169,40,4,0,0,1,0,214,0,0,0,0,0,0,18,183,0,13,0,0,0,207,6,0,0,0,0,0,0,0,1,0,0,340,6.723004694835681,23.070422535211268,6.887323943661972,23.727699530516432,1.0,3.4766355140186915,1.8738317757009344,215,100,157,4,30,5,7,0,2,8,3,5,2,0,20,6,2,3,7,1,7,336,185,0,22,499,0,155,366,0,462,59,0,104,417,0,94,10,378,39,0,39,3,11,3,8,20,26,17,11,182,0,0,0,5,21,21,3,14,100,0,1,0,2,4,10,11,8,0,0,1,0,0,0,0,0,294,3,181,0,0,0,0,22,57,70,22,10,56,67,15,4,56,0,97,2,0,289,249,31,49,5,196,13,0,3,0,1,65,8,96,0,0,0,340,108,0,0,4,25,0,1,0,0,0,6,13,7,10,29,76,77,13,66,143,63,46,55,92,55,50,9,13,6,4,0,2,0,0,0,7.0,2.0,6.0,2.0,4.0,8.0,7.0,10.0,7.0,7.0,4.0,3.0,4.0,4.0,4.0,5.0,6.0,6.0,8.0,7.0,8.0,10.0,9.0,6.0,6.0,10.0,6.0,2.0,6.0,2.0,7.0,8.0,7.0,6.0,3.0,7.0,6.0,8.0,8.0,5.0,7.0,4.0,8.0,6.0,3.0,11.0,5.0,8.0,9.0,9.0,5.0,12.0,6.0,10.0,7.0,5.0,7.0,7.0,4.0,5.0,8.0,7.0,8.0,10.0,2.0,6.0,6.0,8.0,3.0,11.0,8.0,6.0,6.0,5.0,8.0,4.0,6.0,7.0,5.0,4.0,5.0,5.0,4.0,3.0,4.0,0.0,0.0,1.0,1.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,79,335,124,0,21,39,19,32,39,26,31,34,28,42,40,28,35,34,33,26,21,3,6,1,0,0,536,2,0,0,0,536,2,0,0,0,198,4,22,51,17,0,167,79,0,304,231,3,0,0,6,4,0,0,0,0,0,0,18,510,0,0,21,15,3,1,0,24,474,0,51,95,22,2,0,368,0,1.9910714285714288,0.0,2.68944099378882,0.0,6.933085501858736,0,10,5,2,0,0,12,186,0,6,11,6,18,36,38,25,24,27,11,6,2,2,1,1,0,208,7,179,36,175,40,41,174,166,49,28,187,89,126,4,211,129,86,154,61,149,5,17,198,38,177,49,166,28,187,51,164,10,205,65,107,41,2,0,149,66,0,0,1,1,0,0,0,0,0,0,7,206,0,1.344186046511628,1.158139534883721,0.0,1.0,1.0,57.86046511627907 +PA090708,70708,Los Santos,Tonosí,Guánico,620,2,0,0,0,0,0,0,0,0,0,0,7,0,0,4,330,31,5,362,3,2,0,0,3,0,341,0,3,9,3,1,12,0,1,277,44,38,2,8,0,1,351,13,0,0,0,6,370,0,125,21,1,65,40,0,4,11,327,28,0,0,246,121,0,3,0,0,0,355,0,13,0,0,1,1,61,274,0,32,3,0,0,335,29,0,0,0,0,2,0,1,2,1,0,629,6.829670329670329,22.546703296703296,6.934065934065934,23.51648351648352,1.0,3.345945945945946,1.7567567567567568,377,192,182,19,30,5,3,1,3,5,1,1,8,0,28,10,3,1,5,0,0,637,159,0,100,696,0,435,361,0,716,80,0,145,651,0,124,21,585,66,0,68,2,3,1,15,33,49,17,26,233,0,0,0,29,34,42,16,34,104,0,1,9,7,13,5,4,45,0,0,6,0,0,0,0,0,378,9,364,0,0,1,4,30,84,195,24,31,95,27,40,6,20,0,183,13,1,446,381,37,170,11,141,23,0,2,1,8,82,6,204,3,0,0,557,130,0,1,11,46,0,6,0,0,1,14,14,10,7,46,90,34,18,153,339,126,57,62,69,77,39,21,22,3,6,0,2,1,0,3,8.0,9.0,8.0,6.0,4.0,11.0,4.0,10.0,8.0,8.0,5.0,9.0,6.0,11.0,7.0,10.0,9.0,12.0,6.0,7.0,7.0,8.0,11.0,16.0,8.0,9.0,7.0,12.0,9.0,11.0,7.0,3.0,12.0,6.0,9.0,8.0,7.0,8.0,5.0,9.0,8.0,9.0,13.0,16.0,8.0,8.0,10.0,13.0,10.0,13.0,13.0,14.0,10.0,6.0,16.0,14.0,14.0,17.0,15.0,20.0,11.0,10.0,8.0,15.0,10.0,13.0,12.0,9.0,15.0,7.0,7.0,7.0,14.0,9.0,13.0,8.0,8.0,5.0,7.0,6.0,10.0,7.0,4.0,4.0,4.0,4.0,9.0,7.0,3.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,114,517,196,0,35,41,38,44,50,48,37,37,54,54,59,80,54,56,50,34,29,23,4,0,0,0,804,10,12,1,0,806,13,7,1,0,326,4,11,84,29,6,253,114,0,468,340,19,0,0,8,3,0,0,0,0,1,0,4,811,0,1,6,66,1,0,0,490,263,0,61,206,31,1,0,528,0,2.566473988439306,0.0,3.164179104477612,0.0,7.207980652962515,1,4,25,0,0,0,220,127,0,40,44,21,43,54,64,33,21,27,6,8,0,4,2,1,2,360,17,312,65,321,56,70,307,302,75,50,327,114,263,4,373,309,68,228,149,205,23,51,326,153,224,104,273,178,199,183,194,3,374,136,190,45,6,0,283,94,0,0,2,1,0,0,0,0,1,0,2,371,0,1.1830238726790452,1.0106100795755968,0.0,1.0,1.0,56.89655172413793 +PA090709,70709,Los Santos,Tonosí,La Tronosa,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,11,3,192,3,2,0,0,1,0,171,0,0,15,2,1,9,0,0,9,33,152,3,1,0,0,182,12,0,0,0,4,198,0,49,5,0,30,17,0,0,11,168,19,0,0,163,34,0,0,0,1,0,196,0,0,0,0,2,0,14,166,0,16,2,0,0,156,41,0,0,0,0,1,0,0,0,0,0,299,6.98984771573604,23.223350253807105,7.0,23.451776649746197,1.005050505050505,3.378787878787879,2.308080808080808,199,109,122,10,18,5,5,1,1,3,0,0,3,0,6,3,0,4,8,2,2,315,138,0,42,411,0,146,307,0,401,52,0,82,371,0,70,12,335,36,0,37,1,3,2,16,24,37,18,14,113,0,0,0,17,12,29,14,15,53,2,3,2,6,9,15,8,2,1,0,0,0,0,0,0,0,206,7,215,0,1,3,3,1,49,117,14,34,62,10,19,2,10,0,108,0,0,264,212,33,71,3,89,1,0,14,0,3,71,10,134,1,0,0,327,65,0,1,10,25,0,0,0,0,0,5,12,3,10,23,70,15,27,48,226,92,18,31,36,27,22,11,10,1,1,0,0,0,0,1,4.0,6.0,5.0,8.0,2.0,5.0,3.0,4.0,9.0,2.0,6.0,7.0,2.0,6.0,4.0,5.0,5.0,7.0,10.0,3.0,3.0,6.0,4.0,4.0,11.0,3.0,4.0,6.0,5.0,4.0,7.0,3.0,6.0,7.0,4.0,4.0,4.0,4.0,7.0,4.0,4.0,2.0,6.0,3.0,9.0,2.0,11.0,6.0,7.0,10.0,7.0,7.0,6.0,10.0,6.0,3.0,7.0,6.0,15.0,7.0,7.0,8.0,5.0,4.0,6.0,9.0,14.0,4.0,4.0,6.0,6.0,5.0,2.0,3.0,2.0,7.0,6.0,4.0,5.0,4.0,6.0,3.0,3.0,2.0,1.0,3.0,0.0,1.0,5.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,73,294,109,0,25,23,25,30,28,22,27,23,24,36,36,38,30,37,18,26,15,12,1,0,0,0,474,0,0,2,0,474,0,0,2,0,175,2,5,66,24,0,131,73,0,152,324,0,0,0,14,0,0,0,0,0,0,0,11,451,0,0,0,27,0,0,0,163,286,0,53,148,1,0,0,274,0,2.446236559139785,0.0,2.823529411764706,0.0,6.630252100840337,0,0,15,0,0,0,61,123,0,25,40,8,26,32,17,22,7,8,6,5,1,1,0,0,1,191,8,165,34,163,36,40,159,138,61,12,187,117,82,10,189,148,51,128,71,127,1,18,181,13,186,62,137,118,81,148,51,0,199,70,100,28,1,0,163,36,0,0,4,0,0,0,0,0,0,0,1,194,0,1.3266331658291457,1.065326633165829,0.0,1.0,1.0,58.02010050251256 +PA090703,70710,Los Santos,Tonosí,Cambutal,421,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,194,25,1,215,4,0,0,0,1,0,192,0,0,13,4,0,11,0,0,17,162,41,0,0,0,0,210,4,0,0,0,6,220,0,140,6,13,37,5,0,0,16,184,20,0,0,176,41,0,0,0,3,0,211,0,8,0,0,0,1,54,149,0,14,3,0,0,173,41,3,1,0,0,1,0,1,0,0,0,425,6.738317757009346,23.55140186915888,6.9953271028037385,23.981308411214957,1.0,3.2818181818181817,2.1045454545454545,224,122,158,10,34,4,1,3,0,9,1,0,9,0,10,3,0,0,2,3,3,453,90,0,128,415,0,411,132,0,492,51,0,113,430,0,99,14,399,31,0,36,10,6,0,12,17,26,17,20,113,0,0,0,12,24,29,8,23,108,0,3,1,4,8,34,11,15,0,0,5,0,0,0,1,0,294,7,197,0,0,4,2,13,59,78,15,32,151,11,38,3,12,0,68,17,0,317,258,20,143,8,106,20,0,3,0,4,42,2,140,20,0,0,308,117,0,4,9,54,0,5,1,0,0,18,12,21,7,59,54,30,7,93,208,63,10,38,51,88,43,14,17,8,10,1,1,1,2,20,12.0,4.0,10.0,6.0,7.0,9.0,9.0,5.0,7.0,8.0,7.0,7.0,9.0,6.0,3.0,4.0,6.0,8.0,11.0,6.0,14.0,9.0,7.0,11.0,3.0,13.0,6.0,3.0,9.0,7.0,6.0,6.0,9.0,8.0,8.0,5.0,12.0,13.0,13.0,11.0,11.0,4.0,6.0,10.0,9.0,6.0,11.0,8.0,7.0,7.0,8.0,3.0,8.0,6.0,8.0,9.0,8.0,7.0,6.0,6.0,11.0,8.0,7.0,5.0,2.0,3.0,4.0,4.0,3.0,5.0,5.0,5.0,3.0,3.0,4.0,1.0,3.0,4.0,1.0,4.0,3.0,1.0,2.0,4.0,3.0,3.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,109,389,77,0,39,38,32,35,44,38,37,54,40,39,33,36,33,19,20,13,13,7,4,1,0,0,511,15,48,1,0,512,26,36,1,0,206,0,5,64,9,3,179,109,0,233,291,51,0,2,0,0,0,0,0,0,0,0,0,573,0,0,7,79,9,0,0,398,82,0,88,111,8,0,6,362,0,2.1785714285714284,0.0,3.0445859872611467,0.0,7.808695652173913,0,3,35,1,0,0,150,35,0,10,19,2,13,23,41,29,17,23,17,9,0,6,2,3,6,215,9,190,34,179,45,30,194,168,56,58,166,51,173,0,224,188,36,120,104,105,15,62,162,168,56,97,127,91,133,99,125,4,220,73,114,28,9,0,134,90,0,2,0,0,0,0,0,0,0,0,0,222,0,1.4151785714285714,1.1517857142857142,1.0,1.0,1.0,51.74107142857143 +PA090702,70711,Los Santos,Tonosí,Isla de Cañas,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,59,4,125,5,1,0,0,3,0,118,0,1,7,0,0,8,0,0,26,60,42,2,4,0,0,129,5,0,0,0,0,134,0,35,14,15,25,18,0,0,6,119,9,0,0,117,9,2,0,4,2,0,130,0,0,0,0,4,0,22,103,0,9,0,0,0,131,1,1,0,0,0,0,0,1,0,0,0,241,6.651515151515151,22.83333333333333,6.704545454545454,23.01515151515152,1.0,3.283582089552239,2.1044776119402986,134,77,98,21,15,4,0,3,1,6,0,1,0,1,3,3,3,1,4,2,1,241,94,0,34,301,0,205,130,0,314,21,0,89,246,0,89,0,231,15,0,15,4,9,1,5,9,23,14,20,90,0,0,0,10,21,23,12,19,26,3,2,9,6,2,2,2,8,0,0,0,0,0,0,0,0,167,1,132,0,0,0,0,2,45,70,14,1,44,10,9,3,4,0,71,27,0,195,166,20,33,3,97,7,0,8,0,1,25,3,114,0,0,0,238,50,0,2,0,10,0,0,0,0,0,5,6,1,5,29,77,10,9,26,177,32,23,27,41,20,23,8,6,0,2,1,0,0,1,0,6.0,10.0,4.0,6.0,4.0,6.0,5.0,2.0,7.0,11.0,4.0,6.0,3.0,5.0,4.0,4.0,7.0,3.0,8.0,5.0,7.0,6.0,9.0,2.0,3.0,10.0,10.0,6.0,2.0,4.0,4.0,3.0,3.0,6.0,5.0,4.0,5.0,5.0,6.0,4.0,1.0,7.0,3.0,3.0,6.0,7.0,4.0,2.0,4.0,6.0,1.0,5.0,5.0,0.0,8.0,3.0,11.0,3.0,6.0,2.0,5.0,4.0,2.0,4.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,5.0,1.0,0.0,2.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,83,235,43,0,30,31,22,27,27,32,21,24,20,23,19,25,17,12,15,6,3,5,2,0,0,0,358,2,1,0,0,359,2,0,0,0,136,0,44,42,3,0,53,83,0,192,167,2,0,3,0,0,0,0,0,0,0,0,173,185,0,5,168,6,4,1,0,38,139,0,28,48,2,0,1,282,0,2.449275362318841,0.0,3.184466019417476,0.0,6.598337950138504,1,61,5,2,1,0,16,48,0,6,8,10,15,27,22,16,10,12,3,2,1,1,0,1,0,131,3,108,26,110,24,13,121,103,31,24,110,55,79,0,134,112,22,76,58,39,37,9,125,90,44,24,110,96,38,54,80,4,130,37,71,25,1,0,111,23,0,3,0,0,0,0,0,0,0,0,61,70,0,1.455223880597015,1.2388059701492538,0.0,1.0,1.0,50.73880597014925 +PA120106,80201,Panamá,Balboa,San Miguel,605,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,141,103,22,241,6,1,0,4,10,7,246,0,3,12,0,4,0,0,4,213,7,34,12,2,0,1,259,4,0,1,0,5,269,7,125,15,4,74,116,0,0,20,234,12,2,1,264,2,0,1,2,0,0,265,1,0,2,0,0,1,183,83,0,1,2,0,259,0,0,0,2,0,0,0,0,1,5,2,0,610,5.409266409266409,4.019305019305019,6.0926640926640925,4.2084942084942085,1.0,3.527881040892193,2.483271375464684,269,129,246,16,46,5,4,3,1,6,0,0,13,0,9,9,3,0,4,0,4,538,149,0,13,674,0,45,642,0,621,66,0,176,511,0,174,2,490,21,0,21,8,14,2,22,22,25,22,26,128,0,1,1,44,46,102,24,35,126,0,1,2,4,2,3,0,6,0,0,0,0,0,0,0,0,336,9,268,0,0,2,7,20,108,110,5,25,99,28,16,4,37,0,16,138,0,399,339,48,30,3,249,7,0,1,0,0,21,1,174,3,0,0,468,139,1,0,0,5,0,0,0,0,0,4,3,7,15,51,148,26,11,80,464,86,33,40,37,28,30,7,8,2,0,0,0,0,0,3,18.0,13.0,10.0,10.0,11.0,10.0,15.0,16.0,15.0,7.0,17.0,10.0,16.0,15.0,18.0,15.0,12.0,13.0,7.0,16.0,12.0,10.0,8.0,6.0,7.0,5.0,15.0,4.0,8.0,6.0,7.0,6.0,6.0,13.0,13.0,9.0,13.0,18.0,12.0,11.0,12.0,13.0,5.0,15.0,6.0,11.0,12.0,2.0,4.0,7.0,8.0,8.0,8.0,16.0,10.0,4.0,11.0,5.0,7.0,8.0,8.0,8.0,7.0,1.0,5.0,5.0,10.0,7.0,4.0,5.0,2.0,4.0,4.0,4.0,2.0,4.0,2.0,2.0,4.0,4.0,1.0,2.0,2.0,3.0,1.0,3.0,0.0,2.0,2.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,201,453,84,0,62,63,76,63,43,38,45,63,51,36,50,35,29,31,16,16,9,7,5,0,0,0,718,6,0,14,0,718,6,0,14,0,278,2,65,40,18,2,132,201,0,587,148,3,0,28,1,1,0,0,1,1,1,0,0,705,0,14,47,393,95,0,0,142,47,0,44,40,22,1,0,631,0,2.834507042253521,0.0,3.5205479452054798,0.0,6.987804878048781,6,16,139,48,0,0,47,13,0,61,18,25,31,50,25,23,14,19,3,0,0,0,0,0,0,261,8,236,33,229,40,28,241,235,34,26,243,143,126,9,260,235,34,230,39,127,103,10,259,11,258,6,263,35,234,7,262,5,264,87,129,49,4,0,181,88,0,8,1,0,0,0,1,0,1,0,0,258,0,1.483271375464684,1.2602230483271375,0.0,1.0,1.0,50.613382899628256 +PA120101,80202,Panamá,Balboa,La Ensenada,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,3,20,0,0,0,0,3,0,0,0,4,18,0,1,0,0,0,0,0,19,1,0,3,0,23,0,0,0,0,0,23,1,9,0,0,1,0,0,0,1,22,0,0,0,22,0,0,0,1,0,0,23,0,0,0,0,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,34,0.0,0.0,0.0,0.0,1.0,3.8260869565217392,2.8260869565217392,23,13,17,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,12,0,3,52,0,10,45,0,53,2,0,9,46,0,9,0,45,1,0,1,0,0,0,1,3,0,2,1,25,0,0,0,3,3,3,2,3,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,0,28,0,0,0,0,1,8,16,1,2,5,2,0,1,0,0,4,13,0,32,23,5,0,1,19,0,0,0,0,1,6,1,6,0,0,0,45,7,0,0,1,0,0,0,0,0,0,1,1,1,0,2,18,0,0,2,20,11,6,3,8,2,4,1,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6,41,8,0,1,1,4,6,4,2,5,7,4,1,5,5,2,1,2,1,0,1,3,0,0,0,53,1,0,1,0,53,1,0,1,0,27,1,7,1,2,0,11,6,0,41,13,1,0,0,0,0,0,0,0,0,0,0,0,55,0,3,27,22,2,0,0,0,1,0,6,2,1,0,0,46,0,2.857142857142857,0.0,4.25,0.0,7.218181818181818,2,8,12,1,0,0,0,0,0,2,1,2,4,4,3,4,1,2,0,0,0,0,0,0,0,23,0,17,6,18,5,3,20,16,7,2,21,10,13,0,23,16,7,17,6,13,4,1,22,2,21,0,23,14,9,6,17,2,21,6,14,3,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,23,0,1.391304347826087,1.0,0.0,1.0,1.0,55.391304347826086 +PA120102,80203,Panamá,Balboa,La Esmeralda,248,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,74,41,58,108,7,34,3,1,20,0,0,0,97,45,0,25,5,0,1,157,1,12,2,1,0,0,163,4,0,0,0,6,173,15,35,1,5,17,2,0,0,15,142,16,0,0,169,2,0,1,1,0,0,172,0,1,0,0,0,0,113,58,0,1,1,0,0,170,1,2,0,0,0,0,0,0,0,0,0,251,1.3567251461988303,2.3976608187134505,1.280701754385965,2.391812865497076,1.0,3.3179190751445087,2.3121387283237,175,111,187,32,34,3,4,5,0,6,1,5,7,0,4,1,0,5,0,0,0,290,208,0,19,479,0,76,422,0,444,54,0,120,378,0,120,0,351,27,0,27,2,13,3,14,13,31,15,23,110,0,0,1,28,52,88,22,23,28,0,0,0,1,1,1,0,1,0,1,0,0,0,0,0,0,231,5,190,0,0,2,3,1,63,110,2,14,31,20,7,1,11,0,22,141,0,308,262,17,5,1,206,3,0,1,0,2,16,0,161,0,0,0,392,30,1,0,0,3,0,0,0,0,0,4,2,1,4,31,162,9,1,22,366,51,31,50,39,15,11,4,1,2,0,0,0,0,0,0,13.0,24.0,16.0,19.0,11.0,11.0,12.0,12.0,9.0,17.0,8.0,5.0,7.0,10.0,12.0,10.0,10.0,15.0,10.0,14.0,12.0,13.0,11.0,12.0,15.0,9.0,9.0,12.0,7.0,12.0,8.0,8.0,10.0,5.0,7.0,3.0,9.0,9.0,8.0,7.0,8.0,7.0,8.0,4.0,5.0,7.0,12.0,5.0,5.0,5.0,5.0,6.0,1.0,2.0,4.0,1.0,2.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,0.0,2.0,0.0,1.0,1.0,1.0,2.0,0.0,5.0,2.0,2.0,2.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,186,358,26,0,83,61,42,59,63,49,38,36,32,34,18,15,14,4,10,6,4,1,1,0,0,0,540,1,0,29,0,540,1,0,29,0,203,0,39,53,9,3,77,186,0,445,125,0,0,18,0,0,0,0,0,2,0,0,3,547,0,16,314,144,33,4,0,17,42,0,17,23,1,0,0,529,0,2.77720207253886,0.0,3.389261744966443,0.0,5.740350877192983,6,96,45,14,0,0,3,11,0,27,23,11,29,32,18,13,11,7,1,0,1,0,0,0,0,166,9,122,53,93,82,10,165,119,56,9,166,84,91,2,173,110,65,128,47,95,33,8,167,19,156,1,174,51,124,16,159,7,168,40,98,37,0,1,136,39,0,6,0,0,0,0,0,0,0,0,0,169,0,1.75,1.4886363636363635,0.0,1.0,1.0,43.17714285714285 +PA120103,80204,Panamá,Balboa,La Guinea,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,2,18,0,0,0,0,2,0,0,17,1,0,0,2,0,0,0,0,0,15,4,0,1,0,19,0,0,0,0,1,20,2,29,2,0,12,4,0,0,1,18,1,0,0,18,2,0,0,0,0,0,20,0,0,0,0,0,0,10,10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,69,7.0,22.0,6.25,19.9,1.0,3.65,2.65,20,12,7,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,33,8,0,4,37,0,7,34,0,40,1,0,5,36,0,5,0,34,2,0,2,0,1,0,0,0,1,3,2,19,0,0,0,1,5,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,1,20,0,1,0,0,0,4,14,1,1,7,1,0,0,1,0,11,0,0,22,20,7,0,0,12,0,0,1,0,1,3,1,9,0,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,1,5,30,2,3,1,3,1,1,1,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,0.0,2.0,2.0,2.0,3.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5,22,15,0,1,1,3,1,2,2,1,0,4,6,0,1,5,10,3,2,0,0,0,0,0,0,42,0,0,0,0,42,0,0,0,0,23,0,0,7,1,0,6,5,0,27,15,0,0,0,0,0,0,0,0,1,0,0,1,40,0,0,18,19,2,2,0,1,0,0,9,9,0,0,0,24,0,4.555555555555555,0.0,4.176470588235294,0.0,6.214285714285714,0,8,10,1,0,0,1,0,0,8,2,3,1,2,2,0,2,0,0,0,0,0,0,0,0,19,1,16,4,15,5,3,17,9,11,0,20,12,8,0,20,15,5,12,8,0,12,1,19,1,19,0,20,17,3,6,14,1,19,7,11,2,0,0,15,5,0,0,0,0,0,0,0,0,0,0,0,20,0,1.1,1.0,0.0,1.0,1.0,59.65 +PA120104,80205,Panamá,Balboa,Pedro González,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,3,35,69,0,7,0,27,1,0,104,0,0,0,0,0,0,0,0,94,1,4,3,0,2,0,102,0,1,0,0,1,104,13,82,14,0,4,13,0,0,11,80,13,0,0,99,3,1,1,0,0,0,87,1,15,1,0,0,0,28,73,0,1,2,0,0,103,1,0,0,0,0,0,0,0,0,0,0,230,7.0,24.0,6.971153846153846,24.0,1.0,3.6538461538461537,2.5865384615384617,104,50,99,5,16,0,1,3,0,6,1,2,0,0,2,4,1,1,0,0,1,241,27,0,9,259,0,218,50,0,252,16,0,84,184,0,82,2,181,3,0,3,6,2,0,5,7,11,8,7,77,0,0,0,15,18,35,17,18,34,0,0,0,2,0,2,0,1,0,0,0,0,0,0,0,0,117,3,118,0,0,1,2,6,54,48,0,10,41,12,7,0,3,2,4,48,0,143,144,8,34,0,74,1,0,0,0,1,10,0,65,14,0,0,199,37,0,0,0,2,0,0,0,0,0,1,1,3,1,18,51,5,2,38,141,17,9,22,30,12,11,14,15,1,0,0,1,0,0,14,4.0,4.0,5.0,6.0,5.0,2.0,3.0,5.0,5.0,10.0,6.0,4.0,6.0,4.0,7.0,7.0,3.0,4.0,7.0,8.0,3.0,8.0,6.0,3.0,7.0,6.0,3.0,6.0,6.0,7.0,2.0,2.0,7.0,2.0,4.0,2.0,3.0,2.0,3.0,0.0,7.0,3.0,4.0,5.0,2.0,4.0,5.0,6.0,4.0,3.0,2.0,4.0,3.0,4.0,2.0,2.0,1.0,4.0,2.0,1.0,0.0,0.0,2.0,3.0,1.0,2.0,2.0,2.0,4.0,2.0,3.0,1.0,2.0,1.0,0.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,76,185,26,0,24,25,27,29,27,28,17,10,21,22,15,10,6,12,7,6,1,0,0,0,0,0,279,2,1,5,0,279,2,1,5,0,91,4,25,37,8,1,45,76,0,260,25,2,0,0,0,0,0,0,0,9,0,0,2,276,0,14,32,126,32,2,1,60,20,0,37,37,5,1,0,207,0,2.040983606557377,0.0,3.102564102564102,0.0,6.965156794425087,4,15,44,20,0,0,18,3,0,12,8,4,6,18,15,9,7,16,3,3,1,1,0,0,1,103,1,95,9,88,16,6,98,95,9,13,91,62,42,1,103,94,10,92,12,27,65,6,98,75,29,2,102,25,79,2,102,0,104,32,52,20,0,0,57,47,0,0,0,0,0,0,0,3,0,0,0,101,0,1.375,1.3846153846153846,0.0,1.0,1.0,47.99038461538461 +PA120105,80206,Panamá,Balboa,Saboga,463,9,14,0,0,0,0,0,0,0,0,0,0,0,0,25,83,6,23,113,1,8,0,1,14,0,137,0,0,0,0,0,0,0,0,100,8,21,7,1,0,0,133,0,0,0,0,4,137,21,269,15,3,28,12,1,0,9,115,13,0,0,106,26,0,2,2,1,0,126,6,1,3,0,1,0,79,46,0,0,12,0,0,135,0,1,0,0,0,0,0,1,0,0,0,486,2.77037037037037,5.237037037037037,3.1481481481481484,5.925925925925926,1.0,3.18978102189781,2.1094890510948905,137,49,76,8,14,2,5,2,0,1,1,0,1,1,5,2,0,0,1,0,2,228,50,0,22,256,0,120,158,0,255,23,0,57,221,0,55,2,210,11,0,11,3,4,0,8,13,7,10,11,46,0,4,1,15,17,33,12,14,48,2,2,2,3,2,3,4,2,0,0,1,0,0,0,0,0,134,14,92,0,1,1,11,6,29,51,1,5,64,12,13,25,8,0,1,20,1,144,153,14,46,22,58,3,0,0,1,0,2,0,52,1,0,0,170,59,1,2,2,5,0,1,0,0,0,5,1,5,5,26,14,29,5,57,140,26,18,10,32,18,30,11,8,3,0,0,0,0,0,1,6.0,4.0,2.0,7.0,7.0,6.0,5.0,12.0,5.0,3.0,4.0,7.0,5.0,3.0,2.0,3.0,1.0,2.0,3.0,1.0,5.0,6.0,3.0,4.0,3.0,5.0,2.0,4.0,4.0,4.0,3.0,5.0,9.0,2.0,5.0,3.0,5.0,11.0,2.0,3.0,6.0,5.0,2.0,2.0,3.0,5.0,7.0,2.0,4.0,3.0,5.0,3.0,4.0,8.0,4.0,4.0,4.0,6.0,4.0,2.0,7.0,2.0,2.0,2.0,1.0,5.0,3.0,4.0,2.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,78,195,24,0,26,31,21,10,21,19,24,24,18,21,24,20,14,15,4,3,1,1,0,0,0,0,270,25,1,1,0,270,25,1,1,0,122,1,13,26,1,1,56,77,0,187,91,19,0,6,0,0,0,0,0,4,0,0,2,285,0,21,18,125,30,0,2,85,16,0,31,9,9,0,0,248,0,2.25,0.0,2.8541666666666665,0.0,7.336700336700336,9,8,55,18,0,1,36,10,0,15,9,13,15,19,15,19,7,18,7,0,0,0,0,0,0,134,3,132,5,117,20,16,121,126,11,39,98,89,48,2,135,129,8,125,12,86,39,15,122,71,66,12,125,42,95,6,131,2,135,57,56,22,2,0,80,57,0,3,0,0,0,0,0,0,0,0,1,133,0,1.051094890510949,1.1167883211678833,0.0,0.0,0.0,45.45255474452555 +PA120203,80501,Panamá,Chepo,Chepo,14113,124,311,155,0,0,0,0,11,0,0,3,10,0,0,1157,6202,2839,327,9757,441,18,3,0,282,24,9676,140,26,328,25,124,194,1,11,7879,118,2148,54,43,5,278,10170,202,46,1,0,106,10525,2,1581,847,415,884,449,0,673,646,8302,631,16,257,8493,1537,1,472,2,19,1,10424,28,27,7,19,19,1,3775,5618,2,1064,62,4,5166,1639,51,324,50,74,5,67,1771,773,595,10,6609,8118,5.881563593932322,15.764148191365228,6.061989498249709,16.814760793465577,1.0197624703087886,3.1002375296912112,1.9004275534441808,10746,5799,13072,990,1798,326,433,285,84,403,111,92,281,5,457,227,95,154,145,36,166,26611,5315,0,6952,24974,0,23034,8892,0,29186,2740,0,10303,21623,0,9187,1116,19695,1928,0,1964,264,621,93,888,1070,1275,1053,1100,4418,3,11,62,1372,1886,2910,1140,1666,6326,26,161,424,564,620,671,666,450,45,23,139,0,1,3,11,0,12450,1464,13716,0,41,647,203,949,6113,5694,578,382,8244,767,1658,478,1544,69,499,270,78,17212,17213,2270,6234,425,4243,195,10,128,102,98,867,133,10715,89,0,0,17412,7952,66,164,330,1551,31,114,10,0,105,450,796,1065,750,2940,698,2549,1526,3035,18738,2029,1020,1357,1711,2304,3710,1607,1182,402,159,43,36,18,20,89,548.0,628.0,643.0,680.0,696.0,735.0,672.0,774.0,715.0,704.0,741.0,677.0,604.0,648.0,575.0,596.0,684.0,587.0,581.0,548.0,559.0,606.0,645.0,618.0,620.0,618.0,601.0,604.0,537.0,554.0,555.0,539.0,504.0,512.0,504.0,447.0,496.0,471.0,469.0,468.0,480.0,442.0,436.0,459.0,414.0,413.0,403.0,405.0,387.0,363.0,340.0,324.0,321.0,310.0,334.0,272.0,315.0,261.0,248.0,248.0,200.0,205.0,185.0,200.0,172.0,191.0,166.0,161.0,138.0,129.0,107.0,118.0,115.0,111.0,103.0,93.0,83.0,74.0,82.0,90.0,64.0,66.0,46.0,58.0,50.0,43.0,36.0,35.0,25.0,22.0,31.0,17.0,16.0,18.0,4.0,8.0,7.0,3.0,8.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10040,22060,2325,0,3195,3600,3245,2996,3048,2914,2614,2351,2231,1971,1629,1344,962,785,554,422,284,161,86,29,4,0,33546,523,237,119,0,33561,543,202,119,0,9275,424,1809,4148,709,162,7861,10037,0,9879,24220,326,0,382,1324,66,6,10,3,1099,972,12,446,30105,0,1758,2082,2567,485,149,86,7485,19813,0,6491,7956,972,99,17,18890,0,2.096876807403123,0.0,2.998083067092652,0.0,7.55599128540305,605,694,924,242,75,43,2488,5675,0,813,501,399,621,959,1240,1769,1173,1550,802,417,192,176,54,47,20,10522,224,8893,1853,8644,2102,1252,9494,9440,1306,1555,9191,5084,5662,1149,9597,10020,726,8603,2143,4994,3609,2538,8208,7908,2838,3305,7441,2265,8481,1641,9105,194,10552,2163,6242,2144,197,11,6215,4531,0,82,350,20,2,5,2,277,223,5,159,9621,0,1.6000743701775588,1.6001673328995072,1.2884615384615383,1.0251396648044693,1.0251396648044693,45.755816117625166 +PA120201,80502,Panamá,Chepo,Cañita,1224,0,0,1,0,0,0,0,16,0,0,1,1,0,0,72,719,89,16,850,30,6,0,0,9,1,844,0,2,26,4,1,18,0,1,726,2,151,1,15,0,1,858,30,2,0,0,6,896,4,190,35,26,27,47,0,4,65,750,76,0,1,719,174,0,2,1,0,0,885,2,3,0,0,6,0,189,652,0,43,12,0,573,251,24,4,0,13,0,27,0,2,2,0,0,1243,6.788915094339623,23.60495283018868,6.817216981132075,23.56132075471698,1.0066964285714286,3.5066964285714284,2.2723214285714284,904,475,869,99,180,18,28,28,10,48,10,5,86,4,37,14,8,10,10,15,4,2181,405,0,378,2208,0,1783,803,0,2332,254,0,708,1878,0,636,72,1736,142,0,149,15,39,14,80,93,150,95,88,493,1,1,4,85,101,214,107,137,444,3,17,28,45,49,45,50,23,4,0,11,0,0,0,1,0,968,81,1281,0,10,27,16,107,434,646,50,44,596,85,53,20,105,0,179,7,1,1417,1347,138,459,15,357,51,0,14,12,4,183,14,948,6,0,0,1601,579,5,15,17,99,3,10,1,0,13,46,50,43,52,223,115,119,130,258,1446,283,82,138,199,246,171,76,69,22,17,2,4,2,1,6,44.0,39.0,53.0,42.0,28.0,44.0,40.0,49.0,45.0,50.0,54.0,39.0,41.0,42.0,34.0,46.0,48.0,52.0,44.0,45.0,47.0,31.0,48.0,33.0,40.0,42.0,45.0,50.0,38.0,43.0,32.0,40.0,45.0,37.0,36.0,32.0,36.0,34.0,33.0,28.0,27.0,28.0,31.0,23.0,20.0,37.0,47.0,29.0,27.0,44.0,34.0,34.0,35.0,31.0,35.0,30.0,27.0,34.0,20.0,30.0,22.0,32.0,30.0,18.0,25.0,24.0,17.0,23.0,21.0,17.0,20.0,12.0,27.0,24.0,12.0,25.0,15.0,6.0,11.0,11.0,15.0,6.0,10.0,16.0,7.0,12.0,5.0,5.0,1.0,5.0,4.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,644,1755,365,0,206,228,210,235,199,218,190,163,129,184,169,141,127,102,95,68,54,28,13,3,2,0,2694,44,20,6,0,2694,47,17,6,0,748,24,49,427,95,13,764,644,0,912,1812,40,0,35,119,6,0,8,0,114,7,0,35,2440,0,30,77,154,18,23,6,708,1748,0,388,645,111,7,1,1612,0,2.358724534986714,0.0,3.142326732673267,0.0,7.267366136034732,10,28,47,7,9,3,275,525,0,98,82,28,73,115,138,106,66,91,51,18,12,11,5,5,3,879,25,769,135,752,152,190,714,755,149,141,763,371,533,22,882,847,57,673,231,309,364,193,711,655,249,308,596,238,666,307,597,4,900,208,471,192,33,16,588,316,0,9,20,2,0,3,0,24,0,0,16,830,0,1.5402173913043478,1.4641304347826087,1.2,1.0701754385964912,1.0701754385964912,53.18030973451327 +PA120204,80504,Panamá,Chepo,El Llano,1671,50,0,0,0,0,0,0,1,0,0,12,1,1,0,158,528,368,57,1017,37,39,1,0,13,4,768,1,9,248,11,6,65,0,3,571,6,515,9,6,1,3,1056,44,0,0,0,11,1111,5,372,49,2,110,72,0,1,21,917,161,8,3,617,423,0,9,0,58,4,1064,5,8,0,2,30,2,151,701,1,180,78,0,42,660,66,32,7,103,1,30,1,5,158,6,0,1736,5.321614583333333,16.578125,5.427083333333333,17.065104166666668,1.0144014401440145,3.090909090909091,2.018901890189019,1140,613,1081,162,158,24,19,31,5,28,18,7,26,0,51,15,11,12,24,9,16,2242,832,0,227,2847,0,1335,1739,0,2699,375,0,861,2213,0,822,39,1961,252,0,256,30,68,19,93,120,185,157,127,711,0,5,11,131,171,215,96,86,401,9,6,27,38,31,27,32,13,3,2,4,0,0,0,0,0,1065,145,1472,0,5,36,51,66,484,766,52,104,349,109,89,22,100,3,368,88,56,1803,1509,110,403,13,481,49,0,70,58,7,178,22,1266,146,0,0,2078,497,12,6,20,63,2,4,0,0,27,22,26,44,41,152,367,109,75,347,1936,339,96,152,191,175,124,63,60,11,11,1,2,2,3,146,49.0,52.0,68.0,69.0,61.0,63.0,67.0,59.0,65.0,77.0,64.0,61.0,46.0,62.0,56.0,49.0,59.0,44.0,53.0,45.0,47.0,66.0,46.0,50.0,52.0,49.0,55.0,48.0,50.0,43.0,37.0,48.0,44.0,50.0,40.0,43.0,39.0,40.0,50.0,36.0,38.0,43.0,24.0,33.0,31.0,29.0,37.0,42.0,32.0,39.0,36.0,34.0,39.0,46.0,39.0,37.0,33.0,33.0,33.0,34.0,34.0,26.0,27.0,30.0,26.0,26.0,21.0,21.0,21.0,21.0,27.0,19.0,17.0,14.0,17.0,11.0,17.0,19.0,16.0,9.0,12.0,13.0,10.0,3.0,6.0,6.0,6.0,5.0,2.0,1.0,5.0,4.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,919,2038,355,0,299,331,289,250,261,245,219,208,169,179,194,170,143,110,94,72,44,20,12,2,1,0,3256,25,19,12,0,3256,26,18,12,0,1001,42,73,403,81,7,786,919,0,1174,2121,17,0,31,144,25,0,1,0,194,7,2,47,2861,0,60,62,226,23,2,1,973,1965,0,278,574,64,9,1,2386,0,2.532456861133936,0.0,3.3731679819616684,0.0,6.167874396135265,20,21,94,11,2,1,366,625,0,170,134,52,130,152,149,87,52,83,30,15,4,7,3,3,56,1104,36,725,415,793,347,123,1017,712,428,73,1067,422,718,20,1120,996,144,686,454,297,389,106,1034,612,528,230,910,496,644,515,625,13,1127,325,615,179,21,2,863,277,0,5,41,5,0,1,0,52,1,1,12,1022,0,1.5788091068301229,1.3213660245183887,0.0,1.0357142857142858,1.0357142857142858,49.924561403508775 +PA120206,80505,Panamá,Chepo,Las Margaritas,2198,371,7,8,0,0,0,0,1,0,0,1,0,0,0,25,1418,334,48,1687,90,15,0,0,30,3,1574,42,5,129,7,3,64,0,1,1544,16,229,4,28,2,2,1704,82,3,0,0,36,1825,0,324,77,40,136,182,0,15,126,1301,217,14,152,1431,333,2,41,3,14,1,1798,0,12,0,5,10,0,630,996,0,178,21,0,1550,113,14,4,1,54,0,66,0,18,4,1,2169,417,6.278473464519976,17.273703041144902,6.364937388193202,17.803220035778175,1.0164383561643835,3.219178082191781,2.004931506849315,1856,979,1940,166,327,41,85,42,21,88,25,2,85,1,127,94,18,42,47,32,26,4489,834,0,1414,3909,0,3618,1705,0,4835,488,0,1563,3760,0,1337,226,3411,349,0,359,32,83,23,126,194,242,177,185,760,0,2,6,189,298,457,176,223,998,14,70,69,83,96,140,157,100,17,4,39,1,0,0,3,0,2128,239,2358,0,9,92,71,236,942,941,130,109,1276,145,300,62,250,6,256,11,26,2914,2744,503,930,61,733,48,2,29,26,20,268,32,1585,11,0,0,2919,1329,6,48,40,335,12,33,3,0,6,95,182,212,153,418,134,398,264,505,2725,500,233,354,358,364,441,272,233,89,44,9,16,5,4,11,65.0,90.0,92.0,88.0,113.0,88.0,87.0,115.0,99.0,96.0,104.0,101.0,94.0,94.0,83.0,103.0,93.0,79.0,80.0,84.0,94.0,85.0,84.0,98.0,89.0,89.0,91.0,74.0,87.0,79.0,93.0,70.0,80.0,80.0,84.0,75.0,77.0,76.0,86.0,87.0,71.0,77.0,63.0,58.0,76.0,63.0,66.0,76.0,70.0,60.0,55.0,74.0,54.0,74.0,51.0,62.0,52.0,58.0,53.0,63.0,57.0,43.0,67.0,46.0,56.0,35.0,41.0,30.0,24.0,38.0,31.0,26.0,22.0,38.0,33.0,28.0,24.0,31.0,22.0,27.0,15.0,13.0,15.0,18.0,14.0,10.0,9.0,6.0,7.0,6.0,2.0,4.0,2.0,3.0,5.0,3.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1409,3662,587,0,448,485,476,439,450,420,407,401,345,335,308,288,269,168,150,132,75,38,16,7,1,0,5560,52,34,12,0,5565,57,24,12,0,1497,82,552,776,172,37,1133,1409,0,2686,2927,45,0,25,182,15,0,1,1,65,105,0,63,5201,0,186,325,336,46,35,14,962,3754,0,985,1368,229,28,2,3046,0,2.157342657342657,0.0,2.968827930174564,0.0,7.802403676210675,61,111,130,24,12,3,347,1168,0,137,109,64,153,220,202,196,189,255,130,84,40,42,15,15,4,1760,96,1491,365,1536,320,261,1595,1521,335,351,1505,759,1097,181,1675,1642,214,1419,437,1020,399,517,1339,1240,616,607,1249,473,1383,484,1372,13,1843,438,946,417,55,1,1196,660,0,3,49,5,0,1,0,15,19,0,22,1742,0,1.5691976305869682,1.477652127086699,1.3333333333333333,1.048780487804878,1.048780487804878,50.68588362068966 +PA120202,80503,Panamá,Chepo,Chepillo,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,19,5,45,3,1,0,0,4,0,51,1,0,0,0,0,1,0,0,0,0,50,2,0,1,0,53,0,0,0,0,0,53,0,59,3,0,3,9,0,0,0,47,5,1,0,48,3,0,2,0,0,0,53,0,0,0,0,0,0,25,28,0,0,0,0,0,51,0,2,0,0,0,0,0,0,0,0,0,127,3.117647058823529,4.686274509803922,4.15686274509804,5.980392156862745,1.0,3.4339622641509435,2.0,53,39,56,6,18,3,2,9,1,6,1,0,1,0,3,2,1,2,1,0,1,125,54,0,4,175,0,69,110,0,156,23,0,24,155,0,23,1,137,18,0,18,0,1,0,1,5,10,3,5,88,0,0,0,6,8,22,3,3,4,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,73,1,84,0,0,0,0,4,13,54,6,7,12,1,2,0,0,0,0,59,0,106,89,6,17,0,42,5,0,4,0,1,19,2,70,1,0,0,152,5,0,0,0,1,0,0,0,0,0,2,0,1,2,1,47,4,1,16,124,23,9,16,9,8,3,1,0,0,0,1,0,0,0,1,5.0,4.0,3.0,4.0,6.0,4.0,2.0,0.0,4.0,5.0,2.0,5.0,1.0,4.0,1.0,6.0,3.0,1.0,6.0,3.0,4.0,2.0,4.0,7.0,3.0,4.0,6.0,2.0,0.0,1.0,0.0,2.0,0.0,1.0,4.0,3.0,0.0,3.0,1.0,3.0,4.0,6.0,1.0,1.0,2.0,2.0,3.0,2.0,3.0,2.0,1.0,3.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,2.0,3.0,1.0,1.0,1.0,3.0,3.0,5.0,1.0,2.0,0.0,1.0,2.0,1.0,1.0,1.0,4.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,50,116,29,0,22,15,13,19,20,13,7,10,14,12,7,5,9,11,6,10,1,1,0,0,0,0,191,1,0,3,0,191,1,0,3,0,89,0,7,14,4,0,31,50,0,130,64,1,0,6,0,0,0,0,0,25,9,0,4,151,0,4,19,48,2,1,3,87,31,0,8,25,3,1,0,158,0,2.45945945945946,0.0,3.6,0.0,5.384615384615385,2,7,16,1,1,1,21,4,0,5,4,3,14,6,10,3,5,2,0,0,1,0,0,0,0,53,0,42,11,43,10,2,51,45,8,8,45,26,27,0,53,46,7,44,9,28,16,1,52,28,25,1,52,27,26,14,39,0,53,10,23,19,1,0,42,11,0,1,0,0,0,0,0,3,2,0,1,46,0,2.0,1.679245283018868,0.0,1.0,1.0,53.62264150943396 +PA120207,80506,Panamá,Chepo,Santa Cruz de Chinina,623,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,342,38,359,14,18,1,1,18,0,0,0,17,321,3,7,61,0,2,0,0,377,21,10,2,1,360,49,0,0,0,2,411,11,107,16,1,38,34,7,0,0,386,23,1,1,94,310,2,1,3,0,1,397,2,1,0,0,11,0,12,207,3,171,18,0,0,80,65,105,78,72,1,4,0,0,6,0,0,625,5.503448275862069,17.131034482758622,5.917241379310345,19.572413793103447,1.0,2.8661800486618003,1.708029197080292,411,260,402,27,44,17,11,4,2,14,2,2,2,2,21,17,7,2,5,0,10,589,543,0,23,1109,0,149,983,0,999,133,0,249,883,0,240,9,763,120,0,121,2,7,1,40,40,79,56,62,385,0,0,0,42,55,72,18,41,86,1,2,2,1,4,5,2,5,3,0,0,0,0,0,0,0,475,17,526,0,5,5,6,6,152,299,29,40,32,23,7,4,4,1,316,97,0,690,510,16,196,1,199,31,0,41,0,30,82,4,441,7,0,0,907,97,0,0,1,11,2,0,0,0,0,5,4,8,1,16,214,13,7,224,798,152,58,64,56,33,9,4,9,2,7,0,0,0,1,7,15.0,18.0,20.0,15.0,13.0,11.0,22.0,22.0,22.0,24.0,23.0,16.0,22.0,21.0,22.0,23.0,18.0,22.0,19.0,19.0,20.0,16.0,26.0,14.0,17.0,18.0,13.0,13.0,19.0,8.0,21.0,6.0,19.0,12.0,11.0,18.0,13.0,21.0,21.0,14.0,23.0,17.0,23.0,18.0,14.0,15.0,17.0,14.0,12.0,19.0,16.0,17.0,23.0,11.0,17.0,12.0,9.0,13.0,7.0,6.0,11.0,5.0,11.0,7.0,10.0,16.0,8.0,6.0,9.0,8.0,12.0,14.0,7.0,12.0,5.0,8.0,4.0,3.0,7.0,4.0,3.0,1.0,2.0,4.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,286,768,146,0,81,101,104,101,93,71,69,87,95,77,84,47,44,47,50,26,14,4,3,1,1,0,1186,3,7,4,0,1186,6,4,4,0,401,8,24,178,43,4,256,286,0,552,637,11,0,23,34,5,0,0,0,9,1,0,5,1123,0,9,106,130,4,93,1,455,402,0,26,78,10,0,0,1086,0,2.884892086330935,0.0,3.924398625429553,0.0,5.54,3,42,47,2,38,1,143,135,0,83,60,40,60,81,48,13,6,6,2,7,2,1,0,1,1,393,18,61,350,124,287,45,366,34,377,3,408,101,310,4,407,226,185,161,250,35,126,4,407,34,377,32,379,222,189,248,163,6,405,106,229,73,3,0,370,41,0,8,12,2,0,0,0,3,0,0,2,384,0,1.6788321167883211,1.2408759124087592,0.0,1.0714285714285714,1.0714285714285714,50.80778588807786 +PA120205,80507,Panamá,Chepo,Comarca Kuna de Madungandi,1272,2,0,3,0,0,0,0,0,0,0,0,0,0,0,6,299,105,661,389,21,16,536,9,6,94,452,25,20,426,20,3,115,2,8,83,21,420,395,10,142,0,460,607,2,1,0,1,1071,31,91,20,16,35,13,0,0,9,1054,8,0,0,181,524,3,5,353,1,4,503,1,0,0,20,547,0,53,219,14,721,55,9,14,662,4,1,1,1,2,373,0,2,8,3,0,1277,5.877941176470588,16.96323529411765,6.379411764705883,20.70441176470588,1.0028011204481793,1.9028944911297847,0.8141923436041083,1074,869,3303,175,1206,45,57,145,73,376,143,20,161,0,35,15,8,4,12,0,11,3897,2671,0,225,6343,0,1374,5194,0,4209,2359,0,2158,4410,0,2125,33,2657,1753,0,1773,82,226,1,268,353,421,374,396,1353,0,0,0,214,232,411,67,112,202,0,3,9,12,17,11,7,20,1,0,3,0,0,0,0,0,2349,32,2756,0,4,6,9,23,1064,1577,35,57,218,387,47,11,35,7,1541,126,0,3815,3832,70,177,7,1961,9,10,138,0,496,155,13,2939,5,0,0,4851,245,0,4,3,33,0,1,0,0,1,12,43,34,16,94,1592,391,38,160,6573,395,121,157,152,112,65,21,23,12,4,1,3,0,3,5,294.0,303.0,248.0,234.0,241.0,260.0,228.0,233.0,247.0,222.0,226.0,208.0,190.0,188.0,197.0,166.0,170.0,173.0,152.0,149.0,173.0,127.0,115.0,121.0,110.0,138.0,107.0,101.0,109.0,100.0,106.0,96.0,99.0,89.0,75.0,68.0,59.0,62.0,69.0,60.0,64.0,45.0,72.0,54.0,49.0,53.0,24.0,46.0,43.0,67.0,87.0,47.0,53.0,27.0,23.0,27.0,27.0,22.0,53.0,49.0,32.0,31.0,16.0,30.0,25.0,17.0,15.0,21.0,19.0,17.0,17.0,13.0,21.0,24.0,9.0,15.0,25.0,5.0,8.0,4.0,7.0,4.0,5.0,3.0,5.0,6.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,3519,3860,266,2,1320,1190,1009,810,646,555,465,318,284,233,237,178,134,89,84,57,24,9,3,0,0,2,7150,8,3,486,0,7150,9,2,486,0,2632,7,266,134,189,3,913,3503,0,5870,1767,10,0,6981,16,0,0,0,0,16,2,0,6,626,0,13,30,30,1,2,2,70,7499,0,83,163,21,3,0,7377,0,3.027016595908916,0.0,4.016235718580878,0.0,3.4688112985484505,2,8,15,1,0,1,23,1024,0,94,73,125,176,234,138,95,53,55,19,3,3,4,0,2,0,771,303,372,702,222,852,102,972,382,692,29,1045,278,796,30,1044,690,384,336,738,141,195,72,1002,227,847,79,995,807,267,167,907,23,1051,61,435,506,72,0,942,132,2,863,2,0,0,0,0,4,0,0,3,202,0,3.5521415270018624,3.567970204841713,1.3333333333333333,1.025,1.025,46.809701492537314 +PA120302,80601,Panamá,Chimán,Chimán,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,153,33,195,27,6,1,2,20,4,0,80,9,132,1,4,27,0,2,0,3,172,70,3,7,0,223,31,0,0,0,1,255,3,43,6,0,27,19,0,0,9,239,7,0,0,82,167,0,4,2,0,0,236,2,0,0,8,9,0,40,105,0,39,71,0,0,228,1,4,2,0,0,16,0,0,4,0,0,353,4.423580786026201,12.296943231441048,6.74235807860262,23.37991266375546,1.0,3.196078431372549,1.9333333333333331,255,177,423,29,82,3,11,8,3,13,5,1,3,0,10,8,3,4,6,2,1,521,391,0,49,863,0,238,674,0,753,159,0,291,621,0,291,0,537,84,0,86,6,39,3,30,50,39,61,48,210,1,5,0,45,49,99,18,43,63,0,2,1,4,3,2,3,2,0,0,0,0,0,0,0,0,470,5,293,0,0,4,1,5,141,123,11,13,43,170,11,5,11,1,83,147,0,540,473,32,31,3,393,5,0,7,0,37,34,5,278,2,0,0,688,74,0,1,1,4,0,0,0,0,1,5,10,11,5,15,206,169,3,50,600,117,71,83,33,50,21,11,13,11,1,0,0,0,0,2,19.0,24.0,30.0,28.0,25.0,29.0,25.0,19.0,26.0,20.0,28.0,18.0,24.0,22.0,20.0,22.0,18.0,16.0,19.0,13.0,17.0,19.0,9.0,19.0,10.0,18.0,11.0,10.0,11.0,9.0,4.0,9.0,11.0,13.0,12.0,13.0,15.0,12.0,14.0,17.0,13.0,14.0,5.0,11.0,11.0,17.0,15.0,7.0,14.0,9.0,10.0,13.0,4.0,17.0,8.0,7.0,11.0,7.0,11.0,4.0,6.0,9.0,3.0,12.0,10.0,4.0,5.0,4.0,3.0,6.0,4.0,2.0,2.0,5.0,6.0,3.0,3.0,1.0,6.0,3.0,1.0,2.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,357,589,67,0,126,119,112,88,74,59,49,71,54,62,52,40,40,22,19,16,6,3,0,1,0,0,1002,1,2,8,0,1002,1,2,8,0,354,1,16,50,18,0,217,357,0,758,243,12,0,4,12,1,0,0,0,100,528,0,1,367,0,3,31,52,19,0,3,105,800,0,25,48,4,1,0,935,0,3.169054441260745,0.0,4.293617021276596,0.0,5.237907206317868,2,9,15,12,0,3,38,176,0,10,16,25,32,53,49,22,13,10,10,8,2,4,0,0,1,247,8,60,195,106,149,26,229,59,196,2,253,79,176,0,255,173,82,118,137,25,93,5,250,8,247,7,248,116,139,71,184,3,252,43,146,63,3,0,216,39,0,4,3,1,0,0,0,18,101,0,0,128,0,2.117647058823529,1.8549019607843136,0.0,1.1666666666666667,1.1666666666666667,49.86666666666667 +PA120301,80602,Panamá,Chimán,Brujas,339,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,108,45,140,1,23,0,5,13,4,0,0,7,142,9,8,19,0,1,0,0,173,7,6,0,0,163,21,0,0,0,2,186,7,89,7,1,29,21,0,0,3,173,10,0,0,29,150,4,1,0,1,1,162,2,2,0,0,20,0,10,90,0,43,42,1,0,85,16,16,5,4,0,55,0,0,2,3,0,340,5.910891089108911,14.05940594059406,6.455445544554456,20.99009900990099,1.0,2.924731182795699,1.7956989247311828,186,134,209,32,21,6,5,6,1,5,3,0,6,0,8,2,1,0,6,0,2,301,264,0,30,535,0,182,383,0,477,88,0,136,429,0,136,0,365,64,0,66,3,2,0,21,39,43,28,29,130,0,0,0,30,27,59,15,20,41,0,0,4,1,2,1,2,1,0,0,1,0,0,0,0,0,245,12,227,0,0,7,5,1,78,128,6,14,22,15,7,2,3,0,168,36,0,362,252,14,43,2,182,9,0,3,0,14,30,1,191,8,0,0,431,49,0,0,1,3,0,0,0,0,0,2,2,4,3,8,154,17,5,62,424,59,32,26,21,14,15,6,6,1,1,0,1,0,0,8,10.0,9.0,16.0,14.0,12.0,12.0,18.0,15.0,11.0,13.0,12.0,10.0,4.0,12.0,12.0,15.0,10.0,11.0,12.0,8.0,8.0,10.0,12.0,12.0,4.0,10.0,6.0,11.0,5.0,7.0,8.0,7.0,3.0,7.0,6.0,5.0,10.0,8.0,12.0,4.0,6.0,8.0,6.0,7.0,7.0,12.0,8.0,15.0,5.0,7.0,6.0,11.0,5.0,3.0,8.0,9.0,3.0,10.0,8.0,4.0,5.0,5.0,5.0,5.0,4.0,2.0,8.0,3.0,3.0,3.0,1.0,1.0,3.0,2.0,3.0,7.0,3.0,1.0,3.0,0.0,4.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,180,383,51,0,61,69,50,56,46,39,31,39,34,47,33,34,24,19,10,14,5,3,0,0,0,0,590,6,7,11,0,591,6,6,11,0,236,0,6,67,2,1,123,179,0,247,361,6,0,3,3,0,0,0,0,123,18,0,6,461,0,5,27,82,12,3,2,241,242,0,15,21,1,0,0,577,0,2.9170731707317072,0.0,3.8333333333333335,0.0,5.322475570032573,3,6,28,2,1,1,80,65,0,37,20,26,24,29,13,8,7,11,4,1,0,2,0,0,4,179,7,30,156,62,124,16,170,26,160,3,183,36,150,0,186,87,99,85,101,68,17,8,178,41,145,28,158,120,66,96,90,2,184,36,114,31,5,0,162,24,0,1,1,0,0,0,0,21,3,0,0,160,0,1.946236559139785,1.3548387096774193,0.0,1.0,1.0,48.72043010752688 +PA120303,80603,Panamá,Chimán,Gonzalo Vásquez,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,9,34,29,1,18,2,11,3,0,0,0,4,54,0,2,3,0,1,0,0,52,0,4,8,0,62,1,0,0,0,1,64,0,27,0,0,30,2,0,0,0,62,2,0,0,14,48,0,1,0,1,0,63,0,0,0,0,1,0,0,54,0,0,10,0,0,55,1,2,5,1,0,0,0,0,0,0,0,123,5.785714285714286,18.678571428571427,6.714285714285714,23.375,1.0,3.140625,2.0,64,35,77,4,15,0,2,0,1,6,1,0,2,0,4,2,0,0,1,0,0,75,106,0,5,176,0,66,115,0,143,38,0,41,140,0,41,0,109,31,0,31,1,4,0,8,14,19,6,9,34,0,0,0,8,5,25,2,7,7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,86,6,55,0,0,2,4,3,16,29,4,3,4,5,2,0,2,0,24,51,0,123,84,4,0,0,83,0,0,1,0,6,8,0,58,0,0,0,139,7,0,0,0,0,0,1,0,0,0,0,0,1,4,3,74,4,1,5,140,28,5,10,7,10,4,0,0,1,1,0,0,1,0,0,6.0,8.0,3.0,9.0,3.0,7.0,8.0,2.0,7.0,7.0,3.0,3.0,3.0,1.0,5.0,2.0,4.0,2.0,3.0,3.0,0.0,5.0,5.0,7.0,2.0,4.0,1.0,5.0,2.0,0.0,3.0,3.0,1.0,1.0,2.0,1.0,3.0,4.0,1.0,1.0,0.0,1.0,1.0,4.0,4.0,0.0,0.0,4.0,4.0,0.0,2.0,4.0,3.0,2.0,3.0,1.0,1.0,2.0,0.0,1.0,2.0,0.0,2.0,2.0,2.0,3.0,3.0,0.0,0.0,1.0,2.0,1.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,75,110,22,0,29,31,15,14,19,12,10,10,10,8,14,5,8,7,7,2,2,4,0,0,0,0,202,0,0,5,0,202,0,0,5,0,75,1,0,17,4,0,35,75,0,138,62,7,0,2,0,0,0,0,0,15,94,0,2,94,0,4,17,26,3,0,1,38,118,0,1,6,5,0,0,195,0,3.946428571428572,0.0,4.478260869565218,0.0,4.2898550724637685,3,8,12,3,0,0,9,29,0,10,10,5,12,11,6,4,2,1,0,2,0,0,0,1,0,63,1,14,50,29,35,4,60,15,49,1,63,27,37,0,64,21,43,29,35,19,10,3,61,5,59,9,55,26,38,11,53,0,64,24,26,12,2,0,53,11,0,2,0,0,0,0,0,5,15,0,1,41,0,1.921875,1.3125,0.0,0.0,0.0,51.15625 +PA120304,80604,Panamá,Chimán,Pásiga,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,77,38,88,3,25,1,5,5,2,0,0,2,108,0,0,18,0,1,0,0,114,9,5,1,0,92,37,0,0,0,0,129,8,24,1,0,5,10,0,0,1,122,6,0,0,18,109,0,1,1,0,0,115,2,1,0,0,11,0,1,35,0,58,35,0,0,42,31,12,1,29,0,12,0,0,1,1,0,177,6.2465753424657535,19.013698630136982,6.849315068493151,22.534246575342465,1.0,2.4031007751937983,1.248062015503876,129,79,212,13,16,1,1,2,0,5,1,0,0,0,4,4,0,0,4,0,2,207,212,0,8,411,0,56,363,0,365,54,0,121,298,0,121,0,250,48,0,49,1,5,2,11,12,33,24,32,119,0,0,0,18,21,43,5,17,24,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,146,10,209,0,2,2,3,2,77,120,7,3,11,1,4,0,0,0,105,32,0,260,199,8,57,0,59,12,1,16,0,19,12,1,198,0,0,0,338,25,0,0,0,2,0,0,0,0,0,3,0,1,2,3,60,5,1,81,348,35,19,19,14,14,5,3,1,0,0,0,0,0,1,0,10.0,7.0,12.0,11.0,9.0,5.0,10.0,5.0,12.0,13.0,13.0,8.0,13.0,5.0,15.0,8.0,10.0,7.0,10.0,12.0,12.0,7.0,11.0,7.0,11.0,6.0,10.0,2.0,1.0,6.0,4.0,4.0,2.0,11.0,5.0,7.0,5.0,7.0,12.0,10.0,10.0,5.0,5.0,4.0,6.0,2.0,4.0,5.0,6.0,4.0,2.0,5.0,5.0,2.0,2.0,4.0,4.0,4.0,2.0,1.0,4.0,3.0,2.0,2.0,1.0,4.0,3.0,3.0,0.0,3.0,2.0,1.0,2.0,3.0,0.0,0.0,1.0,0.0,0.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,148,281,30,0,49,45,54,47,48,25,26,41,30,21,16,15,12,13,8,3,5,0,0,1,0,0,449,0,1,9,0,449,0,1,9,0,142,1,2,40,8,0,118,148,0,310,148,1,0,6,1,0,0,0,0,21,113,0,3,315,0,8,76,16,4,69,2,21,263,0,6,13,1,1,0,438,0,2.9,0.0,4.516483516483516,0.0,5.137254901960785,2,23,7,2,26,0,9,60,0,28,9,17,20,29,15,5,2,2,1,0,0,0,0,1,0,110,19,7,122,21,108,7,122,7,122,2,127,25,104,0,129,62,67,32,97,13,19,1,128,12,117,4,125,29,100,45,84,4,125,40,71,18,0,0,110,19,0,1,1,0,0,0,0,2,21,0,0,104,0,2.0155038759689923,1.5426356589147288,0.0,1.0,1.0,48.24806201550388 +PA120305,80605,Panamá,Chimán,Unión Santeña,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,166,32,196,25,8,1,3,17,3,0,83,8,103,0,15,40,0,4,0,3,236,5,5,3,1,219,25,0,0,0,9,253,0,105,9,0,17,28,0,0,1,228,24,0,0,55,197,0,0,0,1,0,225,0,2,0,4,22,0,19,134,0,59,41,0,0,207,10,3,2,1,0,25,0,1,4,0,0,412,5.059907834101383,19.566820276497698,6.0691244239631335,23.797235023041477,1.0039525691699605,2.869565217391304,1.7233201581027668,254,168,333,36,40,1,4,1,1,5,2,1,3,0,16,10,3,1,6,3,2,426,348,0,20,754,0,147,627,0,671,103,0,213,561,0,213,0,500,61,0,62,7,16,1,36,48,56,36,40,184,3,1,0,35,38,76,22,26,67,0,0,7,0,2,5,2,1,1,0,1,0,0,0,1,0,323,12,321,0,1,7,4,4,114,173,18,12,24,35,13,1,4,1,183,73,0,493,356,18,70,1,218,18,0,9,0,34,47,5,205,6,0,0,569,75,0,0,2,8,1,0,1,0,0,3,7,4,5,9,158,39,1,109,564,81,54,53,30,29,16,3,7,4,0,2,0,0,0,6,10.0,26.0,18.0,21.0,25.0,20.0,14.0,20.0,24.0,15.0,16.0,13.0,16.0,15.0,15.0,19.0,11.0,6.0,22.0,14.0,13.0,13.0,16.0,11.0,17.0,8.0,9.0,13.0,14.0,18.0,11.0,16.0,13.0,11.0,7.0,7.0,11.0,9.0,11.0,14.0,12.0,14.0,12.0,14.0,11.0,7.0,6.0,7.0,8.0,11.0,9.0,5.0,4.0,12.0,7.0,6.0,9.0,3.0,7.0,7.0,10.0,4.0,6.0,4.0,3.0,4.0,6.0,3.0,7.0,5.0,1.0,5.0,10.0,2.0,3.0,3.0,5.0,1.0,2.0,2.0,2.0,1.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,268,512,69,0,100,93,75,72,70,62,58,52,63,39,37,32,27,25,21,13,9,1,0,0,0,0,841,1,0,7,0,841,1,0,7,0,311,0,21,55,13,0,181,268,0,487,362,0,0,4,1,1,0,0,0,17,249,0,10,567,0,4,30,62,5,3,0,332,413,0,13,68,3,1,0,764,0,3.357933579335793,0.0,4.221674876847291,0.0,5.458186101295642,3,12,17,2,0,0,114,106,0,30,22,33,45,41,32,21,6,13,6,1,2,0,0,0,2,237,17,74,180,101,153,25,229,26,228,1,253,37,217,0,254,150,104,100,154,29,71,3,251,14,240,10,244,141,113,150,104,3,251,64,150,38,2,0,218,36,0,0,0,1,0,0,0,3,50,0,4,196,0,1.940944881889764,1.4015748031496065,0.0,1.1111111111111112,1.1111111111111112,49.267716535433074 +PA120415,80801,Panamá,Panamá,San Felipe,33,0,722,138,0,0,0,0,0,0,0,107,47,0,0,392,0,0,0,290,102,0,0,0,0,0,391,0,0,0,0,0,0,0,1,392,0,0,0,0,0,0,318,0,64,0,0,10,392,70,137,37,80,126,48,3,13,176,74,126,3,0,302,90,0,0,0,0,0,298,19,16,45,14,0,0,267,25,0,0,100,0,392,0,0,0,0,0,0,0,0,0,0,0,1047,0,6.926020408163265,23.540816326530614,6.926020408163265,23.553571428571427,1.0076530612244898,2.5816326530612246,1.3877551020408163,524,193,336,18,42,17,21,8,2,3,4,8,75,7,18,12,5,6,8,7,14,1071,112,10,639,544,10,843,340,10,1128,57,8,286,903,4,182,104,876,23,4,27,21,25,1,15,17,24,18,28,72,1,1,8,27,51,103,28,59,249,2,17,5,13,18,28,26,109,34,8,129,0,1,1,18,9,625,53,389,8,6,26,12,76,148,128,18,19,477,49,42,15,71,7,0,7,1,624,634,209,266,13,156,18,2,1,4,0,8,0,377,82,8,8,398,281,9,20,8,195,27,111,17,9,5,151,115,73,37,128,5,54,19,91,482,36,16,33,54,78,106,60,69,61,38,20,31,22,70,82,21.0,17.0,13.0,14.0,24.0,20.0,19.0,16.0,15.0,24.0,13.0,16.0,15.0,16.0,17.0,18.0,14.0,9.0,12.0,14.0,9.0,10.0,21.0,16.0,13.0,18.0,16.0,16.0,20.0,20.0,23.0,19.0,21.0,20.0,23.0,26.0,14.0,17.0,21.0,19.0,22.0,27.0,21.0,18.0,12.0,26.0,14.0,17.0,16.0,12.0,15.0,16.0,18.0,18.0,19.0,11.0,14.0,18.0,18.0,16.0,18.0,14.0,17.0,17.0,10.0,11.0,5.0,10.0,6.0,12.0,8.0,9.0,9.0,10.0,8.0,7.0,4.0,9.0,8.0,4.0,2.0,6.0,3.0,3.0,3.0,0.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,260,853,145,0,89,94,77,67,69,90,106,97,100,85,86,77,76,44,44,32,17,4,3,1,0,0,1008,162,72,6,10,1015,172,55,6,10,223,15,14,267,29,28,416,260,6,403,636,207,12,29,6,5,0,0,0,2,5,0,17,1183,11,35,51,82,16,6,10,169,878,11,343,189,77,8,11,620,10,1.5342205323193916,0.0152091254752851,2.4842767295597485,0.0251572327044025,10.922893481717011,16,22,29,6,2,5,76,286,0,34,12,5,11,20,27,45,29,41,30,21,12,20,14,39,35,421,21,409,33,344,98,43,399,392,50,211,231,232,210,71,371,425,17,390,52,246,144,213,229,281,161,133,309,1,441,3,439,2,440,214,222,71,18,24,247,195,0,10,4,3,0,0,0,1,0,0,8,416,0,1.1366120218579234,1.1548269581056467,1.5,1.0,1.0,50.1447963800905 +PA120406,80802,Panamá,Panamá,El Chorrillo,47,10,6205,863,13,0,0,1,0,0,0,2,18,0,0,6034,13,9,9,5380,676,1,0,0,5,3,6062,0,0,1,0,0,0,0,2,6064,0,0,0,0,0,1,5824,0,107,0,0,134,6065,10,490,21,81,405,42,11,933,1224,2863,865,32,148,5814,246,0,0,0,4,1,1857,15,825,3235,130,0,3,2921,2865,4,0,259,16,6060,0,0,0,0,0,0,0,0,0,3,2,7159,0,6.962046204620462,23.412211221122117,6.962046204620462,23.426072607260725,1.0037922506183017,2.307666941467436,1.291838417147568,6107,2063,5560,301,1103,177,317,216,24,115,35,89,228,0,326,98,45,117,92,55,143,13047,2298,0,3904,11441,0,8297,7048,0,14592,753,0,4349,10996,0,3783,566,10598,398,0,425,193,249,37,280,317,410,377,351,1049,10,24,84,653,986,2275,764,1213,3873,30,51,224,267,285,256,152,430,16,10,46,1,0,0,4,3,5613,715,7369,0,13,380,144,1099,2577,3273,249,171,4416,238,446,122,797,53,4,52,3,7899,8436,1824,2560,106,1576,41,12,6,6,8,181,69,5889,96,1,1,7917,4784,93,47,92,704,13,42,2,3,45,248,358,566,710,1640,69,920,403,1369,8363,939,479,656,931,1013,2193,891,529,140,66,18,10,7,4,96,214.0,247.0,270.0,259.0,293.0,260.0,248.0,243.0,310.0,294.0,300.0,280.0,243.0,278.0,258.0,250.0,268.0,233.0,239.0,244.0,242.0,286.0,311.0,257.0,237.0,282.0,247.0,239.0,225.0,195.0,239.0,200.0,217.0,238.0,174.0,183.0,193.0,205.0,213.0,194.0,181.0,184.0,224.0,221.0,204.0,196.0,205.0,211.0,208.0,165.0,218.0,177.0,217.0,193.0,172.0,185.0,191.0,177.0,222.0,173.0,166.0,171.0,188.0,157.0,140.0,154.0,146.0,109.0,133.0,142.0,103.0,83.0,128.0,91.0,98.0,71.0,69.0,59.0,53.0,39.0,51.0,27.0,36.0,38.0,24.0,13.0,15.0,12.0,13.0,23.0,10.0,13.0,9.0,1.0,1.0,4.0,4.0,4.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3997,10557,1781,0,1283,1355,1359,1234,1333,1188,1068,988,1014,985,977,948,822,684,503,291,176,76,34,14,3,0,15439,564,238,94,0,15449,585,207,94,0,3845,204,722,1453,459,107,5548,3997,0,9769,6096,470,0,311,77,5,7,2,0,74,11,0,278,15570,0,1594,1336,1352,446,68,153,3449,7937,0,3381,2887,1108,111,11,8837,0,1.981920112123336,0.0001401541695865,2.787247214197276,0.0002063557573256,8.636792164064891,655,543,588,230,38,83,1313,2657,0,950,272,189,303,513,541,1012,646,861,440,183,82,43,15,7,31,5974,133,5722,385,4900,1207,414,5693,5341,766,2318,3789,3601,2506,972,5135,5524,583,5723,384,4268,1455,1317,4790,3134,2973,947,5160,59,6048,50,6057,75,6032,1825,2774,1364,144,15,2930,3177,0,65,37,3,3,2,0,27,2,0,111,5857,0,1.290264619405423,1.3779810519438092,1.16,1.0466666666666666,1.0466666666666666,50.15523170132634 +PA120418,80803,Panamá,Panamá,Santa Ana,80,17,6212,1022,4,0,0,3,0,0,0,5,27,0,0,5109,13,3,11,4357,768,0,0,0,10,1,5134,0,0,0,0,0,1,0,1,5129,6,0,1,0,0,0,4837,0,114,0,0,185,5136,193,296,76,165,1140,316,9,418,2454,1619,443,45,157,4768,364,0,2,0,2,0,2351,1,16,2501,267,0,0,4103,668,1,0,363,1,5133,0,1,0,0,0,0,0,0,2,0,0,7370,0,6.968835216205688,23.74814959096221,6.974873393065836,23.788079470198674,1.013239875389408,2.4721573208722742,1.416861370716511,5231,1894,3988,207,810,157,291,228,32,151,77,115,311,3,312,147,49,47,85,69,71,11353,1447,11,3805,8995,11,8838,3962,11,12251,549,11,3167,9636,8,2597,570,9238,395,3,407,114,161,19,231,222,325,243,312,885,1,16,93,432,649,1338,659,1192,3288,24,47,227,248,310,290,275,647,29,10,101,1,0,1,3,11,5938,563,5166,11,31,264,134,1025,1885,1925,145,186,4065,181,542,216,1198,84,3,28,26,6725,6770,1247,2724,184,2100,52,1,6,29,12,123,29,3899,274,3,3,5998,4332,97,37,92,1004,18,86,3,11,40,289,494,563,563,2084,48,793,340,1287,5551,616,250,565,900,1170,2052,944,731,256,99,34,25,15,13,274,163.0,161.0,184.0,176.0,192.0,190.0,181.0,184.0,181.0,205.0,212.0,186.0,177.0,183.0,179.0,165.0,187.0,168.0,189.0,190.0,176.0,237.0,211.0,210.0,209.0,217.0,242.0,203.0,189.0,223.0,197.0,190.0,219.0,207.0,177.0,186.0,201.0,197.0,209.0,184.0,190.0,182.0,224.0,220.0,197.0,180.0,187.0,175.0,184.0,161.0,205.0,173.0,152.0,165.0,162.0,174.0,152.0,166.0,162.0,148.0,149.0,124.0,142.0,133.0,106.0,111.0,110.0,112.0,116.0,81.0,87.0,72.0,81.0,64.0,85.0,77.0,61.0,56.0,47.0,50.0,49.0,26.0,35.0,32.0,36.0,21.0,20.0,25.0,13.0,20.0,10.0,7.0,10.0,7.0,5.0,4.0,4.0,4.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2754,9196,1544,1,876,941,937,899,1043,1074,990,977,1013,887,857,802,654,530,389,291,178,99,39,15,3,1,10488,2387,588,23,9,10502,2506,455,23,9,3085,186,1477,1852,433,194,3510,2754,4,4309,7504,1671,11,1081,71,8,2,5,0,67,11,1,140,12098,11,730,474,907,218,67,91,4016,6981,11,2781,1967,1073,57,13,7593,11,1.757312925170068,0.0005102040816326,2.554060913705584,0.0007614213197969,9.318340125972584,331,232,433,114,25,59,1651,2384,2,358,157,96,214,370,544,886,554,910,507,271,115,103,30,24,65,5028,203,4887,344,4273,958,446,4785,4709,522,1760,3471,2777,2454,1093,4138,4823,408,4689,542,2950,1739,1377,3854,3293,1938,923,4308,33,5198,28,5203,31,5200,1754,2109,1171,197,12,2888,2343,0,214,30,4,1,1,0,23,0,1,50,4905,2,1.2826625977493802,1.291245470150677,1.193181818181818,1.0264900662251657,1.0264900662251657,50.24985662397247 +PA120408,80804,Panamá,Panamá,La Exposición o Calidonia,125,2,9203,525,4,0,0,0,0,0,4,6,41,31,0,6923,9,0,2,6466,466,0,0,0,2,0,6933,0,0,0,0,1,0,0,0,6251,680,1,1,1,0,0,6022,0,779,0,0,133,6934,57,681,48,1118,944,72,1,839,3565,1857,636,11,26,6592,341,0,1,0,0,0,1588,14,68,5167,97,0,0,5794,842,5,0,291,2,6885,14,0,0,0,0,0,0,0,35,0,0,9941,0,6.975793593274387,23.778373677344543,6.976228438904189,23.78272213364256,1.0226420536486875,2.7186328237669457,1.6052783386212863,7137,2537,4360,207,573,287,423,311,45,116,59,122,1097,26,370,114,50,49,75,93,77,14880,1499,180,9037,7341,181,12828,3551,180,15867,514,178,3892,12667,0,2508,1384,12125,362,180,398,151,151,30,239,223,322,252,311,911,1,7,70,392,565,1241,490,995,4262,18,112,205,277,418,828,1041,1417,148,29,792,1,7,18,54,183,8570,701,6013,113,28,288,114,1334,2225,1676,221,557,6443,539,876,235,932,77,9,23,25,8677,8623,1863,4483,182,2369,197,1,19,45,3,95,20,4641,852,18,18,5399,5230,73,155,228,3208,122,743,56,183,48,1064,1695,1143,761,2136,32,853,350,1189,6310,421,291,444,877,1228,2092,1306,1335,644,415,210,349,147,379,852,163.0,165.0,199.0,214.0,208.0,189.0,173.0,184.0,199.0,209.0,218.0,194.0,201.0,203.0,191.0,207.0,189.0,176.0,199.0,232.0,221.0,245.0,254.0,276.0,264.0,295.0,286.0,296.0,284.0,301.0,300.0,306.0,324.0,320.0,332.0,327.0,316.0,319.0,322.0,286.0,308.0,279.0,326.0,267.0,231.0,283.0,234.0,238.0,244.0,200.0,246.0,207.0,239.0,223.0,183.0,208.0,208.0,183.0,192.0,196.0,190.0,177.0,168.0,153.0,151.0,127.0,137.0,124.0,125.0,104.0,111.0,109.0,90.0,90.0,95.0,89.0,61.0,66.0,81.0,50.0,58.0,49.0,51.0,22.0,35.0,23.0,30.0,16.0,20.0,17.0,22.0,12.0,16.0,12.0,4.0,11.0,3.0,4.0,5.0,4.0,1.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,2910,12411,1880,99,949,954,1007,1003,1260,1462,1582,1570,1411,1199,1098,987,839,617,495,347,215,106,66,27,7,99,12734,3555,897,31,83,12754,3757,675,31,83,3596,234,967,2802,474,337,5816,2909,165,3721,11333,2153,93,492,60,17,3,3,1,83,6,0,448,16012,175,1480,820,1008,353,79,133,2969,10282,176,4480,2258,1306,64,115,8936,141,1.3519553072625698,0.0023385734701831,2.275963054742059,0.0040549673349853,10.85485549132948,654,381,427,192,45,78,1251,4109,0,451,121,96,186,368,469,732,633,1110,760,491,272,388,199,510,305,6958,179,6770,367,6043,1094,607,6530,6091,1046,3775,3362,3681,3456,2092,5045,6798,339,6563,574,4439,2124,3725,3412,5519,1618,2653,4484,99,7038,68,7069,50,7087,2539,2887,1289,422,40,3817,3320,0,116,36,8,2,1,1,24,5,0,208,6736,0,1.209000975337885,1.201476940225721,1.2989690721649485,1.0656565656565655,1.0656565656565655,47.9862687403671 +PA120405,80805,Panamá,Panamá,Curundú,1349,155,4109,31,0,0,0,0,0,0,0,6,30,0,0,4733,30,17,117,4523,257,0,5,0,23,89,4889,0,0,0,0,3,1,0,4,4896,1,0,0,0,0,0,4738,1,32,0,0,126,4897,4,320,24,126,210,63,0,1092,572,2821,323,12,77,4603,190,0,65,0,38,1,2889,1,2,1923,74,0,8,3351,1316,4,3,157,66,4891,0,0,0,0,0,1,0,0,2,1,2,5680,0,6.9838478838683296,23.2046616233899,6.986301369863014,23.25598037211204,1.0191954257708802,2.678578721666326,1.649377169695732,5027,1946,5842,270,1149,147,296,294,26,184,42,71,164,0,306,88,38,58,105,59,48,12193,2170,0,2763,11600,0,8670,5693,0,13413,950,0,4514,9849,0,3934,580,9302,547,0,565,160,301,53,378,390,492,417,491,1306,8,8,73,819,1120,1997,710,1045,2772,21,15,172,228,206,203,95,258,13,7,38,0,0,0,2,0,5294,756,6489,0,23,407,154,624,2722,2797,231,115,3910,262,607,134,739,135,1,13,20,7580,7878,1497,2394,120,1753,19,0,12,26,4,146,50,5716,426,0,0,8418,3470,81,21,50,456,10,31,2,0,33,172,286,454,497,1693,30,856,315,1714,8422,801,329,478,788,905,1937,805,400,114,28,8,7,2,8,426,241.0,261.0,288.0,305.0,286.0,326.0,284.0,324.0,300.0,304.0,315.0,328.0,283.0,277.0,294.0,253.0,272.0,316.0,258.0,261.0,285.0,315.0,299.0,274.0,275.0,299.0,259.0,223.0,215.0,195.0,215.0,182.0,215.0,221.0,202.0,181.0,220.0,218.0,200.0,190.0,218.0,223.0,200.0,172.0,187.0,171.0,194.0,157.0,183.0,159.0,169.0,108.0,189.0,143.0,163.0,141.0,160.0,137.0,137.0,118.0,148.0,103.0,117.0,104.0,101.0,94.0,95.0,85.0,70.0,69.0,69.0,59.0,60.0,52.0,39.0,58.0,37.0,37.0,23.0,38.0,29.0,23.0,27.0,13.0,18.0,21.0,10.0,19.0,12.0,10.0,7.0,4.0,4.0,5.0,1.0,2.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4416,9945,1097,0,1381,1538,1497,1360,1448,1191,1035,1009,1000,864,772,693,573,413,279,193,110,72,21,6,3,0,14616,608,169,65,0,14622,623,148,65,0,3818,139,508,1162,328,55,5034,4414,0,9453,5497,508,0,563,181,19,7,6,1,1006,192,0,251,13232,0,1026,1162,1847,762,74,296,3829,6462,0,3005,2845,633,71,9,8895,0,2.097953444774254,0.0,2.9604926795259123,0.0,7.736253072842541,395,435,651,342,26,134,1127,1917,0,635,230,129,250,406,464,861,565,694,348,154,65,54,8,13,115,4884,143,4621,406,4224,803,368,4659,4654,373,1821,3206,2707,2320,424,4603,4584,443,4645,382,2485,2160,1005,4022,2682,2345,675,4352,36,4991,25,5002,49,4978,1240,2351,1318,118,0,2441,2586,0,118,45,6,2,1,0,233,48,0,97,4477,0,1.5078575691267158,1.5671374577282673,1.1153846153846154,1.0364583333333333,1.0364583333333333,47.2699423115178 +PA120403,80806,Panamá,Panamá,Betania,8331,10,13154,158,30,0,0,10,0,0,9,6,19,0,0,15395,73,7,3,15374,101,0,0,0,2,1,15469,0,1,5,0,1,0,0,2,14936,515,17,1,0,0,9,14743,1,664,0,0,70,15478,2092,798,153,1179,1704,129,120,3363,4500,7192,278,124,21,15460,15,1,0,0,1,1,7194,505,468,7157,146,0,8,13994,1440,8,3,33,0,15112,0,0,0,0,0,0,0,0,365,0,1,21727,0,6.969428268925357,23.44706193753309,6.9753176283748015,23.509197988353627,1.0303010724899857,4.070680966533144,2.544967050006461,15972,7306,11140,467,1441,1093,957,586,290,408,198,314,1444,583,1021,231,162,193,257,91,229,38531,2427,9,30636,10322,9,37512,3446,9,39941,1014,12,9962,31005,0,3766,6196,30480,510,15,643,369,459,49,383,436,528,443,538,1719,3,13,244,548,695,1488,665,1166,7826,42,508,760,1159,1904,3489,5396,3557,881,350,4171,14,52,48,378,43,21411,1384,15882,7,50,406,174,6654,5475,2734,339,680,17107,1702,1767,849,1081,33,22,13,70,19057,23142,4250,11653,913,4723,905,1,98,101,6,116,30,10418,1795,15,15,7603,12136,267,675,706,12047,831,3975,401,43,167,3869,6493,3654,1434,3336,42,1254,661,1885,11941,579,510,716,1704,3269,3771,3112,4547,2978,2174,1259,1645,867,1332,1795,287.0,293.0,304.0,348.0,364.0,380.0,363.0,374.0,402.0,400.0,403.0,398.0,433.0,422.0,426.0,424.0,416.0,421.0,474.0,438.0,510.0,539.0,613.0,575.0,592.0,641.0,669.0,583.0,639.0,653.0,674.0,685.0,657.0,730.0,646.0,622.0,623.0,678.0,623.0,625.0,627.0,576.0,629.0,577.0,546.0,600.0,567.0,620.0,575.0,577.0,580.0,567.0,588.0,524.0,589.0,518.0,505.0,537.0,546.0,509.0,511.0,445.0,472.0,408.0,427.0,450.0,403.0,398.0,367.0,383.0,358.0,369.0,406.0,371.0,357.0,372.0,325.0,336.0,315.0,338.0,295.0,237.0,240.0,231.0,222.0,204.0,203.0,160.0,150.0,113.0,124.0,97.0,79.0,70.0,60.0,43.0,41.0,38.0,28.0,22.0,10.0,8.0,5.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5597,28370,8232,0,1596,1919,2082,2173,2829,3185,3392,3171,2955,2939,2848,2615,2263,2001,1861,1686,1225,830,430,172,27,0,31833,6304,4021,40,1,31959,7367,2832,40,1,4825,683,987,12443,2318,1563,13765,5596,19,6275,32279,3623,22,131,280,29,2,5,0,26,4,2,963,40747,10,2239,1225,906,251,205,248,3934,33178,13,12774,6311,7330,180,256,15338,10,1.3447130898377215,0.0007014918393116,2.1626861042183623,0.0011631513647642,12.973222114268111,927,505,409,145,99,127,1676,12083,1,439,79,79,152,368,711,948,905,2066,1785,1454,1091,1708,1150,2469,543,15761,211,15691,281,14967,1005,2956,13016,14508,1464,11418,4554,8785,7187,9100,6872,15577,395,15174,798,13154,2020,12304,3668,14870,1102,11462,4510,594,15378,359,15613,137,15835,3860,7153,3470,1489,49,8917,7055,0,41,99,11,2,1,0,12,2,1,379,15423,1,1.1895012795705635,1.444479121153486,1.278592375366569,1.0703883495145632,1.0703883495145632,53.99330077635863 +PA120402,80807,Panamá,Panamá,Bella Vista,585,0,20201,32,15,0,0,0,0,0,10,10,5,0,0,13715,16,1,0,13703,29,0,0,0,0,0,13730,0,0,1,0,0,0,0,1,12028,1667,2,0,0,0,35,12420,0,1277,0,0,35,13732,817,1041,254,2203,2652,66,53,2912,6533,4163,107,16,1,13729,3,0,0,0,0,0,1304,55,134,12237,0,0,2,13094,581,10,0,45,2,13094,0,0,0,0,0,0,0,0,638,0,0,20858,0,6.990377272032992,23.90659844203452,6.988162517183443,23.90675118374828,1.0497378386251093,3.823041071948733,2.31160792309933,14427,6189,7607,241,344,592,584,235,155,126,119,238,2237,616,716,115,93,101,150,166,132,31013,1387,219,27737,4663,219,30766,1634,219,31771,621,227,7075,25528,16,1576,5499,25042,272,214,369,326,336,33,304,339,294,326,333,1069,8,7,62,326,404,663,388,748,5730,37,593,315,579,1113,3767,4373,3382,786,282,4415,12,46,44,508,302,19215,884,10770,26,67,306,92,3757,3747,2149,317,800,15054,1853,1634,710,674,20,29,10,35,15601,18109,2246,11975,815,4086,757,7,30,103,2,14,6,8472,3775,96,96,4327,7690,68,658,546,11724,754,4293,533,302,191,4958,6214,3138,914,2548,34,538,262,1302,9023,190,212,305,672,1645,2304,2307,3420,2239,1882,1105,1719,907,2005,3775,253.0,252.0,294.0,292.0,315.0,257.0,288.0,309.0,287.0,268.0,271.0,295.0,324.0,279.0,280.0,283.0,281.0,290.0,283.0,289.0,329.0,334.0,391.0,407.0,466.0,496.0,600.0,570.0,668.0,662.0,701.0,686.0,733.0,693.0,686.0,703.0,704.0,633.0,647.0,632.0,600.0,553.0,537.0,581.0,539.0,504.0,533.0,476.0,480.0,422.0,489.0,438.0,455.0,428.0,448.0,446.0,393.0,383.0,377.0,377.0,395.0,334.0,363.0,315.0,312.0,285.0,312.0,316.0,283.0,268.0,243.0,244.0,255.0,272.0,218.0,210.0,200.0,189.0,193.0,183.0,161.0,151.0,123.0,123.0,105.0,97.0,103.0,79.0,70.0,74.0,55.0,56.0,47.0,41.0,27.0,30.0,21.0,14.0,16.0,5.0,7.0,8.0,2.0,6.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,4264,24345,5096,5,1406,1409,1449,1426,1927,2996,3499,3319,2810,2415,2258,1976,1719,1464,1232,975,663,423,226,86,27,5,19291,8491,5803,116,9,19416,10508,3661,116,9,3787,305,354,10609,1352,1276,11744,4264,19,3416,23747,6384,163,63,111,13,2,1,0,21,5,2,444,32772,276,1160,338,487,140,61,93,2190,28971,270,10519,4238,3658,126,661,14443,65,1.1213379053119172,0.0057751308428081,2.041898818809895,0.0106975707599732,13.624265796499555,568,178,265,80,35,47,1150,12098,6,358,31,30,77,187,381,606,752,1469,1414,1246,931,1457,1020,2789,1667,14274,153,14285,142,13666,761,1844,12583,11777,2650,12272,2155,7202,7225,7340,7087,14197,230,13721,706,12241,1480,12333,2094,13833,594,10280,4147,315,14112,252,14175,164,14263,4912,6272,1619,1624,28,8022,6405,2,28,50,6,1,0,0,8,3,2,209,14114,6,1.07928052576963,1.2527845036319614,1.3037542662116042,1.0508982035928145,1.0508982035928145,48.98835355285962 +PA120413,80808,Panamá,Panamá,Pueblo Nuevo,2939,2,8734,341,9,0,0,1,0,0,0,1,25,0,0,9151,35,0,6,8848,338,0,0,0,6,0,9189,0,1,2,0,0,0,0,0,8020,1172,0,0,0,0,0,8852,1,286,0,0,53,9192,183,399,285,603,1296,50,8,3236,2962,2652,141,110,91,9091,96,0,3,0,2,0,4000,118,83,4975,4,0,12,8323,782,1,1,85,0,9064,0,0,0,0,0,0,0,0,128,0,0,12052,0,6.978596646072374,23.715688437775817,6.980582524271845,23.748676081200355,1.02763272410792,3.6496953872932982,2.302980852915579,9472,4330,6391,254,548,532,488,280,167,180,125,217,944,239,364,140,56,93,134,61,93,22174,1054,24,17915,5313,24,21787,1441,24,22605,615,32,5970,17261,21,2164,3806,17040,208,13,284,274,258,18,273,338,342,340,330,717,3,7,117,377,457,820,412,740,4266,26,359,308,504,962,1872,2724,2632,457,218,2557,3,21,36,160,40,13612,770,7214,24,43,233,81,2318,3038,1434,142,282,11175,873,1106,444,652,17,12,11,17,11187,12980,2196,8488,469,2634,459,6,36,19,3,75,16,5940,1574,10,10,4161,6317,126,342,422,7114,469,2461,168,40,91,2645,4048,2413,933,1848,24,831,423,1126,7055,357,330,345,726,1333,2072,1839,2530,1685,1288,796,1000,502,735,1574,217.0,214.0,214.0,270.0,267.0,271.0,255.0,257.0,296.0,286.0,316.0,259.0,286.0,265.0,274.0,239.0,228.0,236.0,238.0,239.0,260.0,272.0,277.0,292.0,300.0,356.0,394.0,414.0,409.0,475.0,464.0,479.0,541.0,512.0,494.0,496.0,517.0,494.0,481.0,461.0,518.0,451.0,460.0,462.0,409.0,387.0,373.0,340.0,334.0,319.0,330.0,314.0,288.0,249.0,260.0,267.0,249.0,241.0,216.0,214.0,180.0,196.0,209.0,187.0,190.0,186.0,165.0,190.0,180.0,169.0,169.0,152.0,146.0,136.0,148.0,129.0,131.0,127.0,110.0,111.0,98.0,80.0,86.0,63.0,64.0,46.0,53.0,46.0,40.0,31.0,22.0,21.0,21.0,9.0,17.0,14.0,12.0,4.0,12.0,9.0,4.0,4.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3947,17211,3009,0,1182,1365,1400,1180,1401,2048,2490,2449,2300,1753,1441,1187,962,890,751,608,391,216,90,51,12,0,17467,4361,2288,30,21,17562,5144,1410,30,21,3580,305,556,6479,769,619,7897,3947,15,3640,18544,1944,39,93,158,24,1,2,0,26,4,1,377,23431,50,1678,676,488,230,94,200,2357,18394,50,8322,3821,2550,72,142,9232,28,1.2148350709280464,0.0008545547769612,2.0546747666320937,0.0014817009927396,12.85852608929532,712,303,230,121,52,107,1083,6855,9,178,63,48,93,204,366,510,530,1108,1028,916,748,1016,662,1356,620,9353,119,9320,152,8835,637,1237,8235,8565,907,6939,2533,4784,4688,4598,4874,9257,215,9001,471,7779,1222,7206,2266,8842,630,6669,2803,252,9220,177,9295,101,9371,2468,4371,1735,898,10,5442,4030,0,32,59,7,0,0,0,9,2,1,153,9200,9,1.179814385150812,1.368909512761021,1.2007042253521127,1.04014598540146,1.04014598540146,48.104201858108105 +PA120416,80809,Panamá,Panamá,San Francisco,3154,0,28293,248,14,6,0,2,0,0,0,21,13,0,0,22664,154,1,4,22634,185,0,0,0,2,2,22814,0,1,5,0,0,1,0,2,17538,5271,5,1,0,0,8,21147,0,1608,0,0,68,22823,1371,1407,728,1581,3643,113,29,6337,8724,7481,196,38,47,22788,30,0,2,0,3,0,3134,190,314,19080,104,0,1,21584,1142,19,2,74,2,21940,0,253,0,0,0,0,0,0,628,2,0,31751,0,6.992430045509845,23.942008741495066,6.991889334474834,23.95070517730816,1.0308898917758402,4.089471147526618,2.482013758051089,23562,12043,16875,483,784,1097,966,496,313,249,178,386,1922,1936,742,162,121,203,213,124,167,56160,2488,4,49157,9491,4,55935,2713,4,57095,1555,2,14028,44622,2,2802,11226,44203,417,2,650,821,892,49,732,675,835,777,812,2021,5,14,123,734,919,1750,813,1575,10251,36,750,733,1156,2179,6543,6686,6395,1462,604,6946,24,54,59,568,9,34090,1496,18812,2,112,611,164,5236,7639,4688,310,939,25914,3598,2186,2140,1359,33,28,78,73,28243,33047,3033,21286,2347,7010,1420,11,92,210,2,95,19,17716,5257,1,1,9306,14148,140,923,1187,20172,1519,6408,588,9,552,9127,9215,5369,1506,4669,115,1121,620,3292,18936,503,422,643,1627,3101,3958,3337,5182,3564,3132,2049,3072,1663,4844,5257,642.0,646.0,641.0,709.0,691.0,696.0,738.0,711.0,675.0,741.0,671.0,710.0,691.0,678.0,620.0,680.0,603.0,585.0,538.0,629.0,582.0,616.0,679.0,767.0,752.0,825.0,879.0,955.0,988.0,1076.0,1166.0,1182.0,1314.0,1303.0,1237.0,1224.0,1241.0,1189.0,1151.0,1122.0,1138.0,1085.0,1100.0,1040.0,976.0,1006.0,972.0,889.0,840.0,886.0,866.0,840.0,805.0,758.0,747.0,699.0,744.0,718.0,633.0,675.0,652.0,624.0,581.0,544.0,521.0,487.0,503.0,454.0,485.0,452.0,422.0,337.0,339.0,351.0,342.0,299.0,273.0,274.0,247.0,217.0,219.0,192.0,176.0,160.0,171.0,137.0,130.0,99.0,94.0,93.0,88.0,62.0,67.0,60.0,42.0,32.0,26.0,32.0,18.0,9.0,7.0,6.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10260,43622,7408,0,3329,3561,3370,3035,3396,4723,6202,5927,5339,4593,4016,3469,2922,2381,1791,1310,918,553,319,117,19,0,35284,15496,10348,160,2,35541,18891,6696,160,2,6744,549,466,20138,1970,1964,19202,10256,1,10171,39963,11148,8,98,170,16,0,2,3,23,5,5,973,59991,4,1835,634,825,258,111,178,2929,54514,6,18437,7850,5363,128,820,28686,6,1.2547504134462857,3.375071720274056e-05,2.1584047267355984,5.908419497784343e-05,13.021912220590634,822,295,363,132,55,99,1327,20468,1,591,89,57,154,304,613,885,951,2166,2004,1881,1483,2492,1824,5954,2080,23399,163,23350,212,22749,813,3109,20453,19025,4537,20578,2984,11837,11725,12372,11190,23187,375,22711,851,20217,2494,19979,3583,22655,907,18370,5192,527,23035,426,23136,196,23366,6111,11448,3003,3000,22,14060,9502,0,29,67,8,0,1,2,7,3,3,402,23039,1,1.1975491858887382,1.401246607869742,1.3138195777351247,1.038062283737024,1.038062283737024,48.94151600033953 +PA120411,80810,Panamá,Panamá,Parque Lefevre,6820,3,12712,464,8,0,0,0,1,2,3,8,16,0,0,15575,52,5,0,15201,431,0,0,0,0,0,15622,0,3,4,0,0,0,0,3,12506,3118,0,3,1,1,3,14708,3,803,0,1,117,15632,428,769,187,800,1975,158,50,3118,6246,5867,284,66,51,15571,51,0,5,0,5,0,8970,75,73,6512,0,0,2,14735,820,6,1,65,5,15205,0,0,0,0,0,0,0,0,426,1,0,20037,0,6.994015126603091,23.89161460046037,6.992436698454456,23.8993752055245,1.0241171954964177,3.815314738996929,2.320432446264073,16033,8002,11767,550,1567,811,840,517,270,396,198,293,1030,558,725,166,110,167,216,112,158,38209,2786,15,28111,12884,15,37699,3296,15,39833,1145,32,9406,31592,12,3684,5722,31136,433,23,578,507,500,77,547,563,658,611,659,1605,8,22,214,788,1014,1987,816,1826,7369,53,691,587,949,1560,2844,4239,4193,1018,240,3982,9,16,31,214,35,22180,1266,14625,14,90,414,133,4655,5181,3685,381,723,16862,1295,1699,1508,1753,19,19,19,120,19897,22935,2816,13153,1528,4864,679,6,65,183,11,190,27,12170,3335,8,8,9162,11221,262,702,623,11272,868,3723,217,35,343,4591,5336,3269,1358,3162,79,1698,850,2760,14030,671,396,704,1483,2955,4024,3044,3225,2162,1634,912,1457,846,1954,3335,373.0,473.0,470.0,506.0,460.0,473.0,495.0,519.0,503.0,475.0,530.0,487.0,504.0,449.0,445.0,475.0,439.0,377.0,396.0,420.0,409.0,450.0,457.0,490.0,455.0,573.0,570.0,599.0,670.0,652.0,737.0,772.0,808.0,872.0,867.0,831.0,865.0,829.0,811.0,751.0,833.0,772.0,716.0,683.0,658.0,662.0,661.0,628.0,600.0,535.0,588.0,531.0,549.0,519.0,525.0,473.0,498.0,525.0,468.0,469.0,453.0,436.0,451.0,454.0,378.0,403.0,373.0,387.0,379.0,331.0,343.0,292.0,310.0,262.0,289.0,250.0,249.0,257.0,220.0,211.0,162.0,145.0,151.0,121.0,132.0,105.0,85.0,96.0,76.0,72.0,80.0,46.0,44.0,36.0,30.0,14.0,27.0,9.0,12.0,10.0,8.0,6.0,4.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7162,29640,6030,0,2282,2465,2415,2107,2261,3064,4056,4087,3662,3086,2712,2433,2172,1873,1496,1187,711,434,236,72,21,0,27359,11761,3679,28,5,27445,13139,2215,28,5,6345,497,732,12145,1578,1201,13165,7162,7,8895,26033,7867,37,147,236,24,6,7,3,29,4,4,844,41511,17,2476,1044,989,358,142,296,4118,33392,17,11546,6295,5016,187,350,19421,17,1.3884073410488595,0.0003873904411408,2.1638418079096047,0.0006191471248355,12.291557713858795,1044,428,460,172,67,158,1750,11952,2,550,117,98,208,431,779,1108,1017,1919,1566,1184,830,1336,863,2724,1279,15851,182,15657,376,14628,1405,2209,13824,13946,2087,10821,5212,8558,7475,7251,8782,15558,475,15283,750,13120,2163,11019,5014,14916,1117,10433,5600,293,15740,213,15820,159,15874,3822,7941,3034,1236,14,9264,6769,0,42,94,10,4,5,2,8,2,3,356,15505,2,1.2399202343117093,1.42923911011404,1.332116788321168,1.063444108761329,1.063444108761329,50.573691760743465 +PA120414,80811,Panamá,Panamá,Río Abajo,3469,8,8665,551,4,0,27,0,0,0,2,15,23,0,0,10041,45,0,8,9549,537,1,2,0,3,2,10091,2,0,0,0,0,0,0,1,9489,602,2,0,1,0,0,9816,0,183,0,2,93,10094,82,312,518,1032,540,107,8,2227,3213,3989,576,72,17,9954,137,0,1,0,2,0,5294,7,50,4742,0,0,1,9519,519,2,3,51,0,10048,0,0,0,0,0,1,0,0,44,1,0,12764,0,6.993531050955414,23.867635350318476,6.994128184713376,23.881966560509557,1.02516346344363,3.1803051317614424,2.0381414701803053,10386,4383,7581,402,1479,517,599,402,133,273,141,204,1513,32,501,154,100,153,214,148,113,24292,2624,5,15619,11297,5,22542,4374,5,26036,880,5,6551,20370,0,3925,2626,19880,485,5,540,250,305,75,340,407,442,391,465,1191,12,17,253,652,892,1824,683,1530,6739,24,237,385,677,1121,1365,1773,2689,237,91,1239,3,8,9,50,5,13600,1452,9949,1,67,708,163,2684,3576,2388,291,1010,10815,699,1207,508,1548,13,7,8,26,12648,15397,2460,8234,556,3337,155,5,27,57,16,201,29,7147,393,5,5,7636,9274,275,333,522,5520,213,1171,53,5,185,1635,2770,2247,1490,2617,25,1477,843,1763,9866,821,541,745,1337,2319,3340,2424,2832,1481,868,388,396,147,147,393,256.0,272.0,296.0,300.0,306.0,310.0,314.0,331.0,347.0,311.0,356.0,345.0,359.0,321.0,352.0,357.0,303.0,298.0,327.0,328.0,308.0,340.0,355.0,373.0,396.0,402.0,449.0,448.0,476.0,477.0,517.0,528.0,510.0,559.0,514.0,533.0,514.0,513.0,523.0,491.0,516.0,450.0,466.0,483.0,406.0,446.0,417.0,420.0,373.0,349.0,412.0,382.0,345.0,348.0,320.0,307.0,312.0,260.0,289.0,293.0,289.0,247.0,245.0,222.0,236.0,206.0,217.0,202.0,200.0,210.0,187.0,180.0,190.0,204.0,157.0,174.0,160.0,154.0,152.0,133.0,101.0,99.0,88.0,83.0,70.0,54.0,50.0,52.0,45.0,48.0,30.0,21.0,30.0,14.0,12.0,19.0,7.0,8.0,9.0,8.0,7.0,2.0,1.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,6,4776,19672,3591,6,1430,1613,1733,1613,1772,2252,2628,2574,2321,2005,1807,1461,1239,1035,918,773,441,249,107,51,17,6,21950,5085,959,51,0,21978,5278,738,51,0,5570,423,1329,5121,1113,561,9149,4774,5,6168,19886,1986,5,214,151,20,1,1,1,44,8,2,501,27097,5,4007,1502,1248,662,137,321,3470,16693,5,7994,4412,2791,134,90,12619,5,1.5069154300533063,0.0003601786486097,2.3102818669405454,0.0005705808513066,11.284899269031913,1605,573,547,298,59,165,1327,5811,1,479,132,101,207,400,636,1025,873,1749,1398,1008,640,781,383,423,113,10251,135,10125,261,9300,1086,1298,9088,9686,700,5413,4973,5428,4958,4212,6174,9950,436,9904,482,7881,2023,6012,4374,8475,1911,5456,4930,217,10169,132,10254,82,10304,2739,4703,2398,546,36,5327,5059,0,55,61,8,1,1,0,10,5,0,206,10038,1,1.213586643638457,1.4773555939359049,1.3076923076923077,1.0305882352941176,1.0305882352941176,50.00125168496052 +PA120407,80812,Panamá,Panamá,Juan Díaz,14375,7,7639,150,9,0,0,3,19,0,1,3,15,0,0,18026,133,15,12,17908,266,0,0,0,7,5,18163,0,4,13,0,0,2,0,4,15724,2444,11,1,0,0,6,17687,6,350,1,0,142,18186,281,461,604,1033,1367,232,7,3208,4345,9906,576,129,22,18123,50,0,4,0,9,0,12865,991,924,3403,0,0,3,16936,1225,3,3,18,1,18062,0,0,0,0,0,0,0,0,122,1,1,22221,0,6.989646772228989,23.9322887830805,6.990532609899236,23.930461742885612,1.026668866160783,4.180743429011328,2.672055427251732,18689,9540,17987,631,3554,904,1126,814,258,805,223,304,881,867,1135,254,182,241,360,131,261,49718,4716,0,33210,21224,0,46756,7678,0,52669,1765,0,14280,40154,0,6670,7610,39408,746,0,903,666,677,113,791,855,977,928,1019,2912,15,54,624,1196,1705,3707,1402,2336,12566,58,353,907,1447,1950,3308,3940,4500,704,215,3326,11,11,37,212,9,24780,2021,23366,0,105,807,269,6902,8603,6368,607,886,19337,1389,2100,1436,2161,23,19,16,67,26812,29771,3832,14637,1447,5780,689,8,34,121,14,469,100,18166,1954,2,2,15650,17520,683,392,755,11149,652,3138,219,9,242,4420,4912,3610,2232,4061,77,2408,1537,3302,21504,1876,1127,1497,2680,4189,5719,3669,4310,2199,1491,704,967,474,2223,1954,513.0,504.0,547.0,585.0,665.0,664.0,706.0,741.0,756.0,735.0,783.0,824.0,758.0,767.0,753.0,756.0,749.0,728.0,702.0,701.0,642.0,746.0,805.0,738.0,720.0,813.0,741.0,779.0,728.0,649.0,736.0,782.0,782.0,821.0,744.0,799.0,756.0,829.0,775.0,761.0,802.0,810.0,818.0,781.0,808.0,793.0,808.0,808.0,760.0,702.0,880.0,825.0,848.0,816.0,850.0,755.0,736.0,699.0,752.0,749.0,709.0,612.0,603.0,594.0,567.0,560.0,504.0,533.0,466.0,529.0,448.0,411.0,413.0,394.0,420.0,389.0,377.0,361.0,342.0,316.0,277.0,233.0,215.0,191.0,186.0,185.0,147.0,124.0,118.0,91.0,85.0,54.0,55.0,36.0,37.0,35.0,18.0,25.0,11.0,6.0,9.0,7.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10301,37667,8615,0,2814,3602,3885,3636,3651,3710,3865,3920,4019,3871,4219,3691,3085,2592,2086,1785,1102,665,267,95,23,0,44949,8450,3071,113,0,45015,9076,2379,113,0,8135,735,663,14647,2391,1026,18687,10299,0,15523,35573,5487,0,373,450,41,5,10,0,111,13,3,975,54602,0,5736,2758,1926,889,258,443,7001,37572,0,14781,10364,7236,269,257,23676,0,1.6620568173300352,7.495689978262499e-05,2.4101465614430664,0.0001127395715896,11.337345138999346,2087,972,742,429,105,228,2570,11556,0,817,321,214,423,819,1164,1520,1352,2706,1949,1400,917,1164,646,2524,735,18469,220,18194,495,17026,1663,3341,15348,17366,1323,10302,8387,11503,7186,9697,8992,17971,718,17963,726,15057,2906,11433,7256,15758,2931,11334,7355,526,18163,379,18310,188,18501,3613,9257,4532,1287,32,10574,8115,0,87,133,13,2,5,0,33,6,1,335,18074,0,1.4321884514716094,1.5902462475295125,1.284991568296796,1.05933014354067,1.05933014354067,54.352025255497885 +PA120412,80813,Panamá,Panamá,Pedregal,18144,145,2682,479,21,0,0,1,0,0,0,7,20,0,1,9074,7279,1208,175,16433,1128,5,3,0,143,24,17413,240,2,6,5,14,8,0,48,15321,250,1813,142,46,12,152,17256,59,120,0,1,300,17736,239,609,426,656,1622,160,2,2505,3305,10715,623,105,483,17226,203,2,288,3,14,0,16361,139,624,607,1,0,4,12298,5135,0,288,9,6,16058,1331,10,10,7,28,1,7,206,15,50,13,21409,91,6.728777515949193,22.3881257543537,6.829070636243462,22.724122075981377,1.0205232295895357,3.2489287325214256,2.0567207938655843,18127,9421,20131,1292,4081,686,932,752,216,862,221,245,696,20,868,334,143,363,393,68,206,47698,6811,0,20168,34341,0,41497,13012,0,51627,2880,2,16097,38412,0,12461,3636,36765,1644,3,1749,563,914,131,1109,1263,1517,1417,1451,5212,13,34,598,1939,2840,5596,1949,3232,13372,106,206,973,1253,1365,1684,1788,1460,152,76,508,2,1,4,24,8,22704,2848,23078,0,60,1049,568,3692,9565,8264,749,808,17681,952,2241,860,2944,28,38,21,227,28356,29326,3703,14005,853,5982,133,5,40,271,87,801,160,15768,967,0,0,24839,17485,639,238,478,4345,127,448,23,8,323,1354,2321,2602,2121,5279,239,4052,2636,4625,26247,3103,1367,1923,3010,4282,7600,3630,3213,1284,576,203,183,45,49,967,738.0,779.0,795.0,861.0,943.0,945.0,962.0,1026.0,977.0,1026.0,1068.0,1074.0,958.0,990.0,994.0,907.0,884.0,893.0,845.0,853.0,926.0,888.0,987.0,943.0,862.0,984.0,921.0,853.0,865.0,796.0,862.0,815.0,934.0,940.0,852.0,832.0,868.0,879.0,854.0,838.0,868.0,800.0,754.0,795.0,710.0,734.0,776.0,713.0,736.0,695.0,701.0,701.0,694.0,661.0,630.0,607.0,602.0,568.0,537.0,531.0,503.0,494.0,490.0,421.0,448.0,362.0,360.0,349.0,329.0,312.0,309.0,285.0,319.0,274.0,221.0,211.0,242.0,185.0,203.0,187.0,146.0,139.0,137.0,112.0,101.0,78.0,78.0,69.0,53.0,46.0,37.0,31.0,38.0,26.0,9.0,13.0,8.0,8.0,3.0,7.0,4.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,14136,38250,5296,0,4116,4936,5084,4382,4606,4419,4403,4271,3927,3654,3387,2845,2356,1712,1408,1028,635,324,141,39,9,0,54040,2837,684,120,1,54060,2980,521,120,1,13669,788,4331,8954,1685,499,13618,14132,6,24162,31966,1552,2,1106,2078,98,10,11,1,294,21,4,746,53312,1,4883,3327,2720,793,237,287,10535,34899,1,14248,13631,3692,275,51,25784,1,1.8548730944048912,0.0,2.7005146836209506,0.0,8.910908082244028,1646,1117,1092,377,104,140,3391,10260,0,1073,483,348,642,1168,1595,2632,1881,3208,1983,1230,628,677,281,177,94,17740,387,16892,1235,15553,2574,2386,15741,16998,1129,4982,13145,10293,7834,4741,13386,17106,1021,16677,1450,10792,5885,6762,11365,13194,4933,7222,10905,1474,16653,845,17282,193,17934,3593,9485,4607,442,23,10401,7726,0,211,599,33,3,8,0,81,9,1,245,16937,0,1.5623140495867769,1.6157575757575755,1.1797752808988764,1.0524344569288389,1.0524344569288389,49.09637557235064 +,80824,Panamá,Panamá,Caimitillo,13049,60,354,9,0,0,0,0,1,0,14,0,15,0,0,4811,3828,1141,154,9513,267,8,2,0,126,18,9127,371,64,218,43,26,68,0,17,7359,372,1802,224,86,2,89,9638,192,46,5,0,53,9934,284,1318,696,295,704,229,12,4094,541,4693,203,9,394,8885,478,4,302,13,246,6,9476,30,263,25,17,116,7,6768,2640,3,325,183,15,8483,915,75,19,2,15,1,87,276,34,19,8,9439,4063,6.262641190752666,20.23171117914072,6.349414124353426,20.57637496041381,1.0190255687537748,3.4187638413529293,2.2705858667203542,10138,6526,13133,948,1305,413,287,257,174,404,113,99,281,19,421,161,70,162,146,67,107,28338,3560,0,14622,17276,0,24646,7252,0,29724,2174,0,11265,20633,0,7965,3300,19447,1186,0,1265,398,679,79,780,827,966,829,954,2924,3,14,150,1092,1337,2568,1028,1494,6928,40,154,668,961,1104,1127,1211,1542,186,83,489,1,1,1,14,1,13913,1559,12327,0,50,702,186,1050,6357,4239,317,364,10967,564,1621,302,1244,34,305,121,20,16885,17212,2687,8221,320,3687,123,4,80,56,35,333,56,11824,477,0,0,13090,9904,158,221,381,3396,186,449,13,1,120,1059,1990,2088,1203,2458,408,2440,1680,2026,16731,1668,821,1039,1235,1745,3211,2356,2706,1139,507,205,157,37,63,477,510.0,488.0,564.0,637.0,665.0,688.0,681.0,730.0,690.0,645.0,744.0,699.0,624.0,632.0,604.0,568.0,624.0,524.0,594.0,518.0,499.0,519.0,550.0,507.0,479.0,487.0,494.0,488.0,456.0,496.0,560.0,539.0,600.0,636.0,640.0,622.0,666.0,607.0,640.0,617.0,623.0,569.0,525.0,543.0,492.0,485.0,418.0,440.0,387.0,401.0,394.0,414.0,339.0,310.0,338.0,305.0,296.0,270.0,250.0,216.0,198.0,167.0,208.0,180.0,154.0,136.0,134.0,132.0,129.0,91.0,99.0,82.0,76.0,94.0,74.0,65.0,51.0,48.0,52.0,57.0,54.0,39.0,37.0,27.0,24.0,27.0,28.0,15.0,15.0,6.0,14.0,10.0,7.0,8.0,2.0,0.0,2.0,2.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,9601,22852,1643,1,2864,3434,3303,2828,2554,2421,2975,3152,2752,2131,1795,1337,907,622,425,273,181,91,41,6,4,1,33034,621,353,89,0,33041,664,303,89,0,8651,344,1173,6010,537,256,7527,9598,1,10277,23422,397,1,159,458,63,7,5,8,1187,30,11,367,31802,0,2441,1563,1890,560,158,158,6507,20820,0,9066,8778,974,105,60,15114,0,1.7484463276836155,0.0,2.5713067576209765,0.0,8.996539284981083,807,525,698,239,46,57,2037,5729,0,560,243,198,404,562,696,1080,921,1604,1359,937,566,515,207,158,113,9979,159,9326,812,8868,1270,1227,8911,8962,1176,2975,7163,5406,4732,2741,7397,9644,494,9137,1001,6570,2567,4770,5368,7760,2378,5631,4507,2599,7539,1059,9079,219,9919,1383,6606,1971,178,15,6553,3585,0,48,135,20,0,3,4,272,7,6,124,9519,0,1.6630552546045505,1.6952624839948784,1.2153846153846153,1.0277777777777777,1.0277777777777777,44.82955217991714 +PA120404,80815,Panamá,Panamá,Chilibre,17728,160,72,56,7,0,0,1,19,0,28,0,19,0,0,879,11877,1628,591,13517,867,7,1,0,530,53,14639,192,2,23,6,30,40,0,43,10833,482,3323,54,49,4,230,14579,97,53,1,0,245,14975,46,709,585,400,1014,283,4,552,1101,12661,547,36,78,14444,197,0,284,1,49,0,14843,49,75,0,1,3,4,7661,7062,6,224,14,8,12797,874,16,123,15,50,1,3,907,93,74,22,17472,618,5.294951413750274,17.936509096222693,5.335427778183678,18.140936655220283,1.013956594323873,3.195392320534224,1.966477462437396,15203,8585,18672,1242,2925,393,526,390,120,731,134,107,546,8,967,263,131,313,285,223,156,39803,6631,4,11959,34475,4,32819,13615,4,43318,3116,4,14730,31708,0,12560,2170,29970,1734,4,1820,567,862,126,1080,1207,1437,1258,1284,5308,6,19,255,1846,2648,5019,1727,2587,10891,19,150,759,898,942,1099,1019,1198,95,40,247,2,0,2,15,6,17223,3054,20642,2,187,1246,608,2185,8647,8426,627,757,13493,705,2742,650,1928,23,88,34,50,24692,24890,3033,10454,660,5292,151,3,49,71,51,865,170,17195,1048,0,0,23222,13600,277,198,465,2832,90,218,13,6,109,750,1499,1758,1446,3561,185,4643,2576,3750,25803,3550,1088,1805,2262,3196,5025,2502,2113,722,259,68,73,27,41,1048,715.0,741.0,795.0,893.0,904.0,947.0,915.0,911.0,949.0,891.0,964.0,861.0,844.0,832.0,837.0,812.0,852.0,797.0,775.0,829.0,774.0,876.0,873.0,881.0,826.0,1013.0,899.0,866.0,809.0,764.0,768.0,776.0,729.0,709.0,733.0,736.0,694.0,673.0,749.0,650.0,684.0,607.0,646.0,613.0,590.0,585.0,585.0,603.0,600.0,565.0,600.0,539.0,575.0,522.0,492.0,481.0,462.0,453.0,441.0,436.0,421.0,379.0,357.0,379.0,339.0,335.0,284.0,247.0,246.0,254.0,200.0,207.0,208.0,168.0,194.0,155.0,153.0,137.0,123.0,96.0,95.0,79.0,66.0,60.0,62.0,58.0,75.0,45.0,42.0,37.0,31.0,18.0,23.0,14.0,11.0,10.0,7.0,4.0,3.0,3.0,3.0,2.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,12999,32817,3761,5,4048,4613,4338,4065,4230,4351,3715,3502,3140,2938,2728,2273,1875,1366,977,664,362,257,97,27,11,5,48272,824,358,125,3,48286,866,302,125,3,12334,578,2358,7637,1143,282,12251,12995,4,25790,23151,637,4,204,1320,103,9,11,3,280,33,4,538,47075,2,3100,3951,3181,650,119,215,10220,28144,2,10487,10912,2122,215,42,25801,3,1.9821811100292115,0.0,2.861274190041313,0.0,8.321406962204026,1035,1255,1232,287,53,91,3331,7919,0,1311,739,461,789,1241,1525,2230,1525,2341,1305,704,327,303,101,77,205,14897,306,13843,1360,12747,2456,2006,13197,13565,1638,2799,12404,7416,7787,2337,12866,14291,912,13408,1795,7819,5589,4615,10588,10385,4818,5587,9616,3165,12038,1493,13710,225,14978,2742,8974,3210,277,55,9396,5807,0,62,384,37,2,8,3,82,11,1,214,14399,0,1.6182985974570716,1.6312753965133044,1.3733333333333333,1.0363951473136914,1.0363951473136914,47.9457343945274 +PA120409,80816,Panamá,Panamá,Las Cumbres,12960,43,584,151,11,3,0,12,2,0,0,2,7,0,0,2054,7151,1914,160,10452,667,3,1,0,128,28,11098,113,8,8,5,17,14,0,16,7651,211,2719,201,64,3,430,11102,57,48,0,0,72,11279,191,501,344,448,710,230,35,1210,1034,8342,336,45,312,10572,268,0,213,1,225,0,11049,42,94,87,1,1,5,5836,5160,0,265,13,5,9266,924,577,126,22,71,5,12,160,73,37,6,13485,290,5.083310114237949,17.769480821027212,5.166805981238971,18.252438005015325,1.042645624612111,3.422821172089724,2.205514673286639,11769,6992,15154,877,2435,403,519,369,135,576,138,147,374,35,750,245,124,249,213,687,333,32744,4860,0,12419,25185,0,25528,12076,0,35281,2321,2,11955,25649,0,9659,2296,24223,1423,3,1474,316,659,48,842,984,1206,947,1027,4548,1,15,170,1364,1937,3639,1257,1985,8360,51,194,584,844,822,1274,955,1412,129,72,436,6,4,6,30,6,14961,2303,16118,0,100,903,375,2039,7107,5927,452,593,11800,506,2109,676,1580,31,38,11,57,19991,19932,2447,9298,621,4166,109,4,52,111,86,475,94,14569,158,4,4,17977,10960,180,184,407,3139,120,382,27,6,194,770,1575,1731,1272,3113,169,3081,1727,3632,20987,1528,696,1192,1899,3217,4305,2297,2094,718,375,149,125,73,110,158,523.0,540.0,602.0,654.0,672.0,664.0,699.0,715.0,759.0,713.0,736.0,720.0,654.0,703.0,697.0,679.0,647.0,679.0,658.0,652.0,686.0,666.0,717.0,764.0,679.0,732.0,707.0,674.0,576.0,638.0,645.0,613.0,570.0,624.0,627.0,554.0,564.0,584.0,579.0,558.0,557.0,526.0,524.0,514.0,500.0,494.0,481.0,503.0,486.0,445.0,496.0,437.0,522.0,433.0,467.0,418.0,392.0,386.0,392.0,360.0,358.0,329.0,315.0,293.0,246.0,228.0,217.0,229.0,210.0,197.0,164.0,144.0,152.0,133.0,128.0,114.0,113.0,92.0,99.0,88.0,69.0,61.0,55.0,50.0,60.0,53.0,35.0,36.0,36.0,30.0,21.0,20.0,24.0,17.0,16.0,11.0,10.0,8.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10051,26946,2926,0,2991,3550,3510,3315,3512,3327,3079,2839,2621,2409,2355,1948,1541,1081,721,506,295,190,98,32,3,0,38614,839,402,68,0,38627,921,307,68,0,9739,351,820,6470,828,284,11378,10051,2,16008,23291,623,1,438,1279,141,23,32,12,515,47,5,595,36836,0,2240,2117,2104,404,165,120,9469,23304,0,9436,8919,2038,141,54,19335,0,1.8702848575712143,0.00023988005997,2.751064408007972,0.0003623516622882,8.703930065375848,717,694,795,168,59,52,3031,6253,0,967,328,222,418,812,1199,1604,1086,1988,1275,683,393,362,168,231,24,11640,129,10914,855,10111,1658,1714,10055,10661,1108,2387,9382,5982,5787,2458,9311,11291,478,10571,1198,5807,4764,4314,7455,7643,4126,4658,7111,2215,9554,1261,10508,148,11621,1809,7034,2684,242,28,7505,4264,0,79,387,37,8,11,0,122,7,3,199,10916,0,1.6945833686530474,1.6895820971433415,1.2621359223300972,1.0248756218905473,1.0248756218905473,48.03322287365112 +,80825,Panamá,Panamá,Las Garzas,17637,55,58,52,1,0,322,4,12,2,0,0,14,0,0,3448,6789,2422,182,12245,414,9,4,0,150,19,12148,567,2,47,9,19,19,0,30,10350,105,2234,59,32,2,59,12553,115,40,0,0,133,12841,31,931,667,1821,1297,212,2,3584,609,7247,362,15,1024,11555,563,8,639,2,73,1,12651,27,122,11,0,1,29,6165,6072,6,566,29,3,9919,562,59,42,6,8,1,2,1091,1090,43,18,17152,1005,5.8144212523719165,18.914516129032258,5.7592030360531306,18.79629981024668,1.0137060976559458,3.000311502219453,1.890662720971887,13031,7567,17741,1318,1374,456,609,395,105,371,201,131,13674,7,733,323,94,205,208,218,163,37411,15828,185,10335,42904,185,32488,20751,185,49811,3435,178,14671,38753,0,12759,1912,36131,2443,179,2514,356,922,113,1252,1377,1665,1445,1597,7160,15,27,108,3094,3614,6355,2208,3290,11181,114,270,647,793,774,863,623,655,62,31,117,0,0,1,2,179,15555,2281,29720,29,133,940,424,586,8934,7105,388,12707,12335,544,2134,462,1649,31,131,32,64,35231,21749,1942,10346,449,4336,120,4,64,121,30,275,105,25173,2606,0,0,31059,13668,118,221,334,1856,49,100,1,179,200,675,845,1684,1324,4081,254,3147,1846,3780,36506,1942,742,1340,1721,2672,5172,2188,1488,369,121,34,31,5,43,2606,826.0,834.0,953.0,943.0,978.0,953.0,999.0,1026.0,928.0,955.0,1003.0,980.0,852.0,872.0,894.0,815.0,829.0,826.0,832.0,995.0,918.0,1072.0,1338.0,1388.0,1364.0,1563.0,1551.0,1547.0,1489.0,1383.0,1463.0,1277.0,1340.0,1257.0,1192.0,1050.0,1082.0,994.0,1038.0,931.0,967.0,839.0,868.0,784.0,764.0,727.0,665.0,650.0,574.0,510.0,563.0,440.0,474.0,408.0,360.0,346.0,309.0,299.0,290.0,277.0,231.0,206.0,195.0,146.0,139.0,133.0,120.0,110.0,84.0,88.0,81.0,64.0,54.0,69.0,58.0,56.0,47.0,37.0,40.0,34.0,31.0,19.0,25.0,20.0,23.0,14.0,14.0,9.0,5.0,5.0,9.0,4.0,7.0,4.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148,13996,41565,1271,148,4534,4861,4601,4297,6080,7533,6529,5095,4222,3126,2245,1521,917,535,326,214,118,47,28,2,1,148,54536,1833,459,148,4,54561,1904,363,148,4,16738,365,4615,5075,449,242,15324,13994,178,10554,45288,963,175,1397,4002,209,18,42,11,1517,302,8,843,48449,182,2721,3348,4037,1238,217,258,12724,32255,182,10103,10123,519,109,16,35931,179,1.873312686261906,0.0,2.866678875560846,0.0,7.791716391716392,696,632,986,295,67,54,2769,7532,0,1497,355,210,550,853,1271,2283,1379,1987,1112,460,204,116,21,42,677,12824,207,11579,1452,11150,1881,1275,11756,12256,775,2169,10862,6405,6626,2228,10803,12437,594,11317,1714,6563,4754,3635,9396,9712,3319,4295,8736,1335,11696,889,12142,151,12880,2302,8314,2172,243,341,7496,5535,0,187,922,45,7,12,5,302,75,3,216,11257,0,2.634684415195932,1.6264582710140592,1.3125,1.0338164251207729,1.0338164251207729,40.714987337886576 +PA120410,80817,Panamá,Panamá,Pacora,25083,64,735,133,11,1,0,0,42,0,7,8,23,0,0,14067,5643,634,70,19933,411,8,1,0,52,9,20029,301,4,31,5,20,17,0,7,18932,142,1098,24,26,1,191,20133,75,54,0,1,151,20414,257,1274,407,517,2802,335,9,11673,2285,5799,411,15,231,20063,189,0,150,0,12,0,15955,1067,3331,57,2,0,2,15659,4608,0,122,23,2,18743,1183,125,4,5,5,1,26,266,32,18,6,23928,2179,6.4784300034910975,19.4376839060396,6.555533389855867,19.86644057652985,1.0130302733418242,3.4031546977564417,2.219065347310669,20710,12589,26812,2130,3007,853,852,797,326,750,374,267,794,22,803,279,107,378,268,267,266,58093,7326,0,25714,39705,0,53216,12203,0,61145,4274,0,22711,42708,0,17345,5366,40153,2555,0,2667,680,1523,135,1657,1821,2008,1739,2022,5798,13,32,279,2317,3009,6173,2256,3560,17472,97,321,1122,1467,1714,1857,1261,1841,146,78,332,2,1,2,16,1,28439,3110,25082,0,63,1197,469,1542,13193,9106,568,673,23813,892,2438,578,2690,34,163,58,148,34479,35804,4701,19101,624,5942,165,9,52,220,51,522,136,24915,885,0,0,28417,21724,311,425,842,4464,134,299,14,1,278,1675,2277,3700,2738,7345,263,4367,3410,5496,36085,2780,1177,1524,2241,4279,9942,5172,4201,1298,393,123,87,36,60,885,1127.0,1127.0,1252.0,1358.0,1416.0,1431.0,1464.0,1487.0,1553.0,1437.0,1539.0,1481.0,1422.0,1332.0,1341.0,1338.0,1221.0,1198.0,1172.0,1104.0,1060.0,1072.0,1130.0,1097.0,1091.0,1260.0,1216.0,1209.0,1163.0,1198.0,1331.0,1218.0,1386.0,1341.0,1291.0,1246.0,1295.0,1298.0,1283.0,1281.0,1211.0,1079.0,1102.0,1031.0,915.0,882.0,880.0,821.0,757.0,731.0,757.0,685.0,664.0,600.0,627.0,534.0,497.0,431.0,423.0,388.0,372.0,308.0,298.0,262.0,252.0,269.0,204.0,207.0,172.0,136.0,160.0,133.0,135.0,124.0,110.0,89.0,95.0,83.0,77.0,62.0,64.0,64.0,54.0,39.0,29.0,33.0,25.0,22.0,23.0,16.0,18.0,15.0,16.0,6.0,10.0,5.0,3.0,4.0,3.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,20767,47006,2510,0,6280,7372,7115,6033,5450,6046,6567,6403,5338,4071,3333,2273,1492,988,662,406,250,119,65,16,4,0,67268,2075,773,167,0,67288,2151,677,167,0,19074,631,1699,9613,905,285,17315,20760,1,17483,51818,981,1,4401,2137,214,15,19,12,875,121,4,901,61584,0,5525,4207,3773,1230,160,286,11029,44073,0,20292,19889,1474,205,33,28390,0,1.7069113654328625,0.0,2.577110733983878,0.0,8.472760126915471,1904,1364,1392,570,50,124,3435,11871,0,1181,399,277,467,921,1452,3199,2368,4335,2971,1511,697,496,132,111,163,20506,204,19770,940,18769,1941,2109,18601,19816,894,6547,14163,11737,8973,5871,14839,20033,677,19280,1430,13782,5498,8508,12202,16804,3906,9470,11240,1445,19265,758,19952,203,20507,3076,13065,4101,468,62,12636,8074,0,738,618,58,6,6,3,214,27,1,310,18729,0,1.6598786828422878,1.7236664740997496,1.2395833333333333,1.0230326295585412,1.0230326295585412,42.78305166586191 +PA120417,80818,Panamá,Panamá,San Martín,2445,16,0,61,0,0,0,0,1,0,0,1,0,0,0,3,1614,111,21,1623,105,3,0,0,17,1,1697,4,0,22,3,0,19,0,4,1239,43,425,2,19,0,21,1689,38,2,0,0,20,1749,0,428,98,55,142,50,0,21,204,1424,95,3,2,1691,26,0,21,1,10,0,1701,9,37,2,0,0,0,568,1148,1,30,2,0,7,1541,76,9,1,6,1,15,0,92,1,0,0,2524,6.073275862068965,17.154556650246306,6.13115763546798,19.204433497536947,1.017724413950829,3.220125786163522,2.01600914808462,1781,1044,1934,188,268,32,39,29,18,74,16,7,53,2,122,70,22,31,31,35,13,4132,988,0,1189,3931,0,2405,2715,0,4685,435,0,1464,3656,0,1198,266,3383,273,0,281,55,104,9,126,145,213,150,178,885,0,1,9,162,226,486,152,241,1149,12,75,30,52,57,100,65,113,9,4,30,0,0,0,1,0,2004,246,2314,0,6,89,66,219,890,955,100,150,1356,105,326,62,238,4,88,3,16,2837,2648,337,1023,72,667,54,6,21,18,13,189,17,2097,227,0,0,2852,1313,10,65,35,261,10,17,1,0,19,102,128,186,100,292,124,409,301,589,2872,403,95,197,276,471,424,211,178,62,41,12,7,2,7,227,84.0,87.0,106.0,88.0,83.0,112.0,95.0,94.0,80.0,92.0,92.0,97.0,71.0,94.0,76.0,99.0,87.0,91.0,104.0,108.0,80.0,84.0,113.0,96.0,86.0,90.0,90.0,80.0,100.0,71.0,72.0,57.0,75.0,65.0,70.0,72.0,77.0,64.0,70.0,68.0,79.0,74.0,61.0,68.0,73.0,71.0,63.0,68.0,67.0,52.0,76.0,75.0,61.0,65.0,64.0,64.0,67.0,60.0,60.0,44.0,52.0,37.0,44.0,39.0,37.0,36.0,38.0,40.0,28.0,30.0,29.0,27.0,29.0,30.0,23.0,30.0,25.0,16.0,25.0,18.0,15.0,16.0,12.0,12.0,9.0,8.0,8.0,9.0,4.0,5.0,6.0,3.0,2.0,1.0,4.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1351,3590,544,0,448,473,430,489,459,431,339,351,355,321,341,295,209,172,138,114,64,34,16,4,2,0,5260,152,50,23,0,5260,158,44,23,0,1428,59,131,975,126,30,1385,1351,0,2534,2838,113,0,13,547,10,0,1,0,17,8,1,82,4806,0,60,194,359,29,62,19,849,3913,0,1115,1167,215,15,1,2972,0,2.0865384615384617,0.0,2.937123745819398,0.0,7.658340929808569,22,68,137,14,21,6,327,1186,0,165,118,46,101,162,258,226,151,221,94,53,34,31,12,14,94,1744,37,1593,188,1514,267,320,1461,1513,268,346,1435,710,1071,172,1609,1538,243,1447,334,781,666,441,1340,586,1195,776,1005,499,1282,473,1308,20,1761,400,1046,292,43,1,1304,477,0,2,145,4,0,1,0,3,2,1,30,1593,0,1.5920314253647587,1.4859708193041523,1.2142857142857142,1.064516129032258,1.064516129032258,50.52667040988209 +PA120419,80819,Panamá,Panamá,Tocumen,24644,14,5488,2413,2,0,9,0,0,0,10,1,18,1,0,17268,9362,532,53,24851,2311,3,2,0,39,9,27165,12,7,6,3,5,10,0,7,23843,2367,203,55,9,0,738,26595,14,153,1,1,451,27215,362,764,520,2788,707,195,8,8439,7060,10175,1446,55,40,27106,57,3,36,0,13,0,21992,1072,3958,190,0,0,3,18800,8363,3,33,8,8,27045,121,14,8,1,0,0,0,0,22,1,3,32582,18,6.869168506254599,22.18568800588668,6.887821927888153,22.285356880058867,1.016534999081389,3.189895278339151,2.0422561087635493,27684,15077,31094,2163,5635,1065,1360,1187,412,1265,552,386,1444,37,1205,368,207,495,479,263,336,75611,8644,14,35888,48367,14,69446,14809,14,79341,4913,15,26023,58243,3,18248,7775,55312,2919,12,3100,688,1437,276,1787,1909,2219,2092,2113,7620,15,48,631,2902,3827,7669,2801,4578,21481,89,418,1903,2467,2571,2801,2668,2846,274,105,876,1,4,4,34,15,38230,4226,32820,7,130,1566,456,4359,15315,11327,863,956,31168,1472,3909,1531,3278,58,53,23,55,44299,45062,5949,24851,1585,8818,198,7,68,71,54,992,208,27827,3024,4,4,35841,29110,658,526,902,7114,254,830,33,15,84,2470,4020,4904,3633,9198,153,6046,4103,7845,41058,3806,1617,2370,3589,6478,12702,6245,4905,2006,827,305,281,69,79,3024,1151.0,1197.0,1319.0,1425.0,1471.0,1463.0,1517.0,1526.0,1545.0,1464.0,1624.0,1574.0,1486.0,1439.0,1494.0,1420.0,1402.0,1460.0,1469.0,1547.0,1589.0,1612.0,1632.0,1686.0,1483.0,1568.0,1478.0,1481.0,1311.0,1303.0,1373.0,1271.0,1339.0,1383.0,1256.0,1318.0,1418.0,1361.0,1376.0,1347.0,1351.0,1318.0,1373.0,1260.0,1258.0,1228.0,1217.0,1255.0,1217.0,1080.0,1238.0,1074.0,1137.0,980.0,980.0,913.0,855.0,859.0,857.0,781.0,724.0,661.0,652.0,595.0,552.0,540.0,491.0,495.0,519.0,426.0,402.0,344.0,388.0,326.0,311.0,286.0,241.0,175.0,192.0,144.0,139.0,130.0,111.0,108.0,105.0,67.0,70.0,61.0,45.0,52.0,25.0,36.0,35.0,23.0,12.0,20.0,18.0,6.0,7.0,3.0,7.0,4.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,21695,61298,6368,0,6563,7515,7617,7298,8002,7141,6622,6820,6560,5997,5409,4265,3184,2471,1771,1038,593,295,131,54,15,0,83167,4767,1233,193,1,83221,4956,991,193,0,21273,1196,5801,14858,1957,705,21875,21686,10,25843,61017,2495,6,5688,4975,267,51,56,6,333,67,7,1270,76629,12,7977,4325,3942,1393,352,463,18407,52488,14,25329,21815,4519,407,66,37217,8,1.7722962145690493,0.0001050778889852,2.608605660152052,0.000159216654062,9.07640917178635,2565,1419,1532,608,129,206,6134,15091,0,1405,582,407,722,1362,2359,4316,2799,5009,3257,1948,1100,1009,376,267,747,27161,523,25688,1996,23604,4080,3572,24112,26538,1146,8897,18787,15363,12321,7899,19785,26678,1006,24958,2726,17492,7466,11812,15872,22238,5446,11996,15688,1797,25887,899,26785,303,27381,5285,14820,6532,1047,22,17454,10230,0,956,1810,107,14,21,4,81,18,2,416,24255,0,1.5988955460910994,1.626434707283621,1.1203007518796992,1.0491493383742911,1.0491493383742911,47.39203149833839 +,80820,Panamá,Panamá,Las Mañanitas,12608,98,1827,599,0,0,9,0,0,0,0,4,9,0,0,3233,8658,964,115,11572,1283,1,2,0,99,13,12913,24,2,4,4,8,4,0,11,10966,624,1173,54,21,3,129,12615,46,82,0,0,227,12970,66,408,274,408,928,78,0,1476,2280,8252,873,36,53,12735,68,0,164,0,3,0,12097,180,604,87,0,0,2,7653,5162,3,140,9,3,9789,3091,38,13,0,7,0,0,0,9,16,7,14608,546,6.847577024307168,21.35818238117356,6.834881560613098,21.615110698250504,1.0314572089437162,3.322667694680031,2.095065535851966,13390,7376,16373,1004,3528,452,601,554,168,862,224,166,528,15,675,250,106,269,214,149,192,37967,4558,0,16507,26018,0,32972,9553,0,40034,2491,0,12886,29639,0,9910,2976,28179,1460,0,1533,322,711,124,817,991,1259,989,1091,4341,7,32,290,1507,2221,4117,1545,2458,10231,86,118,844,1134,1221,1283,1224,1458,137,46,362,0,0,6,20,0,18126,2370,17524,0,78,932,271,2484,7725,6283,497,535,14606,744,2121,691,1753,33,36,22,39,22394,22847,2843,11822,738,4468,84,3,26,61,57,504,105,13614,238,0,0,19433,14025,303,138,433,3245,94,330,19,0,74,1041,1744,2127,1791,4089,143,3502,2031,3954,21507,2214,948,1427,2245,3381,6329,2893,2352,854,451,166,142,46,48,238,652.0,643.0,724.0,697.0,727.0,762.0,759.0,757.0,736.0,764.0,793.0,794.0,690.0,746.0,712.0,715.0,777.0,723.0,743.0,721.0,802.0,840.0,924.0,900.0,841.0,860.0,900.0,789.0,752.0,695.0,690.0,683.0,668.0,679.0,620.0,624.0,617.0,580.0,610.0,554.0,560.0,511.0,510.0,516.0,552.0,527.0,526.0,548.0,527.0,545.0,538.0,511.0,542.0,524.0,562.0,558.0,519.0,538.0,512.0,513.0,478.0,412.0,454.0,408.0,346.0,330.0,269.0,278.0,239.0,233.0,190.0,165.0,176.0,153.0,146.0,143.0,117.0,91.0,96.0,77.0,77.0,53.0,64.0,44.0,64.0,38.0,32.0,20.0,29.0,29.0,15.0,21.0,15.0,11.0,9.0,5.0,4.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0,10956,31044,3241,0,3443,3778,3735,3679,4307,3996,3340,2985,2649,2673,2677,2640,2098,1349,830,524,302,148,71,14,3,0,43159,1613,341,128,0,43176,1673,264,128,0,10650,592,4102,7396,1088,443,10018,10952,0,16380,28030,831,0,746,2773,144,11,12,0,511,209,4,1311,39520,0,4216,2577,1864,536,177,237,9000,26634,0,11609,10650,2639,225,16,20102,0,1.8772348033373063,0.0,2.725990233315247,0.0,8.894012068698746,1278,770,730,230,68,114,2884,7316,0,693,305,227,464,776,1208,2055,1401,2309,1480,951,548,546,190,193,32,13112,278,12351,1039,11455,1935,2012,11378,12678,712,3390,10000,7408,5982,3679,9711,12811,579,12084,1306,8043,4041,5284,8106,10295,3095,5490,7900,1065,12325,595,12795,144,13246,2299,7035,3730,326,10,8246,5144,0,129,759,42,5,4,0,152,46,1,433,11819,0,1.6711940298507462,1.705,1.2093023255813953,1.0561797752808988,1.0561797752808988,48.69865571321882 +,80821,Panamá,Panamá,24 de Diciembre,27116,51,2137,805,0,0,0,0,59,0,5,7,18,0,0,10178,12066,1230,165,21804,1670,2,0,0,111,52,23450,134,4,5,2,12,15,0,17,20118,952,1430,318,41,9,771,23093,60,138,0,0,348,23639,344,1305,1057,1487,1936,316,25,6326,4372,11609,1137,38,157,23332,141,2,148,1,15,0,21879,447,1258,45,3,0,7,13736,9738,7,139,13,6,22459,885,105,37,2,55,1,6,34,35,18,2,28512,1686,6.704891466587061,21.79892532730607,6.773423173696107,22.157362787325685,1.0160328271077457,3.255552265324252,2.098692838106519,24043,13515,28848,1842,5236,855,1020,941,373,1329,413,318,1208,24,970,373,203,433,381,253,233,66893,8211,0,27758,47346,0,56797,18307,0,70523,4581,0,23260,51844,0,17675,5585,48686,3158,0,3263,505,1271,214,1595,1774,2235,1907,1960,7982,15,48,329,2685,3653,7420,2599,4102,19581,79,335,1229,1748,1718,1856,1839,2173,228,104,632,4,5,2,14,0,32198,4014,30686,0,152,1552,743,3234,13938,11538,897,1079,25637,1222,3370,1149,3609,83,70,31,195,39733,40232,4806,20673,1135,8205,200,13,80,254,41,811,189,26856,382,1,1,34907,24392,361,434,805,5225,201,555,18,0,299,1875,2856,3667,2736,7893,286,5788,3765,7047,39405,3609,1596,2503,3619,6090,11211,4902,3933,1523,657,240,188,45,62,382,1121.0,1146.0,1243.0,1351.0,1350.0,1349.0,1413.0,1363.0,1363.0,1368.0,1426.0,1405.0,1286.0,1347.0,1308.0,1354.0,1364.0,1315.0,1391.0,1437.0,1497.0,1401.0,1639.0,1563.0,1363.0,1487.0,1393.0,1333.0,1290.0,1208.0,1276.0,1150.0,1176.0,1231.0,1157.0,1053.0,1082.0,1061.0,1096.0,1011.0,1078.0,1089.0,1149.0,1122.0,1087.0,1085.0,1082.0,1096.0,1085.0,993.0,1090.0,1025.0,1010.0,970.0,939.0,876.0,827.0,833.0,753.0,770.0,697.0,682.0,638.0,588.0,475.0,434.0,429.0,391.0,365.0,324.0,318.0,239.0,271.0,243.0,223.0,192.0,173.0,158.0,137.0,120.0,105.0,76.0,79.0,63.0,59.0,69.0,49.0,45.0,31.0,35.0,23.0,18.0,30.0,21.0,10.0,4.0,6.0,7.0,3.0,4.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,19839,55367,4759,0,6211,6856,6772,6861,7463,6711,5990,5303,5525,5341,5034,4059,3080,1943,1294,780,382,229,102,24,5,0,75899,2927,925,214,0,75920,3096,735,214,0,19876,898,3304,12662,1598,494,21298,19835,0,26545,51729,1691,0,4347,3239,197,23,31,2,1183,387,7,856,69693,0,5598,4184,4394,1158,334,341,18957,44999,0,20951,19395,3272,330,55,35962,0,1.841204512480384,2.960945133686673e-05,2.720526765247876,4.494584026248371e-05,8.66609141499406,1800,1387,1631,518,132,144,6243,12188,0,1412,627,429,818,1437,2204,3691,2552,4356,2755,1599,917,763,232,193,33,23644,399,22398,1645,20875,3168,3419,20624,22679,1364,6560,17483,12691,11352,6630,17413,23116,927,21716,2327,14659,7057,9405,14638,17856,6187,9767,14276,1823,22220,1159,22884,292,23751,4316,13425,5721,581,64,14825,9218,0,668,1022,67,12,10,1,324,78,2,260,21599,0,1.6481934707761232,1.6688928526983864,1.2333333333333334,1.0451388888888888,1.0451388888888888,47.16632699746288 +,80822,Panamá,Panamá,Alcalde Díaz,15635,51,1131,318,0,0,0,0,0,0,0,2,31,0,0,3772,9471,672,162,13226,689,4,1,0,144,13,13915,108,3,5,2,15,12,0,17,10400,739,2078,109,53,3,695,13754,38,76,0,0,209,14077,168,457,492,806,968,158,9,2384,1765,9053,637,41,197,13805,93,0,169,2,8,0,12572,518,918,61,2,2,4,9237,4688,2,127,19,4,13924,108,4,6,2,4,0,6,0,3,13,7,16739,429,6.660017098888572,22.23183243089199,6.697919635223711,22.353092049016816,1.0247922142501953,3.3808339845137456,2.197343183917028,14459,8077,16866,1115,3292,489,549,493,193,731,188,151,355,18,843,278,135,324,247,240,245,39569,4920,0,18493,25996,0,35776,8713,0,42087,2402,0,13947,30542,0,10387,3560,29223,1319,0,1352,399,706,146,884,1043,1239,1042,1010,4156,15,24,540,1481,2136,4067,1428,2282,10569,22,183,1002,1415,1475,1763,1652,1625,170,61,576,1,5,5,15,0,18728,2404,18791,0,60,919,247,3116,8311,6257,632,475,14650,690,2882,599,1762,34,24,17,32,23101,23875,3509,11261,608,4968,256,1,26,61,73,732,124,14422,494,0,0,18762,14881,555,201,595,4223,146,545,15,0,74,1302,2358,2475,1729,4000,89,3666,2363,3076,21688,2758,937,1538,2441,3155,5759,3215,2680,1227,567,197,186,76,58,494,592.0,573.0,599.0,723.0,726.0,720.0,749.0,775.0,803.0,793.0,798.0,801.0,772.0,809.0,795.0,732.0,783.0,739.0,757.0,758.0,716.0,794.0,832.0,761.0,801.0,813.0,760.0,687.0,664.0,613.0,650.0,634.0,672.0,659.0,692.0,624.0,637.0,672.0,701.0,637.0,692.0,689.0,686.0,640.0,630.0,635.0,643.0,653.0,622.0,670.0,618.0,587.0,592.0,572.0,531.0,507.0,470.0,472.0,504.0,482.0,427.0,397.0,428.0,359.0,345.0,314.0,324.0,318.0,308.0,248.0,292.0,270.0,215.0,232.0,202.0,177.0,175.0,160.0,122.0,119.0,103.0,84.0,87.0,72.0,66.0,68.0,54.0,60.0,36.0,39.0,30.0,34.0,31.0,18.0,12.0,7.0,7.0,10.0,3.0,2.0,2.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,11028,31639,4309,0,3213,3840,3975,3769,3904,3537,3307,3271,3337,3223,2900,2435,1956,1512,1211,753,412,257,125,29,10,0,45349,1039,510,78,0,45371,1134,393,78,0,10301,674,1977,8560,1276,417,12745,11026,0,19305,27023,648,0,453,1233,86,9,4,4,232,20,3,688,44244,0,3058,1903,1704,442,167,198,6952,32552,0,11965,11280,3165,250,22,20294,0,1.83626968503937,0.0,2.663306599955853,0.0,9.283038147138964,1009,646,668,199,73,88,2420,9356,0,732,426,269,536,910,1209,1896,1482,2496,1633,1005,620,617,257,222,116,14200,259,13504,955,12574,1885,2160,12299,13265,1194,3171,11288,7371,7088,3888,10571,13882,577,13232,1227,7838,5394,6057,8402,11913,2546,6771,7688,2161,12298,891,13568,138,14321,2502,8179,3481,297,0,8794,5665,0,99,388,30,6,1,2,72,3,1,233,13624,0,1.597690020056712,1.651220692993983,1.1703703703703705,1.0501474926253689,1.0501474926253689,50.13023030638357 +,80823,Panamá,Panamá,Ernesto Córdoba Campos,23183,32,1049,22,8,0,0,4,8,0,0,0,5,0,0,11014,7741,1250,222,19433,572,3,59,0,151,9,19929,255,4,6,3,12,10,0,8,16646,769,1962,221,42,4,583,19896,35,147,0,1,148,20227,693,768,517,1252,545,262,22,6127,1973,11519,441,39,128,19912,105,0,201,0,9,0,15086,1515,2048,1565,11,0,2,14000,6069,3,139,13,3,19389,756,1,0,0,0,0,0,0,70,6,5,24302,9,6.8637943015983325,22.7951950759456,6.8833515338032365,23.065571329296137,1.0247194344193404,3.814900875067978,2.495278588025906,20732,12903,27756,1469,3806,907,765,675,468,1020,223,190,514,185,900,420,181,313,332,85,258,61164,6514,17,32952,34726,17,54432,13246,17,63935,3724,36,22818,44877,0,14025,8793,42790,2050,37,2211,766,1125,133,1424,1624,1880,1682,1811,6254,13,15,331,2185,2957,5214,2131,3232,14637,85,363,954,1423,1648,3136,3159,3859,490,166,2558,2,13,9,155,50,29159,3644,27393,1,89,1510,580,3458,13530,8926,682,797,23680,1218,2941,1077,2724,77,42,63,340,34883,36730,5437,17772,1021,6779,625,4,111,413,71,513,134,25150,936,25,25,27072,19372,343,327,594,9404,475,2401,159,50,470,3484,5263,4060,2328,5457,213,4460,2454,4614,34874,2431,1212,1860,2724,4207,7047,4093,4217,2555,1903,865,1291,590,808,936,873.0,898.0,1018.0,1129.0,1102.0,1216.0,1208.0,1304.0,1348.0,1320.0,1402.0,1289.0,1253.0,1253.0,1275.0,1202.0,1249.0,1193.0,1214.0,1209.0,1193.0,1218.0,1274.0,1206.0,1060.0,1211.0,1126.0,1074.0,992.0,934.0,962.0,932.0,961.0,1024.0,1009.0,971.0,1009.0,1042.0,1111.0,1125.0,1124.0,1134.0,1184.0,1188.0,1135.0,1157.0,1087.0,1138.0,1061.0,940.0,1006.0,976.0,875.0,838.0,813.0,704.0,672.0,679.0,634.0,638.0,637.0,480.0,534.0,423.0,414.0,404.0,371.0,346.0,363.0,292.0,283.0,268.0,278.0,240.0,225.0,213.0,171.0,175.0,140.0,137.0,99.0,93.0,79.0,84.0,79.0,66.0,63.0,43.0,45.0,27.0,25.0,23.0,39.0,16.0,15.0,11.0,17.0,6.0,4.0,8.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,17888,48972,4752,1,5020,6396,6472,6067,5951,5337,4888,5258,5765,5383,4508,3327,2488,1776,1294,836,434,244,118,46,4,1,67630,2289,1505,188,1,67699,2750,975,188,1,14321,723,3388,15498,1463,729,17565,17881,45,23734,46373,1456,50,453,1144,94,9,17,6,1738,82,10,1488,66544,28,4884,2086,2834,1025,303,328,13620,46507,26,19558,17139,3529,277,116,30960,34,1.6859509438808271,0.0008026197508668,2.547794117647059,0.0012420508744038,9.6251378939578,1576,697,1004,420,127,123,4213,12572,0,1285,400,310,642,958,1282,2364,1672,2835,2036,1530,1063,1534,964,1751,101,20525,207,19798,934,18899,1833,3183,17549,19343,1389,8235,12497,11502,9230,8056,12676,20115,617,19409,1323,13653,5756,11157,9575,16905,3827,11664,9068,2207,18525,1122,19610,279,20453,2697,12573,4929,533,20,13081,7651,0,102,340,29,2,9,3,414,16,6,448,19363,0,1.6809464148033924,1.7699498843484964,1.2621359223300972,1.0292479108635098,1.0292479108635098,47.86393015628015 +,80826,Panamá,Panamá,Don Bosco,15580,21,3028,5,0,0,0,1,0,0,0,5,6,0,0,15719,12,15,0,15728,18,0,0,0,0,0,15728,0,1,17,0,0,0,0,0,14423,1303,16,3,0,0,1,15586,4,136,0,1,19,15746,383,450,363,701,889,99,3,6186,2034,7330,141,53,2,15731,7,0,3,0,5,0,9989,1028,3251,1474,0,0,4,15474,263,1,4,4,0,15522,0,0,0,0,0,0,0,13,210,1,0,18646,0,6.97564746810978,23.94697848215436,6.975003221234377,23.952261306532662,1.0197510478851772,4.183030610948812,2.787819128667598,16068,8912,16355,588,3384,946,730,618,338,832,186,269,502,178,818,205,121,204,242,108,206,45681,2601,0,36126,12156,0,44196,4086,0,47081,1201,0,13600,34682,0,6155,7445,34238,444,0,547,462,488,82,640,630,793,677,829,1742,3,24,570,863,1102,2266,1022,1651,12173,21,327,1224,1997,2531,3461,4915,4054,550,114,2399,5,6,15,99,0,23323,1641,19980,0,86,597,199,6639,8134,4431,449,327,19802,1082,1647,378,1611,24,21,26,87,23023,26883,5270,13983,372,4422,444,6,22,159,17,193,62,13111,1579,0,0,10284,18716,594,460,759,11274,477,2280,100,0,258,3706,5615,4377,2643,3194,53,1779,1644,1694,17292,1059,740,1142,2158,3197,4989,4379,5340,2966,1919,857,1040,464,785,1579,371.0,369.0,433.0,451.0,518.0,467.0,546.0,603.0,581.0,623.0,624.0,726.0,631.0,683.0,652.0,708.0,670.0,688.0,636.0,674.0,701.0,771.0,815.0,685.0,659.0,744.0,722.0,684.0,663.0,636.0,636.0,672.0,718.0,733.0,680.0,689.0,732.0,763.0,698.0,660.0,723.0,714.0,720.0,712.0,706.0,801.0,782.0,765.0,700.0,752.0,787.0,741.0,722.0,672.0,680.0,708.0,667.0,622.0,643.0,676.0,657.0,603.0,624.0,561.0,486.0,623.0,502.0,485.0,461.0,458.0,436.0,396.0,379.0,337.0,311.0,308.0,264.0,247.0,237.0,208.0,179.0,145.0,141.0,113.0,106.0,101.0,86.0,79.0,58.0,57.0,50.0,48.0,32.0,28.0,22.0,21.0,11.0,10.0,6.0,10.0,6.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,8278,34661,6967,0,2142,2820,3316,3376,3631,3449,3439,3542,3575,3800,3602,3316,2931,2529,1859,1264,684,381,180,58,12,0,43660,3869,2275,102,0,43722,4573,1509,102,0,7315,711,2413,13931,1954,1316,13992,8274,0,11349,36091,2466,0,587,192,29,8,10,5,49,7,9,585,48425,0,7572,2294,1610,928,376,399,6921,29806,0,16454,10529,6974,309,227,15413,0,1.4599183673469387,0.0,2.220195190406328,0.0,11.993107041237527,2521,820,619,394,148,174,2490,8902,0,367,93,62,201,449,670,967,1009,2290,2081,1833,1338,1820,999,1521,357,16022,46,15928,140,15429,639,3336,12732,15315,753,10808,5260,10625,5443,9956,6112,15726,342,15794,274,14093,1701,11950,4118,14932,1136,12164,3904,465,15603,263,15805,176,15892,2324,8548,4637,559,1,8929,7139,0,125,73,11,5,3,4,20,4,3,200,15620,0,1.4327587279855625,1.6729728047793888,1.2375690607734806,1.043956043956044,1.043956043956044,53.8159073935773 +PA120501,81001,Panamá,San Miguelito,Amelia Denis de Icaza,10364,8,997,68,2,0,0,1,0,0,0,2,11,9,0,8056,651,160,15,8714,153,0,0,0,10,5,8849,9,4,13,1,2,2,0,2,8524,331,1,11,3,0,12,8732,3,93,0,0,54,8882,967,121,84,874,404,89,16,829,1908,5731,374,40,0,8861,15,0,6,0,0,0,7818,534,403,126,0,0,1,7444,1417,2,9,9,1,8842,15,2,0,0,0,0,0,0,20,0,3,11462,0,6.894118975053618,22.471836550400724,6.9017947849644425,22.6874365052489,1.0452600765593334,3.74296329655483,2.410155370412069,9297,4607,9282,423,2494,480,672,478,133,543,138,156,379,126,569,181,89,168,173,93,165,25280,2742,26,12788,15234,26,21316,6706,26,26984,1038,26,7042,20995,11,4868,2174,20330,650,15,704,230,318,76,417,487,648,522,583,2375,6,22,295,695,1089,2396,833,1702,6591,19,120,462,624,802,1311,1750,1513,183,76,1043,3,14,17,92,30,11928,1528,12442,20,93,589,302,3339,4241,3941,412,509,9233,646,1173,676,1125,31,12,33,237,14026,15182,2364,6711,716,2819,264,2,34,256,47,384,74,8983,257,6,6,10782,8822,308,141,343,4270,154,974,94,30,379,1200,2150,1627,1092,2277,56,1636,896,2142,11671,1675,753,1096,1763,2385,3322,1705,1687,863,570,308,398,236,519,257,250.0,272.0,314.0,324.0,333.0,349.0,355.0,352.0,375.0,366.0,396.0,380.0,352.0,371.0,360.0,395.0,373.0,385.0,376.0,389.0,377.0,453.0,470.0,480.0,510.0,489.0,495.0,450.0,438.0,425.0,446.0,365.0,410.0,389.0,348.0,363.0,361.0,387.0,380.0,314.0,410.0,342.0,385.0,343.0,330.0,378.0,354.0,370.0,343.0,351.0,453.0,388.0,439.0,388.0,402.0,408.0,379.0,412.0,408.0,374.0,388.0,334.0,348.0,321.0,328.0,284.0,290.0,303.0,246.0,271.0,241.0,244.0,224.0,198.0,190.0,184.0,170.0,145.0,165.0,151.0,139.0,141.0,130.0,81.0,97.0,96.0,64.0,72.0,43.0,47.0,41.0,24.0,34.0,18.0,12.0,14.0,14.0,7.0,6.0,7.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,5149,19644,4402,13,1493,1797,1859,1918,2290,2297,1958,1805,1810,1796,2070,1981,1719,1394,1097,815,588,322,129,48,9,13,25938,2392,808,53,17,25979,2605,554,53,17,5342,293,506,6338,1217,436,9907,5146,23,11600,15979,1607,22,161,403,41,4,5,2,86,12,4,367,28097,26,1973,1732,1179,407,182,106,4903,18700,26,7341,5723,3489,209,51,12369,26,1.8033596109924117,0.0004420540779488,2.599846474394122,0.0006579668823335,10.336346206518762,664,583,462,170,62,56,1605,5692,3,572,255,158,314,596,820,1000,776,1454,828,552,376,449,267,821,46,9192,105,8901,396,8261,1036,1683,7614,8738,559,3365,5932,5508,3789,3329,5968,8822,475,8723,574,6841,1882,4298,4999,7448,1849,3951,5346,430,8867,196,9101,78,9219,1689,4448,2769,391,12,5136,4161,1,35,139,15,3,2,1,29,6,3,125,8936,3,1.5067139327532495,1.6308948329573532,1.1674418604651162,1.076794657762938,1.076794657762938,54.66630808950086 +PA120504,81002,Panamá,San Miguelito,Belisario Porras,14595,12,1342,42,0,0,0,0,0,0,0,4,4,0,0,10816,1645,710,112,12649,522,4,6,0,91,11,13149,91,18,2,5,8,2,0,8,13221,26,14,3,0,1,18,12981,18,71,1,1,211,13283,94,458,156,404,1463,120,13,743,2362,9233,880,21,44,13143,68,1,68,0,3,0,12490,45,175,569,0,0,4,8187,5044,2,39,9,2,12775,485,4,0,0,0,0,0,0,2,11,6,15999,0,6.51259047044632,18.11233413751508,6.532720144752714,18.51462605548854,1.0292102687645863,3.239177896559512,2.090566890009787,13676,6758,15367,870,3979,585,767,564,119,687,201,182,365,9,973,258,156,247,266,71,207,36286,5345,1,11759,29872,1,28367,13264,1,39335,2296,1,12065,29567,0,10501,1564,28172,1393,2,1455,463,668,114,875,1024,1292,1059,1159,4454,14,30,314,1621,2347,4622,1558,2756,9602,37,150,661,838,957,1137,972,969,99,30,338,2,1,2,10,2,16529,2225,18468,1,58,888,453,2966,7200,6869,705,728,12339,589,2101,864,2242,56,11,29,146,21831,22298,2751,9532,909,4906,83,3,28,165,30,836,123,13214,274,0,0,20951,12577,333,134,315,2508,78,315,10,2,200,821,1456,1638,1391,4122,114,3382,1567,4063,20857,3255,1029,1751,2525,3536,5650,2365,1720,608,298,96,106,26,33,274,597.0,582.0,630.0,688.0,734.0,722.0,770.0,721.0,734.0,728.0,800.0,808.0,698.0,688.0,683.0,723.0,707.0,679.0,708.0,668.0,705.0,698.0,811.0,759.0,634.0,782.0,759.0,665.0,636.0,627.0,606.0,620.0,622.0,600.0,596.0,601.0,590.0,592.0,600.0,563.0,578.0,587.0,578.0,599.0,545.0,595.0,613.0,574.0,592.0,543.0,590.0,562.0,570.0,521.0,451.0,441.0,455.0,426.0,402.0,414.0,362.0,371.0,373.0,315.0,313.0,318.0,297.0,294.0,273.0,280.0,295.0,251.0,292.0,249.0,220.0,210.0,169.0,181.0,164.0,175.0,138.0,115.0,112.0,84.0,90.0,83.0,83.0,51.0,44.0,35.0,24.0,24.0,20.0,17.0,13.0,7.0,3.0,6.0,3.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10583,28921,4625,0,3231,3675,3677,3485,3607,3469,3044,2946,2887,2917,2694,2138,1734,1462,1307,899,539,296,98,20,4,0,41083,2551,380,115,0,41098,2608,308,115,0,10119,498,3116,6370,1429,279,11739,10579,0,21819,20576,1734,0,382,928,113,4,16,11,1196,108,5,639,40727,0,2716,1837,2817,966,184,241,10003,25364,1,9566,9401,2974,225,31,21931,1,2.0083066084853582,0.0,2.84599891548532,0.0,8.5773301003875,952,625,1078,413,69,102,3025,7412,0,933,536,304,630,1127,1347,1980,1444,2353,1353,658,389,334,132,107,44,13388,288,12692,984,11715,1961,1761,11915,12741,935,2666,11010,7575,6101,1938,11738,12929,747,12627,1049,7382,5245,4025,9651,9183,4493,3519,10157,416,13260,255,13421,147,13529,2672,6682,4039,283,3,7513,6163,0,95,309,37,1,9,4,308,19,2,222,12670,0,1.595949996344762,1.6300899188537177,1.1926605504587156,1.0516039051603905,1.0516039051603905,50.43492249195671 +PA120505,81003,Panamá,San Miguelito,José Domingo Espinar,13049,5,2800,10,6,0,2,0,0,0,2,6,7,0,0,13117,512,148,20,13705,72,0,2,0,18,0,13749,37,0,10,0,0,1,0,0,13534,247,15,1,0,0,0,13605,0,159,0,0,33,13797,320,440,93,595,510,69,40,4465,1876,7133,194,52,77,13757,28,0,11,1,0,0,10169,895,1233,1500,0,0,0,13113,661,3,17,2,1,13522,198,0,0,0,0,0,0,0,75,2,0,15887,0,6.921793002915452,23.54344023323615,6.922667638483965,23.56508746355685,1.028846850764659,4.076755816481844,2.746031746031746,14209,7882,14787,576,2497,935,739,594,329,689,184,234,582,211,685,181,149,211,286,97,147,40360,2626,32,29484,13502,32,39011,3975,32,41705,1276,37,12072,30946,0,5592,6480,30315,593,38,695,379,467,90,543,579,748,601,700,2197,8,18,338,764,1048,2297,908,1509,8797,56,447,1019,1468,2046,2799,4766,3716,513,143,3119,4,8,18,165,45,21163,1473,17423,15,54,666,157,5982,7175,3468,386,412,17334,1050,1845,558,1528,20,23,26,20,20725,23723,4702,11927,609,4510,574,4,48,30,17,279,64,10823,524,8,8,10431,14383,355,433,520,10195,492,3054,166,45,58,3319,5339,3887,1887,3017,78,1911,1259,1880,14413,1307,786,1109,2017,3191,4369,3534,4738,2833,1892,1088,1245,602,800,524,353.0,337.0,363.0,377.0,460.0,435.0,473.0,492.0,498.0,586.0,545.0,526.0,553.0,542.0,588.0,567.0,588.0,591.0,592.0,645.0,641.0,714.0,693.0,692.0,687.0,745.0,728.0,662.0,631.0,549.0,664.0,625.0,635.0,624.0,574.0,587.0,617.0,610.0,578.0,604.0,587.0,582.0,630.0,617.0,626.0,600.0,580.0,605.0,592.0,582.0,645.0,622.0,659.0,629.0,633.0,647.0,550.0,613.0,601.0,660.0,640.0,566.0,611.0,558.0,485.0,529.0,514.0,494.0,418.0,420.0,363.0,350.0,319.0,288.0,283.0,272.0,245.0,229.0,196.0,180.0,142.0,132.0,126.0,97.0,108.0,98.0,81.0,78.0,75.0,64.0,66.0,31.0,31.0,28.0,21.0,12.0,15.0,20.0,10.0,8.0,3.0,3.0,1.0,5.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7128,30963,6357,0,1890,2484,2754,2983,3427,3315,3122,2996,3042,2959,3188,3071,2860,2375,1603,1122,605,396,177,65,14,0,39289,3325,1792,41,1,39337,3880,1189,41,1,6420,806,2146,12194,1753,1313,12649,7127,40,11470,30918,2023,37,195,368,21,3,8,4,616,50,2,966,42190,25,4043,2165,1298,616,371,307,7249,28375,24,13909,8704,6429,261,153,14965,27,1.4995135060000926,0.0003706620951674,2.2855491329479767,0.0005780346820809,12.040541756659469,1399,812,522,266,152,155,2580,8322,1,206,105,77,206,413,652,876,870,1915,1596,1420,1021,1669,1059,1962,148,14132,77,14006,203,13473,736,2624,11585,13629,580,9024,5185,9141,5068,8497,5712,13897,312,13861,348,12210,1651,10083,4126,13001,1208,10384,3825,512,13697,265,13944,141,14068,2188,7501,3914,606,10,8393,5816,0,55,124,10,1,3,3,131,10,0,313,13558,1,1.457556790210282,1.668401434700049,1.1967213114754098,1.0355113636363635,1.0355113636363635,54.07734534449997 +PA120506,81004,Panamá,San Miguelito,Mateo Iturralde,2449,1,1222,36,0,0,0,0,0,0,0,2,7,0,0,3025,15,1,3,2998,43,1,0,0,1,1,3040,1,0,1,0,1,1,0,0,2997,7,0,1,0,0,39,2999,2,23,0,0,20,3044,124,91,37,151,232,29,0,69,874,1913,164,21,3,3037,7,0,0,0,0,0,2834,3,10,193,3,0,1,2466,575,0,0,3,0,3038,0,0,0,0,0,0,0,0,6,0,0,3717,0,6.875576036866359,22.381830151415404,6.882817643186307,22.592165898617512,1.05946123521682,3.480289093298292,2.266425755584757,3234,1292,2783,139,893,160,325,245,36,184,66,68,200,13,254,82,51,90,71,24,47,8345,925,2,4028,5242,2,7347,1923,2,8904,366,2,2257,7014,1,1754,503,6862,151,1,169,89,118,47,139,150,234,153,173,726,1,11,101,181,345,807,267,471,2607,0,21,202,323,367,505,441,431,38,8,132,0,1,1,11,2,4085,443,4042,2,16,152,72,1180,1261,1176,208,217,3002,198,530,289,432,7,4,5,9,4595,5043,955,2051,286,1145,21,0,4,14,11,113,35,2643,1092,1,1,3341,3648,105,34,140,1133,32,125,12,2,17,292,569,551,429,883,20,689,338,740,3509,364,278,325,636,857,1071,648,498,197,84,36,16,10,17,1092,92.0,85.0,96.0,93.0,100.0,97.0,119.0,122.0,138.0,124.0,109.0,120.0,129.0,92.0,115.0,100.0,127.0,111.0,126.0,101.0,131.0,115.0,153.0,134.0,126.0,165.0,145.0,148.0,132.0,141.0,132.0,147.0,156.0,147.0,133.0,129.0,140.0,155.0,108.0,96.0,111.0,90.0,93.0,113.0,112.0,112.0,104.0,132.0,126.0,114.0,112.0,130.0,136.0,146.0,140.0,150.0,147.0,147.0,148.0,139.0,121.0,118.0,118.0,129.0,111.0,99.0,94.0,77.0,90.0,82.0,67.0,75.0,78.0,62.0,72.0,63.0,65.0,51.0,62.0,61.0,42.0,38.0,62.0,42.0,43.0,41.0,38.0,44.0,24.0,20.0,21.0,12.0,19.0,15.0,13.0,9.0,10.0,8.0,1.0,3.0,2.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,1631,6397,1609,1,466,600,565,565,659,731,715,628,519,588,664,731,597,442,354,302,227,167,80,31,6,1,8422,1108,99,7,2,8424,1122,83,7,2,1848,215,1125,1587,524,201,2505,1631,2,4036,5025,575,2,86,129,10,2,0,0,47,1,1,203,9157,2,976,518,578,188,55,38,1934,5349,2,2278,1874,1240,77,6,4161,2,1.8138556883576804,0.0002213368747233,2.578392621870883,0.0003293807641633,10.218095040464826,348,185,227,82,23,21,686,1660,2,215,74,73,91,206,298,383,291,497,317,175,121,106,37,43,298,3202,32,3105,129,2795,439,535,2699,3037,197,933,2301,1879,1355,1133,2101,3045,189,3017,217,2207,810,1300,1934,2474,760,1138,2096,69,3165,44,3190,22,3212,705,1280,1090,159,0,1654,1580,1,25,44,4,0,0,0,18,0,1,81,3059,2,1.4208410636982065,1.559369202226345,1.1428571428571428,1.0938775510204082,1.0938775510204082,55.79554593257037 +PA120509,81005,Panamá,San Miguelito,Victoriano Lorenzo,4986,3,1487,99,8,0,0,0,0,0,0,0,17,0,0,4909,93,9,7,4805,206,0,0,0,4,3,5014,1,0,0,0,0,2,0,1,4779,236,1,0,0,0,2,4770,0,188,0,0,60,5018,347,252,35,236,644,34,9,643,1368,2773,154,80,0,5007,9,0,2,0,0,0,3861,202,23,927,4,0,1,4033,975,1,0,9,0,5015,2,0,0,0,0,0,0,0,0,0,1,6600,0,6.952959936216863,23.34084114012358,6.964520629858481,23.450667729718955,1.0346751693901952,3.4071343164607413,2.1253487445197288,5209,2391,4347,237,1232,192,397,304,67,257,97,113,280,58,345,105,52,69,74,19,95,13198,1311,13,7679,6830,13,11772,2737,13,14010,494,18,3648,10865,9,2473,1175,10567,289,9,313,142,209,41,212,243,296,293,260,1022,7,9,120,354,552,1410,419,731,3737,8,41,161,300,390,635,703,962,135,19,680,0,3,17,78,20,6722,673,5996,13,25,314,115,1588,2152,1821,263,172,5206,298,568,442,763,15,2,3,43,7318,7863,1246,3800,443,1597,140,0,10,104,11,225,23,3991,1025,6,6,5291,4723,132,73,165,2195,122,617,66,20,185,702,1203,885,539,1329,20,869,511,1152,5310,627,358,502,795,1126,1794,990,911,534,380,214,267,138,210,1025,169.0,152.0,159.0,179.0,169.0,186.0,201.0,182.0,189.0,191.0,212.0,199.0,174.0,187.0,183.0,198.0,157.0,179.0,193.0,190.0,203.0,223.0,239.0,193.0,238.0,247.0,256.0,217.0,207.0,237.0,244.0,261.0,220.0,259.0,224.0,251.0,230.0,229.0,209.0,231.0,233.0,212.0,213.0,218.0,200.0,200.0,192.0,178.0,190.0,150.0,199.0,176.0,197.0,204.0,197.0,169.0,195.0,179.0,196.0,193.0,195.0,156.0,186.0,161.0,125.0,121.0,120.0,133.0,132.0,97.0,131.0,119.0,116.0,107.0,107.0,85.0,92.0,90.0,76.0,92.0,64.0,52.0,60.0,48.0,47.0,41.0,51.0,33.0,29.0,39.0,17.0,18.0,16.0,12.0,20.0,11.0,7.0,9.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2732,10249,2199,1,828,949,955,917,1096,1164,1208,1150,1076,910,973,932,823,603,580,435,271,193,83,29,5,1,12692,2062,398,15,14,12708,2173,272,15,13,2962,207,376,2951,644,253,5046,2731,11,6278,7650,1235,18,131,131,8,0,3,2,30,1,4,443,14408,20,1187,1434,667,226,55,57,2234,9303,18,3891,2853,1717,72,34,6597,17,1.6960546930636662,0.0008545791197835,2.5262230057293964,0.001322168356104,10.47078585073447,412,460,293,98,23,28,854,3040,1,265,116,86,131,276,373,548,445,785,523,359,215,303,188,396,183,5122,87,5014,195,4563,646,768,4441,4840,369,2204,3005,2748,2461,1898,3311,4972,237,4913,296,4074,839,2609,2600,4211,998,2248,2961,112,5097,69,5140,42,5167,1180,2349,1421,259,8,2911,2298,1,33,47,4,0,2,1,6,1,1,175,4938,1,1.4027218708069773,1.5071880391029326,1.1733333333333331,1.075,1.075,52.58736559139785 +PA120502,81006,Panamá,San Miguelito,Arnulfo Arias,9862,22,441,5,3,0,0,0,0,0,0,1,2,0,0,4916,2482,865,105,7919,344,0,2,0,89,14,8040,315,5,1,0,4,0,0,3,8027,29,166,125,9,4,8,8248,9,51,0,0,60,8368,436,110,139,365,770,128,14,393,936,6374,510,41,114,8186,55,2,113,1,11,0,8033,170,127,34,2,0,2,4412,3867,0,88,0,1,7745,604,5,0,0,0,0,0,1,4,7,2,10336,0,5.781781182666986,18.37084031601628,5.831457984199186,18.510174766578885,1.0462476099426383,3.480640535372849,2.31560707456979,8758,4833,11690,797,3059,267,463,409,102,580,148,79,230,18,493,150,63,190,187,48,151,24808,4421,2,6869,22360,2,21544,7685,2,26959,2270,2,9331,19900,0,7952,1379,18711,1187,2,1238,400,601,84,766,791,1007,812,935,3296,4,28,90,1336,1949,3413,1185,1823,6226,42,116,353,469,414,471,486,618,40,21,200,0,0,1,12,4,10493,2029,12893,0,40,921,371,1395,5459,5160,418,461,8178,437,1430,512,1350,41,11,47,35,15328,16105,1851,6489,535,2946,111,2,66,41,25,314,97,10769,585,0,0,15836,7681,92,97,110,1365,33,186,11,4,74,525,761,1009,743,2780,150,2155,1038,3287,17245,1711,592,1055,1390,2183,3672,1350,938,282,168,74,87,43,58,585,489.0,495.0,589.0,629.0,659.0,596.0,641.0,641.0,632.0,647.0,634.0,635.0,563.0,503.0,573.0,551.0,515.0,565.0,500.0,566.0,509.0,576.0,584.0,585.0,513.0,585.0,533.0,498.0,475.0,483.0,472.0,477.0,494.0,449.0,439.0,427.0,468.0,408.0,447.0,407.0,409.0,370.0,378.0,376.0,346.0,377.0,339.0,339.0,339.0,308.0,325.0,297.0,301.0,282.0,307.0,315.0,281.0,298.0,301.0,278.0,302.0,269.0,283.0,220.0,207.0,249.0,189.0,163.0,185.0,146.0,143.0,130.0,106.0,115.0,89.0,81.0,62.0,66.0,50.0,45.0,44.0,29.0,32.0,34.0,28.0,20.0,23.0,15.0,17.0,14.0,8.0,11.0,12.0,9.0,6.0,3.0,0.0,0.0,4.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,8926,20373,2133,1,2861,3157,2908,2697,2767,2574,2331,2157,1879,1702,1512,1473,1281,932,583,304,167,89,46,10,2,1,30190,672,406,165,0,30199,711,358,165,0,7563,280,1153,4274,584,119,8533,8924,3,14488,16445,497,3,657,637,50,11,9,7,2376,69,4,422,27189,2,2704,2338,3163,1045,417,127,7714,13923,2,6434,6827,1394,139,18,16619,2,2.06971975393028,0.0,2.9460157126823794,0.0,7.899564152323991,864,706,1079,416,127,53,2086,3427,0,790,324,229,437,680,840,1383,888,1378,783,356,175,203,76,137,76,8658,100,8181,577,7625,1133,1117,7641,8242,516,1513,7245,4453,4305,1230,7528,8287,471,8154,604,4353,3801,2301,6457,6685,2073,2394,6364,824,7934,313,8445,76,8682,1297,4733,2541,187,3,4961,3797,0,116,164,14,7,7,2,515,16,3,126,7788,0,1.7495719666704714,1.838260472548796,1.28125,1.0504587155963303,1.0504587155963303,47.95604019182462 +PA120503,81007,Panamá,San Miguelito,Belisario Frías,12389,9,188,52,0,0,13,0,0,0,0,0,2,0,0,7945,1005,309,30,9120,139,5,1,0,18,6,9056,223,1,1,1,3,1,0,3,9218,11,42,13,4,0,1,9191,11,22,0,0,65,9289,1724,201,68,614,629,112,1,149,1268,7223,379,30,240,9142,39,3,101,0,3,1,9268,6,3,11,0,0,1,6223,3025,0,40,1,0,8877,405,4,0,0,0,0,0,0,1,1,1,12653,0,6.867973293129443,22.924617704070645,6.870450139995692,22.944324790006466,1.058779201205727,3.480568414253418,2.295726127677898,9837,4896,11154,753,3657,304,561,465,73,630,140,107,492,3,635,247,91,211,188,155,238,27068,4130,1,8136,23062,1,22098,9100,1,29678,1520,1,8524,22675,0,7530,994,21673,1001,1,1018,319,463,81,650,716,922,793,835,3271,9,33,341,1213,1701,3745,1248,2153,7840,20,57,468,593,596,593,417,938,31,14,111,0,0,2,7,1,10704,1688,15505,0,133,858,283,2970,5248,6165,489,633,8775,327,1250,372,1188,52,5,28,32,16158,16914,2256,6395,398,2832,86,3,13,46,15,480,104,11136,169,0,0,15833,9762,347,55,171,1604,26,91,7,1,63,514,840,1145,1017,2827,66,2142,1246,2532,16531,1870,705,1330,2091,2511,4307,1834,1206,351,107,24,22,6,8,169,366.0,439.0,515.0,553.0,547.0,535.0,539.0,604.0,538.0,539.0,610.0,576.0,529.0,501.0,530.0,476.0,485.0,484.0,505.0,476.0,501.0,499.0,567.0,528.0,513.0,573.0,572.0,483.0,501.0,455.0,478.0,414.0,439.0,471.0,424.0,408.0,452.0,437.0,465.0,437.0,476.0,414.0,416.0,371.0,347.0,392.0,351.0,377.0,351.0,328.0,398.0,359.0,338.0,348.0,342.0,312.0,333.0,340.0,336.0,336.0,349.0,323.0,362.0,357.0,314.0,371.0,301.0,317.0,309.0,296.0,268.0,270.0,249.0,249.0,189.0,178.0,147.0,142.0,138.0,113.0,95.0,74.0,72.0,47.0,49.0,46.0,34.0,31.0,24.0,24.0,15.0,20.0,11.0,14.0,7.0,9.0,12.0,4.0,6.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7921,21013,4138,0,2420,2755,2746,2426,2608,2584,2226,2199,2024,1799,1785,1657,1705,1594,1225,718,337,159,67,35,3,0,31977,802,211,82,0,31988,824,178,82,0,7660,447,3244,4840,1069,238,7669,7905,0,14518,18006,548,0,539,774,69,12,11,5,575,14,12,500,30561,0,2307,2305,2451,705,170,194,9179,15761,0,6855,7489,2846,256,29,15596,1,2.0519163763066204,0.0,2.878931451612903,0.0,8.538340590227383,825,727,862,285,80,85,2649,4324,0,814,318,218,421,793,932,1564,1040,1728,967,486,245,213,45,26,25,9753,84,9325,512,8821,1016,1534,8303,9264,573,1868,7969,5960,3877,1962,7875,9321,516,9369,468,5418,3951,2863,6974,7099,2738,2970,6867,442,9395,200,9637,78,9759,1743,4712,3234,148,13,5582,4255,0,115,210,19,5,2,2,147,5,7,192,9133,0,1.6404060913705585,1.7171573604060917,1.26,1.0874200426439231,1.0874200426439231,52.83074107959744 +PA120507,81008,Panamá,San Miguelito,Omar Torrijos,11188,15,1767,180,12,4,0,8,0,0,0,0,4,0,0,6896,2892,460,25,9818,430,0,0,0,23,2,10242,19,1,3,0,1,1,0,6,9858,312,25,60,2,1,15,10043,5,82,0,0,143,10273,491,351,145,1112,652,126,0,755,2247,6674,503,69,25,10239,15,0,12,0,7,0,9762,212,143,155,0,0,1,7906,2355,1,8,2,1,10097,135,4,0,0,0,1,0,0,28,6,2,13178,0,6.699491989058226,20.593493552168816,6.728800312622118,21.006252442360296,1.030760245303222,3.437068042441352,2.2302151270320256,10593,5007,10205,568,2973,414,637,497,129,589,158,158,439,36,797,292,156,193,235,152,277,27949,3144,2,13235,17858,2,25044,6049,2,29746,1347,2,8435,22659,1,6193,2242,21962,696,1,750,285,526,164,456,518,676,586,682,2756,4,32,517,790,1247,2957,986,1675,7748,28,153,698,929,1109,1282,1136,1557,166,79,552,1,6,4,38,2,13223,1511,13845,2,89,632,233,3646,5018,4143,570,468,10274,565,1474,590,1472,45,12,7,98,15668,16735,2661,7370,612,3442,243,1,87,121,9,426,74,9338,1107,2,2,12452,10842,524,190,424,3422,163,524,38,2,155,1097,1720,1818,1331,2878,54,2116,1277,2288,13605,1245,738,1192,1939,2655,3966,2282,1946,806,388,163,177,67,127,1107,332.0,296.0,315.0,365.0,402.0,421.0,399.0,416.0,421.0,455.0,475.0,477.0,419.0,428.0,480.0,452.0,450.0,411.0,451.0,469.0,495.0,502.0,521.0,524.0,486.0,556.0,525.0,482.0,415.0,450.0,467.0,472.0,513.0,438.0,436.0,423.0,383.0,447.0,452.0,420.0,407.0,422.0,437.0,472.0,430.0,409.0,425.0,471.0,442.0,398.0,449.0,423.0,450.0,408.0,412.0,423.0,372.0,339.0,331.0,341.0,298.0,283.0,317.0,280.0,262.0,279.0,277.0,267.0,277.0,297.0,253.0,299.0,278.0,268.0,277.0,263.0,261.0,199.0,192.0,172.0,146.0,125.0,123.0,98.0,100.0,82.0,81.0,58.0,51.0,40.0,35.0,29.0,29.0,21.0,21.0,21.0,6.0,11.0,4.0,8.0,5.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6101,21341,4961,0,1710,2112,2279,2233,2528,2428,2326,2125,2168,2145,2142,1806,1440,1397,1375,1087,592,312,135,50,13,0,29172,2438,744,49,0,29189,2715,450,49,0,6649,518,1341,5907,1383,488,10017,6100,0,12884,18102,1415,2,322,512,46,6,9,5,124,30,1,821,30525,2,2415,1477,1633,527,143,218,7094,18894,2,8089,6553,3802,186,30,13741,2,1.832247666375663,0.0001343093143509,2.613115407614112,0.0001993223041658,9.874147455482516,824,509,631,218,63,94,2567,5686,1,694,250,171,359,625,871,1358,999,1709,1200,661,411,450,205,268,358,10401,192,10026,567,9156,1437,1748,8845,9892,701,3062,7531,5758,4835,3498,7095,10103,490,9904,689,6591,3313,4512,6081,8091,2502,4271,6322,639,9954,240,10353,81,10512,2188,4924,3166,315,24,5963,4630,0,65,169,11,3,4,4,39,11,1,325,9960,1,1.475746444381652,1.5762456437788452,1.3112582781456954,1.061746987951807,1.061746987951807,53.68016614745586 +PA120508,81009,Panamá,San Miguelito,Rufina Alfaro,13742,2,386,5,13,0,0,3,0,0,0,2,3,0,0,12498,222,17,3,12720,17,0,0,0,2,1,12729,0,0,11,0,0,0,0,0,12151,576,6,0,1,0,6,12551,0,177,0,0,12,12740,235,282,79,264,408,125,2,5662,1153,5754,128,41,2,12717,18,0,5,0,0,0,6837,1290,4432,181,0,0,0,12402,321,2,7,6,2,12636,0,0,0,0,0,0,0,0,103,1,0,14156,0,6.939616967394745,23.56117442228553,6.950617283950617,23.80294396961064,1.021193092621664,4.466483516483517,2.9703296703296704,13015,7958,14283,454,1691,922,576,459,411,470,152,188,438,248,770,167,130,186,251,129,208,38393,1952,11,32420,7925,11,37784,2561,11,39499,841,16,11975,28381,0,4035,7940,28009,353,19,425,343,328,60,423,472,574,540,626,1597,2,2,248,706,835,1515,800,1097,9373,18,382,754,1110,1621,3402,4234,4570,644,179,3270,8,25,21,130,22,19012,1569,17459,2,77,438,215,5871,7701,3024,378,485,16487,1019,1092,338,1312,17,30,17,77,18940,22325,4355,11516,344,3616,384,6,72,96,6,164,22,11749,912,1,1,7905,13284,279,473,484,11788,607,3057,143,22,171,3782,5652,3896,1802,2079,62,1101,850,1187,13688,814,811,851,1490,2313,2731,3525,4540,2869,2292,1200,1484,733,1012,912,198.0,197.0,227.0,287.0,317.0,327.0,362.0,433.0,403.0,472.0,484.0,561.0,571.0,651.0,583.0,601.0,631.0,633.0,699.0,645.0,655.0,687.0,659.0,654.0,614.0,631.0,542.0,492.0,451.0,434.0,467.0,439.0,454.0,409.0,416.0,432.0,402.0,397.0,466.0,450.0,501.0,523.0,557.0,597.0,586.0,654.0,687.0,662.0,760.0,699.0,806.0,824.0,782.0,715.0,732.0,683.0,620.0,640.0,601.0,572.0,536.0,465.0,483.0,418.0,385.0,416.0,380.0,353.0,369.0,377.0,338.0,299.0,366.0,314.0,309.0,275.0,299.0,265.0,263.0,228.0,202.0,166.0,162.0,145.0,125.0,110.0,92.0,82.0,80.0,55.0,41.0,39.0,37.0,40.0,27.0,19.0,27.0,16.0,11.0,7.0,2.0,1.0,3.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,6073,28848,6343,1,1226,1997,2850,3209,3269,2550,2185,2147,2764,3462,3859,3116,2287,1895,1626,1330,800,419,184,80,9,1,37103,2130,1992,40,0,37186,2527,1512,40,0,4214,478,214,13898,1617,996,13769,6073,6,9445,30004,1799,17,175,322,30,3,5,0,41,14,4,762,39896,13,4440,2029,861,438,302,307,6652,26221,15,13579,9337,6116,206,266,11752,9,1.418050193050193,4.826254826254826e-05,2.1737575157926785,7.610929294466855e-05,12.769223312734765,1543,721,350,209,111,168,2315,7598,0,357,63,60,114,236,408,543,676,1310,1369,1306,1095,1720,1153,2373,227,12971,44,12902,113,12646,369,2799,10216,12527,488,10182,2833,9196,3819,9173,3842,12798,217,12822,193,11850,972,10673,2342,12475,540,11108,1907,795,12220,313,12702,149,12866,1591,7663,3228,533,16,7926,5089,0,46,108,7,1,1,0,16,4,1,246,12585,0,1.453457140664569,1.713222316015655,1.1666666666666667,1.0429752066115705,1.0429752066115705,55.50779869381483 +PA120603,81101,Panamá,Taboga,Taboga,496,1,44,0,0,0,0,0,0,0,0,0,4,0,0,184,48,1,1,231,2,1,0,0,0,0,232,0,0,1,0,0,0,0,1,226,0,6,1,1,0,0,229,1,1,0,0,3,234,5,233,23,14,9,23,0,0,27,197,9,1,0,222,9,0,3,0,0,0,221,4,7,2,0,0,0,163,65,0,2,4,0,13,51,126,0,0,0,0,0,0,44,0,0,0,545,6.589473684210526,22.05263157894737,6.747368421052632,22.36315789473684,1.051282051282051,4.333333333333333,2.8974358974358974,250,123,187,18,84,5,13,7,5,20,1,5,16,0,17,3,6,5,18,56,13,614,98,0,154,558,0,518,194,0,671,41,0,142,570,0,111,31,550,20,0,20,8,9,2,6,12,12,13,10,161,0,1,8,28,43,106,21,39,123,0,4,11,17,14,18,11,8,1,0,5,0,0,1,0,0,323,21,317,0,0,11,7,83,84,113,31,6,170,11,36,16,23,0,1,76,5,391,343,64,115,14,119,21,0,0,5,3,52,5,169,114,0,0,437,165,10,3,8,31,1,6,0,0,7,24,7,30,25,83,31,30,29,78,259,80,29,37,50,45,37,31,33,8,3,1,3,1,3,114,6.0,3.0,10.0,3.0,7.0,13.0,7.0,5.0,10.0,9.0,11.0,7.0,6.0,11.0,14.0,6.0,6.0,9.0,9.0,9.0,14.0,9.0,9.0,9.0,12.0,15.0,10.0,6.0,8.0,8.0,6.0,8.0,3.0,9.0,6.0,6.0,7.0,4.0,6.0,7.0,7.0,10.0,15.0,14.0,8.0,10.0,12.0,7.0,7.0,9.0,12.0,4.0,9.0,9.0,12.0,6.0,8.0,13.0,7.0,11.0,10.0,9.0,17.0,11.0,14.0,9.0,15.0,10.0,8.0,8.0,4.0,9.0,9.0,13.0,5.0,8.0,11.0,7.0,4.0,3.0,7.0,4.0,4.0,4.0,2.0,2.0,3.0,2.0,0.0,2.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,122,452,160,0,29,44,49,39,53,47,32,30,54,45,46,45,61,50,40,33,21,9,5,2,0,0,681,28,23,2,0,681,41,10,2,0,145,8,3,176,37,8,235,122,0,498,200,36,0,2,1,1,0,0,0,2,0,0,70,658,0,26,46,14,4,3,1,171,469,0,123,106,85,1,13,406,0,2.139610389610389,0.0,2.7797356828193838,0.0,8.486376021798366,12,22,6,3,1,0,61,145,0,15,19,6,17,26,28,14,22,33,20,9,3,4,2,3,25,248,2,236,14,216,34,33,217,234,16,93,157,157,93,13,237,237,13,232,18,142,90,65,185,183,67,46,204,39,211,10,240,0,250,71,104,66,9,0,166,84,0,1,1,1,0,0,0,0,0,0,28,219,0,1.564,1.372,1.0,1.0454545454545454,1.0454545454545454,59.904 +PA120601,81102,Panamá,Taboga,Otoque Occidente,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,2,0,44,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,1,5,35,3,0,0,0,44,0,0,0,0,0,44,0,37,6,0,0,2,0,0,0,44,0,0,0,44,0,0,0,0,0,0,23,1,20,0,0,0,0,24,20,0,0,0,0,0,30,0,0,0,0,0,0,0,14,0,0,0,89,5.833333333333333,14.0,5.833333333333333,14.0,1.0,4.068181818181818,2.909090909090909,44,24,28,0,8,5,18,24,0,5,7,4,0,0,1,3,5,0,3,2,7,149,15,0,55,109,0,117,47,0,161,3,0,17,147,0,10,7,145,2,0,2,0,0,1,1,0,0,0,2,28,0,0,8,2,10,16,4,11,41,0,0,3,1,7,11,4,9,0,0,3,0,0,0,0,0,78,7,77,0,1,1,2,36,10,21,3,7,51,7,8,4,4,0,3,7,0,93,74,16,35,3,25,3,0,2,0,0,13,0,27,21,0,0,75,52,8,0,1,23,0,3,0,0,1,7,11,10,8,14,5,13,8,8,36,20,3,5,11,13,11,27,9,1,2,3,4,0,1,21,0.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,3.0,0.0,3.0,3.0,3.0,0.0,1.0,3.0,2.0,1.0,3.0,3.0,1.0,1.0,1.0,1.0,3.0,3.0,4.0,0.0,3.0,3.0,0.0,1.0,2.0,2.0,1.0,4.0,3.0,3.0,3.0,2.0,4.0,2.0,3.0,1.0,0.0,2.0,1.0,2.0,4.0,1.0,7.0,3.0,1.0,2.0,5.0,4.0,4.0,0.0,3.0,1.0,4.0,1.0,4.0,3.0,5.0,4.0,1.0,5.0,3.0,2.0,2.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,9,101,57,0,4,1,4,5,9,10,7,13,8,14,12,9,14,16,13,18,7,2,1,0,0,0,166,0,1,0,0,166,1,0,0,0,34,0,0,72,6,2,44,9,0,114,52,1,0,0,0,0,0,0,0,0,0,0,2,165,0,13,4,2,0,10,2,42,94,0,41,28,38,2,2,56,0,1.7397260273972603,0.0,2.3653846153846154,0.0,10.574850299401197,5,1,0,0,3,0,20,15,0,2,0,1,2,2,3,8,4,7,0,4,3,4,1,3,0,44,0,44,0,25,19,5,39,42,2,12,32,30,14,1,43,43,1,38,6,7,31,6,38,30,14,4,40,8,36,2,42,0,44,7,13,24,0,0,35,9,0,0,0,0,0,0,0,0,0,0,2,42,0,2.113636363636364,1.681818181818182,0.0,1.0,1.0,65.61363636363636 +PA120602,81103,Panamá,Taboga,Otoque Oriente,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,44,3,2,53,2,1,0,1,0,0,57,0,0,0,0,0,0,0,0,0,0,48,1,0,8,0,57,0,0,0,0,0,57,1,71,3,0,2,14,0,0,0,55,2,0,0,56,0,0,0,0,1,0,43,0,14,0,0,0,0,32,25,0,0,0,0,0,55,1,0,0,0,0,0,0,1,0,0,0,148,3.267857142857143,6.142857142857143,3.392857142857143,6.839285714285714,1.0350877192982455,3.3859649122807016,2.333333333333333,59,46,72,0,3,3,1,2,0,1,0,1,0,0,2,3,1,0,1,4,3,118,67,0,5,180,0,73,112,0,177,8,0,40,145,0,36,4,142,3,0,3,2,3,2,1,5,1,4,4,102,0,0,1,7,5,23,4,5,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,65,10,98,0,0,4,4,0,27,49,5,17,7,3,3,0,6,0,1,50,1,101,87,6,4,0,52,1,0,7,1,0,25,0,66,18,0,0,159,12,1,0,0,1,0,0,0,0,1,2,0,0,0,3,50,6,5,8,128,35,6,0,1,0,0,0,0,0,0,0,0,0,0,18,1.0,0.0,1.0,1.0,2.0,2.0,3.0,2.0,3.0,0.0,3.0,5.0,4.0,4.0,0.0,1.0,6.0,5.0,3.0,4.0,2.0,4.0,5.0,3.0,1.0,0.0,0.0,2.0,0.0,2.0,5.0,1.0,3.0,5.0,3.0,0.0,3.0,3.0,4.0,0.0,6.0,4.0,1.0,4.0,1.0,3.0,3.0,2.0,2.0,2.0,5.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,2.0,1.0,1.0,2.0,3.0,0.0,0.0,4.0,1.0,2.0,2.0,0.0,3.0,2.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,31,128,29,0,5,10,16,19,15,4,17,10,16,12,16,13,6,9,6,6,5,1,1,0,1,0,186,0,2,0,0,186,0,2,0,0,49,0,0,47,11,0,50,31,0,178,9,1,0,0,0,0,0,0,0,0,0,0,2,186,0,0,9,11,1,0,0,47,120,0,4,19,0,0,0,165,0,2.4545454545454546,0.0,3.2962962962962963,0.0,6.5,0,3,4,0,0,0,14,38,0,20,10,14,10,3,1,0,0,0,0,0,0,0,0,0,1,59,0,58,1,49,10,16,43,53,6,5,54,27,32,0,59,44,15,55,4,4,51,0,59,27,32,1,58,14,45,5,54,1,58,7,45,7,0,0,49,10,0,0,0,0,0,0,0,0,0,0,1,58,0,1.7118644067796611,1.4745762711864407,0.0,1.0,1.0,55.71186440677966 +PA130101,90101,Veraguas,Atalaya,Atalaya,3013,11,52,18,0,0,0,1,0,0,0,1,4,0,0,267,2063,64,7,2371,23,0,0,0,7,0,2367,0,0,6,1,6,21,0,0,160,1875,297,24,34,0,11,2348,25,10,0,0,18,2401,0,267,98,215,99,14,0,741,190,1398,68,3,1,2321,7,4,11,0,58,0,2126,80,195,0,0,0,0,1574,803,0,23,1,0,1854,431,74,0,0,0,0,0,0,25,17,0,2672,428,6.789317507418398,18.023738872403563,6.969054684188215,22.222551928783385,1.009579341940858,3.816326530612245,2.519366930445648,2429,1466,2747,212,375,86,99,80,29,92,25,25,68,29,105,29,16,45,49,34,22,6671,622,0,3565,3728,0,6191,1102,0,6789,504,0,2357,4936,0,1830,527,4733,203,0,213,132,149,23,149,207,212,189,197,751,0,0,8,165,259,433,166,260,1435,2,23,173,189,356,571,451,235,99,16,221,1,1,1,6,0,3444,222,2812,0,9,98,41,299,1305,987,127,94,2492,112,408,134,249,6,213,8,0,3824,3938,1137,1392,143,854,82,0,13,1,10,271,38,2029,17,0,0,2690,2036,8,41,190,1203,87,217,6,0,1,181,753,313,191,730,127,489,277,604,3413,471,225,306,472,500,799,394,565,338,137,37,52,8,28,17,126.0,107.0,112.0,124.0,122.0,159.0,126.0,130.0,151.0,127.0,126.0,132.0,95.0,95.0,116.0,111.0,111.0,110.0,98.0,132.0,106.0,98.0,129.0,107.0,125.0,139.0,132.0,116.0,121.0,146.0,129.0,153.0,155.0,154.0,150.0,128.0,146.0,147.0,126.0,135.0,107.0,100.0,97.0,99.0,83.0,102.0,86.0,79.0,74.0,89.0,89.0,88.0,80.0,85.0,78.0,85.0,90.0,64.0,77.0,63.0,62.0,64.0,62.0,52.0,47.0,57.0,38.0,50.0,53.0,44.0,37.0,43.0,27.0,32.0,37.0,25.0,29.0,32.0,22.0,24.0,18.0,18.0,12.0,12.0,16.0,14.0,6.0,10.0,5.0,12.0,8.0,5.0,7.0,3.0,0.0,5.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1848,5206,708,0,591,693,564,562,565,654,741,682,486,430,420,379,287,242,176,132,76,47,23,12,0,0,7624,61,65,12,0,7625,67,58,12,0,2043,78,394,1304,185,64,1846,1848,0,2648,5082,32,0,7,70,18,1,2,0,4,2,0,24,7634,0,110,76,442,40,13,14,922,6145,0,1963,2247,312,22,5,3213,0,1.7626914989486333,0.0,2.569237708615246,0.0,9.636047410461222,40,28,168,21,4,4,336,1828,0,69,77,49,100,177,218,259,204,390,282,227,122,134,60,52,4,2404,25,2299,130,2250,179,360,2069,2198,231,919,1510,1361,1068,588,1841,2322,107,2237,192,1619,618,1244,1185,1940,489,1373,1056,659,1770,546,1883,29,2400,388,1425,540,76,1,1574,855,0,3,21,5,1,2,0,0,0,0,9,2388,0,1.5736625514403293,1.620576131687243,1.0,1.043103448275862,1.043103448275862,48.73281185673117 +PA130102,90102,Veraguas,Atalaya,El Barrito,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,115,9,331,1,1,0,0,4,4,327,0,0,1,0,0,13,0,0,51,17,258,2,11,0,2,318,18,0,0,0,5,341,0,61,19,1,22,20,0,0,13,321,7,0,0,330,7,0,4,0,0,0,340,0,1,0,0,0,0,61,273,0,7,0,0,0,329,5,0,0,0,0,1,0,0,6,0,0,464,5.296407185628743,11.320359281437126,5.338323353293413,12.5,1.0117302052785924,3.357771260997068,2.19941348973607,345,196,388,13,67,8,8,7,2,21,1,1,5,1,37,5,9,6,5,14,1,792,217,0,124,885,0,283,726,0,899,110,0,245,764,0,221,24,700,64,0,64,12,18,0,25,24,61,33,39,236,0,0,0,29,46,66,14,34,195,1,4,5,7,14,38,10,28,3,2,1,0,0,0,0,0,407,52,438,0,3,13,25,18,136,227,44,13,165,15,87,20,24,0,141,3,1,557,506,58,172,21,183,17,0,1,4,2,93,4,372,1,0,0,589,225,0,3,9,67,3,1,0,0,4,4,19,8,25,54,115,83,27,120,568,118,53,48,69,58,88,15,32,10,2,0,0,1,0,1,15.0,7.0,21.0,11.0,23.0,21.0,12.0,18.0,15.0,23.0,17.0,17.0,15.0,13.0,5.0,7.0,15.0,16.0,8.0,10.0,10.0,22.0,13.0,13.0,17.0,16.0,15.0,10.0,23.0,17.0,23.0,17.0,14.0,15.0,14.0,14.0,17.0,14.0,14.0,15.0,19.0,16.0,14.0,11.0,22.0,10.0,19.0,7.0,10.0,19.0,8.0,12.0,11.0,11.0,15.0,14.0,10.0,18.0,10.0,12.0,13.0,11.0,7.0,6.0,9.0,13.0,6.0,11.0,8.0,7.0,10.0,10.0,4.0,10.0,8.0,4.0,8.0,8.0,7.0,2.0,6.0,2.0,5.0,1.0,2.0,0.0,3.0,3.0,3.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,233,683,147,0,77,89,67,56,75,81,83,74,82,65,57,64,46,45,42,29,16,12,2,1,0,0,1061,1,0,1,0,1061,1,0,1,0,309,9,11,162,39,1,299,233,0,592,470,1,0,0,31,11,0,0,0,0,0,0,2,1019,0,1,0,93,0,0,0,148,821,0,133,238,12,4,2,674,0,2.386634844868735,0.0,3.1933333333333334,0.0,7.391345249294449,0,0,43,0,0,0,42,260,0,44,31,12,30,45,44,50,14,38,19,10,3,4,1,0,0,331,14,296,49,289,56,41,304,276,69,35,310,207,138,3,342,289,56,281,64,92,189,62,283,95,250,106,239,170,175,146,199,8,337,68,192,81,4,0,243,102,0,0,4,2,0,0,0,0,0,0,0,339,0,1.6144927536231883,1.4666666666666666,0.0,1.08,1.08,54.32463768115942 +PA130104,90103,Veraguas,Atalaya,La Montañuela,434,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,162,5,297,10,0,0,0,4,1,279,0,4,9,0,16,4,0,0,0,0,278,11,23,0,0,284,25,0,0,0,3,312,0,47,24,1,47,5,0,1,1,303,7,0,0,288,1,0,5,0,18,0,312,0,0,0,0,0,0,6,300,1,5,0,0,0,301,8,0,0,1,0,0,0,1,1,0,0,436,6.990291262135922,20.46925566343042,7.0,23.77022653721683,1.0,3.2371794871794872,2.227564102564102,312,164,316,15,36,13,9,2,4,5,2,0,2,1,30,9,7,7,8,7,3,541,307,0,49,799,0,170,678,0,730,118,0,246,602,0,225,21,523,79,0,81,11,7,0,16,29,38,30,35,260,0,0,0,15,47,33,17,40,132,1,0,2,9,10,12,3,12,6,0,2,0,0,0,0,0,306,8,451,0,0,6,0,16,166,176,83,10,94,14,7,6,23,0,165,0,0,442,439,47,59,6,191,0,0,6,0,20,91,9,137,4,0,0,576,149,0,0,7,29,2,2,0,0,0,5,18,5,4,32,161,20,14,55,371,190,31,103,39,54,30,30,27,2,0,0,0,0,0,4,6.0,6.0,12.0,9.0,15.0,12.0,16.0,13.0,12.0,15.0,17.0,21.0,10.0,22.0,15.0,11.0,18.0,21.0,17.0,15.0,15.0,9.0,12.0,10.0,10.0,7.0,12.0,8.0,9.0,8.0,10.0,12.0,11.0,14.0,12.0,12.0,7.0,8.0,7.0,11.0,11.0,20.0,14.0,11.0,9.0,16.0,14.0,9.0,9.0,11.0,14.0,8.0,7.0,7.0,14.0,14.0,12.0,11.0,11.0,12.0,9.0,8.0,13.0,6.0,8.0,4.0,7.0,4.0,7.0,3.0,1.0,9.0,5.0,7.0,5.0,6.0,8.0,6.0,6.0,6.0,3.0,6.0,3.0,1.0,5.0,4.0,0.0,2.0,0.0,0.0,0.0,2.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,201,564,116,0,48,68,85,82,56,44,59,45,65,59,50,60,44,25,27,32,18,6,6,1,1,0,881,0,0,0,0,881,0,0,0,0,269,5,28,89,54,2,233,201,0,547,334,0,0,2,11,1,0,0,0,0,0,0,0,867,0,5,2,20,2,0,0,14,838,0,85,185,11,5,0,595,0,2.445040214477212,0.0,3.339694656488549,0.0,6.745743473325766,0,1,7,1,0,0,7,296,0,15,30,14,52,46,48,30,20,39,6,10,2,0,0,0,0,296,16,248,64,237,75,21,291,247,65,15,297,202,110,2,310,242,70,236,76,40,196,41,271,70,242,95,217,182,130,168,144,1,311,75,181,53,3,0,195,117,0,0,4,0,0,0,0,0,0,0,0,308,0,1.4166666666666667,1.4070512820512822,0.0,1.0,1.0,52.86858974358975 +PA130103,90104,Veraguas,Atalaya,La Carrillo,346,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,115,132,4,245,3,1,1,0,2,0,225,0,0,11,0,6,10,0,0,0,32,196,6,13,0,5,217,34,0,0,0,1,252,0,37,13,0,26,19,0,0,2,240,10,0,0,241,4,0,7,0,0,0,250,1,1,0,0,0,0,40,195,0,17,0,0,0,228,9,0,0,4,0,1,0,0,10,0,0,347,6.928270042194093,11.375527426160335,6.945147679324895,12.738396624472571,1.003968253968254,3.2063492063492065,2.123015873015873,253,128,232,14,23,14,10,1,1,7,1,1,0,1,26,10,6,4,4,38,1,456,195,0,55,596,0,119,532,0,572,79,0,124,527,0,108,16,475,52,0,53,3,6,1,15,29,41,35,26,178,0,0,0,12,35,47,18,14,82,1,2,3,4,11,12,5,13,1,2,2,0,0,0,0,0,228,63,309,0,5,10,39,19,82,154,49,5,65,8,17,9,10,0,174,0,0,376,310,37,50,9,175,4,0,8,0,4,85,5,236,11,0,0,462,99,0,3,4,31,0,1,0,0,0,6,14,7,2,24,166,26,8,38,384,113,29,40,28,31,18,8,11,11,1,1,0,0,0,11,10.0,7.0,12.0,6.0,8.0,11.0,12.0,3.0,11.0,6.0,22.0,7.0,4.0,9.0,10.0,3.0,7.0,8.0,8.0,2.0,4.0,10.0,8.0,13.0,6.0,10.0,10.0,11.0,5.0,7.0,9.0,7.0,11.0,6.0,5.0,9.0,8.0,8.0,9.0,7.0,7.0,13.0,12.0,11.0,8.0,8.0,10.0,2.0,5.0,7.0,9.0,5.0,14.0,14.0,2.0,11.0,9.0,5.0,14.0,4.0,19.0,13.0,8.0,13.0,4.0,5.0,9.0,7.0,8.0,9.0,11.0,8.0,6.0,8.0,10.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,138,418,130,0,43,43,52,28,41,43,38,41,51,32,44,43,57,38,43,19,14,11,1,4,0,0,686,0,0,0,0,686,0,0,0,0,215,1,6,76,40,7,203,138,0,458,228,0,0,0,14,10,0,0,0,0,0,0,0,662,0,0,0,37,0,0,0,130,519,0,57,128,16,2,1,482,0,2.562015503875969,0.0,3.3403141361256545,0.0,6.629737609329446,0,0,20,0,0,0,48,185,0,53,37,18,29,24,29,22,12,9,8,5,1,1,0,1,4,240,13,189,64,176,77,19,234,181,72,12,241,158,95,11,242,183,70,174,79,25,149,23,230,27,226,58,195,186,67,151,102,2,251,69,141,42,1,0,204,49,0,0,1,2,0,0,0,0,0,0,0,250,0,1.4861660079051384,1.225296442687747,0.0,1.125,1.125,56.20948616600791 +PA130105,90105,Veraguas,Atalaya,San Antonio,2632,7,45,5,0,1,0,1,0,0,0,0,0,0,0,973,1117,50,7,2113,27,1,0,0,5,1,2123,0,0,4,0,4,16,0,0,64,1921,118,7,26,0,11,2120,11,8,0,0,8,2147,0,182,50,152,153,5,0,1154,239,720,32,1,1,2126,7,0,10,2,2,0,1181,46,918,0,0,2,0,1667,465,0,15,0,0,1917,209,5,0,0,0,0,0,0,1,15,0,1301,1390,6.702956358517128,19.6569685593618,6.898639136555608,21.82027217268888,1.0102468560782487,3.566837447601304,2.344666977177457,2169,1358,2690,207,199,87,104,67,28,61,28,26,74,17,80,34,26,47,35,7,16,6029,578,0,3036,3571,0,5649,958,0,6140,467,0,2425,4182,0,2032,393,3976,206,0,234,106,131,6,143,187,185,183,207,560,0,1,7,148,226,392,164,233,1594,6,102,133,165,283,492,295,205,56,14,141,0,0,0,8,0,3051,169,2556,0,6,48,19,175,1397,833,99,52,2556,72,171,106,192,9,50,5,41,3489,3626,1015,1432,110,509,89,0,6,41,17,117,21,2053,3,0,0,2275,2075,8,134,167,916,53,141,7,0,41,146,554,254,162,898,31,410,263,461,3524,284,170,189,310,439,879,361,500,294,96,22,26,8,10,3,116.0,130.0,119.0,143.0,136.0,139.0,133.0,143.0,150.0,130.0,143.0,153.0,119.0,116.0,123.0,109.0,115.0,103.0,103.0,109.0,100.0,115.0,111.0,105.0,113.0,129.0,142.0,133.0,140.0,143.0,150.0,136.0,146.0,142.0,147.0,137.0,155.0,137.0,137.0,92.0,134.0,92.0,112.0,95.0,104.0,90.0,81.0,76.0,77.0,58.0,79.0,52.0,64.0,71.0,50.0,42.0,51.0,39.0,57.0,51.0,39.0,35.0,30.0,23.0,23.0,25.0,31.0,33.0,14.0,17.0,21.0,11.0,12.0,16.0,17.0,22.0,10.0,16.0,7.0,12.0,5.0,13.0,12.0,5.0,9.0,3.0,4.0,3.0,6.0,6.0,2.0,6.0,2.0,5.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1993,4774,348,0,644,695,654,539,544,687,721,658,537,382,316,240,150,120,77,67,44,22,17,1,0,0,7007,52,45,11,0,7008,54,42,11,0,1996,63,198,1031,123,31,1680,1993,0,1959,5114,42,0,5,261,119,0,5,0,5,0,2,44,6674,0,121,159,503,29,8,7,815,5473,0,2156,2271,167,25,3,2493,0,1.6653157716987503,0.0,2.5,0.0,9.369782150386508,43,56,186,16,4,5,320,1539,0,53,41,28,42,107,183,331,204,466,278,175,101,103,31,26,0,2147,22,2079,90,2045,124,309,1860,2016,153,783,1386,1215,954,398,1771,2112,57,2033,136,1321,712,1113,1056,1875,294,1193,976,327,1842,322,1847,22,2147,302,1430,371,66,2,1437,732,0,4,61,24,0,1,0,0,0,0,11,2068,0,1.607093505297098,1.6701980654076465,1.0,1.0597014925373134,1.0597014925373134,43.542646380820656 +PA130202,90201,Veraguas,Calobre,Calobre,1230,3,15,10,0,0,0,0,22,0,0,0,0,0,0,3,580,249,41,801,31,7,0,0,32,2,714,0,6,52,6,2,73,0,20,213,86,508,38,24,0,4,762,93,2,0,0,16,873,0,220,67,15,40,43,0,3,25,796,44,5,0,823,10,3,31,5,0,1,870,1,1,0,0,1,0,167,664,0,42,0,0,254,565,17,9,0,12,0,2,0,2,9,3,0,1280,6.7368421052631575,16.965311004784688,6.867224880382775,19.92344497607656,1.0080183276059564,3.583046964490264,2.4513172966781216,880,472,944,74,168,30,39,24,9,31,7,7,189,3,30,8,11,23,18,6,9,1871,838,0,395,2314,0,904,1805,0,2357,352,0,702,2007,0,652,50,1799,208,0,211,25,46,8,117,109,170,105,123,550,0,2,4,75,139,229,75,88,368,2,6,20,31,40,63,58,18,15,0,12,0,0,0,0,0,1007,55,1364,0,2,15,12,169,404,587,77,127,401,47,122,20,79,1,381,1,1,1547,1330,154,520,22,322,22,0,12,1,24,218,20,769,42,0,0,1789,456,4,11,28,120,9,9,0,0,1,31,60,39,35,119,151,89,63,474,1444,328,144,186,266,159,126,65,55,33,19,4,3,3,0,42,34.0,30.0,53.0,51.0,49.0,47.0,45.0,45.0,47.0,50.0,45.0,45.0,45.0,41.0,56.0,39.0,55.0,54.0,59.0,44.0,34.0,39.0,37.0,49.0,38.0,40.0,43.0,42.0,36.0,36.0,28.0,26.0,38.0,20.0,30.0,39.0,44.0,30.0,37.0,37.0,42.0,29.0,41.0,27.0,29.0,22.0,30.0,30.0,25.0,22.0,29.0,35.0,26.0,32.0,27.0,33.0,33.0,25.0,31.0,35.0,28.0,30.0,30.0,27.0,22.0,35.0,22.0,21.0,31.0,27.0,25.0,29.0,16.0,24.0,28.0,27.0,20.0,19.0,14.0,22.0,15.0,16.0,12.0,15.0,11.0,8.0,8.0,2.0,10.0,6.0,0.0,2.0,2.0,3.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,683,1714,480,0,217,234,232,251,197,197,142,187,168,129,149,157,137,136,122,102,69,34,9,6,2,0,2836,15,10,16,0,2838,15,8,16,0,739,16,260,408,108,17,646,683,0,1481,1384,12,0,14,100,143,0,0,0,2,0,3,6,2609,0,13,87,186,9,2,0,293,2287,0,326,636,163,20,4,1728,0,2.605924596050269,0.0,3.532051282051282,0.0,6.712200208550573,4,22,70,4,1,0,103,676,0,64,91,55,90,156,109,90,49,67,45,29,11,10,8,5,1,835,45,661,219,647,233,101,779,669,211,85,795,386,494,31,849,730,150,622,258,280,342,136,744,274,606,243,637,463,417,487,393,11,869,201,433,230,16,22,651,229,0,2,10,5,0,0,0,0,0,1,2,860,0,1.7150776053215078,1.4745011086474502,3.0,1.0,1.0,56.84659090909091 +PA130201,90202,Veraguas,Calobre,Barnizal,174,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,97,8,114,4,3,0,0,5,0,0,0,2,85,0,1,38,0,0,0,0,109,12,4,0,1,77,44,0,1,0,4,126,0,15,4,1,28,4,0,0,0,126,0,0,0,98,0,0,25,1,2,0,126,0,0,0,0,0,0,5,103,0,18,0,0,0,115,0,0,0,6,0,2,0,1,1,1,0,178,6.539130434782609,21.860869565217392,6.904347826086957,23.669565217391305,1.0,2.7857142857142856,1.5476190476190477,126,67,118,14,35,3,2,0,0,2,0,1,2,0,2,3,0,1,5,2,3,267,78,0,28,317,0,69,276,0,271,74,0,65,280,0,65,0,218,62,0,66,2,0,0,10,15,25,20,23,63,0,0,0,9,22,34,11,9,21,0,0,1,2,1,5,3,0,2,0,1,0,0,0,0,0,139,3,166,0,1,1,1,2,47,94,11,12,22,7,7,7,1,0,97,0,0,201,169,13,50,8,67,0,0,3,0,14,60,9,17,0,0,0,272,27,0,0,1,6,1,1,0,0,0,5,3,4,3,9,58,1,1,58,228,66,23,16,12,11,6,1,3,2,2,0,0,0,0,0,2.0,9.0,6.0,8.0,7.0,11.0,4.0,4.0,4.0,7.0,5.0,5.0,3.0,7.0,8.0,4.0,9.0,6.0,9.0,5.0,3.0,4.0,3.0,7.0,4.0,3.0,5.0,4.0,1.0,5.0,1.0,4.0,7.0,3.0,4.0,2.0,1.0,4.0,5.0,4.0,3.0,10.0,5.0,6.0,4.0,6.0,4.0,2.0,7.0,3.0,5.0,4.0,2.0,1.0,5.0,4.0,1.0,4.0,3.0,6.0,2.0,3.0,3.0,4.0,4.0,1.0,4.0,4.0,1.0,3.0,4.0,3.0,6.0,0.0,6.0,0.0,3.0,4.0,2.0,2.0,2.0,5.0,3.0,5.0,4.0,1.0,5.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,90,208,72,0,32,30,28,33,21,18,19,16,28,22,17,18,16,13,19,11,19,9,1,0,0,0,370,0,0,0,0,370,0,0,0,0,125,0,2,24,7,0,122,90,0,207,163,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,149,1,0,0,68,152,0,19,73,4,0,0,274,0,3.291970802919708,0.0,4.347368421052631,0.0,5.2405405405405405,0,0,52,0,0,0,20,54,0,16,12,17,18,27,13,13,2,5,0,1,0,1,1,0,0,108,18,7,119,32,94,17,109,1,125,1,125,61,65,2,124,84,42,39,87,13,26,3,123,22,104,5,121,101,25,93,33,2,124,43,57,24,2,0,105,21,0,0,0,0,0,0,0,0,0,0,0,126,0,1.5952380952380951,1.3412698412698412,0.0,1.1666666666666667,1.1666666666666667,57.63492063492063 +PA130203,90203,Veraguas,Calobre,Chitra,687,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,195,23,416,18,3,0,0,18,2,1,56,25,232,3,13,125,0,2,0,12,273,82,86,3,1,247,198,0,0,0,12,457,0,148,54,0,21,29,0,0,0,434,22,1,0,362,25,39,29,1,1,0,441,0,1,0,0,13,2,68,322,2,64,1,0,0,385,0,5,0,64,0,1,0,1,1,0,0,709,6.371428571428571,21.145454545454545,6.828571428571428,23.26753246753247,1.0043763676148796,3.2844638949671774,2.190371991247265,459,230,404,25,82,10,19,9,2,25,4,3,5,0,22,11,7,7,17,0,11,485,724,0,49,1160,0,335,874,0,1012,197,0,226,983,0,225,1,835,148,0,151,2,2,1,49,60,84,93,80,302,0,1,1,38,56,118,18,41,85,0,0,1,4,2,4,10,4,0,0,2,0,0,0,0,0,531,8,535,0,1,3,2,22,132,266,30,85,56,8,41,9,22,2,397,0,0,719,558,39,92,10,338,1,0,55,0,25,190,17,262,3,0,0,961,92,1,0,2,16,0,2,0,0,0,5,12,8,5,35,331,29,10,104,819,179,83,64,47,32,23,10,6,5,3,2,1,0,0,3,20.0,8.0,18.0,22.0,23.0,24.0,18.0,32.0,20.0,18.0,26.0,23.0,11.0,17.0,12.0,19.0,17.0,17.0,19.0,11.0,17.0,6.0,16.0,11.0,20.0,13.0,13.0,12.0,17.0,9.0,20.0,12.0,10.0,7.0,13.0,14.0,11.0,12.0,8.0,11.0,13.0,12.0,8.0,12.0,15.0,7.0,20.0,15.0,12.0,11.0,18.0,10.0,11.0,10.0,16.0,12.0,20.0,11.0,13.0,16.0,15.0,20.0,13.0,9.0,17.0,23.0,19.0,13.0,23.0,8.0,14.0,20.0,16.0,13.0,14.0,14.0,14.0,11.0,13.0,8.0,13.0,16.0,11.0,6.0,6.0,5.0,5.0,6.0,4.0,2.0,5.0,1.0,2.0,0.0,2.0,0.0,2.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,671,314,0,91,112,89,83,70,64,62,56,60,65,65,72,74,86,77,60,52,22,10,6,1,0,1273,1,1,2,0,1273,1,1,2,0,395,4,102,178,58,2,246,292,0,738,537,2,0,1,2,0,0,0,0,0,0,0,4,1270,0,4,6,434,10,0,0,420,403,0,44,207,32,5,0,989,0,3.741865509761389,0.0,4.686440677966102,0.0,5.398590446358653,1,5,141,1,0,0,168,143,0,102,48,55,57,90,50,19,13,12,5,2,3,2,1,0,0,399,60,59,400,173,286,34,425,30,429,0,459,213,246,6,453,170,289,135,324,87,48,11,448,34,425,25,434,375,84,274,185,18,441,155,199,102,3,0,357,102,0,0,1,0,0,0,0,0,0,0,2,456,0,1.5664488017429194,1.2156862745098038,0.0,1.0303030303030305,1.0303030303030305,60.93464052287582 +PA130204,90204,Veraguas,Calobre,El Cocla,311,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,117,9,198,0,3,0,0,6,0,48,0,1,100,0,0,58,0,0,0,0,191,10,6,0,0,115,89,0,0,0,3,207,0,62,15,0,14,15,0,0,0,195,12,0,0,176,3,2,25,0,1,0,207,0,0,0,0,0,0,12,171,0,23,1,0,0,202,0,0,0,0,0,4,0,0,1,0,0,313,6.603960396039604,23.207920792079207,6.995049504950496,24.0,1.0,3.2705314009661834,2.0144927536231885,207,94,169,11,39,9,8,3,1,7,0,0,1,0,16,10,3,4,4,0,3,313,211,0,37,487,0,137,387,0,448,76,0,100,424,0,89,11,358,66,0,66,3,4,2,4,22,36,29,24,160,0,0,0,14,26,33,7,17,52,0,0,11,5,4,3,1,0,0,0,0,0,0,0,1,0,226,16,247,0,1,6,4,13,68,122,9,35,32,6,10,2,2,0,186,0,0,310,239,19,72,2,128,0,0,17,0,14,82,4,149,0,0,0,412,69,0,1,3,3,0,0,1,0,0,8,3,3,1,11,136,10,5,65,305,106,28,47,27,11,12,3,6,1,1,0,1,0,1,0,4.0,5.0,8.0,8.0,4.0,7.0,8.0,4.0,7.0,5.0,5.0,8.0,9.0,7.0,7.0,9.0,7.0,6.0,10.0,12.0,4.0,11.0,7.0,9.0,5.0,6.0,9.0,3.0,6.0,3.0,8.0,5.0,3.0,1.0,4.0,7.0,5.0,5.0,6.0,6.0,4.0,7.0,7.0,4.0,5.0,12.0,3.0,11.0,2.0,5.0,9.0,5.0,9.0,6.0,9.0,7.0,6.0,5.0,5.0,7.0,14.0,7.0,13.0,4.0,9.0,10.0,8.0,8.0,4.0,5.0,6.0,5.0,3.0,4.0,3.0,7.0,3.0,6.0,6.0,3.0,6.0,4.0,7.0,4.0,3.0,3.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,96,332,121,0,29,31,36,44,36,27,21,29,27,33,38,30,47,35,21,25,24,10,4,2,0,0,547,0,0,2,0,547,0,0,2,0,182,1,65,39,29,0,137,96,0,345,204,0,0,4,5,0,0,0,0,4,0,0,8,528,0,1,30,130,3,0,0,254,131,0,26,105,13,4,0,401,0,3.392156862745098,0.0,4.298013245033113,0.0,5.821493624772313,1,10,52,0,0,0,94,50,0,31,31,22,37,39,18,9,6,6,4,2,0,0,1,1,0,184,23,43,164,61,146,15,192,49,158,2,205,115,92,0,207,132,75,86,121,43,43,10,197,30,177,22,185,170,37,154,53,0,207,70,85,51,1,0,169,38,0,1,1,0,0,0,0,0,0,0,0,205,0,1.497584541062802,1.1545893719806763,1.0,1.0,1.0,59.56038647342995 +PA130205,90205,Veraguas,Calobre,El Potrero,323,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,169,42,3,211,0,1,0,0,2,0,132,1,3,14,1,1,62,0,0,0,4,198,7,4,0,1,106,106,1,0,0,1,214,0,72,14,0,22,4,0,0,0,214,0,0,0,197,1,0,15,1,0,0,214,0,0,0,0,0,0,6,199,0,9,0,0,1,180,1,2,0,26,0,2,0,0,2,0,0,326,6.9010989010989015,18.923076923076923,6.972527472527473,22.906593406593405,1.0046728971962615,3.294392523364486,2.1448598130841123,215,103,177,25,37,12,4,4,1,9,0,3,1,0,7,7,1,3,8,3,3,384,179,0,30,533,0,264,299,0,476,87,0,109,454,0,108,1,386,68,0,69,0,6,0,18,20,28,32,37,117,1,0,1,22,20,42,21,22,80,0,0,6,3,7,6,5,0,0,0,0,0,0,0,0,0,243,2,269,0,0,1,1,20,75,127,18,29,40,3,8,3,5,0,184,1,0,323,268,15,40,3,146,1,0,39,0,5,80,4,39,0,0,0,406,90,1,3,4,10,0,0,0,0,0,7,2,2,4,14,171,10,5,30,398,59,48,24,23,10,12,5,7,4,1,0,0,0,0,0,4.0,4.0,12.0,8.0,9.0,7.0,10.0,8.0,7.0,8.0,8.0,11.0,6.0,9.0,6.0,8.0,6.0,15.0,13.0,11.0,14.0,11.0,8.0,9.0,8.0,4.0,6.0,2.0,9.0,5.0,5.0,3.0,8.0,4.0,7.0,6.0,2.0,5.0,3.0,9.0,5.0,6.0,3.0,9.0,10.0,9.0,7.0,9.0,8.0,4.0,8.0,15.0,9.0,5.0,10.0,4.0,9.0,5.0,7.0,5.0,4.0,6.0,3.0,7.0,5.0,6.0,10.0,5.0,3.0,4.0,4.0,3.0,4.0,9.0,7.0,6.0,5.0,2.0,6.0,8.0,5.0,7.0,5.0,3.0,1.0,4.0,5.0,2.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,117,353,121,0,37,40,40,53,50,26,27,25,33,37,47,30,25,28,27,27,21,15,0,2,1,0,589,0,2,0,0,589,0,2,0,0,166,2,15,74,27,7,184,116,0,418,173,0,0,2,0,0,0,0,0,0,0,0,4,585,0,1,8,54,1,0,0,68,459,0,26,112,18,2,0,433,0,3.5042735042735043,0.0,4.297142857142857,0.0,6.231810490693739,0,2,21,0,0,0,30,162,0,36,20,37,31,39,17,10,12,7,2,3,0,1,0,0,0,202,13,119,96,127,88,14,201,120,95,9,206,156,59,0,215,133,82,117,98,107,10,9,206,79,136,19,196,150,65,162,53,3,212,70,103,41,1,0,155,60,0,0,0,0,0,0,0,0,0,0,0,215,0,1.5023255813953489,1.2465116279069768,0.0,1.0,1.0,57.223255813953486 +PA130206,90206,Veraguas,Calobre,La Laguna,437,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,20,235,5,8,0,0,12,0,140,1,1,50,1,0,67,0,0,0,0,229,23,8,0,0,154,102,0,0,0,4,260,0,67,32,1,17,61,0,0,1,249,10,0,0,238,2,2,18,0,0,0,259,0,1,0,0,0,0,8,225,0,27,0,0,14,223,0,6,3,7,0,0,0,1,5,1,0,438,6.789029535864979,17.70464135021097,6.962025316455696,20.35864978902953,1.0,3.123076923076923,2.0307692307692307,260,124,241,4,41,6,12,4,3,10,1,1,1,0,4,0,2,8,9,0,2,401,272,0,41,632,0,168,505,0,573,100,0,142,531,0,139,3,449,82,0,83,1,1,2,24,25,48,31,32,183,0,0,1,16,34,61,15,18,71,0,0,4,7,5,5,5,1,0,0,0,0,0,0,0,0,245,12,368,0,0,4,2,23,102,144,12,87,48,3,19,6,9,0,169,1,0,391,317,22,73,6,149,2,0,1,2,19,112,16,44,0,0,0,526,87,1,0,2,9,0,0,0,0,2,7,4,6,3,15,130,15,3,72,372,115,74,42,31,25,24,16,6,1,2,0,0,0,0,0,9.0,10.0,7.0,9.0,6.0,3.0,9.0,13.0,9.0,8.0,14.0,11.0,7.0,10.0,10.0,18.0,10.0,7.0,10.0,9.0,12.0,12.0,9.0,10.0,13.0,2.0,8.0,5.0,4.0,8.0,6.0,5.0,10.0,5.0,7.0,6.0,4.0,5.0,9.0,9.0,9.0,7.0,7.0,9.0,8.0,7.0,5.0,14.0,13.0,9.0,12.0,6.0,7.0,8.0,6.0,4.0,7.0,12.0,10.0,6.0,12.0,11.0,5.0,7.0,14.0,5.0,7.0,9.0,9.0,8.0,6.0,5.0,12.0,8.0,17.0,6.0,3.0,8.0,4.0,6.0,8.0,2.0,6.0,1.0,2.0,4.0,2.0,3.0,2.0,1.0,3.0,1.0,4.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,135,418,155,0,41,42,52,54,56,27,33,33,40,48,39,39,49,38,48,27,19,12,9,2,0,0,705,0,3,0,0,706,1,1,0,0,246,1,81,45,32,2,166,135,0,382,323,3,0,0,6,0,0,0,0,0,0,0,8,694,0,0,3,122,1,0,0,24,558,0,47,152,21,0,3,485,0,3.298892988929889,0.0,4.455497382198953,0.0,5.861581920903955,0,2,38,1,0,0,9,210,0,24,34,33,30,53,30,20,12,15,4,3,1,0,1,0,0,228,32,122,138,123,137,15,245,99,161,4,256,161,99,5,255,157,103,127,133,18,109,14,246,82,178,32,228,192,68,128,132,0,260,88,118,53,1,0,199,61,0,0,3,0,0,0,0,0,0,0,1,256,0,1.5038461538461538,1.2192307692307691,1.0,1.1176470588235294,1.1176470588235294,59.40769230769231 +PA130207,90207,Veraguas,Calobre,La Raya de Calobre,270,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,49,15,153,3,4,0,0,11,0,149,0,0,7,0,0,15,0,0,0,0,170,0,1,0,0,142,25,0,0,0,4,171,0,71,19,0,7,15,0,0,0,161,10,0,0,159,2,1,9,0,0,0,171,0,0,0,0,0,0,18,139,0,14,0,0,0,162,0,0,3,5,0,0,0,0,1,0,0,283,7.0,15.37037037037037,7.0,23.703703703703702,1.0116959064327486,3.3157894736842106,2.216374269005848,173,94,166,20,17,2,4,3,1,3,2,0,13,0,3,1,0,0,0,1,1,365,105,0,24,446,0,255,215,0,413,57,0,95,375,0,85,10,342,33,0,34,5,5,0,9,22,37,24,21,93,0,0,0,14,28,42,11,22,69,0,4,5,5,4,10,5,1,0,0,0,0,0,0,0,0,213,11,200,0,0,6,5,10,59,114,2,15,68,2,18,4,13,0,116,0,0,268,230,23,88,4,91,4,0,10,1,3,56,4,120,0,0,0,321,88,0,1,2,12,0,0,0,0,1,6,5,4,3,14,78,26,22,65,226,52,29,50,48,33,31,15,10,2,1,0,1,0,0,0,8.0,8.0,8.0,4.0,10.0,11.0,9.0,4.0,7.0,5.0,4.0,6.0,4.0,6.0,8.0,8.0,8.0,10.0,6.0,11.0,11.0,6.0,7.0,10.0,10.0,15.0,5.0,8.0,7.0,5.0,5.0,2.0,4.0,5.0,3.0,2.0,3.0,7.0,4.0,6.0,8.0,4.0,4.0,5.0,2.0,7.0,4.0,4.0,9.0,7.0,7.0,8.0,10.0,3.0,5.0,4.0,7.0,6.0,7.0,4.0,5.0,2.0,8.0,4.0,9.0,0.0,4.0,0.0,3.0,4.0,3.0,2.0,5.0,3.0,6.0,5.0,3.0,4.0,2.0,6.0,7.0,3.0,7.0,2.0,5.0,3.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,102,311,85,0,38,36,28,43,44,40,19,22,23,31,33,28,28,11,19,20,24,7,3,1,0,0,492,5,0,1,0,492,5,0,1,0,161,0,27,53,21,1,133,102,0,332,162,4,0,0,16,21,0,0,0,0,0,0,0,461,0,0,0,3,0,0,0,6,489,0,53,111,14,1,0,319,0,2.7777777777777777,0.0,3.793893129770992,0.0,6.660642570281125,0,0,2,0,0,0,1,170,0,6,10,6,18,35,30,22,18,12,11,1,2,1,1,0,0,162,11,129,44,127,46,18,155,116,57,6,167,53,120,3,170,142,31,117,56,35,82,10,163,85,88,37,136,124,49,100,73,1,172,51,91,22,9,0,145,28,0,0,5,4,0,0,0,0,0,0,0,164,0,1.5491329479768785,1.329479768786127,0.0,1.0,1.0,57.44508670520232 +PA130208,90208,Veraguas,Calobre,La Tetilla,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,49,0,137,3,0,0,0,0,0,120,2,0,14,0,0,4,0,0,2,0,130,4,4,0,0,117,21,0,0,0,2,140,0,23,14,0,11,30,0,0,1,139,0,0,0,137,0,0,2,0,1,0,140,0,0,0,0,0,0,15,124,0,1,0,0,1,121,1,0,0,15,0,2,0,0,0,0,0,218,6.723577235772358,17.83739837398374,6.926829268292683,22.3739837398374,1.0,3.3714285714285714,2.357142857142857,140,83,150,4,33,5,1,2,0,8,0,0,0,0,7,4,1,2,4,0,0,295,108,0,45,358,0,177,226,0,324,79,0,101,302,0,96,5,279,23,0,23,2,9,0,18,22,34,18,21,71,0,0,0,9,21,26,15,13,61,0,0,11,5,3,8,9,2,0,0,2,0,0,0,0,0,164,1,195,0,0,1,0,11,68,108,6,2,42,4,10,5,3,0,100,0,0,220,206,17,30,5,104,0,0,8,0,0,45,3,1,0,0,0,259,85,0,0,1,13,0,2,0,0,0,4,5,10,2,12,94,11,7,20,239,52,23,42,24,14,15,9,6,1,1,0,0,0,0,0,8.0,4.0,4.0,7.0,8.0,7.0,11.0,4.0,10.0,3.0,11.0,9.0,1.0,6.0,7.0,4.0,12.0,5.0,5.0,8.0,10.0,3.0,8.0,6.0,4.0,6.0,2.0,4.0,6.0,7.0,4.0,4.0,8.0,3.0,0.0,2.0,1.0,7.0,4.0,2.0,2.0,3.0,6.0,5.0,6.0,3.0,4.0,5.0,8.0,6.0,6.0,3.0,4.0,7.0,1.0,7.0,10.0,3.0,10.0,2.0,5.0,5.0,3.0,6.0,3.0,2.0,2.0,3.0,3.0,5.0,4.0,8.0,3.0,5.0,2.0,5.0,0.0,6.0,2.0,6.0,3.0,4.0,4.0,2.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,100,248,78,0,31,35,34,34,31,25,19,16,22,26,21,32,22,15,22,19,13,5,2,0,2,0,420,0,1,5,0,420,0,1,5,0,148,1,42,47,16,3,69,100,0,338,88,0,0,1,3,7,0,0,0,0,0,0,1,414,0,0,0,1,0,0,0,10,415,0,33,93,18,0,0,282,0,2.8926553672316384,0.0,3.696,0.0,6.741784037558685,0,0,0,0,0,0,3,137,0,8,7,12,22,37,20,10,5,11,3,5,0,0,0,0,0,129,11,114,26,100,40,23,117,118,22,3,137,75,65,3,137,111,29,107,33,107,0,16,124,72,68,39,101,95,45,97,43,3,137,33,75,32,0,0,106,34,0,1,1,1,0,0,0,0,0,0,1,136,0,1.5714285714285714,1.4714285714285715,0.0,1.0,1.0,57.15 +PA130209,90209,Veraguas,Calobre,La Yeguada,636,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,203,30,370,22,10,0,0,20,0,242,1,12,107,3,2,54,0,1,0,16,338,15,53,0,0,284,125,0,0,0,13,422,0,142,35,1,37,15,0,0,0,413,9,0,0,298,40,72,12,0,0,0,418,1,1,0,0,2,0,45,301,0,68,8,0,1,371,3,0,2,29,0,13,0,0,3,0,0,652,6.962666666666666,22.632,6.997333333333334,23.776,1.0,3.438388625592417,2.3317535545023698,422,247,518,24,141,9,12,8,3,22,2,3,2,1,12,4,1,6,9,0,7,803,514,0,60,1257,0,318,999,0,1061,256,0,331,986,0,321,10,824,162,0,164,11,15,3,42,73,81,55,64,366,0,0,0,33,45,78,41,43,158,1,3,4,1,16,9,6,3,0,2,0,0,0,0,0,0,570,20,575,0,2,12,1,28,195,303,22,27,158,10,54,24,50,0,291,2,0,749,665,30,189,26,271,9,0,64,0,33,109,11,337,4,0,0,962,183,0,0,5,15,0,0,0,0,0,8,6,10,8,46,240,37,27,208,918,150,70,70,92,43,36,16,9,3,2,0,1,0,0,4,24.0,20.0,29.0,24.0,31.0,27.0,22.0,27.0,23.0,22.0,22.0,33.0,31.0,23.0,18.0,23.0,26.0,20.0,23.0,19.0,17.0,21.0,29.0,25.0,24.0,24.0,17.0,21.0,23.0,18.0,14.0,13.0,26.0,15.0,15.0,15.0,12.0,11.0,12.0,19.0,16.0,18.0,13.0,20.0,19.0,13.0,17.0,17.0,14.0,12.0,12.0,20.0,13.0,18.0,12.0,17.0,16.0,19.0,9.0,15.0,11.0,13.0,18.0,9.0,14.0,6.0,8.0,9.0,9.0,10.0,8.0,15.0,10.0,11.0,7.0,7.0,7.0,4.0,9.0,2.0,9.0,10.0,4.0,3.0,3.0,4.0,6.0,1.0,3.0,6.0,2.0,0.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,376,857,181,0,128,121,127,111,116,103,83,69,86,73,75,76,65,42,51,29,29,20,10,0,0,0,1410,0,1,3,0,1410,0,1,3,0,490,6,117,96,44,2,283,376,0,950,464,0,0,0,1,3,0,0,0,5,1,0,131,1273,0,9,62,212,14,20,6,286,805,0,58,136,37,3,0,1180,0,3.0867158671586714,0.0,4.124352331606218,0.0,5.6138613861386135,4,19,68,6,7,2,84,232,0,54,40,43,55,95,47,33,20,19,6,4,4,2,0,0,0,361,61,203,219,227,195,23,399,127,295,4,418,136,286,3,419,304,118,208,214,173,35,13,409,32,390,51,371,284,138,215,207,17,405,86,215,118,3,0,305,117,0,0,0,1,0,0,0,1,0,0,47,373,0,1.7748815165876777,1.5758293838862558,1.0,1.0833333333333333,1.0833333333333333,54.09715639810427 +PA130210,90210,Veraguas,Calobre,Las Guías,794,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,214,13,546,7,3,0,0,10,0,491,7,2,19,0,6,41,0,0,38,0,482,17,26,0,3,496,60,0,0,0,10,566,0,156,25,0,35,36,0,0,6,533,27,0,0,520,7,4,33,2,0,0,565,0,0,0,0,1,0,86,438,0,42,0,0,2,546,0,3,0,1,0,5,0,4,5,0,0,818,6.908759124087592,16.416058394160583,6.91970802919708,16.666058394160583,1.007067137809187,3.374558303886926,2.351590106007067,570,293,572,33,111,11,18,13,4,25,6,14,22,2,14,4,1,6,8,0,2,1034,581,0,104,1511,0,594,1021,0,1457,158,0,437,1178,0,426,11,1064,114,0,115,12,23,1,36,61,83,58,69,419,0,0,0,54,66,117,40,61,232,1,4,9,26,21,23,37,19,13,2,11,0,0,1,1,0,507,38,902,0,2,24,8,67,280,486,29,40,291,6,38,33,34,0,136,0,1,888,806,84,245,33,169,6,0,1,1,17,186,19,411,2,0,0,1047,293,0,5,7,75,8,11,1,0,0,17,50,21,14,78,98,55,59,153,852,268,86,92,128,95,69,29,33,26,9,0,4,1,0,2,24.0,21.0,15.0,19.0,27.0,25.0,21.0,31.0,38.0,26.0,34.0,30.0,29.0,33.0,21.0,28.0,21.0,28.0,22.0,20.0,30.0,16.0,24.0,22.0,35.0,22.0,22.0,26.0,13.0,16.0,20.0,22.0,24.0,20.0,11.0,14.0,11.0,20.0,14.0,23.0,16.0,27.0,15.0,18.0,21.0,12.0,27.0,25.0,20.0,11.0,15.0,21.0,18.0,20.0,17.0,17.0,25.0,23.0,15.0,22.0,20.0,17.0,19.0,18.0,16.0,16.0,13.0,19.0,6.0,14.0,17.0,13.0,18.0,16.0,10.0,10.0,19.0,13.0,13.0,6.0,11.0,7.0,12.0,4.0,15.0,9.0,6.0,8.0,5.0,3.0,3.0,5.0,1.0,2.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,394,999,301,0,106,141,147,119,127,99,97,82,97,95,91,102,90,68,74,61,49,31,15,1,2,0,1680,3,11,0,0,1681,3,10,0,0,495,3,119,210,71,4,399,393,0,1046,641,7,0,2,79,24,0,0,0,0,0,0,6,1583,0,0,12,26,0,0,0,24,1632,0,240,503,68,4,0,879,0,2.71044776119403,0.0,3.708510638297872,0.0,7.121605667060212,0,3,15,0,0,0,9,543,0,27,72,33,73,101,79,55,33,44,18,16,4,9,3,3,0,533,37,419,151,411,159,55,515,424,146,33,537,343,227,9,561,415,155,384,186,253,131,63,507,217,353,142,428,232,338,262,308,1,569,151,283,122,14,0,420,150,0,1,17,4,0,0,0,0,0,0,1,547,0,1.5578947368421052,1.4140350877192982,1.0,1.0357142857142858,1.0357142857142858,58.098245614035086 +PA130211,90211,Veraguas,Calobre,Monjarás,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,18,9,210,3,2,0,0,7,0,150,0,3,25,0,2,41,0,1,0,2,186,12,22,0,0,164,55,0,0,0,3,222,0,77,33,1,28,10,0,1,0,216,4,1,0,211,0,1,10,0,0,0,221,1,0,0,0,0,0,29,179,0,14,0,0,0,211,7,0,1,0,0,0,0,2,1,0,0,371,6.857798165137615,23.93577981651376,7.0,24.0,1.0045045045045045,3.2522522522522523,2.0045045045045047,223,116,187,7,27,7,9,0,3,6,1,3,4,1,13,10,3,5,5,0,0,356,217,0,64,509,0,76,497,0,476,97,0,116,457,0,106,10,382,75,0,77,0,3,0,16,18,48,28,26,145,0,0,0,19,22,36,9,25,70,1,1,4,6,6,4,5,4,0,0,0,0,0,0,0,0,201,15,317,0,0,5,2,35,73,144,12,53,38,5,19,7,6,0,139,0,0,330,264,21,57,7,105,0,0,24,0,8,86,5,78,0,0,0,431,91,0,2,0,9,0,0,0,0,0,6,4,4,7,13,107,9,6,60,343,114,32,25,30,15,13,9,4,7,1,1,0,0,0,0,9.0,3.0,4.0,5.0,4.0,4.0,3.0,12.0,11.0,6.0,11.0,5.0,8.0,11.0,11.0,6.0,7.0,12.0,6.0,10.0,8.0,7.0,8.0,5.0,5.0,8.0,9.0,4.0,4.0,6.0,3.0,4.0,9.0,8.0,3.0,4.0,7.0,5.0,8.0,11.0,7.0,8.0,9.0,4.0,8.0,8.0,7.0,6.0,5.0,5.0,9.0,9.0,7.0,8.0,10.0,8.0,8.0,6.0,9.0,4.0,7.0,7.0,7.0,7.0,5.0,8.0,8.0,4.0,5.0,10.0,4.0,12.0,2.0,8.0,7.0,4.0,4.0,11.0,5.0,4.0,4.0,1.0,2.0,2.0,11.0,4.0,4.0,4.0,2.0,3.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,107,345,142,0,25,36,46,41,33,31,27,35,36,31,43,35,33,35,33,28,20,17,6,2,1,0,592,0,1,1,0,592,0,1,1,0,192,2,47,71,35,3,137,107,0,343,251,0,0,0,1,1,0,0,0,0,0,0,1,591,0,0,7,126,3,0,0,167,291,0,32,134,35,0,0,393,0,3.075949367088608,0.0,4.165680473372781,0.0,6.094276094276094,0,6,58,1,0,0,69,89,0,34,22,29,30,41,28,13,10,7,4,1,1,3,0,0,0,210,13,134,89,139,84,19,204,119,104,5,218,123,100,4,219,147,76,127,96,36,91,19,204,63,160,38,185,153,70,146,77,2,221,67,101,50,5,0,165,58,0,0,1,1,0,0,0,0,0,0,1,220,0,1.4798206278026906,1.1838565022421526,0.0,1.1111111111111112,1.1111111111111112,58.937219730941706 +PA130212,90212,Veraguas,Calobre,San José,249,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,167,22,158,16,7,0,0,13,2,0,0,4,109,1,5,77,0,0,0,1,189,4,2,0,0,73,105,0,0,0,18,196,0,30,5,0,18,7,0,0,0,193,3,0,0,169,4,2,19,1,1,0,194,1,0,0,0,0,1,14,151,0,30,1,0,0,166,0,10,2,15,0,0,0,0,3,0,0,256,6.945783132530121,23.349397590361445,6.945783132530121,23.49397590361446,1.0051020408163265,3.13265306122449,1.9948979591836733,197,96,264,8,65,7,6,3,0,12,1,4,5,0,5,3,5,2,2,0,2,339,292,0,30,601,0,212,419,0,449,182,0,148,483,0,146,2,351,132,0,138,0,4,0,37,40,37,30,32,127,0,1,0,13,17,66,10,26,43,0,0,2,0,4,2,1,1,0,0,0,0,0,0,0,0,307,1,248,0,0,1,0,2,98,124,8,16,29,0,7,11,0,0,261,0,0,380,288,9,90,13,159,0,0,37,0,23,60,5,81,0,0,0,503,48,0,0,1,4,0,0,0,0,0,2,2,3,4,7,193,3,2,92,449,79,49,38,31,8,8,2,2,2,0,0,0,0,0,0,15.0,9.0,6.0,7.0,17.0,9.0,11.0,14.0,15.0,9.0,16.0,11.0,16.0,12.0,7.0,12.0,14.0,12.0,17.0,15.0,13.0,9.0,13.0,8.0,12.0,10.0,11.0,12.0,4.0,8.0,5.0,6.0,9.0,4.0,5.0,5.0,9.0,8.0,13.0,6.0,13.0,4.0,7.0,10.0,5.0,5.0,4.0,8.0,11.0,7.0,4.0,3.0,6.0,4.0,6.0,5.0,6.0,10.0,4.0,2.0,8.0,9.0,4.0,10.0,7.0,10.0,2.0,6.0,8.0,7.0,7.0,6.0,6.0,3.0,2.0,9.0,1.0,4.0,3.0,4.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,174,402,92,0,54,58,62,70,55,45,29,41,39,35,23,27,38,33,24,21,8,4,2,0,0,0,667,0,0,1,0,667,0,0,1,0,212,1,18,34,11,1,217,174,0,472,196,0,0,0,0,0,0,0,0,0,0,0,2,666,0,1,1,235,3,0,0,107,321,0,19,80,2,0,0,567,0,3.495726495726496,0.0,4.74375,0.0,4.721556886227545,1,0,61,0,0,0,26,109,0,27,22,23,41,30,30,7,7,6,2,2,0,0,0,0,0,156,41,5,192,28,169,13,184,3,194,0,197,109,88,2,195,119,78,68,129,37,31,4,193,62,135,8,189,175,22,117,80,0,197,62,92,42,1,0,160,37,0,0,0,0,0,0,0,0,0,0,0,197,0,1.9289340101522845,1.4619289340101522,1.0,1.0909090909090908,1.0909090909090908,55.24873096446701 +PA130301,90301,Veraguas,Cañazas,Cañazas,1876,191,2,0,0,0,0,0,0,0,0,0,3,0,0,3,871,518,48,1377,15,17,0,0,30,1,930,0,3,136,7,107,251,0,6,526,58,769,13,38,0,36,1023,392,1,0,0,24,1440,0,429,77,15,55,53,0,2,19,1361,57,1,0,1117,22,161,115,0,25,0,1437,1,1,1,0,0,0,316,874,0,250,0,0,958,208,80,23,35,49,0,19,0,0,62,6,1303,769,6.207865168539326,17.68860353130016,6.711878009630818,20.30577849117175,1.0125,3.555555555555556,2.4541666666666666,1461,806,2075,80,537,46,78,57,26,122,23,16,36,4,81,46,18,39,26,2,15,3162,1863,0,727,4298,0,2444,2581,0,4266,759,0,1553,3472,0,1430,123,2958,514,0,519,60,106,21,137,193,290,212,193,882,0,0,2,158,229,395,127,215,686,2,0,70,89,122,149,81,44,16,3,22,0,0,0,2,0,1715,135,2610,0,5,59,21,172,1001,1094,187,156,812,45,215,105,137,5,514,2,3,2729,2638,374,592,107,615,35,1,109,5,77,426,56,1594,16,0,0,3166,922,8,14,66,249,11,22,2,0,5,32,144,69,73,258,480,178,108,503,3384,555,213,194,236,212,263,84,124,44,33,1,3,3,2,16,80.0,77.0,94.0,91.0,94.0,81.0,101.0,96.0,102.0,91.0,98.0,81.0,92.0,90.0,95.0,110.0,109.0,120.0,101.0,86.0,85.0,107.0,95.0,85.0,85.0,74.0,92.0,63.0,59.0,68.0,53.0,65.0,56.0,40.0,54.0,53.0,69.0,59.0,75.0,80.0,60.0,62.0,67.0,49.0,55.0,57.0,57.0,62.0,54.0,51.0,62.0,51.0,49.0,61.0,62.0,36.0,43.0,48.0,50.0,59.0,54.0,43.0,56.0,49.0,32.0,43.0,45.0,38.0,47.0,31.0,47.0,26.0,34.0,38.0,32.0,29.0,32.0,25.0,22.0,21.0,26.0,23.0,14.0,21.0,23.0,23.0,15.0,18.0,9.0,6.0,10.0,6.0,8.0,6.0,3.0,2.0,2.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1363,3272,732,0,436,471,456,526,457,356,268,336,293,281,285,236,234,204,177,129,107,71,33,9,2,0,5333,5,20,9,0,5334,6,18,9,0,1297,37,390,758,211,11,1300,1363,0,3724,1625,18,0,2,90,29,0,0,0,0,3,1,43,5199,0,18,45,137,5,3,0,360,4799,0,650,964,174,14,2,3563,0,2.6442615454961134,0.0,3.750853242320819,0.0,6.760946525060556,5,19,53,2,1,0,116,1265,0,207,138,110,160,194,127,148,84,107,68,42,25,27,10,6,5,1257,204,787,674,789,672,143,1318,744,717,100,1361,861,600,142,1319,1069,392,788,673,538,250,259,1202,607,854,232,1229,944,517,903,558,13,1448,263,695,469,34,0,939,522,0,1,20,9,0,0,0,0,1,0,6,1424,0,1.867898699520876,1.8056125941136207,1.6,1.0638297872340423,1.0638297872340423,55.15947980835045 +,90302,Veraguas,Cañazas,Cerro Plata,504,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,331,81,324,55,7,0,0,74,0,111,0,1,143,7,10,188,0,0,0,0,410,16,33,0,1,141,283,0,0,0,36,460,0,27,17,0,80,8,0,0,0,450,10,0,0,208,51,126,65,10,0,0,458,0,0,0,0,2,0,11,217,0,232,0,0,0,317,24,0,1,81,1,13,0,0,23,0,0,592,6.410557184750733,18.225806451612904,6.98533724340176,23.917888563049853,1.0043478260869565,2.776086956521739,1.6608695652173913,462,274,665,10,134,8,25,8,2,27,5,4,1,0,8,8,5,3,2,0,5,880,623,0,126,1377,0,531,972,0,1213,290,0,449,1054,0,449,0,904,150,0,152,19,32,2,74,86,93,90,93,366,0,0,0,65,59,139,43,38,141,0,0,2,3,1,1,3,1,0,0,0,0,0,0,0,0,662,10,642,0,0,3,5,3,277,301,56,5,64,28,10,9,11,0,545,0,0,879,746,22,70,9,405,1,1,159,0,65,133,7,409,8,0,0,1162,148,0,0,0,4,0,0,0,0,0,3,4,2,6,26,508,41,7,75,1084,223,75,77,64,58,21,4,5,4,1,0,0,1,0,8,25.0,28.0,29.0,40.0,33.0,30.0,25.0,34.0,36.0,31.0,38.0,45.0,31.0,36.0,33.0,40.0,37.0,32.0,31.0,24.0,18.0,11.0,26.0,24.0,28.0,21.0,22.0,15.0,16.0,23.0,16.0,26.0,14.0,22.0,19.0,23.0,14.0,13.0,21.0,22.0,15.0,9.0,13.0,18.0,15.0,16.0,23.0,18.0,16.0,25.0,20.0,13.0,22.0,16.0,14.0,14.0,10.0,15.0,9.0,11.0,16.0,13.0,14.0,9.0,7.0,11.0,7.0,13.0,11.0,11.0,12.0,14.0,14.0,9.0,2.0,7.0,5.0,12.0,6.0,7.0,2.0,9.0,8.0,8.0,7.0,5.0,3.0,5.0,2.0,1.0,5.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,494,929,202,0,155,156,183,164,107,97,97,93,70,98,85,59,59,53,51,37,34,16,9,2,0,0,1616,1,1,7,0,1616,1,1,7,0,451,3,58,193,70,0,356,494,0,1112,513,0,0,0,28,1,0,0,0,0,0,0,8,1588,0,1,58,10,1,0,0,12,1543,0,29,98,7,2,0,1489,0,3.3117338003502628,0.0,4.654639175257732,0.0,5.188923076923077,1,17,5,1,0,0,4,434,0,44,61,55,82,95,55,30,14,10,3,5,0,2,1,0,5,308,154,76,386,75,387,29,433,54,408,2,460,249,213,0,462,286,176,124,338,53,71,7,455,108,354,11,451,389,73,390,72,3,459,104,240,117,1,0,376,86,0,0,2,0,0,0,0,0,0,0,1,459,0,1.9025974025974024,1.6147186147186148,0.0,1.0666666666666669,1.0666666666666669,53.17748917748918 +PA130303,90303,Veraguas,Cañazas,El Picador,887,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,555,118,511,56,88,0,0,27,3,0,0,4,187,13,142,338,1,0,0,0,539,105,38,3,0,63,615,0,0,0,7,685,0,157,14,2,12,41,0,0,1,668,16,0,0,101,12,529,39,1,2,1,679,2,0,1,0,3,0,2,128,2,546,7,0,1,335,81,4,15,152,2,84,0,0,11,0,0,911,6.059952038369304,18.32853717026379,6.959232613908873,23.93525179856115,1.0043795620437956,2.7124087591240875,1.508029197080292,688,444,1445,50,222,21,30,10,10,36,5,8,5,0,26,17,11,6,9,3,12,699,1992,0,15,2676,0,395,2296,0,2002,689,0,940,1751,0,933,7,1336,415,0,422,38,50,2,124,185,224,144,147,619,0,0,0,88,126,247,58,58,125,0,0,14,9,3,5,2,0,0,0,1,0,0,0,0,0,1000,22,1253,0,0,9,8,6,583,548,33,83,86,1,27,26,2,1,873,0,0,1624,1350,17,127,26,584,1,0,261,0,166,223,10,644,16,0,0,2116,156,0,0,0,2,0,1,0,0,0,2,2,5,5,20,828,12,1,147,2501,209,99,65,52,23,7,1,0,0,1,0,0,0,0,16,67.0,81.0,60.0,75.0,78.0,55.0,64.0,67.0,84.0,68.0,89.0,73.0,71.0,71.0,91.0,82.0,83.0,64.0,66.0,52.0,43.0,44.0,49.0,44.0,33.0,30.0,28.0,24.0,33.0,26.0,27.0,28.0,28.0,21.0,28.0,24.0,25.0,31.0,23.0,27.0,23.0,29.0,34.0,25.0,27.0,31.0,30.0,24.0,31.0,28.0,25.0,22.0,26.0,30.0,22.0,27.0,17.0,19.0,21.0,22.0,27.0,22.0,19.0,20.0,14.0,14.0,14.0,17.0,25.0,25.0,13.0,13.0,10.0,9.0,14.0,16.0,12.0,11.0,17.0,10.0,10.0,15.0,13.0,8.0,9.0,4.0,3.0,2.0,6.0,1.0,2.0,2.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1094,1578,302,0,361,338,395,347,213,141,132,130,138,144,125,106,102,95,59,66,55,16,7,3,1,0,2956,0,0,18,0,2956,0,0,18,0,633,13,123,372,103,1,637,1092,0,2788,186,0,0,1,19,55,0,0,0,1,0,2,8,2888,0,3,118,869,4,0,0,246,1734,0,75,139,7,3,1,2749,0,3.353768844221105,0.0,5.121311475409836,0.0,4.452925353059852,0,33,201,3,0,0,56,395,0,170,46,111,141,139,49,13,8,9,0,1,0,0,0,0,1,289,399,11,677,3,685,22,666,5,683,1,687,444,244,2,686,220,468,38,650,7,31,4,684,38,650,8,680,638,50,590,98,4,684,117,381,186,4,0,585,103,0,0,4,11,0,0,0,0,0,1,2,670,0,2.36046511627907,1.962209302325581,0.0,1.0294117647058822,1.0294117647058822,53.09011627906977 +PA130304,90304,Veraguas,Cañazas,Los Valles,565,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,92,247,11,312,27,2,0,0,7,2,60,0,1,138,3,87,60,0,1,21,0,235,59,34,1,0,139,208,0,0,0,3,350,0,134,12,0,30,43,0,0,1,339,10,0,0,164,22,116,18,4,26,0,350,0,0,0,0,0,0,17,234,2,94,3,0,1,282,52,1,1,8,0,3,0,0,2,0,0,570,6.677611940298507,22.46268656716418,6.871641791044776,23.51641791044776,1.008571428571429,3.24,2.0485714285714285,354,195,564,26,67,4,9,4,2,6,3,4,2,0,7,11,5,3,4,1,8,612,532,0,101,1043,0,460,684,0,950,194,0,369,775,0,356,13,651,124,0,126,18,18,2,45,64,100,47,67,202,0,1,0,42,57,88,36,56,128,0,2,4,7,7,11,4,5,6,0,1,0,0,0,0,0,411,6,584,0,0,0,5,13,241,279,20,31,105,1,12,14,11,1,272,0,0,660,580,49,87,16,234,0,0,30,0,69,119,8,256,0,0,0,825,151,0,1,2,18,3,1,0,0,0,2,15,6,13,22,243,18,9,89,857,121,78,46,39,35,36,14,7,4,3,0,0,0,0,0,19.0,28.0,20.0,29.0,25.0,18.0,25.0,28.0,20.0,27.0,30.0,20.0,23.0,17.0,32.0,23.0,21.0,28.0,29.0,24.0,21.0,24.0,18.0,26.0,16.0,16.0,17.0,11.0,18.0,13.0,14.0,12.0,15.0,11.0,15.0,16.0,13.0,8.0,10.0,14.0,10.0,17.0,12.0,12.0,21.0,10.0,14.0,15.0,7.0,7.0,9.0,8.0,13.0,14.0,9.0,9.0,9.0,7.0,12.0,13.0,9.0,8.0,15.0,6.0,10.0,10.0,6.0,11.0,7.0,10.0,15.0,7.0,7.0,8.0,9.0,3.0,9.0,11.0,13.0,7.0,2.0,4.0,5.0,0.0,6.0,2.0,2.0,0.0,3.0,4.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,361,709,170,0,121,118,122,125,105,75,67,61,72,53,53,50,48,44,46,43,17,11,5,4,0,0,1237,0,0,3,0,1237,0,0,3,0,272,8,71,173,44,3,308,361,0,1014,226,0,0,0,22,0,0,0,0,0,0,0,5,1213,0,0,20,4,0,0,0,581,635,0,75,176,14,1,0,974,0,3.1125541125541125,0.0,4.622073578595318,0.0,5.662096774193548,0,8,0,0,0,0,166,180,0,54,39,42,50,60,30,25,17,24,4,6,1,0,1,0,0,276,78,50,304,53,301,21,333,29,325,2,352,239,115,2,352,207,147,93,261,70,23,18,336,107,247,18,336,293,61,262,92,6,348,92,198,63,1,0,285,69,0,0,8,0,0,0,0,0,0,0,1,345,0,1.8644067796610169,1.6384180790960452,0.0,1.0,1.0,55.07909604519774 +PA130305,90305,Veraguas,Cañazas,San José,699,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,395,103,371,34,45,0,0,58,0,30,0,2,172,8,10,285,1,0,0,0,422,34,45,7,0,72,416,0,0,0,20,508,0,34,46,0,131,15,0,0,0,495,13,0,0,109,125,233,30,7,3,1,506,1,0,0,0,1,0,0,114,2,389,3,0,0,194,19,17,89,152,1,31,0,0,5,0,0,734,5.36150234741784,17.699530516431924,6.953051643192488,23.84037558685446,1.001968503937008,2.5393700787401574,1.468503937007874,509,307,840,36,154,18,14,6,2,36,2,3,10,0,8,5,9,7,5,1,11,695,1094,0,63,1726,0,132,1657,0,1416,373,0,530,1259,0,518,12,1029,230,0,233,26,27,2,87,112,124,111,98,462,0,0,0,71,75,126,40,66,119,0,0,4,0,2,0,1,3,0,0,0,0,0,0,0,0,863,5,648,0,0,1,2,8,280,281,43,36,28,16,21,4,6,2,789,0,0,1052,885,17,55,5,442,1,0,346,0,114,170,12,618,11,0,0,1387,124,0,0,2,3,0,0,0,0,0,1,3,7,4,17,745,22,7,62,1605,151,67,38,28,19,10,4,2,2,0,0,0,0,0,11,40.0,38.0,31.0,39.0,53.0,43.0,38.0,50.0,43.0,46.0,41.0,48.0,43.0,39.0,44.0,42.0,40.0,41.0,32.0,30.0,23.0,24.0,29.0,18.0,28.0,13.0,22.0,21.0,23.0,15.0,14.0,24.0,22.0,25.0,12.0,21.0,13.0,16.0,13.0,23.0,20.0,20.0,17.0,20.0,23.0,30.0,22.0,19.0,19.0,16.0,23.0,20.0,18.0,13.0,16.0,20.0,15.0,28.0,11.0,20.0,16.0,19.0,24.0,13.0,20.0,16.0,12.0,12.0,16.0,13.0,17.0,12.0,13.0,13.0,6.0,12.0,10.0,13.0,8.0,6.0,6.0,6.0,1.0,5.0,5.0,8.0,6.0,6.0,3.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,636,1066,235,0,201,220,215,185,122,94,97,86,100,106,90,94,92,69,61,49,23,26,4,3,0,0,1930,0,0,7,0,1930,0,0,7,0,511,5,107,223,78,1,376,636,0,1485,452,0,0,4,154,54,0,0,0,0,0,0,2,1723,0,1,1,43,3,2,0,77,1810,0,24,108,9,0,0,1796,0,3.6242603550295858,0.0,4.8474576271186445,0.0,4.815178110480124,0,0,21,1,1,0,27,459,0,137,49,98,87,78,31,13,5,6,3,0,0,0,0,0,2,265,244,25,484,21,488,21,488,12,497,2,507,345,164,7,502,263,246,42,467,33,9,2,507,5,504,9,500,464,45,461,48,8,501,103,268,131,7,0,414,95,0,0,27,15,0,0,0,0,0,0,1,466,0,2.0667976424361494,1.738703339882122,1.0,1.0714285714285714,1.0714285714285714,54.80550098231827 +PA130306,90306,Veraguas,Cañazas,San Marcelo,594,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,205,212,22,413,4,4,0,0,18,0,261,0,1,70,1,11,95,0,0,13,0,345,31,50,0,0,249,187,0,0,0,3,439,0,127,18,3,16,32,0,0,3,426,10,0,0,349,11,37,20,4,18,0,438,0,0,0,0,1,0,53,317,0,69,0,0,1,356,63,2,3,8,0,0,0,0,6,0,0,636,6.530952380952381,22.00952380952381,6.992857142857143,23.883333333333333,1.0182232346241458,3.207289293849658,2.0455580865603644,448,257,476,22,91,21,16,7,4,24,5,7,2,0,33,22,7,3,16,0,8,894,420,0,110,1204,0,501,813,0,1114,200,0,335,979,0,324,11,834,145,0,145,18,16,5,33,67,79,53,53,329,0,0,0,29,44,109,25,48,169,1,8,8,15,20,15,5,14,2,0,4,0,0,0,0,0,445,16,734,0,1,7,4,36,218,376,72,32,128,6,44,27,20,0,231,0,0,733,647,46,153,27,156,0,0,74,0,20,171,16,458,2,0,0,934,219,0,8,4,26,0,4,0,0,0,6,15,8,8,38,174,44,29,139,871,210,56,44,49,64,43,16,20,5,0,0,0,0,0,2,13.0,20.0,13.0,20.0,12.0,24.0,19.0,23.0,19.0,22.0,19.0,24.0,26.0,24.0,14.0,22.0,17.0,27.0,22.0,24.0,15.0,23.0,13.0,16.0,14.0,18.0,22.0,14.0,26.0,21.0,14.0,13.0,15.0,9.0,13.0,14.0,15.0,21.0,7.0,16.0,13.0,18.0,16.0,23.0,14.0,17.0,19.0,19.0,14.0,16.0,17.0,16.0,17.0,12.0,15.0,13.0,9.0,8.0,22.0,16.0,13.0,12.0,23.0,7.0,15.0,15.0,17.0,20.0,8.0,14.0,16.0,16.0,12.0,11.0,14.0,9.0,11.0,9.0,9.0,9.0,9.0,8.0,14.0,7.0,4.0,9.0,7.0,8.0,3.0,2.0,3.0,3.0,2.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,815,273,0,78,107,107,112,81,101,64,73,84,85,77,68,70,74,69,47,42,29,9,3,0,0,1377,0,2,1,0,1377,0,2,1,0,355,13,68,248,68,2,334,292,0,947,431,2,0,0,4,3,0,0,0,0,0,0,6,1367,0,2,24,264,3,41,4,385,657,0,114,276,37,7,0,946,0,2.9535714285714287,0.0,3.8365853658536575,0.0,6.254347826086956,0,5,90,2,13,2,151,185,0,89,56,41,57,71,39,32,18,22,13,4,3,2,0,0,0,379,69,228,220,225,223,28,420,193,255,11,437,269,179,1,447,346,102,248,200,116,132,48,400,136,312,63,385,348,100,373,75,3,445,104,236,106,2,0,355,93,0,0,3,3,0,0,0,0,0,0,3,439,0,1.6361607142857142,1.4441964285714286,0.0,1.0555555555555556,1.0555555555555556,58.033482142857146 +,90307,Veraguas,Cañazas,El Aromillo,446,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,268,39,264,21,34,1,0,4,0,32,0,6,116,3,10,157,0,0,0,0,270,35,16,2,1,77,246,0,0,0,1,324,0,104,5,0,10,16,0,0,0,323,1,0,0,145,12,142,20,5,0,0,324,0,0,0,0,0,0,11,162,1,150,0,0,0,192,89,10,17,1,0,12,0,0,3,0,0,459,6.761565836298932,21.0,6.93950177935943,23.90747330960854,1.0,3.0771604938271606,1.808641975308642,324,186,440,22,40,23,21,7,5,10,3,13,4,0,11,11,7,8,9,1,9,569,480,0,10,1039,0,554,495,0,860,189,0,276,773,0,270,6,621,152,0,154,4,12,0,28,65,76,47,59,321,0,1,0,29,53,65,26,41,52,0,0,2,2,6,1,3,0,0,0,2,0,0,0,0,0,469,2,493,0,0,2,0,3,202,223,22,43,96,2,3,6,7,0,354,1,0,636,462,13,94,9,324,2,0,27,0,64,127,6,94,0,0,0,896,62,0,0,2,3,0,1,0,0,0,2,1,2,3,17,346,4,2,94,677,107,118,61,61,48,18,6,1,1,0,0,0,0,0,0,8.0,11.0,15.0,15.0,13.0,15.0,14.0,13.0,15.0,15.0,26.0,26.0,24.0,17.0,24.0,23.0,31.0,16.0,22.0,20.0,18.0,15.0,23.0,10.0,12.0,8.0,7.0,10.0,6.0,14.0,11.0,16.0,12.0,18.0,9.0,10.0,14.0,12.0,12.0,8.0,14.0,17.0,11.0,7.0,14.0,9.0,9.0,11.0,12.0,15.0,9.0,16.0,15.0,14.0,14.0,9.0,16.0,12.0,13.0,14.0,8.0,7.0,11.0,10.0,5.0,12.0,13.0,9.0,9.0,8.0,9.0,5.0,13.0,11.0,9.0,4.0,7.0,16.0,11.0,6.0,4.0,6.0,7.0,2.0,6.0,9.0,1.0,1.0,4.0,3.0,3.0,3.0,3.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,251,649,198,0,62,72,117,112,78,45,66,56,63,56,68,64,41,51,47,44,25,18,10,3,0,0,1098,0,0,0,0,1098,0,0,0,0,328,7,69,106,43,1,293,251,0,1016,82,0,0,0,0,0,0,0,0,0,1,1,1,1095,0,3,13,7,0,0,0,74,1001,0,107,117,9,0,0,865,0,3.0076335877862594,0.0,4.480314960629921,0.0,5.101092896174864,3,5,1,0,0,0,17,298,0,38,19,30,48,72,50,23,18,18,6,1,1,0,0,0,0,189,135,23,301,22,302,4,320,14,310,0,324,226,98,2,322,163,161,52,272,5,47,5,319,43,281,4,320,304,20,306,18,4,320,73,159,88,4,0,281,43,0,0,0,0,0,0,0,0,0,0,0,324,0,1.962962962962963,1.4259259259259258,0.0,1.0,1.0,57.129629629629626 +,90308,Veraguas,Cañazas,Las Cruces,398,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,267,56,255,20,53,0,0,3,0,0,0,4,141,1,28,156,0,1,0,0,264,18,48,1,0,47,284,0,0,0,0,331,0,69,3,0,9,0,0,0,0,329,2,0,0,131,18,150,32,0,0,0,328,2,0,0,0,1,0,5,129,3,191,3,0,2,166,63,41,12,27,1,18,0,0,1,0,0,412,5.683982683982684,16.186147186147185,6.796536796536796,23.77489177489177,1.003021148036254,2.610271903323263,1.5166163141993958,332,222,624,15,64,15,11,5,3,14,5,2,0,0,13,13,2,4,3,0,7,481,735,0,23,1193,0,245,971,0,955,261,0,398,818,0,389,9,655,163,0,165,14,33,1,61,89,80,77,75,275,0,1,0,43,44,102,15,45,71,0,2,7,3,5,3,1,4,0,0,0,0,0,0,0,0,424,7,639,0,1,2,3,0,263,327,29,20,56,12,11,5,2,1,343,0,0,727,585,11,52,5,271,3,0,88,0,23,99,4,410,9,0,0,974,92,0,0,0,4,0,0,0,0,0,3,2,1,3,23,332,17,4,46,1091,95,36,24,24,17,10,4,0,0,2,0,0,0,0,9,29.0,14.0,23.0,30.0,16.0,27.0,28.0,24.0,32.0,19.0,36.0,31.0,27.0,26.0,30.0,31.0,27.0,46.0,31.0,23.0,24.0,19.0,13.0,23.0,13.0,11.0,9.0,20.0,14.0,12.0,8.0,17.0,13.0,14.0,11.0,12.0,12.0,13.0,16.0,14.0,18.0,14.0,12.0,19.0,17.0,15.0,13.0,17.0,12.0,9.0,10.0,7.0,20.0,15.0,10.0,12.0,8.0,8.0,15.0,15.0,11.0,6.0,11.0,5.0,13.0,6.0,7.0,13.0,15.0,8.0,9.0,4.0,12.0,6.0,4.0,8.0,8.0,8.0,6.0,4.0,5.0,7.0,2.0,5.0,5.0,3.0,0.0,4.0,2.0,2.0,3.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,392,758,162,0,112,130,150,158,92,66,63,67,80,66,62,58,46,49,35,34,24,11,9,0,0,0,1308,0,0,4,0,1308,0,0,4,0,347,0,33,165,46,1,329,391,0,1216,96,0,0,0,1,0,0,0,0,0,0,0,3,1308,0,1,48,1,1,3,0,29,1229,0,40,68,1,0,0,1203,0,3.1958333333333333,0.0,4.9727891156462585,0.0,4.772103658536586,0,8,1,0,1,0,12,310,0,99,37,48,52,47,26,10,8,4,0,0,0,0,1,0,0,189,143,9,323,8,324,4,328,2,330,0,332,154,178,4,328,122,210,19,313,3,16,5,327,12,320,4,328,312,20,292,40,14,318,58,194,80,0,0,285,47,0,0,0,0,0,0,0,0,0,0,0,332,0,2.1897590361445785,1.7620481927710845,0.0,1.0526315789473684,1.0526315789473684,55.04819277108434 +PA130403,90401,Veraguas,La Mesa,La Mesa,1504,10,4,3,0,0,0,0,0,0,0,0,3,0,0,7,717,309,6,1029,4,4,0,0,2,0,869,0,5,48,10,9,94,1,3,547,36,423,10,21,1,1,925,110,0,0,0,4,1039,0,312,29,7,80,54,0,2,30,943,63,1,0,950,20,5,50,0,14,0,1039,0,0,0,0,0,0,268,704,0,67,0,0,718,280,0,12,8,5,0,7,0,0,5,4,923,601,6.557114228456914,18.51503006012024,6.8346693386773545,20.59719438877756,1.012512030798845,3.640038498556304,2.468719923002888,1055,530,1217,61,304,48,69,34,16,72,17,18,13,4,100,100,22,30,18,2,23,2460,844,0,774,2530,0,1728,1576,0,3004,300,0,901,2403,0,804,97,2201,202,0,203,29,50,11,63,88,146,119,128,544,1,0,3,92,147,254,84,136,607,2,2,53,59,88,113,171,76,4,3,25,1,0,0,2,0,1108,219,1685,0,39,109,49,198,620,677,127,63,661,28,164,62,57,0,300,0,3,1763,1695,376,627,62,187,3,0,17,3,26,215,36,1089,2,0,0,1803,810,3,7,48,313,2,24,2,0,1,29,244,57,40,103,89,130,55,579,1760,445,154,223,192,148,194,92,118,91,33,4,1,1,0,2,28.0,23.0,56.0,47.0,61.0,42.0,41.0,44.0,57.0,47.0,53.0,53.0,51.0,52.0,55.0,63.0,41.0,54.0,53.0,52.0,47.0,52.0,52.0,56.0,48.0,49.0,53.0,56.0,54.0,36.0,58.0,49.0,41.0,33.0,44.0,43.0,34.0,42.0,40.0,45.0,40.0,39.0,49.0,36.0,30.0,39.0,43.0,41.0,41.0,45.0,28.0,43.0,36.0,51.0,54.0,46.0,49.0,46.0,39.0,48.0,41.0,36.0,37.0,34.0,23.0,39.0,34.0,26.0,23.0,22.0,37.0,26.0,27.0,25.0,24.0,20.0,30.0,27.0,21.0,16.0,21.0,23.0,9.0,13.0,14.0,9.0,11.0,10.0,5.0,7.0,3.0,1.0,5.0,3.0,1.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,710,2209,539,0,215,231,264,263,255,248,225,204,194,209,212,228,171,144,139,114,80,42,13,6,1,0,3433,18,4,3,0,3433,21,1,3,0,934,13,61,438,120,11,1171,710,0,2286,1152,20,0,0,101,14,1,1,0,0,0,0,36,3305,0,17,25,226,4,2,1,554,2629,0,538,818,190,9,1,1902,0,2.3727891156462584,0.0,3.4128902316213496,0.0,8.23742047426258,6,6,62,1,1,1,164,814,0,107,99,54,121,123,114,85,58,102,65,38,31,33,18,4,0,965,90,806,249,774,281,123,932,748,307,102,953,543,512,101,954,759,296,792,263,400,392,272,783,521,534,246,809,461,594,379,676,15,1040,234,485,322,14,0,614,441,0,0,22,4,1,1,0,0,0,0,11,1016,0,1.671090047393365,1.6066350710900474,1.0,1.0178571428571428,1.0178571428571428,56.43317535545024 +PA130401,90402,Veraguas,La Mesa,Bisvalles,897,32,3,0,0,0,0,0,0,0,0,2,1,0,0,0,263,388,11,639,12,0,0,0,10,1,440,0,1,125,7,18,41,0,30,59,2,530,22,46,0,3,428,231,0,0,0,3,662,0,186,26,0,31,27,0,1,5,635,19,2,0,522,23,47,57,9,4,0,659,0,0,0,0,3,0,66,504,0,92,0,0,1,528,52,48,4,20,0,5,0,0,0,4,0,935,6.714285714285714,16.263339070567987,6.982788296041308,21.204819277108435,1.0075528700906344,3.382175226586103,2.2462235649546827,670,344,810,33,169,19,39,17,4,34,5,5,19,1,46,19,6,8,14,3,6,1373,688,0,238,1823,0,711,1350,0,1805,256,0,516,1545,0,500,16,1355,190,0,190,11,22,4,53,91,105,92,77,519,0,1,3,58,95,173,65,88,295,0,1,6,15,9,41,20,18,5,1,3,0,0,0,0,0,592,43,1225,0,0,14,4,53,367,629,44,132,295,17,58,29,19,1,180,0,27,1192,977,86,291,33,79,7,0,99,31,12,203,16,911,4,0,0,1441,325,4,1,8,76,2,3,0,0,30,10,33,11,14,78,130,69,32,228,1344,261,76,122,92,131,55,39,28,12,3,0,2,0,0,4,27.0,24.0,27.0,30.0,32.0,37.0,27.0,34.0,35.0,36.0,42.0,33.0,27.0,27.0,48.0,48.0,41.0,43.0,33.0,38.0,41.0,29.0,26.0,24.0,29.0,22.0,38.0,26.0,25.0,22.0,30.0,19.0,20.0,15.0,24.0,28.0,16.0,25.0,21.0,30.0,33.0,22.0,25.0,24.0,25.0,26.0,23.0,28.0,21.0,26.0,22.0,42.0,19.0,23.0,25.0,26.0,21.0,21.0,22.0,22.0,20.0,21.0,29.0,18.0,18.0,24.0,17.0,24.0,16.0,13.0,13.0,18.0,17.0,22.0,18.0,15.0,16.0,14.0,16.0,19.0,18.0,10.0,14.0,13.0,9.0,6.0,6.0,5.0,5.0,3.0,2.0,2.0,2.0,0.0,2.0,4.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,486,1315,368,0,140,169,177,203,149,133,108,120,129,124,131,112,106,94,88,80,64,25,8,7,2,0,2162,3,4,0,0,2165,4,0,0,0,541,8,22,287,104,10,711,486,0,1512,653,4,0,0,45,6,0,0,0,0,0,0,5,2113,0,7,23,199,0,0,1,50,1889,0,238,545,53,4,2,1327,0,3.0059101654846336,0.0,4.068846815834768,0.0,6.57630244352236,2,5,62,0,0,1,21,579,0,152,92,35,70,56,85,58,34,36,29,8,4,3,2,1,2,602,68,376,294,384,286,60,610,358,312,28,642,382,288,6,664,515,155,398,272,219,179,89,581,207,463,86,584,422,248,340,330,3,667,155,334,163,18,0,490,180,0,0,8,2,0,0,0,0,0,0,2,658,0,1.7791044776119402,1.4582089552238806,1.0,1.0,1.0,57.93582089552239 +PA130402,90403,Veraguas,La Mesa,Boró,798,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,178,331,43,478,31,25,0,0,18,0,253,0,10,115,3,2,167,2,0,66,0,411,26,49,0,0,324,209,0,0,0,19,552,0,158,19,0,29,42,0,0,3,525,24,0,0,376,31,0,108,6,31,0,552,0,0,0,0,0,0,28,401,0,123,0,0,0,456,13,4,3,61,0,6,0,0,9,0,0,801,5.929637526652452,10.872068230277186,5.8742004264392325,11.857142857142858,1.0072463768115942,3.105072463768116,2.0090579710144927,557,258,496,41,113,8,26,13,3,24,2,7,17,0,38,14,15,12,7,0,17,999,511,0,169,1341,0,620,890,0,1257,253,0,353,1157,0,340,13,958,199,0,200,8,27,0,35,56,83,65,96,318,0,0,0,36,61,141,33,62,200,1,4,13,5,18,20,15,11,1,0,1,0,0,0,0,0,600,35,745,0,2,18,4,37,234,330,63,81,138,15,50,17,18,0,393,0,0,879,686,65,190,20,293,4,0,59,0,30,194,19,352,27,0,0,1091,238,0,2,8,39,1,1,0,0,0,5,18,14,11,68,295,34,16,174,934,238,90,87,58,41,38,24,21,6,0,0,1,0,0,27,14.0,17.0,12.0,12.0,22.0,15.0,28.0,24.0,17.0,24.0,22.0,23.0,29.0,24.0,28.0,28.0,25.0,30.0,25.0,23.0,24.0,14.0,23.0,12.0,25.0,16.0,22.0,19.0,13.0,16.0,22.0,13.0,16.0,18.0,19.0,13.0,15.0,18.0,23.0,20.0,20.0,17.0,18.0,16.0,19.0,15.0,19.0,22.0,19.0,19.0,9.0,22.0,20.0,18.0,14.0,12.0,20.0,14.0,24.0,12.0,27.0,18.0,17.0,18.0,21.0,21.0,12.0,16.0,19.0,17.0,12.0,20.0,10.0,10.0,20.0,11.0,16.0,14.0,11.0,11.0,10.0,11.0,7.0,8.0,6.0,5.0,9.0,5.0,6.0,6.0,6.0,2.0,3.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,311,942,312,0,77,108,126,131,98,86,88,89,90,94,83,82,101,85,72,63,42,31,17,1,1,0,1562,0,1,2,0,1562,0,1,2,0,497,8,32,129,65,4,519,311,0,1053,511,1,0,2,13,0,0,0,0,6,0,0,12,1532,0,1,4,96,2,0,0,279,1183,0,98,312,45,4,2,1104,0,3.1243781094527363,0.0,4.0488372093023255,0.0,6.297124600638978,0,2,28,0,0,0,102,425,0,117,60,67,69,94,47,31,24,29,8,5,3,0,2,0,0,465,92,222,335,213,344,38,519,214,343,19,538,333,224,10,547,363,194,218,339,156,62,40,517,165,392,60,497,433,124,430,127,2,555,176,251,118,12,0,403,154,0,0,4,0,0,0,0,0,0,0,4,549,0,1.578096947935368,1.2315978456014365,1.0,1.0303030303030305,1.0303030303030305,58.30520646319569 +PA130404,90404,Veraguas,La Mesa,Llano Grande,367,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,114,15,247,11,3,0,0,12,0,206,4,0,24,0,5,34,0,0,7,11,240,3,12,0,0,207,57,0,0,0,9,273,0,89,5,0,11,17,0,0,3,253,15,2,0,238,3,0,22,1,9,0,273,0,0,0,0,0,0,27,227,0,19,0,0,0,236,9,6,0,17,0,0,0,0,4,1,0,395,6.551020408163265,16.738775510204082,6.987755102040817,21.355102040816327,1.021978021978022,3.3443223443223444,2.326007326007326,279,139,232,24,56,9,9,8,5,12,3,0,5,1,16,4,1,0,7,0,6,530,224,0,107,647,0,173,581,0,678,76,0,183,571,0,163,20,508,63,0,64,8,5,2,15,34,46,46,23,187,1,0,2,19,29,46,17,28,97,1,2,9,12,14,22,9,13,2,0,1,0,0,0,0,0,240,22,424,0,1,7,9,24,112,243,23,22,89,8,43,10,16,0,96,0,0,413,369,33,133,11,72,1,0,11,1,7,95,7,248,0,0,0,502,133,2,4,9,34,1,1,0,0,1,6,13,7,9,33,34,31,12,116,447,124,33,38,51,36,21,13,9,6,2,2,0,0,0,0,6.0,7.0,4.0,11.0,14.0,9.0,6.0,14.0,14.0,11.0,17.0,12.0,7.0,11.0,11.0,5.0,11.0,16.0,5.0,9.0,13.0,11.0,7.0,9.0,10.0,9.0,12.0,11.0,10.0,7.0,11.0,12.0,11.0,19.0,11.0,5.0,3.0,11.0,10.0,8.0,8.0,13.0,7.0,8.0,8.0,7.0,9.0,13.0,10.0,13.0,14.0,13.0,9.0,13.0,9.0,4.0,8.0,13.0,10.0,5.0,10.0,14.0,5.0,2.0,7.0,8.0,3.0,6.0,10.0,7.0,5.0,7.0,9.0,7.0,5.0,4.0,9.0,7.0,5.0,9.0,6.0,6.0,3.0,8.0,7.0,2.0,9.0,0.0,1.0,2.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,154,478,150,0,42,54,58,46,50,49,64,37,44,52,58,40,38,34,33,34,30,14,5,0,0,0,781,1,0,0,0,781,1,0,0,0,229,4,5,106,44,5,235,154,0,401,381,0,0,1,7,4,0,0,0,0,0,0,1,769,0,9,5,12,1,0,0,6,749,0,55,170,25,1,0,531,0,2.682242990654206,0.0,3.424892703862661,0.0,6.932225063938619,3,4,5,1,0,0,2,264,0,62,37,14,30,39,31,21,15,13,10,3,2,1,0,1,0,257,22,203,76,187,92,24,255,176,103,17,262,141,138,1,278,220,59,198,81,62,136,35,244,60,219,53,226,173,106,180,99,4,275,83,128,64,4,0,198,81,0,0,1,1,0,0,0,0,0,0,1,276,0,1.4802867383512546,1.3225806451612905,0.0,1.1176470588235294,1.1176470588235294,58.05017921146953 +PA130405,90405,Veraguas,La Mesa,San Bartolo,495,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,221,30,302,34,13,0,0,17,0,280,0,1,19,5,7,54,0,0,30,0,294,16,24,1,1,210,152,1,0,0,3,366,0,92,27,1,24,5,0,1,2,346,17,0,0,307,4,3,50,0,2,0,366,0,0,0,0,0,0,42,260,0,64,0,0,0,261,45,0,18,29,0,3,0,0,9,1,0,515,5.205882352941177,8.666666666666666,5.620915032679738,10.96078431372549,1.0191256830601092,3.2540983606557377,2.0956284153005464,373,179,369,31,67,12,28,9,3,13,6,2,7,0,12,4,10,7,9,0,2,722,315,0,114,923,0,491,546,0,858,179,0,271,766,0,253,18,686,80,0,81,12,19,0,49,57,63,47,42,180,0,0,1,41,37,97,28,46,149,0,1,11,17,19,14,10,9,6,0,1,0,0,0,0,0,387,30,507,0,0,13,10,32,163,249,17,46,139,13,36,14,13,0,193,0,2,593,506,58,179,14,149,0,0,8,2,32,110,12,290,3,0,0,686,186,1,1,14,32,3,1,0,0,2,5,16,11,16,60,107,32,15,153,682,136,47,42,55,30,37,34,17,9,5,1,0,1,0,3,13.0,14.0,17.0,18.0,17.0,14.0,23.0,20.0,23.0,16.0,18.0,10.0,10.0,31.0,13.0,19.0,18.0,16.0,14.0,21.0,16.0,16.0,12.0,19.0,18.0,14.0,14.0,14.0,10.0,16.0,10.0,16.0,18.0,10.0,9.0,9.0,12.0,15.0,11.0,10.0,12.0,14.0,10.0,11.0,16.0,10.0,11.0,10.0,6.0,10.0,20.0,8.0,5.0,21.0,15.0,9.0,16.0,9.0,8.0,17.0,16.0,13.0,21.0,9.0,12.0,7.0,13.0,15.0,9.0,6.0,13.0,5.0,10.0,7.0,8.0,9.0,6.0,5.0,3.0,6.0,4.0,9.0,4.0,2.0,5.0,1.0,8.0,1.0,3.0,3.0,3.0,4.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,257,666,176,0,79,96,82,88,81,68,63,57,63,47,69,59,71,50,43,29,24,16,12,2,0,0,1096,1,1,1,0,1096,1,1,1,0,338,8,81,82,63,1,270,256,0,694,404,1,0,8,17,1,0,0,0,0,1,0,4,1068,0,0,11,49,1,0,1,90,947,0,107,182,36,1,0,773,0,3.148325358851675,0.0,4.04,0.0,6.586897179253867,0,5,19,1,0,0,41,307,0,78,34,38,42,53,28,20,22,32,10,9,5,0,0,1,1,314,59,227,146,194,179,37,336,198,175,20,353,220,153,0,373,278,95,211,162,164,47,45,328,145,228,57,316,263,110,255,118,1,372,111,172,84,6,0,274,99,0,1,1,0,0,0,0,0,1,0,1,369,0,1.5898123324396782,1.35656836461126,1.0,1.0909090909090908,1.0909090909090908,55.76675603217158 +,90406,Veraguas,La Mesa,Los Milagros,640,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,80,26,427,5,0,0,0,26,0,440,0,0,0,0,2,16,0,0,239,5,189,3,16,0,6,421,27,0,0,0,10,458,0,147,28,0,12,8,0,4,9,430,15,0,0,418,2,0,13,0,25,0,458,0,0,0,0,0,0,93,351,0,13,1,0,0,444,11,0,0,0,0,0,0,0,0,3,0,653,6.887912087912088,19.085714285714285,6.8901098901098905,19.283516483516483,1.0,3.537117903930131,2.434497816593886,458,275,536,47,88,12,27,14,3,29,6,1,4,0,37,19,4,14,4,2,9,1153,253,0,327,1079,0,912,494,0,1260,146,0,392,1014,0,355,37,914,100,0,100,12,23,1,35,49,73,52,42,263,0,0,4,43,52,109,37,59,223,0,1,22,37,30,59,42,20,6,2,10,0,0,0,0,0,506,25,728,0,0,13,4,51,255,335,55,32,273,12,81,21,27,0,114,0,2,781,719,76,304,23,106,0,0,19,2,19,100,13,487,0,0,0,803,318,4,2,15,103,4,10,0,0,2,17,46,18,10,65,38,99,35,201,853,147,60,59,96,111,95,27,23,21,5,2,1,0,0,0,21.0,19.0,32.0,22.0,28.0,21.0,23.0,23.0,30.0,22.0,27.0,21.0,24.0,27.0,18.0,19.0,22.0,22.0,18.0,19.0,20.0,21.0,30.0,26.0,27.0,31.0,32.0,19.0,23.0,17.0,18.0,29.0,22.0,19.0,11.0,22.0,15.0,24.0,23.0,22.0,25.0,25.0,19.0,11.0,18.0,19.0,14.0,11.0,17.0,16.0,20.0,22.0,10.0,16.0,17.0,13.0,10.0,18.0,16.0,8.0,18.0,10.0,19.0,8.0,10.0,14.0,7.0,20.0,12.0,7.0,6.0,10.0,11.0,10.0,10.0,11.0,10.0,4.0,7.0,5.0,8.0,5.0,14.0,4.0,2.0,2.0,3.0,5.0,2.0,4.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,358,941,201,0,122,119,117,100,124,122,99,106,98,77,85,65,65,60,47,37,33,16,5,1,2,0,1496,4,0,0,0,1496,4,0,0,0,446,7,75,206,49,1,358,358,0,765,733,2,0,0,54,3,0,0,0,1,0,0,5,1437,0,4,16,37,2,0,0,40,1401,0,208,404,57,5,0,826,0,2.4155405405405403,0.0,3.2860576923076925,0.0,7.61,1,6,13,0,0,0,16,422,0,49,41,19,42,63,55,52,41,51,18,11,8,3,2,3,0,433,25,386,72,359,99,34,424,359,99,39,419,272,186,19,439,393,65,378,80,123,255,132,326,301,157,132,326,197,261,171,287,2,456,87,263,105,3,0,344,114,0,0,10,1,0,0,0,1,0,0,0,446,0,1.705240174672489,1.5698689956331875,0.0,1.0952380952380951,1.0952380952380951,53.02838427947598 +,90407,Veraguas,La Mesa,El Higo,642,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,347,34,367,81,3,1,0,30,0,271,0,2,72,2,27,106,0,2,22,0,439,8,12,0,1,316,145,0,0,0,21,482,0,119,19,0,12,14,0,3,5,455,19,0,0,351,23,2,97,6,3,0,481,0,0,0,0,0,1,41,354,0,86,0,1,0,354,58,23,0,26,0,15,0,0,5,1,0,646,6.12378640776699,12.109223300970871,6.327669902912621,13.79368932038835,1.008298755186722,3.0518672199170123,1.825726141078838,486,286,657,47,104,7,17,21,1,26,1,2,10,0,28,7,3,8,10,2,4,962,569,0,105,1426,0,631,900,0,1303,228,0,468,1063,0,446,22,924,139,0,140,11,24,14,53,55,76,46,71,396,0,0,0,43,71,104,47,84,227,0,2,9,12,5,15,11,10,4,0,1,0,0,0,0,0,468,118,759,0,3,65,19,30,311,348,31,39,262,4,39,42,11,0,173,0,0,859,806,46,264,42,154,7,0,18,0,54,110,10,507,3,0,0,1049,262,0,0,3,28,2,1,0,0,0,6,10,11,9,77,137,65,12,259,1127,147,63,61,88,63,74,20,13,4,1,0,1,0,0,3,34.0,31.0,31.0,38.0,36.0,31.0,21.0,32.0,32.0,34.0,40.0,33.0,40.0,27.0,31.0,26.0,34.0,30.0,31.0,27.0,34.0,26.0,39.0,27.0,32.0,38.0,23.0,21.0,21.0,19.0,23.0,8.0,26.0,28.0,16.0,21.0,15.0,22.0,30.0,16.0,19.0,19.0,15.0,14.0,18.0,12.0,8.0,18.0,15.0,21.0,18.0,15.0,19.0,12.0,15.0,14.0,15.0,17.0,12.0,10.0,12.0,10.0,14.0,18.0,6.0,10.0,10.0,14.0,6.0,11.0,14.0,10.0,7.0,9.0,6.0,12.0,6.0,10.0,4.0,4.0,1.0,3.0,4.0,5.0,4.0,3.0,5.0,4.0,6.0,3.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,491,999,175,0,170,150,171,148,158,122,101,104,85,74,79,68,60,51,46,36,17,21,4,0,0,0,1641,19,0,5,0,1641,19,0,5,0,522,7,6,146,41,5,447,491,0,1021,634,10,0,0,23,11,0,0,0,0,0,0,14,1617,0,0,5,72,3,0,0,111,1474,0,201,294,31,5,0,1134,0,2.921507064364208,0.0,4.117370892018779,0.0,6.198198198198198,0,4,19,1,0,0,37,425,0,78,38,46,48,74,73,54,27,28,16,1,1,2,0,0,0,424,62,221,265,195,291,50,436,223,263,14,472,174,312,9,477,321,165,203,283,132,71,43,443,70,416,47,439,269,217,223,263,1,485,100,275,107,4,0,329,157,0,0,6,4,0,0,0,0,0,0,6,470,0,1.7674897119341564,1.6584362139917694,1.0,1.05,1.05,50.79423868312757 +PA130506,90501,Veraguas,Las Palmas,Las Palmas,961,0,6,0,0,0,0,0,0,0,0,1,0,0,0,1,334,354,23,642,47,13,0,0,9,1,541,0,2,39,11,6,104,0,9,242,14,372,42,41,0,1,510,195,0,0,0,7,712,0,153,25,9,37,31,0,1,15,675,19,2,0,528,98,17,37,15,17,0,704,0,1,0,0,7,0,94,501,0,117,0,0,420,228,0,5,0,46,0,5,0,0,0,8,0,968,6.746913580246914,22.776234567901238,6.979938271604938,23.794753086419757,1.0112359550561798,3.532303370786517,2.438202247191011,721,380,878,49,206,35,33,22,7,36,11,2,6,2,27,23,10,15,18,4,5,1628,630,0,352,1906,0,1122,1136,0,1966,292,0,649,1609,0,615,34,1412,197,0,201,29,37,1,78,105,95,69,85,459,0,0,1,57,69,157,55,71,429,0,1,21,23,40,60,34,66,4,0,11,0,0,0,0,0,757,72,1172,0,0,40,21,84,401,480,79,128,283,23,108,20,59,1,325,1,0,1275,1113,181,274,22,318,1,0,24,0,28,222,21,633,61,0,0,1311,509,1,2,22,141,4,11,0,0,0,9,99,27,26,93,192,98,34,251,1375,279,118,116,106,85,100,28,56,40,16,3,4,1,0,61,27.0,24.0,43.0,36.0,33.0,43.0,43.0,53.0,47.0,38.0,41.0,36.0,43.0,25.0,35.0,37.0,29.0,36.0,36.0,34.0,27.0,42.0,33.0,37.0,36.0,29.0,38.0,35.0,38.0,32.0,34.0,37.0,28.0,29.0,26.0,35.0,19.0,20.0,33.0,22.0,25.0,19.0,25.0,22.0,26.0,23.0,28.0,19.0,23.0,24.0,38.0,26.0,30.0,26.0,25.0,13.0,20.0,30.0,21.0,33.0,21.0,22.0,29.0,21.0,19.0,27.0,27.0,17.0,23.0,24.0,17.0,19.0,19.0,22.0,13.0,15.0,11.0,13.0,13.0,18.0,15.0,13.0,8.0,12.0,12.0,15.0,10.0,9.0,7.0,10.0,5.0,5.0,2.0,2.0,4.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,567,1410,411,0,163,224,180,172,175,172,154,129,117,117,145,117,112,118,90,70,60,51,18,4,0,0,2374,0,8,6,0,2374,0,8,6,0,705,9,13,242,89,2,761,567,0,1462,926,0,0,1,21,4,0,0,0,5,0,0,14,2343,0,8,12,93,5,0,1,140,2129,0,218,454,87,3,0,1626,0,2.934689507494647,0.0,3.852897473997028,0.0,7.165410385259632,4,3,36,1,0,0,42,635,0,85,63,53,94,117,72,60,32,55,31,21,10,14,5,4,4,625,96,434,287,458,263,108,613,399,322,15,706,244,477,26,695,500,221,438,283,158,280,116,605,262,459,103,618,311,410,247,474,5,716,156,366,191,8,0,504,217,0,0,5,2,0,0,0,0,0,0,5,709,0,1.7683772538141471,1.5436893203883495,1.5,1.0277777777777777,1.0277777777777777,57.49098474341193 +PA130501,90502,Veraguas,Las Palmas,Cerro de Casa,672,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,474,53,435,47,15,0,0,37,1,0,0,3,275,15,10,231,0,1,0,0,493,28,13,1,0,74,461,0,0,0,0,535,0,96,19,0,41,14,0,0,2,523,9,1,0,56,403,1,34,40,1,0,510,0,0,0,1,24,0,8,136,0,384,7,0,0,195,37,0,2,295,0,2,0,0,4,0,0,705,4.6594827586206895,11.762931034482758,6.974137931034483,23.642241379310345,1.0037383177570094,3.1345794392523363,1.9570093457943925,537,358,1013,41,163,13,12,11,8,29,5,3,4,1,21,34,6,5,9,1,85,650,1356,0,68,1938,0,445,1561,0,1638,368,0,664,1342,0,658,6,1065,277,0,281,8,48,1,62,99,124,117,127,479,0,0,0,67,104,176,53,66,136,2,0,12,11,11,13,1,4,2,0,2,0,0,0,0,0,602,12,1118,0,2,6,3,2,439,560,23,94,44,13,19,8,6,0,520,2,0,1199,999,28,139,8,241,1,1,194,0,150,206,14,985,2,0,0,1538,173,0,1,4,13,1,2,0,0,0,4,5,4,11,9,415,17,3,146,1684,261,51,71,61,32,19,4,4,4,5,0,0,0,0,2,37.0,46.0,56.0,53.0,52.0,28.0,50.0,52.0,44.0,48.0,50.0,45.0,60.0,61.0,55.0,73.0,45.0,46.0,37.0,32.0,32.0,32.0,28.0,29.0,29.0,24.0,23.0,25.0,20.0,23.0,18.0,22.0,28.0,21.0,23.0,28.0,20.0,18.0,27.0,30.0,27.0,18.0,20.0,24.0,27.0,15.0,22.0,19.0,19.0,24.0,16.0,22.0,14.0,11.0,24.0,21.0,12.0,14.0,9.0,20.0,15.0,17.0,16.0,18.0,15.0,12.0,9.0,21.0,20.0,17.0,9.0,13.0,18.0,6.0,15.0,10.0,7.0,9.0,12.0,13.0,9.0,5.0,11.0,5.0,7.0,8.0,6.0,8.0,5.0,1.0,2.0,2.0,4.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,737,1192,269,0,244,222,271,233,150,115,112,123,116,99,87,76,81,79,61,51,37,28,8,3,2,0,2190,0,0,8,0,2190,0,0,8,0,634,14,69,192,73,0,479,737,0,1612,586,0,0,5,438,11,0,0,0,0,0,0,13,1731,0,1,109,149,0,0,0,120,1819,0,34,119,2,0,0,2043,0,3.5745222929936307,0.0,5.055226824457594,0.0,5.121929026387625,1,32,39,0,0,0,29,436,0,140,70,53,84,81,43,31,9,13,4,4,1,1,2,0,1,282,255,16,521,16,521,30,507,0,537,0,537,239,298,2,535,229,308,18,519,5,13,14,523,104,433,18,519,427,110,404,133,5,532,82,320,134,1,0,444,93,0,0,97,2,0,0,0,0,0,0,1,437,0,2.2327746741154564,1.8603351955307263,0.0,1.0333333333333334,1.0333333333333334,54.55679702048417 +PA130502,90503,Veraguas,Las Palmas,Corozal,372,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,137,14,244,14,3,0,0,11,0,155,0,2,56,10,2,46,0,1,63,2,171,15,20,0,1,160,107,0,0,0,5,272,0,61,13,0,15,13,0,0,1,270,1,0,0,208,56,0,3,4,1,0,267,0,2,0,0,3,0,23,180,0,69,0,0,0,150,97,0,0,17,0,6,0,1,1,0,0,374,6.392712550607287,19.40080971659919,6.894736842105263,23.615384615384617,1.0036764705882353,3.551470588235294,2.2794117647058822,273,177,326,11,55,6,5,6,4,14,0,2,3,0,23,18,6,10,7,4,3,510,337,0,117,730,0,173,674,0,762,85,0,222,625,0,208,14,572,53,0,53,8,9,10,28,34,39,35,49,263,0,0,0,20,31,54,18,20,101,0,0,6,16,14,15,8,15,0,0,1,0,0,0,0,0,283,22,465,0,3,13,2,10,135,265,48,7,79,17,22,5,6,2,174,0,0,466,416,40,108,5,136,9,0,7,0,22,118,8,227,6,0,0,594,138,0,2,9,26,0,1,0,0,0,5,20,3,9,31,132,26,4,75,591,116,33,32,30,19,17,13,15,5,5,0,0,0,0,6,6.0,10.0,7.0,12.0,8.0,6.0,14.0,23.0,15.0,11.0,10.0,16.0,16.0,13.0,13.0,16.0,13.0,12.0,18.0,13.0,8.0,9.0,17.0,12.0,12.0,15.0,11.0,16.0,9.0,7.0,13.0,16.0,6.0,8.0,15.0,10.0,7.0,7.0,11.0,9.0,5.0,13.0,8.0,9.0,5.0,5.0,7.0,15.0,12.0,11.0,11.0,10.0,8.0,19.0,9.0,11.0,9.0,7.0,13.0,7.0,19.0,7.0,13.0,9.0,10.0,5.0,7.0,4.0,7.0,6.0,7.0,14.0,8.0,2.0,12.0,8.0,12.0,7.0,7.0,4.0,8.0,7.0,6.0,5.0,3.0,2.0,5.0,2.0,3.0,2.0,0.0,0.0,4.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,180,542,160,0,43,69,68,72,58,58,58,44,40,50,57,47,58,29,43,38,29,14,5,2,0,0,882,0,0,0,0,882,0,0,0,0,250,5,22,160,31,1,233,180,0,553,329,0,0,0,0,0,0,0,0,1,0,0,6,875,0,0,0,22,0,0,0,108,752,0,55,198,10,0,0,619,0,3.1215469613259668,0.0,4.239043824701195,0.0,6.621315192743764,0,0,13,0,0,0,48,212,0,57,30,33,34,41,20,13,13,17,7,3,0,2,2,0,1,230,43,138,135,151,122,62,211,116,157,7,266,82,191,3,270,182,91,149,124,98,51,22,251,37,236,24,249,194,79,218,55,2,271,56,163,53,1,0,227,46,0,0,0,0,0,0,0,0,0,0,3,270,0,1.706959706959707,1.5238095238095235,1.0,1.1428571428571428,1.1428571428571428,58.23076923076923 +PA130503,90504,Veraguas,Las Palmas,El María,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,226,19,302,12,4,0,0,15,0,181,0,2,63,19,3,38,0,27,28,7,272,23,3,0,0,175,149,0,0,0,9,333,1,87,7,1,16,19,0,0,0,320,13,0,0,184,117,2,14,16,0,0,321,0,0,0,0,12,0,12,219,0,102,0,0,0,229,65,0,0,28,0,6,0,0,5,0,0,464,6.187074829931973,17.79591836734694,6.741496598639456,22.448979591836736,1.0,3.4894894894894897,1.8738738738738736,333,165,362,14,86,13,21,15,1,17,4,3,6,0,22,7,8,3,11,0,2,616,369,0,57,928,0,192,793,0,818,167,0,230,755,0,219,11,614,141,0,141,10,16,2,24,40,50,61,54,266,1,3,0,27,36,59,22,25,106,0,0,6,9,5,3,4,11,2,0,2,0,0,0,0,0,365,5,502,0,0,4,0,19,138,247,20,78,77,6,11,14,8,0,250,0,0,581,459,28,101,14,188,0,0,35,0,17,101,12,186,0,0,0,724,126,0,2,2,15,1,2,0,0,0,3,7,6,7,31,193,12,4,107,737,115,63,31,32,18,18,7,7,7,3,1,1,0,0,0,16.0,14.0,11.0,14.0,14.0,21.0,25.0,16.0,20.0,17.0,21.0,18.0,16.0,9.0,22.0,12.0,16.0,17.0,13.0,14.0,17.0,8.0,17.0,9.0,13.0,9.0,8.0,7.0,13.0,11.0,10.0,13.0,10.0,9.0,8.0,10.0,6.0,15.0,13.0,11.0,14.0,21.0,15.0,15.0,8.0,9.0,13.0,8.0,13.0,9.0,13.0,12.0,8.0,5.0,11.0,13.0,13.0,16.0,5.0,11.0,12.0,13.0,16.0,11.0,7.0,17.0,6.0,11.0,13.0,18.0,13.0,12.0,9.0,8.0,5.0,8.0,3.0,9.0,15.0,6.0,4.0,8.0,3.0,4.0,6.0,6.0,2.0,3.0,3.0,5.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,254,580,206,0,69,99,86,72,64,48,50,55,73,52,49,58,59,65,47,41,25,19,8,1,0,0,1037,0,1,2,0,1038,0,0,2,0,258,7,23,146,42,2,308,254,0,712,328,0,0,0,47,0,0,0,0,0,0,0,7,986,0,0,10,4,0,0,0,29,997,0,41,162,23,2,0,812,0,3.2125984251968505,0.0,4.366666666666666,0.0,5.616346153846154,0,5,2,0,0,0,8,318,0,94,42,38,29,56,23,13,13,11,5,3,3,2,1,0,0,263,70,137,196,147,186,41,292,112,221,4,329,52,281,3,330,258,75,136,197,53,83,10,323,104,229,26,307,250,83,249,84,3,330,90,154,83,6,0,260,73,0,0,10,0,0,0,0,0,0,0,3,320,0,1.7447447447447448,1.3783783783783785,0.0,1.105263157894737,1.105263157894737,58.93993993993994 +PA130504,90505,Veraguas,Las Palmas,El Prado,492,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,103,225,21,300,28,5,0,0,16,0,194,0,5,39,3,10,90,0,8,22,1,281,17,28,0,0,177,172,0,0,0,0,349,0,65,14,2,39,23,0,0,4,323,22,0,0,235,41,21,44,6,2,0,346,0,0,0,0,3,0,24,234,0,91,0,0,0,285,16,5,24,8,0,1,0,1,6,3,0,495,5.04983388704319,11.667774086378737,6.770764119601329,22.56810631229236,1.008595988538682,3.2148997134670485,2.1432664756446997,355,189,454,23,141,15,21,7,2,26,3,3,17,0,19,3,3,7,10,3,0,765,397,0,158,1004,0,538,624,0,1006,156,0,347,815,0,328,19,705,110,0,112,7,16,11,35,35,81,55,46,287,0,0,0,34,46,77,21,55,154,0,1,17,13,14,22,7,11,3,2,0,0,0,0,0,0,377,26,618,0,0,6,6,13,225,356,23,1,130,3,45,26,27,1,163,0,0,673,583,46,87,26,202,0,0,34,0,26,125,8,402,3,0,0,777,208,0,0,9,25,2,0,0,0,0,5,21,1,10,61,150,56,16,83,824,142,71,56,55,38,30,15,9,9,3,1,0,0,0,3,16.0,25.0,22.0,31.0,25.0,19.0,19.0,26.0,16.0,36.0,32.0,15.0,28.0,22.0,19.0,19.0,19.0,27.0,24.0,16.0,21.0,13.0,21.0,20.0,16.0,18.0,17.0,13.0,12.0,24.0,25.0,24.0,16.0,15.0,14.0,10.0,12.0,18.0,14.0,14.0,11.0,16.0,17.0,14.0,9.0,11.0,12.0,12.0,13.0,14.0,9.0,10.0,12.0,13.0,10.0,8.0,13.0,8.0,6.0,14.0,11.0,5.0,10.0,11.0,17.0,7.0,14.0,10.0,5.0,10.0,5.0,10.0,7.0,8.0,13.0,8.0,9.0,9.0,3.0,6.0,6.0,8.0,4.0,4.0,7.0,2.0,4.0,3.0,3.0,3.0,1.0,3.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,351,728,177,0,119,116,116,105,91,84,94,68,67,62,54,49,54,46,43,35,29,15,6,3,0,0,1252,0,3,1,0,1252,0,3,1,0,389,7,31,110,37,1,330,351,0,767,488,1,0,0,115,5,0,0,0,0,0,0,5,1131,0,4,7,101,0,0,0,81,1063,0,77,197,14,1,1,966,0,3.0,0.0,4.128834355828221,0.0,6.268312101910828,1,3,27,0,0,0,22,302,0,53,40,38,47,55,47,16,14,18,9,8,4,1,1,0,1,292,63,152,203,153,202,69,286,134,221,3,352,184,171,8,347,283,72,155,200,75,80,50,305,180,175,41,314,244,111,211,144,5,350,73,175,96,11,0,257,98,0,0,23,0,0,0,0,0,0,0,0,332,0,1.895774647887324,1.6422535211267606,0.0,1.0,1.0,54.60281690140845 +PA130505,90506,Veraguas,Las Palmas,El Rincón,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,537,71,569,89,12,1,0,58,0,283,0,1,124,3,17,297,0,4,0,0,560,64,105,0,0,222,487,0,0,0,20,729,0,145,60,3,32,15,0,0,2,698,28,1,0,397,102,46,126,36,21,1,726,0,1,0,0,2,0,19,472,2,236,0,0,0,545,22,9,36,111,0,1,0,0,3,2,0,984,4.324514991181658,12.24514991181658,6.282186948853616,19.62962962962963,1.0013717421124828,3.0260631001371743,1.7503429355281208,730,403,1143,32,200,18,33,25,7,28,3,4,9,0,29,18,8,4,8,1,8,1402,1060,0,132,2330,0,1003,1459,0,2107,355,0,776,1686,0,764,12,1498,188,0,200,29,53,7,78,115,130,124,126,574,0,0,4,98,125,179,66,85,348,0,0,21,17,21,27,17,13,2,1,2,0,0,0,0,0,948,41,1139,0,1,20,6,21,459,606,32,21,261,17,64,32,22,0,577,0,0,1461,1174,59,298,33,464,5,0,113,1,58,244,24,826,1,0,0,1655,407,4,0,10,48,2,2,0,0,1,10,20,10,8,83,486,71,19,281,1685,334,108,140,157,72,71,35,16,10,4,1,1,0,0,1,42.0,41.0,42.0,48.0,51.0,51.0,58.0,55.0,56.0,63.0,55.0,56.0,52.0,49.0,53.0,60.0,50.0,46.0,45.0,38.0,45.0,48.0,36.0,39.0,37.0,32.0,32.0,24.0,49.0,27.0,32.0,24.0,33.0,31.0,34.0,32.0,26.0,26.0,26.0,38.0,26.0,35.0,36.0,26.0,31.0,21.0,25.0,26.0,24.0,28.0,22.0,21.0,20.0,34.0,16.0,28.0,18.0,27.0,21.0,29.0,20.0,26.0,24.0,20.0,17.0,25.0,20.0,24.0,15.0,13.0,25.0,13.0,19.0,9.0,16.0,9.0,21.0,9.0,13.0,9.0,14.0,12.0,4.0,6.0,12.0,14.0,6.0,5.0,1.0,4.0,6.0,2.0,3.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,772,1531,332,0,224,283,265,239,205,164,154,148,154,124,113,123,107,97,82,61,48,30,13,1,0,0,2622,1,0,12,0,2622,1,0,12,0,736,7,105,241,81,3,692,770,0,2134,500,1,0,2,114,2,0,0,0,0,0,0,18,2499,0,3,39,98,1,1,0,228,2265,0,196,332,25,1,0,2081,0,3.228448275862069,0.0,4.482142857142857,0.0,6.1669829222011385,1,14,36,1,1,0,81,596,0,52,70,67,114,169,85,71,36,31,18,9,4,2,1,0,1,493,237,173,557,149,581,61,669,181,549,5,725,249,481,5,725,441,289,188,542,115,73,43,687,187,543,40,690,582,148,500,230,8,722,160,374,191,5,0,579,151,0,0,21,2,0,0,0,0,0,0,3,704,0,2.0013698630136987,1.6082191780821915,1.0,1.022222222222222,1.022222222222222,53.90821917808219 +PA130507,90507,Veraguas,Las Palmas,Lolá,385,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,120,141,5,256,5,2,0,0,2,1,220,0,0,13,4,3,19,0,7,19,0,196,16,35,0,0,169,95,0,0,0,2,266,0,74,16,0,19,10,0,0,2,257,6,1,0,200,27,8,13,4,14,0,263,0,0,1,0,1,1,26,212,0,28,0,0,0,216,36,0,1,3,0,4,0,0,4,2,0,386,6.801587301587301,15.785714285714286,6.988095238095238,23.69047619047619,1.0150375939849623,3.387218045112782,2.323308270676692,271,165,319,32,71,10,13,2,2,21,3,0,6,0,10,4,1,4,6,0,1,548,319,0,128,739,0,353,514,0,764,103,0,221,646,0,211,10,585,61,0,61,1,17,3,26,33,44,42,37,222,0,0,0,15,31,50,30,21,128,0,0,17,13,9,31,20,14,0,0,2,0,0,0,0,0,257,13,526,0,0,8,2,32,157,252,27,58,52,7,22,4,15,0,163,0,1,494,421,38,77,4,116,13,0,15,1,27,105,9,334,6,0,0,562,173,0,1,3,55,0,2,0,0,1,6,19,5,2,20,112,17,9,79,601,121,41,34,27,28,14,12,13,11,6,0,1,0,0,6,11.0,13.0,10.0,14.0,9.0,10.0,19.0,8.0,13.0,12.0,14.0,13.0,9.0,10.0,13.0,16.0,16.0,15.0,20.0,16.0,18.0,15.0,15.0,10.0,13.0,16.0,14.0,12.0,11.0,10.0,9.0,8.0,10.0,10.0,10.0,5.0,7.0,5.0,10.0,6.0,8.0,7.0,9.0,9.0,6.0,10.0,8.0,12.0,6.0,15.0,10.0,13.0,16.0,10.0,11.0,14.0,7.0,11.0,17.0,11.0,9.0,9.0,19.0,15.0,5.0,9.0,6.0,11.0,5.0,5.0,10.0,6.0,9.0,6.0,6.0,7.0,6.0,12.0,8.0,5.0,3.0,5.0,4.0,9.0,9.0,4.0,8.0,0.0,4.0,2.0,2.0,3.0,2.0,3.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,178,564,173,0,57,62,59,83,71,63,47,33,39,51,60,60,57,36,37,38,30,18,12,1,1,0,906,6,1,2,0,906,6,1,2,0,258,2,14,140,48,4,271,178,0,599,311,5,0,0,2,0,0,0,0,0,0,0,6,907,0,11,4,50,0,0,0,65,785,0,56,144,32,2,2,679,0,2.847645429362881,0.0,4.081967213114754,0.0,7.043715846994536,2,1,21,0,0,0,27,220,0,51,34,29,33,43,19,18,8,10,9,7,4,3,0,1,1,238,33,182,89,189,82,41,230,102,169,5,266,165,106,5,266,227,44,174,97,51,123,41,230,73,198,35,236,170,101,190,81,1,270,60,142,64,5,0,223,48,0,0,0,0,0,0,0,0,0,0,3,268,0,1.822878228782288,1.5535055350553506,0.0,1.0,1.0,60.61254612546126 +PA130508,90508,Veraguas,Las Palmas,Pixvae,306,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,56,30,153,20,16,0,0,14,0,0,0,3,155,2,5,33,0,5,120,4,74,0,5,0,0,141,55,0,0,0,7,203,0,57,5,1,29,15,0,0,5,187,11,0,0,148,37,0,14,3,1,0,201,0,0,0,0,2,0,16,141,0,45,1,0,0,154,29,0,0,5,0,15,0,0,0,0,0,310,5.994535519125683,19.688524590163933,6.612021857923497,21.781420765027324,1.0098522167487685,3.0886699507389164,1.9064039408866995,205,101,264,7,47,3,10,9,1,11,4,1,9,1,5,6,2,8,1,5,4,242,399,0,31,610,0,128,513,0,557,84,0,184,457,0,184,0,390,67,0,67,5,12,0,23,30,30,32,41,104,0,0,0,26,39,73,32,24,88,0,0,5,2,1,1,2,3,1,0,0,0,0,0,0,0,231,41,298,0,1,18,18,4,107,155,12,20,61,16,21,4,6,0,77,77,0,385,288,17,101,4,109,3,14,14,0,15,55,2,191,0,0,0,467,98,0,0,0,4,1,0,0,0,0,4,6,3,3,28,103,18,9,98,427,84,29,41,27,35,16,5,4,3,2,0,0,0,0,0,3.0,10.0,7.0,12.0,10.0,7.0,14.0,14.0,13.0,13.0,13.0,16.0,10.0,7.0,15.0,7.0,21.0,15.0,11.0,8.0,11.0,12.0,7.0,9.0,10.0,12.0,9.0,10.0,13.0,7.0,6.0,10.0,10.0,9.0,6.0,8.0,8.0,7.0,12.0,4.0,4.0,9.0,7.0,6.0,7.0,8.0,9.0,4.0,6.0,8.0,7.0,10.0,4.0,11.0,8.0,6.0,8.0,6.0,6.0,5.0,8.0,12.0,5.0,10.0,4.0,5.0,8.0,8.0,6.0,8.0,5.0,3.0,6.0,4.0,3.0,1.0,0.0,8.0,0.0,3.0,1.0,4.0,2.0,1.0,0.0,2.0,1.0,1.0,2.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,164,420,89,0,42,61,61,62,49,51,41,39,33,35,40,31,39,35,21,12,8,8,4,1,0,0,671,0,2,0,0,671,0,2,0,0,218,2,4,41,8,1,235,164,0,432,239,2,0,0,18,0,0,0,0,1,0,0,1,653,0,2,16,3,0,0,0,46,606,0,43,111,7,1,1,510,0,3.2184873949579837,0.0,4.466666666666667,0.0,6.169390787518574,1,6,1,0,0,0,10,187,0,35,21,19,22,30,33,18,8,9,6,2,1,1,0,0,0,166,39,23,182,59,146,17,188,19,186,0,205,90,115,0,205,11,194,62,143,18,44,5,200,2,203,11,194,39,166,46,159,1,204,55,102,45,3,0,142,63,0,0,7,0,0,0,0,0,0,0,0,198,0,1.8780487804878048,1.4048780487804875,0.0,1.0,1.0,54.77560975609756 +PA130509,90509,Veraguas,Las Palmas,Puerto Vidal,607,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,101,341,39,422,20,20,0,0,19,0,273,0,0,137,4,5,61,0,1,118,0,335,13,15,0,0,279,194,0,0,0,8,481,0,66,14,4,30,13,0,0,6,463,11,1,0,203,220,0,10,43,5,0,460,0,0,0,2,19,0,27,245,0,207,2,0,0,316,70,4,4,71,0,13,0,0,3,0,0,610,5.4689119170984455,13.217616580310882,6.398963730569948,17.147668393782382,1.0145530145530146,3.32016632016632,2.226611226611227,488,292,741,35,183,18,12,13,7,33,6,2,37,2,26,11,0,10,7,2,8,804,931,0,84,1651,0,583,1152,0,1430,305,0,464,1271,0,451,13,1055,216,0,221,15,30,4,56,82,83,73,86,384,1,0,2,49,75,159,54,70,210,0,0,14,10,12,16,9,14,3,0,3,0,0,0,0,0,485,76,981,0,8,36,25,39,299,486,36,121,185,49,60,20,21,0,169,39,11,1033,836,34,314,20,140,1,0,34,11,48,158,13,695,13,0,0,1249,249,2,0,7,33,0,2,0,0,12,10,11,8,7,45,99,52,20,297,1228,185,80,96,131,65,33,19,14,4,1,0,0,0,0,13,25.0,40.0,34.0,35.0,41.0,31.0,30.0,38.0,29.0,24.0,39.0,34.0,32.0,22.0,32.0,43.0,40.0,44.0,49.0,49.0,25.0,33.0,34.0,26.0,34.0,37.0,22.0,23.0,21.0,20.0,21.0,19.0,18.0,22.0,21.0,13.0,22.0,23.0,31.0,27.0,20.0,17.0,18.0,14.0,28.0,15.0,19.0,9.0,22.0,13.0,15.0,20.0,9.0,17.0,15.0,17.0,21.0,18.0,11.0,14.0,10.0,25.0,13.0,13.0,25.0,11.0,20.0,11.0,13.0,13.0,17.0,19.0,9.0,22.0,13.0,15.0,10.0,8.0,4.0,7.0,5.0,6.0,4.0,8.0,5.0,7.0,5.0,4.0,2.0,2.0,3.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,486,1135,248,0,175,152,159,225,152,123,101,116,97,78,76,81,86,68,80,44,28,20,6,2,0,0,1859,0,2,8,0,1859,1,1,8,0,603,3,54,129,46,2,546,486,0,1175,693,1,0,0,119,19,1,0,0,2,0,0,24,1704,0,2,14,158,4,0,1,116,1574,0,99,261,43,1,0,1465,0,3.011477761836442,0.0,4.237068965517241,0.0,5.887640449438202,0,4,50,1,0,1,44,388,0,73,58,38,50,91,66,45,22,27,7,3,2,1,1,0,4,375,113,211,277,219,269,60,428,219,269,11,477,195,293,3,485,237,251,184,304,158,26,27,461,89,399,42,446,215,273,259,229,2,486,95,241,144,8,2,371,117,0,0,28,0,0,0,0,0,0,0,5,455,0,2.108163265306122,1.706122448979592,0.0,1.0,1.0,55.12090163934426 +PA130510,90510,Veraguas,Las Palmas,San Martín de Porres,317,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,208,6,265,7,3,0,0,3,0,141,0,2,45,8,1,81,0,0,0,0,245,4,29,0,0,163,115,0,0,0,0,278,0,72,11,1,17,12,0,0,0,275,3,0,0,171,19,2,78,7,1,0,277,0,0,0,0,1,0,22,159,0,97,0,0,0,172,48,15,0,40,0,2,0,1,0,0,0,391,5.090909090909091,13.586363636363636,6.777272727272727,22.536363636363635,1.014388489208633,3.273381294964029,2.097122302158273,282,179,576,18,137,4,18,9,4,28,5,5,1,0,11,4,2,4,3,1,8,738,399,0,133,1004,0,567,570,0,947,190,0,433,704,0,419,14,587,117,0,117,9,52,2,42,53,57,60,51,181,0,0,0,30,61,73,38,46,163,1,3,20,13,6,19,3,30,2,1,4,0,0,0,0,0,253,41,641,0,3,19,7,23,262,317,12,27,120,80,18,17,15,0,36,1,0,625,641,50,85,18,36,4,4,90,0,34,58,2,721,13,0,0,670,213,0,2,3,42,1,4,0,0,0,8,24,8,11,42,70,42,10,79,928,102,41,44,42,28,25,16,11,11,4,1,0,0,0,13,33.0,27.0,36.0,33.0,30.0,38.0,37.0,31.0,29.0,37.0,29.0,32.0,24.0,24.0,28.0,22.0,29.0,27.0,25.0,28.0,24.0,24.0,30.0,21.0,16.0,17.0,14.0,14.0,13.0,17.0,12.0,20.0,14.0,11.0,17.0,14.0,11.0,21.0,12.0,13.0,8.0,10.0,10.0,14.0,10.0,15.0,7.0,15.0,6.0,12.0,7.0,7.0,10.0,13.0,12.0,6.0,8.0,4.0,7.0,8.0,5.0,8.0,8.0,8.0,5.0,9.0,7.0,8.0,6.0,3.0,10.0,1.0,5.0,9.0,7.0,2.0,6.0,4.0,5.0,1.0,2.0,4.0,1.0,4.0,3.0,2.0,0.0,2.0,4.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,468,689,109,0,159,172,137,131,115,75,74,71,52,55,49,33,34,33,32,18,14,9,3,0,0,0,1247,0,6,13,0,1247,1,5,13,0,384,5,26,108,25,2,248,468,0,902,364,0,0,0,760,29,0,0,0,0,0,0,1,476,0,12,5,28,2,0,1,329,889,0,81,171,19,5,0,990,0,2.637149028077754,0.0,4.027972027972028,0.0,6.09478672985782,2,2,5,0,0,0,95,178,0,77,30,14,20,29,24,27,19,12,10,8,4,3,0,0,5,220,62,105,177,105,177,90,192,95,187,5,277,140,142,0,282,222,60,110,172,83,27,41,241,185,97,37,245,183,99,191,91,1,281,42,146,93,1,0,215,67,0,0,133,9,0,0,0,0,0,0,0,140,0,2.2163120567375887,2.273049645390071,0.0,1.0,1.0,51.283687943262414 +PA130511,90511,Veraguas,Las Palmas,Viguí,365,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,209,32,230,19,11,0,0,21,0,101,0,0,51,4,9,115,0,1,0,0,229,6,46,0,0,100,180,0,0,0,1,281,0,44,13,0,27,10,0,0,0,280,1,0,0,211,25,30,13,2,0,0,280,0,1,0,0,0,0,8,210,0,63,0,0,0,209,23,0,1,41,0,2,0,1,4,0,0,375,5.008620689655173,13.607758620689657,6.547413793103448,21.469827586206897,1.0,3.1423487544483986,2.088967971530249,281,165,474,19,99,12,10,19,3,21,2,3,1,0,13,13,2,6,2,2,2,470,547,0,62,955,0,313,704,0,836,181,0,350,667,0,345,5,550,117,0,126,7,23,1,36,52,57,36,57,204,0,1,0,42,62,94,29,28,102,0,0,13,10,13,15,3,5,1,0,0,0,0,0,0,0,290,9,570,0,0,6,1,9,229,276,17,39,54,3,11,8,5,0,216,0,0,567,542,35,23,8,171,0,0,60,0,75,116,8,393,1,0,0,707,141,0,0,2,19,0,0,0,0,0,3,15,2,4,9,209,24,7,26,886,101,41,13,13,21,11,8,6,5,3,0,0,0,0,1,20.0,21.0,26.0,25.0,25.0,26.0,24.0,25.0,26.0,22.0,28.0,24.0,16.0,24.0,30.0,35.0,20.0,20.0,29.0,11.0,13.0,19.0,12.0,9.0,15.0,15.0,12.0,11.0,11.0,12.0,11.0,17.0,12.0,12.0,11.0,14.0,12.0,10.0,17.0,12.0,9.0,13.0,9.0,5.0,13.0,7.0,9.0,10.0,8.0,10.0,7.0,9.0,9.0,7.0,9.0,5.0,7.0,5.0,12.0,17.0,8.0,10.0,12.0,9.0,5.0,9.0,8.0,16.0,5.0,6.0,9.0,8.0,9.0,4.0,8.0,8.0,8.0,3.0,3.0,6.0,5.0,5.0,3.0,1.0,6.0,5.0,4.0,5.0,2.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,362,596,151,0,117,123,122,115,68,61,63,65,49,44,41,46,44,44,38,28,20,18,3,0,0,0,1107,0,0,2,0,1107,0,0,2,0,317,2,27,98,48,2,253,362,0,678,431,0,0,1,249,12,0,0,0,0,0,0,4,843,0,0,0,16,0,0,0,126,967,0,37,136,13,1,0,922,0,3.3942992874109263,0.0,4.573943661971831,0.0,5.711451758340847,0,0,9,0,0,0,25,247,0,73,29,46,43,32,19,12,7,8,6,4,1,1,0,0,0,203,78,69,212,65,216,32,249,48,233,0,281,119,162,4,277,136,145,69,212,48,21,11,270,65,216,11,270,212,69,223,58,5,276,46,150,84,1,0,201,80,0,0,41,1,0,0,0,0,0,0,1,238,0,2.01779359430605,1.9288256227758007,0.0,1.0714285714285714,1.0714285714285714,55.25978647686833 +PA130512,90512,Veraguas,Las Palmas,Zapotillo,439,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,233,14,291,6,3,0,0,10,1,149,0,2,89,3,1,67,0,0,79,0,219,9,4,0,0,181,128,0,0,0,2,311,0,90,7,1,37,0,0,0,4,291,16,0,0,171,115,2,5,18,0,0,291,0,0,0,0,20,0,4,201,0,105,1,0,0,182,38,5,15,23,2,44,0,2,0,0,0,446,6.722727272727273,18.222727272727276,6.781818181818182,18.87272727272727,1.0,2.9292604501607715,1.819935691318328,311,158,360,7,84,5,12,13,3,22,2,4,11,0,21,7,4,3,2,0,2,436,472,0,20,888,0,156,752,0,756,152,0,200,708,0,194,6,594,114,0,118,3,10,4,35,35,43,41,60,252,0,3,0,20,39,60,23,43,88,0,0,4,5,6,7,1,6,1,0,1,0,0,0,0,0,328,44,445,0,7,20,14,12,136,250,15,32,98,81,8,9,7,1,165,0,0,533,459,34,91,10,229,0,0,5,0,24,99,6,338,0,0,0,696,110,0,0,3,6,1,1,0,0,0,7,4,5,7,36,200,12,3,98,690,116,46,40,55,16,18,4,4,2,1,0,0,0,0,0,18.0,16.0,31.0,19.0,17.0,16.0,16.0,17.0,11.0,14.0,19.0,20.0,15.0,15.0,11.0,13.0,12.0,15.0,19.0,16.0,14.0,15.0,29.0,11.0,12.0,12.0,14.0,14.0,8.0,16.0,10.0,6.0,8.0,11.0,11.0,11.0,7.0,19.0,9.0,15.0,5.0,8.0,10.0,11.0,10.0,15.0,12.0,14.0,10.0,14.0,8.0,8.0,9.0,10.0,12.0,12.0,8.0,4.0,11.0,12.0,7.0,11.0,6.0,8.0,11.0,10.0,7.0,14.0,16.0,9.0,7.0,9.0,6.0,6.0,9.0,7.0,6.0,7.0,6.0,5.0,7.0,2.0,3.0,4.0,7.0,7.0,0.0,2.0,1.0,1.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,255,573,164,0,101,74,80,75,81,64,46,61,44,65,47,47,43,56,37,31,23,11,5,1,0,0,987,0,0,5,0,987,0,0,5,0,318,2,23,90,27,1,276,255,0,577,415,0,0,1,42,2,0,0,0,1,0,0,2,944,0,0,34,47,0,0,0,73,838,0,60,167,11,4,0,750,0,3.157608695652174,0.0,4.0777777777777775,0.0,5.517137096774194,0,13,22,0,0,0,24,252,0,75,26,33,39,70,30,11,11,11,4,1,0,0,0,0,0,240,71,119,192,135,176,30,281,107,204,4,307,130,181,5,306,184,127,107,204,91,16,5,306,61,250,14,297,134,177,80,231,0,311,79,147,76,9,0,223,88,0,0,10,1,0,0,0,0,0,0,2,298,0,1.7138263665594855,1.4758842443729905,0.0,1.0,1.0,56.58520900321543 +,90513,Veraguas,Las Palmas,Manuel E. Amador Terrero,319,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,190,46,192,7,24,0,0,22,0,13,0,4,99,2,5,122,0,0,0,2,160,50,30,3,0,53,185,0,0,0,7,245,0,35,6,0,28,41,0,0,0,243,2,0,0,97,72,24,35,17,0,0,241,1,0,0,0,3,0,2,89,1,149,4,0,0,142,0,0,0,94,0,1,0,1,7,0,0,355,5.035211267605634,14.93661971830986,6.880281690140845,22.901408450704224,1.0,2.440816326530612,1.3959183673469389,245,135,366,19,47,5,7,4,2,13,0,2,3,0,11,9,0,1,2,1,4,405,371,0,44,732,0,121,655,0,647,129,0,205,571,0,202,3,465,106,0,108,5,6,0,19,36,42,36,40,221,0,0,0,31,48,47,13,24,74,0,0,3,5,4,2,3,6,2,0,1,0,0,0,0,0,306,3,367,0,0,2,1,6,137,187,21,16,36,11,10,8,0,0,243,1,0,474,374,9,55,10,198,1,0,36,0,23,49,5,250,1,0,0,576,85,0,0,2,10,2,1,0,0,0,1,4,2,2,12,225,9,5,49,678,71,27,21,18,12,11,5,2,1,1,0,0,0,0,1,12.0,19.0,23.0,18.0,23.0,13.0,15.0,15.0,21.0,13.0,19.0,16.0,19.0,17.0,22.0,14.0,16.0,17.0,11.0,12.0,10.0,16.0,13.0,19.0,11.0,14.0,13.0,14.0,8.0,8.0,11.0,7.0,7.0,10.0,4.0,7.0,8.0,7.0,9.0,11.0,9.0,11.0,2.0,11.0,9.0,13.0,6.0,5.0,5.0,10.0,10.0,6.0,7.0,7.0,8.0,8.0,8.0,11.0,8.0,8.0,5.0,9.0,11.0,6.0,9.0,6.0,3.0,6.0,4.0,2.0,8.0,3.0,4.0,7.0,3.0,6.0,9.0,7.0,6.0,5.0,5.0,2.0,5.0,0.0,5.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,479,104,0,95,77,93,70,69,57,39,42,42,39,38,43,40,21,25,33,17,4,3,1,0,0,848,0,0,0,0,848,0,0,0,0,242,2,29,85,32,0,193,265,0,663,185,0,0,0,4,0,0,0,0,0,0,0,2,842,0,0,1,92,0,0,0,261,494,0,23,67,6,1,0,751,0,3.295918367346939,0.0,4.747422680412371,0.0,5.4375,0,1,20,0,0,0,80,144,0,73,20,34,44,39,12,8,9,1,1,3,0,1,0,0,0,130,115,11,234,8,237,11,234,9,236,0,245,88,157,2,243,145,100,28,217,10,18,5,240,18,227,6,239,205,40,135,110,11,234,61,130,52,2,0,208,37,0,0,0,0,0,0,0,0,0,0,0,245,0,1.9346938775510203,1.526530612244898,0.0,1.1333333333333333,1.1333333333333333,53.10612244897959 +PA130704,90601,Veraguas,Montijo,Montijo,968,9,0,9,0,0,0,0,0,0,0,0,0,0,0,107,584,67,18,734,24,1,0,0,17,0,750,0,1,1,3,0,18,0,3,634,9,110,6,16,0,1,737,22,1,0,0,16,776,0,144,35,2,21,8,0,70,31,654,21,0,0,765,4,0,5,1,1,0,762,0,14,0,0,0,0,371,395,0,10,0,0,647,92,20,0,0,1,0,2,0,6,8,0,794,192,6.573122529644269,21.387351778656125,6.60737812911726,21.6231884057971,1.0077319587628866,4.112113402061856,2.804123711340206,782,425,815,66,204,22,33,41,13,52,4,10,29,5,31,18,11,31,30,4,15,2107,277,0,1036,1348,0,1941,443,0,2218,166,0,691,1693,0,542,149,1615,78,0,81,20,36,21,50,63,76,59,56,287,1,1,5,74,86,159,59,91,533,1,15,60,68,114,126,128,44,20,10,37,0,0,0,3,0,1069,89,1024,0,8,41,14,139,413,371,55,46,712,40,106,46,83,0,111,34,0,1284,1217,371,366,47,311,25,0,12,0,6,149,31,523,16,0,0,1018,764,5,14,43,282,16,37,3,0,0,49,167,83,67,232,96,136,61,267,992,210,120,150,194,157,216,123,156,86,47,8,13,4,9,16,29.0,27.0,28.0,33.0,34.0,31.0,34.0,39.0,27.0,37.0,45.0,35.0,31.0,36.0,25.0,38.0,43.0,30.0,43.0,38.0,39.0,35.0,42.0,42.0,38.0,44.0,36.0,34.0,37.0,30.0,39.0,35.0,38.0,37.0,33.0,27.0,34.0,21.0,28.0,23.0,32.0,28.0,27.0,28.0,32.0,29.0,25.0,35.0,30.0,33.0,36.0,25.0,47.0,35.0,34.0,33.0,34.0,36.0,37.0,31.0,26.0,35.0,28.0,23.0,22.0,22.0,23.0,14.0,17.0,27.0,12.0,21.0,16.0,18.0,12.0,13.0,11.0,17.0,8.0,15.0,8.0,14.0,16.0,9.0,9.0,7.0,3.0,7.0,4.0,4.0,4.0,3.0,1.0,3.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,491,1665,345,0,151,168,172,192,196,181,182,133,147,152,177,171,134,103,79,64,56,25,13,5,0,0,2473,6,16,6,0,2473,6,16,6,0,593,38,13,418,84,6,858,491,0,1025,1455,21,0,11,86,17,2,1,0,4,1,0,36,2343,0,103,213,336,14,10,8,667,1150,0,525,731,144,14,1,1086,0,2.060240963855421,0.0,2.877717391304348,0.0,9.336665333866453,42,72,116,5,4,2,226,315,0,18,32,16,45,72,84,70,75,121,80,62,34,35,17,21,0,756,26,729,53,709,73,137,645,729,53,264,518,479,303,208,574,717,65,706,76,485,221,368,414,590,192,318,464,281,501,324,458,16,766,149,392,211,30,0,510,272,0,4,22,6,0,1,0,0,0,0,8,741,0,1.641943734015345,1.5562659846547315,1.0,1.0196078431372548,1.0196078431372548,55.30562659846547 +PA130701,90602,Veraguas,Montijo,Gobernadora,119,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,46,4,60,9,1,0,0,3,0,0,0,2,62,0,0,9,0,0,0,0,71,0,2,0,0,69,4,0,0,0,0,73,0,31,5,0,9,3,0,0,1,68,4,0,0,67,4,0,1,0,1,0,70,0,1,0,0,2,0,12,58,0,3,0,0,0,51,21,0,0,0,0,1,0,0,0,0,0,121,4.486111111111111,8.23611111111111,7.0,24.0,1.0136986301369864,3.7260273972602738,2.5753424657534247,74,39,74,5,23,0,2,1,1,1,3,1,2,0,0,0,0,2,0,0,0,185,24,0,25,184,0,167,42,0,189,20,0,44,165,0,42,2,151,14,0,14,2,6,0,3,11,8,12,10,64,0,0,0,8,7,28,5,12,16,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,99,6,75,0,0,4,1,4,18,35,0,18,16,3,5,2,10,0,5,61,0,136,90,8,1,3,89,0,0,1,0,5,20,1,36,0,0,0,161,16,0,0,1,2,0,0,0,0,0,3,2,3,1,8,64,7,2,15,121,51,14,16,12,2,4,3,1,0,2,0,0,0,0,0,2.0,6.0,3.0,6.0,3.0,8.0,2.0,4.0,9.0,3.0,7.0,2.0,3.0,3.0,0.0,1.0,0.0,6.0,2.0,4.0,1.0,1.0,2.0,3.0,5.0,9.0,3.0,2.0,2.0,0.0,1.0,3.0,4.0,3.0,3.0,2.0,2.0,5.0,1.0,4.0,2.0,3.0,3.0,2.0,4.0,2.0,2.0,2.0,2.0,2.0,1.0,3.0,3.0,3.0,3.0,0.0,3.0,2.0,2.0,2.0,6.0,3.0,3.0,2.0,3.0,2.0,4.0,3.0,2.0,2.0,3.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,3.0,1.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,61,132,33,0,20,26,15,13,12,16,14,14,14,10,13,9,17,13,6,3,8,2,0,0,1,0,224,0,1,1,0,224,0,1,1,0,72,5,19,12,6,0,51,61,0,176,49,1,0,0,0,0,0,0,0,0,0,0,1,225,0,0,2,18,6,1,0,189,10,0,9,27,4,0,0,186,0,3.536231884057971,0.0,4.2075471698113205,0.0,5.831858407079646,0,2,4,3,1,0,62,2,0,9,9,6,8,15,15,4,2,1,3,2,0,0,0,0,0,70,4,8,66,43,31,18,56,19,55,2,72,34,40,3,71,66,8,33,41,0,33,9,65,58,16,1,73,27,47,25,49,1,73,26,24,22,2,0,65,9,0,0,0,0,0,0,0,0,0,0,0,74,0,1.837837837837838,1.2162162162162162,0.0,1.0,1.0,54.95945945945946 +PA130702,90603,Veraguas,Montijo,La Garceana,144,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,62,5,85,2,1,0,0,4,0,74,0,0,6,0,0,12,0,0,0,0,83,5,4,0,0,88,4,0,0,0,0,92,0,34,9,1,5,4,0,0,1,91,0,0,0,87,3,0,0,0,2,0,92,0,0,0,0,0,0,10,81,0,1,0,0,3,76,0,0,0,10,0,0,0,0,1,2,0,145,5.544303797468355,14.974683544303796,5.848101265822785,17.0126582278481,1.0108695652173914,3.108695652173913,2.0760869565217392,93,42,35,4,11,3,1,0,1,2,0,0,0,0,8,4,4,1,0,0,0,118,68,0,6,180,0,10,176,0,162,24,0,29,157,0,27,2,133,24,0,24,0,2,0,1,10,18,10,9,61,0,0,0,2,8,10,3,5,16,0,1,0,0,1,1,2,1,1,0,0,0,0,0,0,0,71,2,104,0,0,0,2,3,19,76,6,0,14,5,4,1,2,0,45,2,0,119,73,9,25,1,31,3,0,4,0,4,35,2,49,7,0,0,154,19,0,0,0,4,0,0,0,0,0,2,1,1,0,2,35,5,2,25,80,44,15,17,11,6,5,3,1,1,1,0,1,0,0,7,1.0,0.0,3.0,2.0,0.0,2.0,0.0,2.0,3.0,2.0,1.0,4.0,1.0,3.0,0.0,0.0,0.0,4.0,1.0,2.0,3.0,3.0,0.0,0.0,4.0,2.0,1.0,0.0,0.0,3.0,1.0,1.0,0.0,2.0,2.0,1.0,2.0,3.0,1.0,1.0,4.0,6.0,2.0,0.0,4.0,6.0,4.0,3.0,1.0,3.0,3.0,1.0,4.0,4.0,5.0,2.0,3.0,2.0,1.0,3.0,2.0,2.0,3.0,4.0,4.0,2.0,7.0,1.0,3.0,2.0,3.0,3.0,3.0,2.0,4.0,3.0,4.0,5.0,0.0,1.0,3.0,2.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,24,113,55,0,6,9,9,7,10,6,6,8,16,17,17,11,15,15,15,13,11,1,0,0,0,0,192,0,0,0,0,192,0,0,0,0,75,0,0,21,5,1,66,24,0,126,66,0,0,0,0,0,0,0,0,0,0,0,2,190,0,0,0,15,0,0,0,126,51,0,13,44,3,0,0,132,0,2.8125,0.0,3.423076923076923,0.0,5.661458333333333,0,0,7,0,0,0,59,27,0,14,13,9,19,15,3,6,4,3,1,1,0,1,0,0,4,91,2,67,26,57,36,18,75,61,32,1,92,46,47,1,92,55,38,53,40,10,43,3,90,3,90,8,85,57,36,47,46,2,91,45,37,11,0,0,81,12,0,0,0,0,0,0,0,0,0,0,2,91,0,1.2795698924731185,0.7849462365591398,0.0,1.0,1.0,59.66666666666666 +PA130703,90604,Veraguas,Montijo,Leones,125,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,39,5,54,1,2,0,0,3,0,0,0,12,43,0,0,4,0,1,0,0,52,2,6,0,0,58,2,0,0,0,0,60,0,50,8,0,4,6,0,0,0,60,0,0,0,54,3,0,2,0,1,0,60,0,0,0,0,0,0,1,59,0,0,0,0,0,0,47,0,0,12,0,0,0,1,0,0,0,128,5.659574468085107,14.829787234042554,7.0,24.0,1.0166666666666666,3.4833333333333334,2.4166666666666665,61,29,39,4,7,2,0,2,2,4,0,0,3,0,2,1,0,1,1,0,1,106,41,0,1,146,0,70,77,0,122,25,0,16,131,0,16,0,106,25,0,25,1,0,1,5,2,8,9,6,49,0,0,0,1,4,7,1,7,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,81,0,54,0,0,0,0,3,7,36,2,6,16,0,2,1,0,0,13,49,0,86,67,3,2,1,63,0,0,12,0,1,16,2,45,0,0,0,114,20,0,0,0,1,0,0,0,0,0,1,0,0,0,14,61,3,0,2,80,24,11,13,18,3,2,2,0,0,0,0,0,0,0,0,2.0,2.0,1.0,1.0,1.0,3.0,2.0,1.0,1.0,4.0,1.0,1.0,1.0,3.0,1.0,1.0,1.0,2.0,7.0,0.0,4.0,4.0,4.0,0.0,3.0,1.0,1.0,3.0,3.0,4.0,2.0,1.0,2.0,1.0,0.0,1.0,2.0,0.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,2.0,0.0,4.0,1.0,2.0,1.0,3.0,5.0,3.0,0.0,2.0,3.0,6.0,2.0,5.0,3.0,1.0,3.0,2.0,2.0,0.0,1.0,2.0,3.0,2.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,25,104,24,0,7,11,7,11,15,12,6,6,4,9,12,18,11,8,5,2,5,2,1,1,0,0,153,0,0,0,0,153,0,0,0,0,63,0,8,11,1,0,45,25,0,97,56,0,0,0,0,1,0,0,0,0,0,0,1,151,0,0,3,50,5,0,0,57,38,0,4,20,3,0,0,126,0,3.23728813559322,0.0,4.113636363636363,0.0,5.477124183006536,0,2,21,5,0,0,19,14,0,8,9,11,4,14,7,4,1,3,0,0,0,0,0,0,0,61,0,7,54,31,30,5,56,17,44,3,58,37,24,0,61,46,15,21,40,2,19,1,60,32,29,4,57,41,20,49,12,0,61,24,21,13,3,0,51,10,0,0,0,0,0,0,0,0,0,0,0,61,0,1.4098360655737705,1.098360655737705,0.0,1.0,1.0,57.42622950819672 +PA130705,90605,Veraguas,Montijo,Pilón,425,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,31,2,296,3,1,0,0,1,0,285,0,0,1,0,11,2,0,2,158,4,139,0,0,0,0,285,6,1,0,0,9,301,0,85,11,5,26,1,0,1,10,282,8,0,0,294,2,0,4,0,1,0,294,1,6,0,0,0,0,95,201,0,5,0,0,1,294,2,0,0,1,0,1,0,0,1,1,0,429,6.434343434343434,15.723905723905723,6.777777777777778,19.23905723905724,1.0066445182724253,3.840531561461794,2.750830564784053,303,144,250,20,59,11,20,16,7,16,3,2,22,1,12,3,3,9,5,0,1,724,119,0,271,572,0,628,215,0,791,52,0,205,638,0,182,23,609,29,0,29,9,10,4,8,24,31,32,24,165,0,0,0,23,46,74,12,30,161,0,1,8,15,29,34,29,21,5,2,17,0,0,0,0,0,386,21,380,0,1,7,10,45,134,129,15,57,179,14,44,23,30,0,102,14,0,455,419,92,154,24,125,7,0,4,0,2,86,6,158,0,0,0,465,205,0,4,17,73,6,17,0,0,0,17,41,16,12,62,57,40,22,140,393,127,41,43,59,31,77,28,33,12,19,2,4,3,2,0,12.0,2.0,9.0,8.0,6.0,13.0,4.0,8.0,17.0,8.0,12.0,15.0,10.0,12.0,16.0,16.0,7.0,7.0,12.0,10.0,15.0,16.0,12.0,11.0,12.0,11.0,15.0,14.0,11.0,12.0,8.0,11.0,8.0,7.0,6.0,9.0,12.0,11.0,13.0,5.0,5.0,10.0,8.0,8.0,11.0,16.0,10.0,9.0,11.0,12.0,8.0,14.0,10.0,19.0,14.0,12.0,12.0,15.0,12.0,14.0,14.0,8.0,10.0,15.0,9.0,9.0,10.0,6.0,10.0,8.0,7.0,5.0,11.0,7.0,8.0,4.0,6.0,4.0,6.0,4.0,10.0,8.0,6.0,6.0,6.0,4.0,2.0,5.0,3.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,152,557,165,0,37,50,65,52,66,63,40,50,42,58,65,65,56,43,38,24,36,16,6,0,2,0,870,2,2,0,0,870,2,2,0,0,216,6,4,121,37,8,330,152,0,513,357,4,0,4,3,1,0,0,0,0,0,0,15,851,0,14,43,139,6,3,4,263,402,0,132,212,44,4,1,481,0,2.2559366754617414,0.0,3.111940298507463,0.0,8.712814645308924,9,21,57,4,3,3,90,116,0,18,26,21,27,47,23,25,33,29,8,16,9,12,3,6,0,290,13,268,35,265,38,70,233,251,52,46,257,174,129,24,279,262,41,260,43,127,133,77,226,101,202,85,218,118,185,133,170,2,301,73,136,78,16,0,211,92,0,1,0,1,0,0,0,0,0,0,6,295,0,1.5016501650165015,1.3828382838283828,1.5,1.0,1.0,58.02640264026402 +,90606,Veraguas,Montijo,Cébaco,185,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,21,76,2,85,13,2,0,0,0,0,0,0,3,89,0,0,8,0,0,0,0,84,2,14,0,0,92,7,0,0,0,1,100,0,64,9,1,1,11,0,0,0,95,5,0,0,83,14,0,1,1,1,0,94,0,2,0,0,4,0,2,94,0,4,0,0,0,22,50,0,0,28,0,0,0,0,0,0,0,188,6.736111111111111,22.47222222222222,7.0,24.0,1.0,3.27,2.21,102,60,99,4,11,1,1,2,1,1,1,0,2,0,3,0,0,1,1,0,2,205,60,0,25,240,0,154,111,0,235,30,0,47,218,0,45,2,191,27,0,27,2,2,0,8,9,22,11,16,100,0,0,0,3,10,13,7,6,17,0,0,1,2,3,1,4,1,0,0,0,0,0,0,0,0,129,1,113,0,0,1,0,1,32,60,2,18,20,2,9,5,1,0,19,73,0,158,127,8,11,5,98,0,0,7,0,9,31,3,72,0,0,0,214,23,0,0,0,6,0,0,0,0,0,1,2,1,1,10,86,11,7,11,158,36,35,19,10,13,6,3,1,2,2,0,0,0,0,0,6.0,5.0,2.0,7.0,1.0,7.0,5.0,3.0,3.0,3.0,4.0,7.0,6.0,4.0,1.0,2.0,4.0,7.0,9.0,2.0,4.0,6.0,2.0,2.0,2.0,2.0,3.0,4.0,3.0,4.0,3.0,6.0,2.0,4.0,5.0,6.0,4.0,3.0,3.0,5.0,4.0,4.0,7.0,2.0,6.0,3.0,4.0,8.0,1.0,4.0,6.0,2.0,1.0,5.0,5.0,2.0,1.0,2.0,1.0,2.0,5.0,2.0,1.0,3.0,3.0,2.0,3.0,4.0,1.0,2.0,4.0,4.0,0.0,2.0,1.0,2.0,0.0,1.0,3.0,0.0,3.0,1.0,0.0,1.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,64,181,40,0,21,21,22,24,16,16,20,21,23,20,19,8,14,12,11,6,7,4,0,0,0,0,282,3,0,0,0,282,3,0,0,0,98,3,12,33,3,1,71,64,0,186,96,3,0,7,2,1,0,0,0,0,0,0,5,270,0,0,0,137,9,0,0,112,27,0,13,16,1,0,0,255,0,2.9320388349514563,0.0,4.084507042253521,0.0,5.480701754385965,0,0,42,5,0,0,46,9,0,7,12,15,16,20,12,9,3,2,3,0,1,0,0,0,0,97,5,5,97,25,77,6,96,11,91,2,100,45,57,4,98,81,21,24,78,1,23,5,97,59,43,0,102,39,63,56,46,0,102,33,54,13,2,0,92,10,0,0,0,1,0,0,0,0,0,0,0,101,0,1.5490196078431373,1.2450980392156863,0.0,1.0,1.0,51.65686274509804 +,90607,Veraguas,Montijo,Costa Hermosa,598,14,0,0,0,0,0,0,0,0,0,0,2,0,0,0,308,135,61,423,20,0,0,19,42,0,490,0,0,3,0,2,7,0,2,33,318,133,5,15,0,0,483,4,0,0,0,17,504,0,66,18,2,17,5,0,0,19,454,31,0,0,487,5,0,12,0,0,0,499,4,1,0,0,0,0,189,302,0,13,0,0,0,490,10,0,0,1,0,0,0,0,3,0,0,614,5.704,5.568,5.704,6.022,1.001984126984127,3.4662698412698414,2.4603174603174605,507,274,555,80,157,14,29,25,12,26,5,5,32,0,28,9,6,57,6,3,6,1451,153,0,461,1143,0,1272,332,0,1397,207,0,446,1158,0,382,64,1078,80,0,81,24,32,43,52,68,56,60,51,241,0,1,3,61,103,151,54,67,291,0,3,19,21,41,32,30,7,2,2,8,0,0,0,0,0,585,40,803,0,0,7,22,61,283,371,26,62,245,14,97,19,65,1,72,105,0,890,831,120,220,20,248,7,0,3,0,19,119,25,394,4,0,0,969,353,3,9,19,64,3,8,0,0,0,12,33,32,16,133,119,68,26,186,908,185,95,106,117,81,113,41,38,22,6,2,3,0,0,4,28.0,27.0,24.0,38.0,34.0,28.0,33.0,29.0,31.0,21.0,36.0,35.0,16.0,24.0,35.0,31.0,30.0,31.0,24.0,27.0,31.0,30.0,29.0,20.0,30.0,31.0,31.0,41.0,16.0,23.0,22.0,18.0,12.0,17.0,17.0,18.0,22.0,14.0,22.0,17.0,30.0,16.0,20.0,26.0,21.0,15.0,31.0,21.0,24.0,19.0,16.0,29.0,16.0,17.0,21.0,9.0,18.0,13.0,15.0,21.0,18.0,12.0,11.0,21.0,10.0,18.0,10.0,11.0,15.0,12.0,8.0,9.0,8.0,18.0,11.0,16.0,7.0,7.0,5.0,8.0,2.0,9.0,8.0,5.0,3.0,2.0,0.0,1.0,2.0,4.0,3.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,439,1074,208,0,151,142,146,143,140,142,86,93,113,110,99,76,72,66,54,43,27,9,7,1,1,0,1694,14,8,5,0,1694,14,8,5,0,495,13,85,157,57,2,473,439,0,1091,618,12,0,1,4,0,0,0,0,5,0,0,22,1689,0,27,29,522,13,5,0,400,725,0,172,389,60,8,1,1091,0,2.5266187050359714,0.0,3.37782340862423,0.0,7.142940151074956,9,12,171,6,2,0,136,171,0,23,27,29,41,87,66,59,59,56,28,13,5,5,5,2,0,491,16,450,57,423,84,57,450,453,54,64,443,222,285,49,458,470,37,432,75,290,142,117,390,425,82,111,396,148,359,150,357,1,506,90,249,147,21,0,357,150,0,1,0,0,0,0,0,0,0,0,8,498,0,1.755424063116371,1.6390532544378698,1.0,1.0,1.0,52.50295857988166 +,90608,Veraguas,Montijo,Unión del Norte,413,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,260,15,11,273,2,0,0,0,11,0,266,0,1,7,0,0,12,0,0,92,0,191,1,2,0,0,269,11,0,0,0,6,286,0,83,33,4,14,2,0,11,3,263,9,0,0,280,0,0,4,0,2,0,285,0,1,0,0,0,0,81,200,0,5,0,0,1,260,18,0,0,0,0,0,0,2,4,1,0,422,6.534050179211469,16.59856630824373,7.0,19.8673835125448,1.006993006993007,3.772727272727273,2.685314685314685,288,158,262,27,41,17,10,3,1,12,3,2,8,0,20,19,6,8,2,2,8,623,175,0,227,571,0,522,276,0,713,85,0,181,617,0,158,23,560,57,0,58,5,17,0,23,26,35,28,19,160,0,0,0,28,32,62,22,39,112,0,1,3,15,24,24,45,10,3,1,6,0,0,0,0,0,319,38,365,0,2,19,2,37,109,141,15,63,177,12,50,9,21,0,81,0,0,443,389,70,154,13,109,3,0,1,0,12,93,9,172,0,0,0,478,154,0,1,11,69,3,6,0,0,0,11,35,27,9,57,44,58,11,105,360,119,50,40,62,39,84,24,25,10,12,5,1,1,0,0,6.0,8.0,8.0,12.0,18.0,7.0,15.0,14.0,11.0,11.0,12.0,5.0,13.0,4.0,11.0,8.0,9.0,12.0,14.0,11.0,9.0,11.0,10.0,21.0,13.0,10.0,14.0,13.0,14.0,13.0,18.0,14.0,7.0,9.0,8.0,8.0,11.0,8.0,8.0,12.0,12.0,8.0,11.0,4.0,6.0,7.0,5.0,11.0,11.0,12.0,4.0,13.0,14.0,6.0,6.0,11.0,15.0,16.0,13.0,12.0,13.0,7.0,7.0,10.0,6.0,6.0,13.0,11.0,10.0,2.0,8.0,7.0,3.0,12.0,3.0,5.0,4.0,4.0,9.0,6.0,5.0,3.0,5.0,6.0,6.0,2.0,4.0,1.0,3.0,1.0,2.0,2.0,1.0,1.0,3.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,155,525,152,0,52,58,45,54,64,64,56,47,41,46,43,67,43,42,33,28,25,11,9,4,0,0,829,2,0,1,0,829,2,0,1,0,227,2,7,136,36,6,263,155,0,477,355,0,0,0,22,0,0,0,0,9,0,0,6,795,0,7,8,24,0,0,1,48,744,0,134,220,30,6,1,441,0,2.6426426426426426,0.0,3.587982832618026,0.0,7.810096153846154,3,1,9,0,0,0,23,252,0,11,24,14,28,39,31,40,21,33,19,10,5,7,4,2,0,278,10,243,45,232,56,28,260,250,38,35,253,146,142,25,263,251,37,237,51,97,140,71,217,171,117,84,204,168,120,100,188,7,281,65,160,56,7,0,212,76,0,0,3,0,0,0,0,0,0,0,2,283,0,1.5381944444444444,1.3506944444444444,0.0,1.0625,1.0625,55.73611111111112 +PA130804,90701,Veraguas,Río de Jesús,Río de Jesús,1228,0,1,0,0,0,0,0,0,0,0,0,3,0,0,7,638,193,14,827,11,4,0,0,10,0,790,0,0,8,4,1,46,0,3,651,3,160,15,18,0,5,765,67,1,0,0,19,852,0,226,29,7,80,35,0,2,28,790,32,0,0,774,13,2,37,4,22,0,841,3,8,0,0,0,0,250,558,0,43,0,1,369,440,24,0,0,10,0,1,0,0,6,2,0,1232,6.518607442977191,18.72749099639856,6.657863145258103,19.98079231692677,1.0,3.582159624413145,2.5187793427230045,855,447,787,44,185,23,33,20,11,44,8,11,13,1,54,15,4,9,23,11,11,1892,499,0,600,1791,0,1552,839,0,2188,203,0,634,1757,0,547,87,1639,118,0,120,30,31,7,65,49,81,88,78,456,0,0,1,73,80,179,63,107,450,0,11,27,37,76,130,78,30,12,2,29,0,0,1,0,0,852,111,1236,0,5,63,38,142,432,469,124,69,480,36,81,25,61,1,239,5,0,1300,1182,290,359,29,231,11,0,8,0,30,235,16,597,87,0,0,1314,580,2,13,33,215,13,29,0,0,0,51,118,62,69,99,100,97,62,305,1067,301,129,174,133,108,228,79,88,47,21,8,5,1,6,87,24.0,23.0,19.0,25.0,41.0,25.0,31.0,31.0,32.0,32.0,43.0,29.0,30.0,34.0,31.0,39.0,39.0,37.0,39.0,27.0,37.0,42.0,44.0,37.0,35.0,36.0,33.0,36.0,30.0,28.0,29.0,23.0,26.0,30.0,32.0,37.0,27.0,42.0,33.0,26.0,37.0,21.0,31.0,30.0,30.0,38.0,29.0,32.0,25.0,27.0,27.0,36.0,31.0,38.0,31.0,26.0,41.0,25.0,32.0,30.0,34.0,28.0,18.0,29.0,25.0,27.0,22.0,28.0,13.0,26.0,22.0,11.0,19.0,21.0,14.0,13.0,25.0,20.0,21.0,11.0,17.0,14.0,14.0,17.0,18.0,19.0,6.0,9.0,5.0,4.0,8.0,5.0,2.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,450,1595,437,0,132,151,167,181,195,163,140,165,149,151,163,154,134,116,87,90,80,43,18,2,1,0,2467,12,1,2,0,2467,12,1,2,0,668,9,51,402,129,14,759,450,0,1552,925,5,0,2,12,4,0,0,0,0,0,0,26,2438,0,12,8,459,8,0,2,286,1707,0,409,718,139,4,2,1210,0,2.400570884871551,0.0,3.195973154362416,0.0,8.395648670427075,0,3,180,2,0,2,111,557,0,47,71,45,88,102,92,106,69,92,55,30,16,20,4,8,7,815,40,722,133,693,162,109,746,684,171,143,712,491,364,86,769,726,129,688,167,346,342,240,615,520,335,269,586,370,485,377,478,5,850,209,429,203,14,0,561,294,0,0,2,2,0,0,0,0,0,0,1,850,0,1.52046783625731,1.3824561403508773,1.0,1.022222222222222,1.022222222222222,56.28771929824561 +PA130802,90702,Veraguas,Río de Jesús,Las Huacas,401,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,179,18,250,23,4,0,0,14,0,246,0,0,3,1,2,34,0,5,140,1,134,2,13,0,1,230,48,0,0,0,13,291,0,57,12,1,30,14,0,0,3,264,23,0,1,261,18,0,3,7,0,2,285,0,0,0,0,6,0,19,248,0,23,1,0,2,273,0,0,0,3,0,0,0,0,11,2,0,405,6.090909090909091,12.487272727272726,6.654545454545454,14.309090909090909,1.0034364261168385,3.209621993127148,1.9140893470790377,292,148,258,35,69,7,21,6,0,5,1,3,5,0,22,17,2,13,12,37,23,474,331,0,44,761,0,305,500,0,658,147,0,193,612,0,181,12,523,89,0,89,0,10,0,28,44,45,39,20,216,0,0,0,25,40,51,19,34,105,0,0,7,8,9,13,2,1,0,0,0,0,0,0,0,0,286,29,423,0,0,15,13,15,130,191,16,71,84,15,31,6,26,1,108,42,0,457,393,51,108,6,133,1,0,14,0,44,117,8,123,58,0,0,593,126,0,1,2,16,0,0,0,0,0,7,5,11,4,27,121,34,11,95,396,147,56,55,46,33,30,19,6,3,1,0,0,0,0,58,13.0,9.0,11.0,12.0,9.0,10.0,13.0,9.0,16.0,10.0,15.0,12.0,14.0,13.0,16.0,12.0,10.0,17.0,16.0,12.0,10.0,14.0,16.0,14.0,14.0,10.0,16.0,6.0,7.0,9.0,7.0,8.0,10.0,9.0,6.0,6.0,4.0,9.0,6.0,9.0,4.0,12.0,12.0,14.0,10.0,9.0,12.0,14.0,9.0,10.0,11.0,13.0,17.0,18.0,7.0,15.0,7.0,10.0,7.0,5.0,4.0,10.0,7.0,6.0,8.0,7.0,3.0,8.0,8.0,14.0,6.0,6.0,8.0,4.0,7.0,6.0,11.0,5.0,7.0,8.0,5.0,4.0,3.0,6.0,6.0,5.0,3.0,3.0,3.0,4.0,4.0,1.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,182,508,160,0,54,58,70,67,68,48,40,34,52,54,66,44,35,40,31,37,24,18,9,1,0,0,848,0,1,1,0,848,0,1,1,0,285,0,12,50,27,1,293,182,0,479,371,0,0,0,13,14,0,0,0,0,0,0,0,823,0,2,1,312,6,10,0,284,235,0,62,177,16,2,1,592,0,3.0479041916167664,0.0,3.954356846473029,0.0,6.092941176470588,1,1,107,4,3,0,99,77,0,27,31,29,61,38,38,21,17,11,6,4,2,3,0,0,4,262,30,202,90,200,92,14,278,200,92,10,282,168,124,0,292,186,106,180,112,80,100,13,279,87,205,32,260,173,119,192,100,3,289,93,128,66,5,0,215,77,0,0,1,2,0,0,0,0,0,0,0,289,0,1.5650684931506849,1.345890410958904,1.0,1.0384615384615383,1.0384615384615383,57.53767123287671 +PA130803,90703,Veraguas,Río de Jesús,Los Castillos,313,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,26,8,189,2,0,0,0,8,0,196,0,0,0,0,0,3,0,0,180,0,17,1,1,0,0,186,2,0,0,0,11,199,0,94,12,0,9,0,0,0,3,191,5,0,0,199,0,0,0,0,0,0,197,2,0,0,0,0,0,78,121,0,0,0,0,0,192,5,0,0,0,0,0,0,1,1,0,0,314,6.964467005076142,23.522842639593907,6.964467005076142,23.639593908629443,1.0,3.884422110552764,2.7939698492462317,199,97,139,7,36,2,6,3,4,12,2,1,0,1,11,5,4,4,0,0,4,359,130,0,148,341,0,240,249,0,462,27,0,123,366,0,105,18,352,14,0,14,5,6,1,12,9,15,14,18,109,0,0,2,12,16,30,9,11,82,0,3,13,12,21,17,41,10,1,0,6,0,0,0,0,0,191,8,257,0,0,6,1,47,74,93,2,41,120,2,19,11,6,0,41,0,0,258,251,86,61,11,34,5,0,2,0,1,68,1,93,0,0,0,248,134,2,3,8,54,1,6,0,0,0,9,40,9,13,21,10,18,16,63,202,89,17,28,34,20,47,22,22,13,11,0,1,0,3,0,7.0,1.0,4.0,8.0,4.0,5.0,7.0,7.0,6.0,4.0,4.0,7.0,6.0,6.0,6.0,6.0,7.0,6.0,10.0,0.0,3.0,9.0,2.0,11.0,11.0,13.0,5.0,5.0,8.0,2.0,2.0,3.0,7.0,3.0,10.0,7.0,3.0,4.0,3.0,2.0,4.0,4.0,4.0,5.0,4.0,7.0,9.0,3.0,5.0,3.0,4.0,10.0,4.0,9.0,12.0,11.0,10.0,9.0,8.0,6.0,6.0,5.0,3.0,8.0,6.0,4.0,4.0,5.0,5.0,8.0,6.0,8.0,8.0,7.0,6.0,3.0,7.0,7.0,4.0,4.0,4.0,2.0,6.0,2.0,4.0,2.0,4.0,3.0,1.0,3.0,1.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,82,301,126,0,24,29,29,29,36,33,25,19,21,27,39,44,28,26,35,25,18,13,8,0,1,0,507,0,1,1,0,507,0,1,1,0,136,3,7,89,42,2,148,82,0,302,207,0,0,0,4,0,0,0,0,1,0,0,1,503,0,7,11,21,1,0,1,39,429,0,98,175,47,2,0,187,0,2.3891402714932126,0.0,3.10062893081761,0.0,8.943025540275048,0,4,9,0,0,0,20,166,0,12,27,11,23,16,13,19,16,26,10,11,1,9,2,3,0,191,8,184,15,173,26,19,180,171,28,34,165,110,89,42,157,146,53,178,21,95,83,53,146,55,144,76,123,40,159,113,86,0,199,65,89,44,1,0,127,72,0,0,2,0,0,0,0,0,0,0,0,197,0,1.2964824120603016,1.2613065326633166,0.0,1.0,1.0,61.14572864321608 +PA130805,90704,Veraguas,Río de Jesús,Utirá,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,69,30,3,93,8,2,0,0,1,0,99,0,0,3,0,0,0,0,2,83,0,16,0,3,0,2,88,8,1,0,0,7,104,0,42,7,0,10,4,0,0,0,96,8,0,0,102,1,0,0,1,0,0,103,0,0,0,0,1,0,19,83,0,2,0,0,0,102,0,0,0,0,0,0,0,0,1,1,0,167,6.950980392156863,19.49019607843137,6.950980392156863,22.11764705882353,1.0,3.6538461538461537,2.6538461538461537,104,47,72,6,23,5,8,1,1,5,1,0,0,0,5,3,2,1,2,0,0,185,80,0,60,205,0,112,153,0,242,23,0,60,205,0,58,2,189,16,0,16,5,1,0,7,8,15,7,9,89,0,0,1,10,8,16,6,10,28,0,0,5,3,7,9,4,0,1,0,0,0,0,0,0,0,105,3,136,0,0,1,1,18,36,43,12,27,33,5,10,0,6,2,52,0,0,151,122,29,33,0,43,3,0,0,0,5,42,0,34,4,0,0,186,43,1,0,3,10,1,0,0,0,0,4,6,2,6,12,26,9,5,38,95,47,37,24,22,8,23,4,5,1,3,0,0,0,0,4,2.0,2.0,3.0,1.0,6.0,1.0,2.0,7.0,1.0,4.0,1.0,3.0,5.0,1.0,3.0,0.0,5.0,2.0,6.0,4.0,4.0,3.0,3.0,2.0,3.0,0.0,3.0,1.0,2.0,5.0,4.0,0.0,6.0,3.0,1.0,3.0,1.0,3.0,3.0,2.0,3.0,1.0,3.0,3.0,4.0,3.0,6.0,2.0,4.0,4.0,5.0,7.0,5.0,5.0,5.0,7.0,6.0,4.0,3.0,2.0,2.0,5.0,3.0,1.0,4.0,2.0,3.0,1.0,1.0,4.0,8.0,1.0,3.0,3.0,0.0,8.0,2.0,2.0,3.0,2.0,4.0,2.0,2.0,4.0,1.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,42,166,65,0,14,15,13,17,15,11,14,12,14,19,27,22,15,11,15,17,13,6,0,3,0,0,273,0,0,0,0,273,0,0,0,0,92,1,5,29,24,0,80,42,0,215,58,0,0,0,0,0,0,0,0,0,0,0,8,265,0,0,0,6,3,0,0,3,261,0,31,66,17,1,0,158,0,3.504854368932039,0.0,3.963855421686747,0.0,7.0,0,0,1,0,0,0,3,100,0,2,10,8,16,22,12,10,4,12,2,1,1,2,1,0,1,95,9,91,13,79,25,3,101,90,14,3,101,69,35,0,104,70,34,72,32,49,23,14,90,36,68,14,90,65,39,56,48,0,104,34,45,25,0,0,79,25,0,0,0,0,0,0,0,0,0,0,1,103,0,1.4519230769230769,1.1730769230769231,0.0,1.0,1.0,61.59615384615385 +PA130801,90705,Veraguas,Río de Jesús,Catorce de Noviembre,363,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,135,15,242,6,4,0,0,11,0,198,0,1,17,0,0,45,0,2,121,1,122,11,8,0,0,199,54,0,0,0,10,263,0,60,15,0,18,12,0,0,0,249,13,1,0,226,20,0,9,5,3,0,261,1,1,0,0,0,0,36,200,0,24,3,0,0,234,11,0,0,6,0,0,0,1,11,0,0,368,5.889795918367347,16.057142857142857,5.979591836734694,18.83265306122449,1.0038022813688212,3.44106463878327,2.414448669201521,264,125,197,11,42,13,28,4,4,12,3,0,5,0,44,10,6,3,10,7,10,403,275,0,44,634,0,259,419,0,535,143,0,150,528,0,143,7,439,89,0,92,5,13,0,39,29,36,32,43,156,0,0,1,17,14,37,18,19,79,0,1,3,8,12,14,4,1,1,1,2,0,0,0,1,0,205,30,385,0,0,13,17,29,88,160,43,65,46,7,23,8,16,0,126,2,0,386,322,34,55,9,120,1,0,9,0,23,117,5,134,27,0,0,492,96,1,1,5,20,2,2,1,0,0,3,8,7,5,19,111,29,6,47,335,154,43,44,38,21,27,4,4,7,3,0,0,1,0,27,3.0,15.0,10.0,2.0,7.0,6.0,13.0,12.0,13.0,7.0,10.0,11.0,6.0,8.0,12.0,9.0,6.0,6.0,3.0,4.0,7.0,8.0,8.0,5.0,8.0,8.0,6.0,8.0,7.0,3.0,10.0,11.0,11.0,7.0,5.0,5.0,4.0,3.0,7.0,5.0,5.0,9.0,12.0,6.0,9.0,7.0,8.0,6.0,7.0,5.0,15.0,13.0,13.0,6.0,8.0,7.0,8.0,6.0,10.0,15.0,7.0,13.0,12.0,11.0,8.0,12.0,8.0,12.0,6.0,9.0,11.0,12.0,4.0,6.0,18.0,15.0,4.0,5.0,6.0,5.0,5.0,2.0,1.0,6.0,5.0,3.0,3.0,3.0,2.0,5.0,2.0,1.0,4.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,135,390,183,0,37,51,47,28,36,32,44,24,41,33,55,46,51,47,51,35,19,16,9,4,2,0,708,0,0,0,0,708,0,0,0,0,217,2,40,79,45,0,190,135,0,502,204,2,0,0,7,0,0,0,0,1,0,0,4,696,0,5,1,165,3,0,0,294,240,0,34,160,27,1,1,485,0,3.3191489361702127,0.0,4.061032863849765,0.0,5.860169491525424,2,0,69,1,0,0,102,90,0,28,48,23,43,40,26,24,11,8,2,3,5,1,1,0,1,226,38,173,91,169,95,17,247,162,102,15,249,147,117,0,264,164,100,165,99,28,137,18,246,47,217,32,232,179,85,184,80,1,263,90,113,56,5,0,189,75,0,0,1,0,0,0,0,0,0,0,1,262,0,1.4621212121212122,1.2196969696969695,0.0,1.0,1.0,60.246212121212125 +PA130904,90801,Veraguas,San Francisco,San Francisco,1008,8,0,0,0,0,0,0,0,0,0,0,3,0,0,0,624,128,6,747,5,2,0,0,4,0,691,0,2,34,1,10,19,0,1,610,2,107,7,27,1,4,697,46,1,0,0,14,758,1,185,31,3,20,18,0,13,25,684,35,0,1,719,2,4,25,1,7,0,729,1,24,1,0,2,1,304,428,0,26,0,0,605,74,44,15,0,4,0,6,0,1,6,3,701,318,6.8478561549100965,21.244813278008294,6.911479944674966,22.525587828492394,1.0105540897097625,3.926121372031662,2.6728232189973613,769,409,873,33,275,17,49,30,13,53,10,9,26,1,46,18,5,15,10,4,10,2019,419,0,944,1494,0,1660,778,0,2258,180,0,710,1728,0,618,92,1613,115,0,124,20,36,4,55,68,79,72,77,293,0,1,9,72,107,124,49,105,595,0,3,17,37,78,56,52,236,18,2,45,0,0,0,4,0,924,66,1214,0,2,35,7,204,451,438,38,83,586,41,126,36,80,3,81,1,1,1291,1276,336,332,44,214,17,0,11,1,22,145,17,748,5,0,0,1051,699,9,5,52,325,15,44,4,0,1,51,173,65,60,153,45,116,54,272,1261,230,92,114,153,169,196,93,127,61,43,10,8,0,5,5,28.0,26.0,36.0,39.0,35.0,42.0,30.0,48.0,46.0,33.0,40.0,39.0,27.0,47.0,47.0,27.0,34.0,38.0,34.0,37.0,35.0,26.0,40.0,50.0,39.0,41.0,45.0,39.0,32.0,52.0,41.0,33.0,26.0,34.0,38.0,27.0,32.0,29.0,24.0,28.0,28.0,31.0,22.0,20.0,22.0,35.0,32.0,32.0,33.0,20.0,32.0,33.0,42.0,31.0,37.0,30.0,27.0,33.0,27.0,28.0,26.0,22.0,28.0,27.0,24.0,24.0,15.0,19.0,15.0,21.0,19.0,17.0,25.0,20.0,16.0,19.0,18.0,17.0,23.0,13.0,17.0,12.0,15.0,11.0,11.0,10.0,9.0,8.0,5.0,4.0,5.0,2.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,563,1603,401,0,164,199,200,170,190,209,172,140,123,152,175,145,127,94,97,90,66,36,13,3,2,0,2546,8,9,4,0,2546,8,9,4,0,611,18,79,426,99,8,763,563,0,1416,1140,11,0,0,32,34,0,0,0,0,0,0,26,2475,0,7,8,23,2,0,3,193,2331,0,518,655,205,16,2,1171,0,2.1989150090415914,0.0,3.1163101604278074,0.0,9.176470588235292,2,3,8,2,0,1,75,678,0,31,56,22,47,83,95,85,67,84,57,52,33,29,13,12,0,734,35,657,112,628,141,127,642,606,163,164,605,419,350,172,597,670,99,625,144,412,213,294,475,431,338,288,481,258,511,185,584,15,754,156,348,248,17,0,500,269,0,0,12,4,0,0,0,0,0,0,7,746,0,1.6788036410923275,1.659297789336801,1.1,1.0,1.0,56.50975292587776 +PA130901,90802,Veraguas,San Francisco,Corral Falso,280,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,91,81,6,167,5,1,0,0,5,0,159,5,0,3,2,0,8,0,1,6,4,139,9,20,0,0,151,18,0,0,0,9,178,0,76,13,1,7,10,0,0,1,161,16,0,0,165,0,0,8,0,5,0,174,0,4,0,0,0,0,29,142,0,7,0,0,0,176,0,0,0,1,0,1,0,0,0,0,0,288,6.914772727272728,21.522727272727277,6.948863636363637,22.164772727272727,1.0280898876404494,3.679775280898877,2.2191011235955056,186,85,170,16,32,3,2,3,2,13,0,1,2,0,13,3,0,6,3,0,3,406,72,0,125,353,0,304,174,0,433,45,0,117,361,0,102,15,340,21,0,22,0,10,2,8,17,29,16,24,89,0,0,1,15,29,48,16,17,83,0,0,3,5,9,2,3,23,3,0,4,0,0,0,0,0,201,5,230,0,0,4,0,17,80,112,21,0,99,2,12,2,10,0,80,0,0,275,240,31,94,2,74,0,0,4,0,10,34,9,136,0,0,0,299,99,1,0,4,27,2,4,0,0,0,10,15,6,4,11,57,32,15,56,263,43,37,19,44,42,37,10,10,5,4,0,0,0,1,0,12.0,9.0,7.0,9.0,7.0,11.0,6.0,6.0,8.0,4.0,9.0,6.0,7.0,6.0,9.0,5.0,6.0,7.0,11.0,4.0,13.0,9.0,8.0,10.0,9.0,9.0,4.0,12.0,8.0,4.0,6.0,2.0,8.0,7.0,9.0,12.0,1.0,6.0,7.0,8.0,5.0,5.0,3.0,7.0,9.0,4.0,4.0,5.0,4.0,7.0,11.0,8.0,7.0,4.0,6.0,4.0,5.0,6.0,6.0,3.0,8.0,4.0,3.0,10.0,3.0,4.0,4.0,6.0,5.0,4.0,2.0,5.0,5.0,1.0,8.0,4.0,0.0,4.0,3.0,4.0,2.0,0.0,1.0,0.0,3.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,116,326,73,0,44,35,37,33,49,37,32,34,29,24,36,24,28,23,21,15,6,6,0,2,0,0,513,0,0,2,0,513,0,0,2,0,153,2,10,66,24,1,143,116,0,311,204,0,0,1,23,15,0,0,0,0,0,0,2,474,0,1,3,10,3,5,0,208,285,0,92,110,23,2,0,288,0,2.3054187192118225,0.0,3.198529411764706,0.0,7.467961165048544,0,1,5,2,2,0,71,105,0,17,12,18,11,27,24,27,12,12,9,10,3,0,0,1,0,172,14,146,40,144,42,33,153,141,45,17,169,91,95,3,183,159,27,140,46,46,94,34,152,111,75,55,131,120,66,117,69,2,184,65,84,35,2,0,121,65,0,1,8,1,0,0,0,0,0,0,2,174,0,1.478494623655914,1.2903225806451613,1.0,1.0,1.0,53.7258064516129 +PA130902,90803,Veraguas,San Francisco,Los Hatillos,563,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,288,30,358,5,14,0,0,16,0,58,0,5,138,10,0,182,0,0,17,2,258,54,60,1,1,136,256,0,0,0,1,393,0,81,35,0,23,35,0,0,1,383,8,1,0,234,28,36,79,11,4,1,385,0,0,0,0,8,0,19,257,0,116,1,0,0,241,24,8,6,80,1,27,0,1,5,0,0,567,5.4,15.10943396226415,6.916981132075471,23.41509433962264,1.0,2.8193384223918576,1.7404580152671756,393,193,416,11,98,19,15,4,2,19,3,2,3,0,13,7,5,11,7,1,8,693,409,0,96,1006,0,349,753,0,924,178,0,246,856,0,225,21,740,116,0,117,4,8,4,44,62,68,59,57,274,0,0,0,25,29,68,35,37,145,1,2,9,8,15,19,4,6,1,0,1,0,0,0,0,0,593,14,409,0,0,13,0,13,146,187,33,30,79,4,17,16,7,0,479,0,0,681,497,42,62,16,337,1,0,143,1,63,127,13,329,11,0,0,801,181,0,2,5,25,1,1,0,0,1,4,13,8,7,25,461,16,3,69,681,187,67,75,63,25,34,10,15,6,1,2,0,0,1,11,23.0,24.0,15.0,14.0,12.0,15.0,11.0,18.0,15.0,15.0,13.0,15.0,14.0,15.0,14.0,17.0,27.0,23.0,24.0,30.0,21.0,18.0,24.0,8.0,13.0,11.0,11.0,11.0,10.0,14.0,12.0,13.0,10.0,7.0,10.0,10.0,15.0,21.0,15.0,13.0,14.0,15.0,15.0,11.0,21.0,20.0,17.0,14.0,16.0,14.0,9.0,16.0,16.0,12.0,16.0,12.0,9.0,18.0,14.0,17.0,16.0,12.0,15.0,4.0,8.0,9.0,12.0,15.0,10.0,9.0,11.0,15.0,12.0,8.0,12.0,11.0,6.0,9.0,8.0,7.0,9.0,6.0,5.0,6.0,6.0,6.0,0.0,3.0,2.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,233,739,206,0,88,74,71,121,84,57,52,74,76,81,69,70,55,55,58,41,32,12,7,1,0,0,1171,0,1,6,0,1171,0,1,6,0,316,3,55,150,64,1,356,233,0,884,293,1,0,1,1,0,0,0,0,1,0,0,3,1172,0,3,3,71,0,0,0,71,1030,0,69,154,11,5,0,939,0,3.0,0.0,3.989864864864865,0.0,5.999151103565365,1,1,19,0,0,0,26,346,0,54,46,38,68,73,37,26,14,17,8,3,4,3,0,1,1,292,101,60,333,71,322,39,354,60,333,4,389,255,138,3,390,239,154,112,281,70,42,27,366,98,295,29,364,366,27,184,209,1,392,123,175,92,3,0,325,68,0,1,0,0,0,0,0,0,0,0,1,391,0,1.732824427480916,1.2646310432569974,1.0,1.0,1.0,57.56234096692112 +PA130903,90804,Veraguas,San Francisco,Remance,543,30,0,0,0,0,0,0,0,0,1,0,1,0,0,0,87,307,28,380,14,8,0,0,20,0,131,0,0,120,3,3,163,0,2,0,1,332,53,35,0,1,98,316,0,0,0,8,422,0,111,18,0,13,9,0,0,0,403,19,0,0,264,2,64,74,18,0,0,418,1,2,0,1,0,0,11,287,3,121,0,0,0,253,53,2,14,67,0,23,0,0,9,1,0,575,6.26797385620915,18.366013071895424,6.898692810457517,22.062091503267972,1.0,2.9526066350710902,1.853080568720379,423,253,552,11,65,20,43,6,3,19,3,3,51,0,22,18,4,11,13,0,15,756,615,0,62,1309,0,306,1065,0,1097,274,0,294,1077,0,288,6,899,178,0,178,4,21,5,45,79,98,83,100,396,0,0,1,37,43,94,35,32,95,0,0,2,7,2,4,3,7,0,0,0,0,0,0,0,0,578,11,656,0,4,3,2,25,193,311,39,88,217,0,15,10,5,0,340,0,0,897,555,30,264,11,201,2,0,79,0,58,143,12,373,0,0,0,1124,111,1,0,0,9,0,0,0,0,0,6,4,4,2,35,260,9,7,262,944,148,58,53,120,72,32,14,8,1,1,0,0,0,1,0,17.0,17.0,17.0,30.0,23.0,21.0,22.0,19.0,14.0,27.0,29.0,27.0,30.0,25.0,16.0,21.0,19.0,22.0,26.0,15.0,21.0,15.0,17.0,20.0,16.0,21.0,19.0,13.0,11.0,18.0,16.0,18.0,20.0,8.0,15.0,14.0,13.0,12.0,18.0,13.0,16.0,16.0,18.0,20.0,16.0,25.0,25.0,15.0,27.0,17.0,21.0,20.0,9.0,21.0,19.0,15.0,19.0,14.0,21.0,16.0,20.0,17.0,23.0,14.0,14.0,18.0,18.0,14.0,16.0,6.0,12.0,10.0,15.0,12.0,6.0,10.0,10.0,12.0,7.0,10.0,5.0,7.0,8.0,5.0,5.0,8.0,1.0,7.0,4.0,3.0,2.0,1.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,334,879,239,0,104,103,127,103,89,82,77,70,86,109,90,85,88,72,55,49,30,23,8,2,0,0,1450,0,0,2,0,1450,0,0,2,0,374,5,55,209,48,7,420,334,0,1060,392,0,0,2,13,2,0,3,0,0,0,0,8,1424,0,2,8,15,4,0,0,30,1393,0,183,239,27,7,0,996,0,3.882608695652174,0.0,4.833333333333333,0.0,5.096418732782369,0,1,2,2,0,0,9,409,0,63,26,39,57,64,72,37,28,28,4,3,1,0,0,0,0,296,127,113,310,114,309,26,397,111,312,2,421,244,179,3,420,274,149,155,268,12,143,13,410,58,365,13,410,359,64,298,125,4,419,93,229,98,3,1,380,43,0,1,2,0,0,0,0,0,0,0,0,420,0,2.115566037735849,1.3089622641509433,0.0,1.0454545454545454,1.0454545454545454,57.43735224586288 +PA130905,90805,Veraguas,San Francisco,San Juan,701,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,173,286,45,432,28,1,0,0,43,1,301,0,1,79,2,2,118,0,2,125,1,300,27,48,0,4,296,166,0,0,0,43,505,0,127,30,3,27,9,0,1,4,475,25,0,0,391,11,22,78,3,0,0,502,0,1,0,0,2,0,35,393,0,75,2,0,0,471,7,0,3,9,0,4,0,3,7,1,0,704,6.2845188284518825,20.90376569037657,6.939330543933054,23.661087866108787,1.0,2.9623762376237623,1.8633663366336637,508,278,614,31,141,12,20,7,2,29,2,6,11,0,43,40,12,11,10,5,19,1234,334,0,231,1337,0,826,742,0,1314,254,0,400,1168,0,377,23,979,189,0,189,10,21,1,45,75,74,77,77,327,0,1,0,50,54,92,41,69,228,7,8,10,9,19,22,9,48,1,0,4,0,0,0,0,0,778,17,616,0,4,7,6,27,249,238,20,82,249,24,68,25,27,0,399,0,0,910,751,107,272,25,280,3,0,105,0,40,136,16,327,0,0,0,1046,292,0,5,16,47,1,4,0,0,0,11,24,22,16,90,323,59,20,230,927,162,94,81,117,100,90,41,27,14,5,1,1,1,0,0,21.0,23.0,20.0,29.0,27.0,23.0,25.0,29.0,29.0,24.0,26.0,24.0,22.0,33.0,22.0,32.0,20.0,30.0,26.0,27.0,25.0,21.0,24.0,22.0,19.0,23.0,30.0,25.0,32.0,25.0,28.0,27.0,19.0,22.0,19.0,18.0,29.0,16.0,23.0,8.0,18.0,12.0,27.0,12.0,13.0,14.0,20.0,16.0,14.0,20.0,24.0,12.0,20.0,21.0,20.0,18.0,18.0,17.0,22.0,24.0,11.0,21.0,20.0,19.0,20.0,7.0,15.0,13.0,18.0,8.0,13.0,16.0,9.0,11.0,14.0,7.0,11.0,7.0,13.0,7.0,4.0,9.0,8.0,6.0,5.0,2.0,8.0,2.0,7.0,5.0,4.0,5.0,2.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,377,1043,241,0,120,130,127,135,111,135,115,94,82,84,97,99,91,61,63,45,32,24,14,2,0,0,1651,3,1,6,0,1652,3,0,6,0,442,2,51,227,79,0,483,377,0,1049,610,2,0,0,7,12,0,0,0,5,0,0,6,1631,0,1,2,19,0,0,0,59,1580,0,226,329,39,6,2,1059,0,2.990610328638497,0.0,3.8533333333333335,0.0,6.50632149307646,0,1,9,0,0,0,17,481,0,63,28,40,47,69,66,55,41,37,29,11,8,8,2,1,0,421,87,238,270,243,265,41,467,218,290,7,501,208,300,3,505,394,114,273,235,31,242,66,442,254,254,64,444,370,138,255,253,10,498,130,243,127,8,0,396,112,0,0,2,1,0,0,0,0,0,0,2,503,0,1.7913385826771653,1.4783464566929134,0.0,1.08,1.08,56.43307086614173 +PA130212,90806,Veraguas,San Francisco,San José,953,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,528,39,691,32,7,1,0,24,7,346,0,0,128,2,3,278,0,5,35,4,606,43,69,3,2,369,382,3,0,0,8,762,1,166,58,0,23,14,0,0,3,742,17,0,0,522,34,38,163,2,3,0,753,1,4,0,0,4,0,51,522,0,185,4,0,1,573,37,13,7,97,0,21,0,1,11,1,0,1024,4.4779050736497545,8.376432078559738,6.903436988543372,23.30441898527005,1.0026246719160106,2.8188976377952755,1.7506561679790027,764,465,1074,65,225,25,27,15,6,41,11,9,7,0,26,24,14,23,19,0,16,1636,919,0,195,2360,0,758,1797,0,2062,493,0,665,1890,0,652,13,1543,347,0,351,33,42,9,70,104,111,111,114,528,0,1,0,81,105,213,73,110,380,2,1,12,20,24,19,25,12,1,1,2,0,0,0,0,0,1076,32,1173,0,0,26,3,45,423,491,63,151,310,12,55,39,30,0,639,0,0,1478,1256,67,280,42,493,2,4,197,0,78,213,29,811,2,0,0,1782,439,0,2,13,42,1,2,0,0,0,8,12,12,16,88,610,68,35,259,1817,295,105,96,137,148,80,24,19,11,0,0,0,0,0,2,37.0,52.0,42.0,48.0,51.0,47.0,40.0,48.0,42.0,46.0,45.0,47.0,55.0,59.0,50.0,52.0,47.0,51.0,39.0,50.0,44.0,48.0,46.0,42.0,42.0,37.0,41.0,51.0,36.0,35.0,42.0,36.0,37.0,33.0,28.0,27.0,22.0,22.0,37.0,23.0,27.0,28.0,32.0,40.0,30.0,29.0,35.0,36.0,27.0,39.0,33.0,25.0,30.0,28.0,28.0,21.0,28.0,27.0,14.0,27.0,27.0,25.0,26.0,19.0,21.0,19.0,21.0,20.0,17.0,17.0,20.0,18.0,19.0,12.0,21.0,20.0,12.0,19.0,17.0,9.0,8.0,18.0,11.0,8.0,9.0,9.0,9.0,5.0,3.0,3.0,2.0,1.0,3.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,709,1670,355,0,230,223,256,239,222,200,176,131,157,166,144,117,118,94,90,77,54,29,8,1,2,0,2722,0,3,9,0,2722,0,3,9,0,720,14,79,373,86,4,749,709,0,2017,715,2,0,2,12,1,0,0,0,4,0,0,8,2707,0,1,4,178,3,0,0,159,2389,0,223,430,40,10,1,2030,0,3.0224171539961016,0.0,4.152974504249292,0.0,6.029261155815655,1,1,52,1,0,0,35,674,0,102,71,58,97,113,126,77,42,46,20,10,1,1,0,0,0,616,148,271,493,270,494,39,725,126,638,8,756,376,388,13,751,542,222,312,452,132,180,41,723,163,601,55,709,549,215,259,505,4,760,159,406,194,5,0,618,146,0,0,5,0,0,0,0,0,0,0,4,755,0,1.9345549738219896,1.643979057591623,1.0,1.0344827586206895,1.0344827586206895,54.22120418848168 +PA131007,90901,Veraguas,Santa Fe,Santa Fe,1370,9,43,0,0,0,0,0,0,0,0,0,3,0,0,0,686,230,9,903,13,5,1,0,3,0,658,0,6,127,3,13,118,0,0,403,33,390,21,72,0,6,753,164,1,0,0,7,925,0,353,35,21,51,37,0,2,60,812,50,1,0,798,55,2,40,18,12,0,863,20,33,2,0,7,0,294,551,0,73,7,0,318,400,164,4,0,25,1,8,0,1,4,0,0,1425,6.73015873015873,23.124716553287985,6.926303854875283,23.75170068027211,1.0032432432432432,3.5394594594594597,2.3124324324324323,931,471,954,75,257,26,32,24,14,53,9,6,11,3,33,15,9,15,12,3,8,1854,837,0,512,2179,0,944,1747,0,2339,352,0,753,1938,0,707,46,1668,270,0,271,23,49,2,78,76,104,84,81,547,0,0,0,62,89,183,74,113,459,0,7,38,47,56,121,59,28,13,3,19,0,0,1,4,0,871,30,1529,0,2,14,8,191,478,757,75,28,399,92,98,22,74,6,194,1,1,1449,1417,191,250,27,336,5,0,77,1,26,237,14,709,1,0,0,1574,579,1,11,35,197,10,19,4,0,0,38,82,47,46,131,225,93,61,178,1674,327,64,124,157,158,139,61,86,41,21,6,5,0,2,1,44.0,37.0,49.0,45.0,28.0,40.0,48.0,65.0,36.0,44.0,43.0,44.0,43.0,48.0,43.0,46.0,49.0,49.0,43.0,34.0,35.0,31.0,38.0,44.0,44.0,35.0,35.0,29.0,46.0,31.0,29.0,30.0,32.0,40.0,43.0,29.0,29.0,35.0,29.0,43.0,29.0,39.0,30.0,27.0,23.0,39.0,32.0,31.0,26.0,41.0,35.0,31.0,24.0,31.0,25.0,24.0,21.0,32.0,25.0,35.0,28.0,33.0,32.0,35.0,20.0,25.0,36.0,24.0,28.0,27.0,23.0,27.0,25.0,24.0,24.0,24.0,25.0,18.0,23.0,15.0,17.0,16.0,16.0,18.0,18.0,21.0,9.0,8.0,6.0,9.0,6.0,5.0,3.0,4.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,657,1676,533,0,203,233,221,221,192,176,174,165,148,169,146,137,148,140,123,105,85,53,20,5,2,0,2760,39,61,6,0,2760,41,59,6,0,745,10,14,387,95,12,946,657,0,1920,857,89,0,2,70,120,0,0,0,0,0,1,30,2643,0,7,1,152,2,0,3,102,2599,0,309,618,162,10,28,1739,0,2.553962900505902,0.0,3.4313022700119475,0.0,7.38834612700628,1,1,46,1,0,0,37,845,0,109,107,58,92,114,112,75,53,90,47,32,17,10,7,5,0,867,64,589,342,592,339,127,804,377,554,49,882,496,435,78,853,708,223,500,431,400,100,213,718,412,519,235,696,498,433,437,494,36,895,255,433,233,10,0,648,283,0,0,16,34,0,0,0,0,0,0,4,877,0,1.556390977443609,1.5220193340494093,1.0,1.0,1.0,57.93555316863588 +PA131001,90902,Veraguas,Santa Fe,Calovébora,1397,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,581,362,577,83,63,266,1,28,4,0,0,81,205,55,17,663,1,0,12,0,721,192,80,17,0,231,787,0,1,0,3,1022,23,326,22,5,38,12,0,0,1,988,32,1,0,25,839,9,4,80,13,52,323,2,98,0,1,597,1,13,86,0,57,779,87,0,345,29,0,28,215,9,375,0,0,21,0,0,1448,6.197860962566845,21.78342245989305,6.783422459893048,23.43582887700535,1.012720156555773,2.723091976516634,1.5303326810176126,1035,770,3337,131,554,31,95,134,22,142,49,25,48,0,19,16,1,9,9,2,20,1197,4286,0,64,5419,0,696,4787,0,3456,2027,0,1788,3695,0,1784,4,2058,1637,0,1653,76,106,5,222,258,317,285,290,773,0,1,3,204,265,468,100,145,222,0,2,23,16,13,16,5,12,2,0,1,0,0,0,0,0,1904,26,2289,0,9,4,10,9,963,1196,51,70,99,115,46,24,17,3,1264,353,0,3226,3147,49,145,26,1207,7,0,486,1,243,79,14,2694,3,0,0,3904,274,3,1,2,32,2,1,0,0,1,5,21,7,16,65,1220,107,23,465,5706,273,102,82,107,44,19,17,9,6,5,0,0,0,0,3,216.0,228.0,211.0,235.0,222.0,200.0,208.0,232.0,224.0,178.0,185.0,209.0,173.0,167.0,174.0,165.0,156.0,151.0,148.0,125.0,125.0,108.0,111.0,97.0,94.0,86.0,84.0,83.0,86.0,82.0,71.0,61.0,71.0,68.0,69.0,61.0,52.0,58.0,52.0,65.0,49.0,48.0,58.0,45.0,39.0,39.0,42.0,38.0,55.0,39.0,50.0,32.0,25.0,37.0,26.0,22.0,20.0,19.0,18.0,14.0,22.0,14.0,18.0,21.0,21.0,14.0,15.0,19.0,12.0,14.0,10.0,6.0,9.0,8.0,11.0,8.0,8.0,3.0,3.0,3.0,5.0,5.0,2.0,4.0,2.0,0.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3062,3140,171,0,1112,1042,908,745,535,421,340,288,239,213,170,93,96,74,44,25,18,7,2,1,0,0,5837,3,0,533,0,5837,3,0,533,0,1929,2,103,150,72,5,1056,3056,0,4855,1515,3,0,1,4050,987,0,0,1,0,0,0,4,1330,0,1,10,24,7,0,0,1184,5147,0,45,59,9,1,0,6259,0,3.058767319636885,0.0,4.835370823145884,0.0,3.661070139651656,1,6,8,2,0,0,282,736,0,295,115,140,149,154,87,29,24,20,13,3,2,1,1,1,1,389,646,87,948,118,917,198,837,18,1017,2,1033,320,715,8,1027,217,818,117,918,55,62,13,1022,76,959,5,1030,847,188,602,433,11,1024,76,592,323,44,0,863,172,0,0,532,171,0,0,0,0,0,0,2,330,0,3.116908212560386,3.0405797101449274,1.0,1.1666666666666667,1.1666666666666667,44.21062801932367 +PA131002,90903,Veraguas,Santa Fe,El Alto,652,9,0,0,0,0,0,0,0,0,0,0,3,0,0,0,246,181,19,422,5,2,0,0,16,1,299,0,6,65,8,3,65,0,0,41,0,284,81,32,0,8,309,126,0,0,0,11,446,0,147,37,2,16,13,0,0,4,430,12,0,0,369,47,0,8,20,1,1,438,0,0,0,0,8,0,72,313,0,60,1,0,0,341,94,0,0,7,1,0,0,0,3,0,0,664,6.866666666666666,23.620689655172413,6.91264367816092,23.91264367816092,1.0,3.405829596412556,2.345291479820628,449,239,497,24,93,8,13,4,3,18,1,4,8,1,27,15,5,1,15,8,15,951,335,0,96,1190,0,385,901,0,1118,168,0,352,934,0,336,16,815,119,0,120,8,11,2,44,69,84,68,64,307,0,0,0,36,52,94,47,35,187,0,3,3,4,7,8,3,19,7,1,3,0,0,0,0,0,469,19,659,0,2,11,2,45,232,299,47,36,93,5,51,13,10,0,309,0,3,740,622,64,169,13,211,0,0,24,3,18,151,9,326,4,0,0,902,200,0,3,5,27,8,2,0,0,3,11,14,6,13,29,190,52,10,160,747,193,78,76,106,62,50,18,10,9,6,0,3,0,0,4,21.0,15.0,22.0,18.0,21.0,26.0,22.0,26.0,28.0,16.0,25.0,24.0,24.0,16.0,32.0,23.0,23.0,22.0,18.0,15.0,17.0,19.0,23.0,18.0,22.0,17.0,22.0,15.0,14.0,13.0,16.0,8.0,17.0,14.0,14.0,10.0,21.0,18.0,17.0,17.0,11.0,13.0,12.0,13.0,10.0,9.0,13.0,17.0,12.0,16.0,18.0,16.0,13.0,16.0,8.0,12.0,15.0,16.0,19.0,17.0,20.0,13.0,17.0,14.0,15.0,18.0,9.0,9.0,19.0,9.0,18.0,11.0,11.0,16.0,5.0,16.0,9.0,11.0,11.0,6.0,3.0,2.0,7.0,6.0,4.0,7.0,5.0,3.0,4.0,3.0,2.0,2.0,3.0,1.0,1.0,3.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,336,788,238,0,97,118,121,101,99,81,69,83,59,67,71,79,79,64,61,53,22,22,9,7,0,0,1356,1,4,1,0,1356,4,1,1,0,430,0,46,128,42,2,378,336,0,897,465,0,0,0,20,26,0,0,0,2,0,1,48,1265,0,1,8,26,0,0,1,141,1185,0,77,233,42,5,1,1004,0,3.001926782273603,0.0,3.768041237113402,0.0,6.208516886930984,1,4,13,0,0,0,55,376,0,31,57,33,53,98,53,38,32,23,7,14,2,3,0,2,0,401,48,251,198,255,194,71,378,117,332,2,447,163,286,4,445,356,93,215,234,183,32,47,402,169,280,41,408,353,96,299,150,23,426,113,235,95,6,0,324,125,0,0,8,9,0,0,0,0,0,1,11,420,0,1.648106904231626,1.3853006681514477,0.0,1.0,1.0,56.83518930957684 +PA131003,90904,Veraguas,Santa Fe,El Cuay,597,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,313,6,404,5,4,0,0,2,0,48,0,7,149,2,12,197,0,0,0,5,330,27,53,0,0,194,218,0,0,0,3,415,1,109,9,0,70,24,0,0,0,408,7,0,0,270,20,81,44,0,0,0,413,0,0,2,0,0,0,44,225,0,145,1,0,0,361,34,8,0,4,0,8,0,0,0,0,0,628,6.622784810126582,20.167088607594938,6.911392405063292,23.696202531645568,1.002409638554217,2.633734939759036,1.3879518072289156,416,243,455,32,88,19,14,0,0,15,1,1,3,0,7,9,6,4,1,2,6,716,486,0,81,1121,0,249,953,0,925,277,0,326,876,0,305,21,666,210,0,215,6,13,1,46,60,78,44,47,266,0,0,0,28,38,86,25,36,142,0,4,11,17,12,16,4,2,3,0,1,0,1,0,0,0,429,15,627,0,0,4,9,17,217,351,23,19,111,7,16,20,9,1,273,0,2,686,601,37,135,20,225,2,1,17,2,30,159,1,118,0,0,0,858,179,0,4,4,22,2,2,0,0,2,4,8,2,8,33,236,21,19,111,878,168,65,35,49,29,31,14,11,2,4,0,0,0,1,0,19.0,24.0,22.0,20.0,24.0,15.0,20.0,25.0,22.0,25.0,21.0,20.0,28.0,15.0,20.0,30.0,26.0,22.0,21.0,20.0,16.0,14.0,19.0,13.0,18.0,17.0,18.0,9.0,13.0,15.0,15.0,13.0,15.0,8.0,14.0,13.0,8.0,15.0,12.0,20.0,17.0,9.0,21.0,11.0,20.0,8.0,7.0,20.0,9.0,13.0,21.0,13.0,14.0,8.0,12.0,12.0,12.0,17.0,15.0,14.0,10.0,17.0,13.0,6.0,11.0,9.0,11.0,8.0,19.0,9.0,10.0,6.0,13.0,12.0,14.0,11.0,9.0,5.0,4.0,11.0,6.0,10.0,15.0,6.0,10.0,7.0,8.0,2.0,3.0,4.0,3.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,320,734,233,0,109,107,104,119,80,72,65,68,78,57,68,70,57,56,55,40,47,24,6,3,2,0,1286,0,0,1,0,1286,0,0,1,0,367,4,27,190,41,4,334,320,0,904,383,0,0,1,18,5,0,0,0,0,0,0,1,1262,0,0,2,179,6,1,0,59,1040,0,99,248,16,1,1,922,0,3.357873210633947,0.0,4.446064139941691,0.0,5.52059052059052,0,1,64,2,0,0,16,333,0,98,46,59,57,52,32,24,17,14,6,5,3,2,0,1,0,328,88,65,351,89,327,48,368,33,383,3,413,238,178,4,412,245,171,92,324,34,58,15,401,24,392,22,394,355,61,280,136,6,410,117,211,85,3,0,350,66,0,0,2,2,0,0,0,0,0,0,0,412,0,1.6490384615384617,1.4447115384615383,1.0,1.0,1.0,56.80769230769231 +PA131004,90905,Veraguas,Santa Fe,El Pantano,412,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,58,0,247,4,0,0,0,0,0,227,0,0,12,1,3,8,0,0,4,8,207,2,26,0,4,217,32,0,0,0,2,251,0,77,13,2,67,5,0,0,3,244,4,0,0,229,11,0,2,9,0,0,247,1,0,0,0,3,0,46,195,0,9,1,0,0,231,19,0,0,0,0,0,0,0,1,0,0,415,6.928,23.496,6.972,23.784,1.00398406374502,3.3266932270916336,2.1553784860557768,252,115,192,16,42,8,10,3,2,6,0,3,9,0,10,6,3,9,7,0,1,519,117,0,61,575,0,283,353,0,559,77,0,144,492,0,133,11,435,57,0,57,8,6,3,14,22,28,37,28,172,0,0,2,10,25,44,20,24,96,0,5,1,8,4,11,5,2,1,0,3,0,0,0,0,0,198,7,387,0,2,1,1,45,94,215,7,26,58,6,20,3,15,2,98,1,0,369,289,32,33,3,63,3,0,69,0,24,105,6,60,3,0,0,454,111,2,5,0,16,1,3,0,0,0,4,11,6,7,23,92,13,12,37,342,124,29,38,43,34,26,8,4,2,3,0,2,0,0,3,5.0,4.0,8.0,5.0,10.0,6.0,6.0,9.0,7.0,6.0,12.0,13.0,11.0,7.0,16.0,10.0,7.0,9.0,6.0,8.0,7.0,8.0,13.0,7.0,6.0,3.0,7.0,3.0,4.0,5.0,7.0,6.0,12.0,4.0,7.0,7.0,4.0,2.0,7.0,6.0,8.0,4.0,10.0,7.0,6.0,8.0,3.0,5.0,10.0,10.0,11.0,7.0,8.0,11.0,6.0,5.0,8.0,9.0,5.0,9.0,8.0,7.0,12.0,7.0,10.0,8.0,4.0,13.0,8.0,6.0,4.0,6.0,8.0,8.0,9.0,8.0,12.0,2.0,7.0,9.0,10.0,10.0,9.0,5.0,9.0,6.0,2.0,1.0,0.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,125,359,174,0,32,34,59,40,41,22,36,26,35,36,43,36,44,39,35,38,43,11,6,1,1,0,646,11,1,0,0,646,11,1,0,0,190,1,2,83,31,3,223,125,0,411,236,11,0,0,42,28,0,0,0,0,0,0,3,585,0,0,10,4,0,0,0,0,644,0,54,157,43,6,1,397,0,2.738636363636364,0.0,3.6256410256410256,0.0,6.67629179331307,0,1,0,0,0,0,0,251,0,28,33,24,39,34,43,19,8,15,3,1,1,3,0,1,0,240,12,204,48,177,75,28,224,128,124,1,251,154,98,1,251,216,36,164,88,86,78,17,235,94,158,39,213,186,66,183,69,2,250,88,109,47,8,0,196,56,0,0,7,8,0,0,0,0,0,0,0,237,0,1.4642857142857142,1.1468253968253967,1.5,1.0,1.0,62.44444444444444 +PA131005,90906,Veraguas,Santa Fe,Gatú o Gatucito,473,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,262,12,335,4,1,2,0,9,0,0,0,1,186,6,0,158,0,0,0,2,308,22,18,1,0,97,253,0,0,0,1,351,0,44,35,3,33,11,0,0,0,348,3,0,0,249,41,28,25,7,1,0,347,0,0,0,0,4,0,16,219,0,112,4,0,0,293,52,0,0,2,0,3,0,0,1,0,0,477,6.840579710144928,23.020289855072463,6.947826086956522,23.57971014492753,1.0,2.871794871794872,1.603988603988604,351,235,710,15,99,6,7,9,2,15,0,1,1,0,20,15,2,7,4,0,8,380,923,0,8,1295,0,217,1086,0,987,316,0,415,888,0,412,3,756,132,0,132,19,33,5,62,121,127,104,109,293,1,0,0,46,63,126,15,19,22,0,0,2,1,0,1,0,2,0,0,0,0,0,0,0,0,494,4,601,0,0,3,0,2,236,305,20,38,20,2,4,1,5,0,463,0,0,815,636,12,17,1,356,0,0,109,0,7,114,11,445,1,0,0,1071,26,0,0,0,2,0,0,0,0,0,3,2,0,4,9,449,4,6,21,1252,108,34,18,20,4,8,3,3,0,0,0,0,0,0,1,22.0,42.0,45.0,39.0,34.0,34.0,32.0,25.0,43.0,36.0,41.0,44.0,35.0,26.0,25.0,45.0,25.0,31.0,27.0,19.0,20.0,23.0,16.0,22.0,22.0,15.0,16.0,16.0,18.0,16.0,14.0,14.0,16.0,15.0,18.0,9.0,15.0,16.0,15.0,19.0,13.0,17.0,13.0,9.0,15.0,16.0,12.0,13.0,13.0,11.0,13.0,9.0,14.0,14.0,11.0,8.0,6.0,14.0,8.0,8.0,14.0,11.0,11.0,7.0,12.0,11.0,8.0,8.0,6.0,9.0,4.0,7.0,12.0,6.0,8.0,11.0,4.0,7.0,3.0,10.0,4.0,4.0,6.0,3.0,3.0,7.0,1.0,1.0,3.0,0.0,2.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,523,774,154,0,182,170,171,147,103,81,77,74,67,65,61,44,55,42,37,35,20,12,7,1,0,0,1443,0,0,8,0,1443,0,0,8,0,431,2,58,87,35,0,315,523,0,1208,243,0,0,1,0,0,0,0,0,0,0,0,8,1442,0,2,0,264,3,0,0,376,806,0,11,45,0,2,0,1393,0,3.6666666666666665,0.0,5.117460317460317,0.0,4.194348725017229,1,0,67,0,0,0,69,214,0,87,35,53,83,62,15,6,5,4,1,0,0,0,0,0,0,238,113,17,334,74,277,10,341,3,348,2,349,115,236,4,347,100,251,31,320,6,25,1,350,32,319,11,340,326,25,280,71,8,343,59,211,80,1,0,296,55,0,0,0,0,0,0,0,0,0,0,1,350,0,2.321937321937322,1.811965811965812,0.0,1.0769230769230769,1.0769230769230769,54.47293447293448 +PA131006,90907,Veraguas,Santa Fe,Río Luis,894,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,543,35,549,40,3,19,0,10,3,0,0,10,280,29,15,289,1,0,12,3,441,76,82,3,7,114,507,0,0,0,3,624,4,266,27,1,7,14,0,0,0,616,8,0,0,74,450,1,3,48,26,22,439,3,4,0,1,176,1,11,125,0,28,382,78,0,315,79,0,0,95,6,121,0,1,7,0,0,943,6.106598984771574,22.195431472081214,6.931472081218274,23.918781725888326,1.0064102564102564,2.8365384615384617,1.6057692307692308,628,427,1440,93,228,17,25,39,7,37,11,11,38,0,24,14,3,9,7,3,18,661,2003,0,89,2575,0,259,2405,0,2084,580,0,1015,1649,0,1009,6,1206,443,0,445,32,61,2,89,114,114,111,128,401,0,0,0,102,141,249,70,101,313,0,2,13,19,19,69,16,38,11,0,4,0,0,0,0,0,962,37,1161,0,4,8,25,8,589,476,34,54,134,12,22,14,7,0,808,1,0,1483,1518,106,61,15,482,1,0,333,0,17,92,3,758,0,0,0,1656,375,0,3,5,113,5,3,0,0,0,10,55,13,9,35,795,17,7,58,2608,126,63,45,34,23,30,19,19,19,10,2,2,1,0,0,73.0,96.0,77.0,91.0,99.0,91.0,70.0,81.0,86.0,77.0,76.0,100.0,66.0,74.0,78.0,71.0,71.0,66.0,67.0,44.0,50.0,39.0,48.0,43.0,36.0,47.0,47.0,32.0,51.0,36.0,34.0,31.0,34.0,25.0,30.0,44.0,34.0,33.0,34.0,35.0,28.0,28.0,28.0,26.0,22.0,23.0,19.0,22.0,21.0,15.0,33.0,17.0,19.0,26.0,19.0,14.0,14.0,17.0,22.0,20.0,16.0,20.0,17.0,11.0,15.0,17.0,14.0,8.0,15.0,8.0,10.0,4.0,11.0,9.0,9.0,14.0,5.0,7.0,2.0,6.0,6.0,3.0,7.0,2.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1235,1594,172,0,436,405,394,319,216,213,154,180,132,100,114,87,79,62,43,34,19,4,9,1,0,0,2936,1,1,63,0,2936,1,1,63,0,866,3,77,144,53,1,622,1235,0,2361,638,2,0,0,159,1653,0,0,0,0,0,0,241,948,0,0,2,7,0,0,0,842,2150,0,99,164,9,1,0,2728,0,2.716404077849861,0.0,4.243491577335376,0.0,5.630123292235921,0,1,2,0,0,0,201,424,0,136,56,99,102,95,35,31,13,25,11,12,3,6,2,2,0,224,404,28,600,40,588,73,555,4,624,1,627,108,520,4,624,140,488,49,579,35,14,24,604,17,611,20,608,495,133,363,265,15,613,76,357,166,29,0,502,126,0,0,30,339,0,0,0,0,0,0,56,203,0,2.361464968152866,2.417197452229299,0.0,1.0454545454545454,1.0454545454545454,47.93630573248408 +,90908,Veraguas,Santa Fe,Rubén Cantú,453,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,234,21,315,4,16,0,0,4,1,0,0,4,173,3,3,157,0,0,0,0,266,43,30,1,0,115,221,1,0,0,3,340,0,64,17,1,23,16,0,0,0,333,7,0,0,203,61,46,14,16,0,0,333,1,0,0,0,6,0,19,209,0,105,7,0,0,246,60,0,0,21,0,13,0,0,0,0,0,461,6.869281045751634,23.640522875816995,6.973856209150327,23.924836601307188,1.0029411764705882,2.9558823529411766,1.5794117647058823,341,181,364,14,70,9,13,4,6,15,2,3,3,0,19,10,6,2,8,2,4,586,381,0,60,907,0,195,772,0,726,241,0,219,748,0,217,2,574,174,0,178,13,13,1,21,51,60,41,49,304,0,0,0,23,27,47,17,32,70,0,0,0,7,3,6,0,4,0,0,0,0,0,0,0,0,405,2,470,0,0,0,1,9,149,235,20,57,29,5,8,4,4,1,356,0,0,592,433,18,14,5,327,0,0,43,0,17,152,7,223,0,0,0,786,86,0,0,0,5,0,0,0,0,0,4,1,4,3,8,357,10,4,16,775,151,45,12,11,8,14,5,2,0,2,0,0,0,0,0,11.0,16.0,18.0,13.0,13.0,13.0,17.0,13.0,22.0,12.0,15.0,21.0,16.0,15.0,11.0,30.0,17.0,22.0,7.0,10.0,9.0,12.0,15.0,10.0,7.0,15.0,11.0,10.0,12.0,7.0,11.0,8.0,12.0,9.0,8.0,9.0,10.0,13.0,12.0,12.0,10.0,7.0,15.0,14.0,16.0,12.0,10.0,21.0,7.0,11.0,16.0,8.0,12.0,17.0,6.0,12.0,6.0,18.0,12.0,15.0,11.0,12.0,15.0,16.0,11.0,11.0,8.0,9.0,13.0,7.0,14.0,5.0,11.0,9.0,13.0,3.0,7.0,6.0,5.0,12.0,5.0,4.0,6.0,2.0,5.0,4.0,7.0,4.0,2.0,4.0,4.0,3.0,0.0,0.0,3.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,226,608,191,0,71,77,78,86,53,55,48,56,62,61,59,63,65,48,52,33,22,21,10,4,1,0,1022,0,0,3,0,1022,0,0,3,0,341,5,23,85,53,1,292,225,0,728,297,0,0,0,1,0,0,0,0,1,2,0,1,1020,0,0,4,301,3,0,0,582,135,0,26,99,12,0,0,888,0,3.619565217391304,0.0,4.6603053435114505,0.0,4.886829268292683,0,0,109,2,0,0,187,43,0,86,51,69,60,40,13,7,6,6,1,1,0,1,0,0,0,253,88,13,328,64,277,17,324,7,334,2,339,154,187,3,338,188,153,58,283,24,34,8,333,50,291,17,324,302,39,272,69,7,334,96,164,79,2,0,266,75,0,0,0,0,0,0,0,0,0,0,0,341,0,1.7360703812316716,1.2697947214076246,0.0,1.1538461538461535,1.1538461538461535,58.69208211143695 +PA131108,91001,Veraguas,Santiago,Santiago,7286,19,1402,262,1,2,0,0,0,0,0,3,7,1,0,3706,3527,106,19,7132,207,0,0,0,18,1,7327,0,3,17,0,3,6,0,2,6557,623,144,5,20,0,9,7212,6,51,0,0,89,7358,11,489,87,673,299,52,0,2004,1330,3866,130,25,3,7326,4,0,24,1,3,0,6597,121,623,13,0,1,3,5920,1424,1,12,0,1,7318,16,1,4,0,0,0,0,0,10,7,2,8532,451,6.970552147239264,23.65562372188139,6.984458077709611,23.78023176550784,1.0164446860559937,4.208888284860016,2.657787442239739,7489,3953,7839,273,1469,351,394,283,132,359,79,76,338,201,411,111,65,119,117,20,110,20528,1796,0,14008,8316,0,19174,3150,0,21447,877,0,6955,15369,0,4739,2216,14877,492,0,537,250,277,71,339,371,489,417,407,1436,0,2,53,457,620,1185,507,766,4232,28,118,519,669,1213,2200,2270,1217,422,59,1114,2,5,5,67,0,10140,817,9568,0,95,332,131,2375,4378,2255,297,263,8402,381,607,395,817,19,123,7,9,11111,12125,4147,3600,426,2275,244,1,56,11,22,494,71,5152,20,0,0,6318,6605,59,106,540,5316,403,1109,69,0,9,962,3163,1226,686,1778,138,1070,560,1365,8646,1299,646,809,1439,1605,2421,1273,1817,1311,844,326,366,138,276,20,234.0,200.0,221.0,257.0,279.0,282.0,287.0,302.0,318.0,331.0,318.0,294.0,312.0,324.0,332.0,351.0,337.0,346.0,386.0,406.0,369.0,360.0,413.0,349.0,368.0,360.0,359.0,301.0,306.0,287.0,293.0,292.0,289.0,285.0,292.0,264.0,265.0,324.0,295.0,259.0,329.0,308.0,325.0,338.0,339.0,295.0,323.0,317.0,298.0,291.0,309.0,308.0,312.0,294.0,277.0,274.0,280.0,297.0,284.0,275.0,279.0,276.0,282.0,305.0,249.0,250.0,215.0,218.0,229.0,202.0,216.0,167.0,187.0,146.0,145.0,140.0,113.0,117.0,107.0,92.0,83.0,95.0,85.0,75.0,66.0,60.0,64.0,45.0,33.0,30.0,30.0,18.0,30.0,12.0,12.0,12.0,9.0,6.0,3.0,1.0,4.0,3.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0,4291,15620,3325,0,1191,1520,1580,1826,1859,1613,1451,1407,1639,1524,1500,1410,1391,1114,861,569,404,232,102,31,12,0,22477,406,334,19,0,22497,469,251,19,0,3888,232,247,5534,813,341,7891,4290,0,7257,15591,388,0,31,588,93,0,1,2,13,2,2,277,22227,0,381,433,851,66,25,24,1347,20109,0,6515,6002,2730,139,22,7828,0,1.70671834625323,0.0,2.4962520821765684,0.0,11.345326217937682,149,154,358,28,12,13,527,6248,0,132,120,103,210,404,546,772,526,1041,833,706,519,664,348,553,2,7410,79,7127,362,6894,595,1698,5791,7107,382,4071,3418,4498,2991,3079,4410,7214,275,7009,480,5465,1544,4886,2603,6527,962,4734,2755,1093,6396,877,6612,103,7386,1322,3952,1841,374,4,4408,3081,0,9,172,24,0,0,1,3,1,0,79,7200,0,1.4828506606165754,1.6181769651674898,1.1149425287356325,1.0276381909547738,1.0276381909547738,53.74108692749365 +PA131102,91002,Veraguas,Santiago,La Colorada,1119,9,3,3,0,0,0,0,0,0,0,0,2,0,0,10,780,70,14,853,7,2,0,0,12,0,816,0,3,22,1,3,28,0,1,11,646,178,4,31,0,4,836,21,2,0,0,15,874,0,72,41,27,111,9,0,158,30,663,21,1,1,848,11,2,8,0,5,0,795,10,67,1,0,0,1,430,425,1,17,1,0,451,384,16,1,0,15,0,1,0,1,5,0,0,1136,6.749706227967097,20.615746180963573,6.793184488836663,22.562867215041127,1.005720823798627,3.9210526315789473,2.566361556064073,881,516,806,72,158,39,30,22,19,60,8,12,24,5,39,14,7,21,16,12,10,2189,328,0,1036,1481,0,1901,616,0,2353,164,0,692,1825,0,517,175,1756,69,0,77,34,30,7,47,60,80,65,76,340,0,0,4,53,98,166,44,94,448,3,3,55,82,104,195,135,65,60,7,77,0,0,0,8,0,1183,84,1042,0,0,40,28,138,406,376,112,10,770,98,96,46,71,1,159,2,0,1348,1304,412,411,50,291,32,0,47,0,3,198,19,606,7,0,0,1063,659,4,12,45,400,41,77,8,0,1,63,281,77,89,181,101,167,79,228,1024,324,96,142,169,172,242,108,145,110,62,20,16,4,11,7,29.0,26.0,35.0,45.0,37.0,32.0,31.0,29.0,43.0,36.0,33.0,41.0,31.0,42.0,30.0,30.0,30.0,18.0,39.0,39.0,33.0,50.0,33.0,33.0,42.0,38.0,36.0,46.0,40.0,39.0,40.0,36.0,38.0,29.0,38.0,39.0,33.0,34.0,29.0,31.0,25.0,35.0,31.0,28.0,34.0,42.0,37.0,46.0,28.0,31.0,34.0,30.0,46.0,42.0,37.0,44.0,30.0,27.0,40.0,32.0,29.0,27.0,37.0,19.0,25.0,16.0,30.0,19.0,27.0,14.0,19.0,13.0,21.0,16.0,17.0,13.0,21.0,21.0,18.0,15.0,15.0,14.0,6.0,15.0,10.0,12.0,12.0,7.0,8.0,2.0,6.0,4.0,5.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,520,1729,403,0,172,171,177,156,191,199,181,166,153,184,189,173,137,106,86,88,60,41,18,2,2,0,2626,16,10,0,0,2626,16,10,0,0,666,21,69,557,103,22,694,520,0,1333,1309,10,0,1,32,5,0,0,0,1,0,0,6,2607,0,46,16,79,2,1,0,170,2338,0,616,795,145,16,0,1080,0,1.9824407374890252,0.0,2.6448828606658448,0.0,9.690799396681747,11,10,36,0,0,0,72,752,0,41,50,28,69,75,75,90,60,114,74,71,45,45,19,23,0,859,22,800,81,772,109,187,694,752,129,335,546,516,365,225,656,794,87,771,110,511,260,415,466,610,271,464,417,307,574,334,547,20,861,176,466,214,25,0,620,261,0,1,12,1,0,0,0,0,0,0,2,865,0,1.5300794551645858,1.4801362088535754,1.0,1.0,1.0,54.64018161180477 +PA131103,91003,Veraguas,Santiago,La Peña,2209,19,53,3,0,0,0,0,0,0,0,0,1,0,0,272,1242,243,16,1715,42,2,0,0,14,0,1679,0,8,47,1,5,26,0,7,1164,113,372,44,66,1,13,1680,69,6,0,0,18,1773,0,225,89,74,102,21,0,322,161,1172,112,6,0,1707,8,1,46,0,11,0,1730,2,39,2,0,0,0,900,820,2,51,0,0,953,565,221,5,0,14,0,2,0,5,6,2,1250,1035,6.794134560092007,19.2541690626797,6.8384128809660725,20.91431857389304,1.0208685843203609,3.643542019176537,2.4489565707839818,1811,1051,2147,152,337,66,98,51,30,88,37,19,47,9,94,36,19,45,22,21,30,4794,763,0,2233,3324,0,4291,1266,0,5142,415,0,1796,3761,0,1533,263,3543,218,0,230,72,97,8,126,148,159,138,178,627,0,2,10,186,229,398,132,248,1082,5,43,138,171,206,374,210,171,39,17,105,0,0,0,8,0,2326,167,2478,0,2,62,19,304,1083,917,80,94,1796,60,224,128,105,2,147,0,6,2988,2955,676,1201,133,375,66,0,11,6,18,183,29,1562,3,0,0,2391,1561,10,52,105,705,39,100,8,0,6,104,413,187,130,452,67,372,195,567,2706,582,184,249,393,481,573,226,287,155,59,12,11,9,13,3,95.0,85.0,94.0,112.0,110.0,89.0,104.0,106.0,103.0,74.0,104.0,105.0,84.0,115.0,80.0,101.0,93.0,83.0,69.0,106.0,118.0,93.0,110.0,113.0,115.0,99.0,100.0,103.0,113.0,115.0,118.0,100.0,112.0,102.0,80.0,92.0,81.0,80.0,65.0,86.0,77.0,79.0,74.0,63.0,71.0,56.0,63.0,79.0,55.0,58.0,64.0,59.0,74.0,53.0,46.0,61.0,56.0,58.0,51.0,56.0,51.0,31.0,53.0,43.0,47.0,26.0,28.0,38.0,32.0,33.0,38.0,26.0,29.0,25.0,23.0,28.0,19.0,25.0,13.0,24.0,17.0,15.0,24.0,10.0,19.0,12.0,6.0,6.0,7.0,6.0,6.0,10.0,1.0,3.0,3.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1460,3925,558,0,496,476,488,452,549,530,512,404,364,311,296,282,225,157,141,109,85,37,23,5,1,0,5858,32,41,12,0,5858,37,36,12,0,1617,48,72,865,153,43,1686,1459,0,2739,3167,37,0,5,417,31,0,0,0,0,0,0,30,5460,0,45,22,209,7,2,2,344,5312,0,1385,1588,309,32,8,2621,0,1.9296685529506872,0.0,2.796713329275715,0.0,9.065118626956084,17,7,80,4,1,2,123,1577,0,46,62,46,86,182,198,246,195,316,154,115,57,63,17,26,1,1775,36,1637,174,1566,245,274,1537,1588,223,397,1414,934,877,324,1487,1696,115,1603,208,1069,534,779,1032,1343,468,810,1001,491,1320,423,1388,34,1777,297,1047,420,47,0,1223,588,0,2,98,9,0,0,0,0,0,0,9,1693,0,1.6499171728326891,1.631695196024296,1.1111111111111112,1.0389610389610389,1.0389610389610389,48.8967421314191 +PA131104,91004,Veraguas,Santiago,La Raya de Santa María,836,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,505,126,16,587,45,0,0,0,14,2,631,0,0,6,3,3,3,0,2,0,59,483,71,33,0,2,619,14,0,0,0,15,648,0,112,33,8,21,15,0,2,29,583,33,1,0,632,2,0,7,0,7,0,642,0,5,1,0,0,0,214,427,0,7,0,0,0,623,19,2,0,0,1,0,0,2,1,0,0,839,6.839563862928349,9.806853582554515,6.942367601246106,12.638629283489095,1.0200617283950617,3.6512345679012346,2.325617283950617,661,358,633,61,186,11,17,9,8,37,9,5,113,1,48,17,9,23,12,21,21,1613,380,0,374,1619,0,1175,818,0,1824,169,0,521,1472,0,473,48,1371,101,0,106,33,20,12,47,64,66,51,52,403,0,1,1,50,127,158,72,97,374,1,5,19,42,50,23,27,72,7,1,10,0,0,0,2,0,794,54,958,0,1,10,11,168,299,437,35,19,654,18,33,29,46,0,54,1,7,1124,985,133,544,30,104,14,0,10,7,15,90,19,499,66,0,0,1172,494,1,8,11,103,6,9,2,0,7,31,42,68,49,105,18,118,117,293,850,206,80,105,174,217,246,57,61,23,7,7,6,1,3,66,29.0,29.0,30.0,28.0,31.0,27.0,31.0,39.0,32.0,27.0,31.0,32.0,27.0,19.0,32.0,23.0,33.0,34.0,26.0,27.0,30.0,27.0,36.0,38.0,25.0,29.0,30.0,38.0,29.0,39.0,31.0,28.0,21.0,30.0,25.0,28.0,26.0,23.0,26.0,26.0,31.0,19.0,27.0,25.0,24.0,22.0,29.0,33.0,23.0,21.0,22.0,22.0,33.0,28.0,24.0,22.0,29.0,22.0,31.0,17.0,30.0,19.0,16.0,20.0,18.0,24.0,16.0,20.0,28.0,19.0,22.0,12.0,17.0,16.0,10.0,15.0,15.0,13.0,7.0,4.0,10.0,11.0,14.0,9.0,8.0,6.0,7.0,5.0,6.0,2.0,3.0,2.0,3.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,444,1335,330,0,147,156,141,143,156,165,135,129,126,128,129,121,103,107,77,54,52,26,12,2,0,0,2084,13,8,4,0,2085,15,5,4,0,586,17,21,348,84,7,602,444,0,1400,699,10,0,5,92,35,0,0,0,0,0,0,77,1900,0,34,32,231,9,2,0,197,1604,0,537,539,175,17,0,841,0,2.246189917936694,0.0,2.9950248756218905,0.0,7.834044570886676,6,13,82,5,1,0,73,481,0,19,28,25,35,75,83,120,79,92,45,20,14,10,3,8,5,648,13,608,53,581,80,86,575,610,51,115,546,390,271,63,598,586,75,580,81,241,339,157,504,402,259,282,379,314,347,355,306,5,656,147,329,168,17,2,460,201,0,2,5,7,0,0,0,0,0,0,32,615,0,1.6953242835595776,1.4856711915535443,0.0,1.064516129032258,1.064516129032258,55.83509833585477 +PA131106,91005,Veraguas,Santiago,Ponuga,720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,375,159,12,529,7,5,1,0,6,0,444,0,1,14,4,4,77,0,4,128,15,347,22,32,0,4,480,57,0,1,0,10,548,0,74,18,2,44,34,0,5,15,506,21,1,0,440,49,0,22,3,33,1,542,0,1,2,1,2,0,87,403,0,56,1,1,0,437,29,16,5,50,0,0,0,5,4,2,0,720,5.266094420600858,6.124463519313305,5.929184549356223,9.163090128755364,1.0127737226277371,3.291970802919708,2.147810218978102,555,260,418,20,110,26,23,18,3,23,3,2,16,0,26,5,8,10,11,8,4,1022,397,0,176,1243,0,520,899,0,1221,198,0,327,1092,0,290,37,962,130,0,131,12,18,2,39,65,69,53,49,314,0,0,1,32,58,114,31,51,248,0,6,4,18,14,44,20,12,4,2,6,0,0,2,0,0,491,46,778,0,3,11,10,55,204,449,53,17,223,79,53,15,31,0,129,2,0,779,698,115,186,17,177,10,0,26,1,2,176,7,448,7,0,0,934,287,1,8,12,63,4,6,0,0,1,11,35,15,12,75,122,61,25,180,746,299,41,76,90,60,56,34,45,15,6,0,2,0,0,7,12.0,15.0,14.0,17.0,14.0,12.0,19.0,19.0,22.0,18.0,23.0,14.0,14.0,13.0,18.0,17.0,23.0,31.0,18.0,21.0,14.0,20.0,16.0,16.0,17.0,33.0,14.0,20.0,16.0,12.0,18.0,22.0,16.0,19.0,23.0,20.0,17.0,14.0,16.0,18.0,18.0,11.0,17.0,16.0,18.0,24.0,13.0,20.0,11.0,21.0,20.0,30.0,13.0,20.0,28.0,22.0,21.0,24.0,21.0,25.0,9.0,17.0,24.0,13.0,22.0,16.0,16.0,16.0,9.0,11.0,8.0,16.0,11.0,20.0,16.0,13.0,17.0,12.0,10.0,17.0,12.0,6.0,5.0,5.0,11.0,9.0,7.0,6.0,2.0,2.0,4.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,244,949,284,0,72,90,82,110,83,95,98,85,80,89,111,113,85,68,71,69,39,26,9,1,1,0,1467,3,5,2,0,1467,3,5,2,0,418,13,20,199,88,5,490,244,0,768,706,3,0,0,3,0,0,0,0,1,0,0,5,1468,0,2,3,90,1,2,0,209,1170,0,196,384,49,4,2,842,0,2.7166123778501627,0.0,3.482300884955752,0.0,7.055517941773866,0,1,25,0,1,0,78,450,0,71,93,29,77,65,62,55,23,32,16,12,9,9,0,0,2,516,39,413,142,390,165,55,500,390,165,49,506,208,347,29,526,413,142,354,201,225,129,92,463,123,432,123,432,259,296,228,327,3,552,165,254,124,12,0,396,159,0,0,2,0,0,0,0,0,0,0,3,550,0,1.4036036036036037,1.2576576576576577,1.0,1.0285714285714285,1.0285714285714285,57.52972972972973 +PA131107,91006,Veraguas,Santiago,San Pedro del Espino,844,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,43,4,605,7,1,0,0,3,0,601,0,0,2,2,3,8,0,0,256,127,168,10,52,0,3,592,20,1,0,0,3,616,0,175,17,2,18,19,0,5,13,566,32,0,0,606,3,0,7,0,0,0,612,0,4,0,0,0,0,266,343,0,7,0,0,0,567,45,1,0,1,0,0,0,1,1,0,0,847,6.839869281045751,14.794117647058824,6.861111111111111,15.356209150326798,1.0097402597402598,3.4431818181818183,2.095779220779221,622,359,727,25,122,13,29,6,5,30,4,3,23,6,43,18,9,11,19,1,8,1487,390,0,551,1326,0,1078,799,0,1730,147,0,539,1338,0,479,60,1243,95,0,96,16,32,7,46,50,72,45,64,338,0,0,1,39,63,140,44,65,358,0,10,44,43,58,126,65,6,18,4,24,0,0,1,2,0,634,64,992,0,1,34,17,147,347,433,45,20,480,12,68,23,33,0,70,0,5,1008,966,179,378,27,95,4,0,3,5,24,136,21,704,1,0,0,929,509,2,11,20,182,10,26,1,0,4,38,99,56,36,125,19,94,40,187,920,247,49,118,136,140,162,52,70,43,22,6,3,3,2,1,17.0,22.0,33.0,25.0,24.0,32.0,29.0,32.0,37.0,33.0,25.0,27.0,26.0,28.0,33.0,24.0,41.0,21.0,21.0,38.0,25.0,33.0,26.0,34.0,37.0,40.0,28.0,29.0,30.0,25.0,27.0,27.0,25.0,19.0,19.0,26.0,21.0,17.0,16.0,20.0,24.0,22.0,29.0,31.0,18.0,19.0,25.0,22.0,31.0,25.0,25.0,29.0,27.0,22.0,28.0,21.0,23.0,25.0,26.0,16.0,20.0,17.0,18.0,23.0,19.0,16.0,7.0,21.0,14.0,18.0,12.0,21.0,18.0,22.0,9.0,13.0,15.0,8.0,11.0,14.0,12.0,3.0,13.0,4.0,9.0,10.0,5.0,6.0,5.0,1.0,2.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,423,1254,297,0,121,163,139,145,155,152,117,100,124,122,131,111,97,76,82,61,41,27,8,2,0,0,1969,2,3,0,0,1969,4,1,0,0,440,9,20,400,66,4,612,423,0,1304,668,2,0,2,51,7,0,0,0,0,0,0,10,1904,0,14,13,43,2,0,1,75,1826,0,352,511,130,22,0,959,0,2.2375757575757578,0.0,3.050086355785837,0.0,8.491894630192503,7,7,23,1,0,0,19,565,0,35,50,15,43,79,96,73,37,71,41,36,16,15,9,6,0,612,10,560,62,533,89,75,547,541,81,118,504,277,345,89,533,519,103,533,89,267,266,184,438,323,299,225,397,252,370,310,312,2,620,125,349,128,20,0,438,184,0,0,12,5,0,0,0,0,0,0,2,603,0,1.6205787781350482,1.5530546623794212,1.0,1.0217391304347827,1.0217391304347827,55.05144694533762 +PA131101,91007,Veraguas,Santiago,Canto del Llano,4682,36,314,112,0,0,0,1,3,0,0,0,1,0,0,2185,1672,177,10,3906,128,0,0,0,10,0,4023,0,0,8,1,3,8,0,1,3423,439,116,6,25,0,35,3979,22,11,0,0,32,4044,0,386,314,139,215,46,0,1533,592,1759,156,4,0,4001,2,1,23,0,17,0,3617,15,412,0,0,0,0,2993,1029,1,21,0,0,3250,707,80,0,0,1,1,0,0,1,4,0,2514,2635,6.976219965320783,23.757740896705474,6.982660391379738,23.864255635372803,1.0136003956478734,3.751730959446093,2.452274975272008,4100,2363,4882,335,743,172,243,146,74,238,80,27,224,51,180,187,36,61,70,46,84,11662,1230,0,6988,5904,0,10808,2084,0,12170,722,0,4458,8434,0,3623,835,8028,406,0,427,156,206,45,252,263,311,279,302,993,4,3,11,278,379,755,281,491,2706,9,72,263,375,589,942,1072,558,265,41,534,1,2,5,22,0,5961,380,5274,0,45,123,73,800,2710,1514,137,113,4797,252,472,165,430,15,121,11,4,6668,7010,2184,2686,182,1071,97,1,40,6,41,283,38,3643,14,0,0,4143,3982,14,95,251,2390,199,518,23,0,7,405,1527,615,363,1183,84,706,468,983,5876,723,330,479,715,994,1533,682,972,664,334,116,132,51,63,14,195.0,189.0,188.0,214.0,211.0,228.0,191.0,227.0,210.0,210.0,243.0,241.0,210.0,202.0,197.0,221.0,222.0,209.0,230.0,236.0,221.0,227.0,251.0,219.0,251.0,260.0,245.0,258.0,258.0,226.0,252.0,225.0,239.0,207.0,185.0,195.0,205.0,187.0,211.0,176.0,194.0,208.0,183.0,177.0,202.0,185.0,152.0,149.0,150.0,142.0,169.0,139.0,145.0,147.0,155.0,138.0,136.0,119.0,122.0,129.0,125.0,110.0,113.0,98.0,94.0,120.0,92.0,88.0,88.0,85.0,71.0,53.0,74.0,51.0,56.0,46.0,37.0,33.0,43.0,30.0,36.0,14.0,24.0,28.0,24.0,23.0,20.0,16.0,15.0,10.0,7.0,7.0,9.0,4.0,5.0,4.0,4.0,1.0,2.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3156,9297,1225,0,997,1066,1093,1118,1169,1247,1108,974,964,778,755,644,540,473,305,189,126,84,32,12,4,0,13399,155,114,10,0,13403,211,54,10,0,3254,153,291,2420,325,185,3895,3155,0,3877,9676,125,0,21,574,195,1,4,7,13,2,2,103,12756,0,216,261,863,47,38,18,2202,10033,0,4002,3975,871,75,7,4748,0,1.6922436750998668,0.0,2.5382639958911146,0.0,10.382585173270948,81,71,322,21,18,7,765,2815,0,96,84,43,100,197,366,480,334,670,497,380,226,290,143,190,3,4063,37,3866,234,3766,334,797,3303,3776,324,1627,2473,2117,1983,1214,2886,3959,141,3734,366,2649,1085,2392,1708,3431,669,2320,1780,748,3352,641,3459,63,4037,619,2331,1000,150,4,2579,1521,0,7,149,46,0,3,1,2,1,1,36,3854,0,1.624756335282651,1.7080896686159843,1.1219512195121952,1.0472972972972974,1.0472972972972974,48.56268292682927 +PA131105,91008,Veraguas,Santiago,Los Algarrobos,3133,16,22,3,0,0,0,0,0,0,0,0,2,0,0,420,1621,445,21,2411,75,6,0,0,15,0,2436,0,1,9,2,2,56,0,1,1362,310,675,40,115,0,5,2415,56,3,0,0,33,2507,0,347,96,65,123,36,0,550,128,1768,57,3,1,2407,16,1,54,0,29,0,2017,7,476,0,2,0,5,928,1338,0,50,5,186,1315,1104,64,1,0,1,0,0,0,0,22,0,1495,1681,6.347966169955699,15.467176802255336,6.48610551751913,16.997583568264197,1.022736338252892,3.625049860390906,2.370562425209413,2566,1492,2938,182,415,105,126,74,30,128,46,22,81,13,148,43,34,66,25,45,39,6411,1284,0,2681,5014,0,5607,2088,0,7090,605,0,2456,5239,0,2137,319,4907,332,0,341,112,128,26,197,245,314,194,201,1041,0,0,7,191,287,503,205,305,1456,12,76,146,215,274,402,362,258,57,14,122,1,0,0,3,0,3122,340,3384,0,5,158,86,322,1464,1364,160,74,2202,107,374,136,241,27,278,1,1,4086,4132,969,1509,143,644,90,0,11,1,27,337,43,2185,3,0,0,3432,2098,7,71,115,939,61,120,3,0,4,127,629,194,171,666,87,452,223,909,3761,995,253,356,504,580,659,256,399,283,112,16,26,7,8,3,127.0,120.0,136.0,140.0,128.0,146.0,131.0,155.0,146.0,143.0,125.0,126.0,125.0,119.0,123.0,137.0,129.0,115.0,127.0,130.0,140.0,117.0,121.0,152.0,131.0,164.0,153.0,127.0,111.0,166.0,156.0,139.0,136.0,145.0,119.0,94.0,111.0,118.0,138.0,110.0,107.0,115.0,99.0,90.0,89.0,101.0,111.0,85.0,95.0,84.0,95.0,94.0,96.0,72.0,98.0,67.0,71.0,68.0,83.0,79.0,67.0,76.0,61.0,72.0,57.0,65.0,64.0,52.0,52.0,48.0,35.0,46.0,33.0,32.0,38.0,26.0,33.0,25.0,32.0,25.0,24.0,28.0,20.0,16.0,25.0,19.0,14.0,15.0,6.0,8.0,4.0,10.0,3.0,5.0,3.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1990,5418,810,0,651,721,618,638,661,721,695,571,500,476,455,368,333,281,184,141,113,62,25,3,1,0,8116,57,31,14,0,8117,60,27,14,0,2304,49,105,1196,212,21,2341,1990,0,3955,4235,28,0,7,417,25,0,0,1,1,1,1,19,7746,0,47,120,320,16,5,9,411,7290,0,1815,2404,333,38,4,3624,0,1.9965227470298463,0.0,2.8436565570269114,0.0,8.773180822584571,15,28,118,6,2,2,145,2250,0,105,146,75,162,236,309,324,206,384,214,146,103,93,35,26,0,2505,61,2337,229,2236,330,349,2217,2232,334,607,1959,1260,1306,450,2116,2325,241,2256,310,1524,732,1034,1532,1824,742,1046,1520,701,1865,460,2106,32,2534,479,1465,556,66,0,1691,875,0,1,88,6,0,0,0,1,1,1,4,2464,0,1.5923616523772408,1.6102883865939206,1.1,1.054945054945055,1.054945054945055,49.354637568199536 +,91009,Veraguas,Santiago,Carlos Santana Ávila,2061,21,2,0,0,0,0,0,0,0,0,0,0,0,0,16,1430,201,28,1587,60,5,0,0,22,1,1635,0,3,7,1,7,18,0,4,264,590,711,35,71,0,4,1619,35,2,0,0,19,1675,3,159,81,55,87,24,0,221,95,1293,64,2,0,1633,9,0,23,1,9,0,1505,2,166,0,2,0,0,827,821,1,24,2,0,597,977,90,2,0,4,0,0,0,1,2,2,0,2084,6.942908653846154,17.99158653846154,6.982572115384615,19.15564903846154,1.0197014925373131,3.733134328358209,2.5092537313432834,1708,1013,1990,156,314,48,46,23,18,87,21,20,46,10,87,30,10,32,36,29,17,4407,740,0,1716,3431,0,3672,1475,0,4779,368,0,1694,3453,0,1383,311,3277,176,0,185,90,89,17,132,133,181,135,148,637,1,0,6,159,242,359,147,211,1016,2,7,108,151,194,227,270,175,42,3,76,0,0,0,4,0,2040,184,2341,0,19,67,27,255,964,954,115,53,1685,73,117,69,193,3,68,0,0,2765,2735,572,1133,74,384,33,0,1,11,12,205,23,1092,115,0,0,2283,1470,6,22,75,603,30,72,4,0,13,78,349,155,101,488,28,351,299,362,2282,596,196,274,319,408,543,215,287,165,50,14,22,5,9,115,77.0,93.0,79.0,104.0,96.0,91.0,94.0,94.0,100.0,107.0,88.0,86.0,84.0,82.0,89.0,80.0,88.0,69.0,93.0,78.0,87.0,83.0,98.0,91.0,74.0,80.0,99.0,86.0,98.0,96.0,86.0,92.0,98.0,96.0,87.0,98.0,79.0,80.0,82.0,80.0,64.0,70.0,67.0,69.0,62.0,72.0,78.0,78.0,46.0,50.0,54.0,62.0,59.0,53.0,56.0,51.0,55.0,46.0,48.0,50.0,46.0,53.0,43.0,49.0,33.0,43.0,31.0,39.0,34.0,31.0,34.0,25.0,23.0,30.0,25.0,21.0,27.0,17.0,11.0,20.0,20.0,20.0,20.0,8.0,12.0,6.0,9.0,8.0,4.0,6.0,3.0,6.0,2.0,1.0,2.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1364,3592,544,0,449,486,429,408,433,459,459,419,332,324,284,250,224,178,137,96,80,33,14,6,0,0,5419,32,47,2,0,5423,38,37,2,0,1356,46,101,977,132,41,1483,1364,0,2642,2824,34,0,5,271,59,0,2,0,6,0,1,37,5119,0,76,125,338,14,1,1,1410,3535,0,1307,1609,237,33,2,2312,0,1.9908096280087528,0.0,2.7946936197094123,0.0,8.864363636363636,21,50,125,6,1,0,454,1051,0,50,82,40,102,159,172,214,169,278,157,94,62,84,18,19,8,1678,30,1571,137,1547,161,288,1420,1514,194,503,1205,953,755,245,1463,1588,120,1524,184,897,627,702,1006,1169,539,903,805,553,1155,514,1194,13,1695,283,1021,356,48,0,1094,614,0,0,64,19,0,2,0,1,0,0,9,1613,0,1.6188524590163935,1.601288056206089,1.0,1.0175438596491229,1.0175438596491229,49.73067915690866 +,91010,Veraguas,Santiago,Edwin Fábrega,1501,24,1,11,0,0,0,0,0,0,1,0,7,0,0,114,966,101,21,1142,39,1,0,0,20,0,1163,0,0,3,2,9,23,0,2,52,738,335,9,61,0,7,1152,20,6,0,0,24,1202,0,123,53,56,97,6,0,220,47,890,43,2,0,1171,1,1,26,0,3,0,1128,4,69,1,0,0,0,655,525,0,22,0,0,531,559,85,1,0,2,0,0,0,9,14,1,0,1545,6.576170212765957,16.78468085106383,6.845106382978724,18.86042553191489,1.0099833610648918,4.021630615640599,2.548252911813644,1221,723,1393,68,326,50,61,39,14,84,11,9,48,7,65,27,10,25,30,25,17,3289,552,0,1546,2295,0,2715,1126,0,3579,262,0,1223,2618,0,1027,196,2478,140,0,142,41,66,14,83,98,124,95,110,518,0,0,3,94,163,285,117,165,757,6,4,53,94,118,231,239,53,67,9,88,0,0,1,3,0,1510,182,1769,0,1,113,32,233,756,666,64,50,1081,58,251,62,107,9,95,1,3,2011,2043,531,582,65,439,26,0,22,2,35,163,28,1061,33,0,0,1732,1008,4,14,69,496,49,86,3,0,3,81,318,128,113,321,68,272,106,282,1783,451,131,159,223,247,383,168,202,165,54,19,16,7,13,33,46.0,46.0,62.0,59.0,64.0,62.0,58.0,74.0,63.0,59.0,68.0,61.0,54.0,61.0,55.0,69.0,64.0,67.0,65.0,62.0,64.0,64.0,70.0,64.0,66.0,66.0,58.0,60.0,52.0,46.0,63.0,52.0,41.0,53.0,61.0,62.0,51.0,59.0,55.0,43.0,51.0,60.0,62.0,63.0,49.0,62.0,53.0,47.0,46.0,46.0,64.0,54.0,40.0,53.0,34.0,42.0,65.0,44.0,41.0,43.0,45.0,47.0,39.0,35.0,42.0,39.0,37.0,32.0,24.0,25.0,29.0,20.0,21.0,23.0,19.0,15.0,14.0,17.0,11.0,15.0,11.0,21.0,14.0,14.0,10.0,10.0,1.0,3.0,4.0,7.0,8.0,3.0,4.0,1.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,892,2704,458,0,277,316,299,327,328,282,270,270,285,254,245,235,208,157,112,72,70,25,18,4,0,0,4000,28,23,3,0,4001,33,17,3,0,961,39,76,787,119,33,1147,892,0,1898,2131,25,0,7,118,20,2,0,0,1,1,1,22,3882,0,29,33,205,15,1,3,589,3179,0,914,1106,217,27,6,1784,0,1.994311717861206,0.0,2.8561816652649283,0.0,9.182289097187963,14,20,61,8,0,2,210,906,0,43,66,32,74,102,118,149,96,145,130,83,59,60,33,20,4,1193,28,1125,96,1098,123,204,1017,1120,101,362,859,723,498,307,914,1128,93,1117,104,629,488,527,694,821,400,592,629,391,830,375,846,11,1210,204,641,340,36,1,751,470,0,1,27,7,2,0,0,0,0,0,3,1181,0,1.6456628477905073,1.6718494271685762,1.1,1.0,1.0,52.71171171171172 +PA130510,91011,Veraguas,Santiago,San Martín de Porres,4585,9,828,284,0,0,0,0,0,0,2,0,6,0,0,2428,2198,82,6,4472,236,2,0,0,4,0,4691,0,0,1,0,4,16,0,2,3107,1492,83,8,16,0,8,4626,7,13,0,0,68,4714,5,363,49,344,152,79,0,1101,999,2508,88,11,7,4656,1,0,25,0,32,0,4702,5,5,1,0,0,1,3007,1690,0,17,0,0,4702,3,2,0,0,0,0,0,0,0,4,3,5714,0,6.935415338857021,22.600169959634588,6.950074357340132,22.70958147439983,1.019304200254561,3.7528638099278746,2.444420873992363,4811,2539,5688,321,1307,229,293,233,78,293,65,50,230,19,190,62,44,98,67,20,49,13615,1689,0,8042,7262,0,12612,2692,0,14358,946,0,5284,10020,0,4454,830,9548,472,0,501,200,237,46,290,337,375,307,341,1246,0,2,33,367,548,1035,436,613,3449,16,63,370,487,650,1129,1052,584,154,22,394,2,1,4,13,0,6272,482,7065,0,8,177,87,1033,3391,2191,259,191,4807,292,726,237,529,27,35,8,10,7745,8411,2168,2736,259,1365,118,1,10,14,32,353,55,5124,31,0,0,5391,5050,36,98,241,2465,128,398,12,0,14,295,1479,501,396,1445,66,967,490,1101,7547,964,515,688,1040,1172,1560,721,886,594,263,60,67,24,24,31,207.0,202.0,217.0,226.0,263.0,229.0,241.0,270.0,231.0,251.0,229.0,258.0,222.0,245.0,253.0,226.0,264.0,264.0,297.0,310.0,288.0,358.0,361.0,337.0,311.0,359.0,247.0,262.0,249.0,202.0,257.0,205.0,228.0,225.0,203.0,216.0,226.0,191.0,198.0,171.0,201.0,181.0,218.0,218.0,200.0,231.0,186.0,210.0,195.0,175.0,206.0,191.0,217.0,210.0,175.0,166.0,173.0,152.0,183.0,156.0,164.0,149.0,147.0,137.0,120.0,121.0,114.0,126.0,123.0,94.0,93.0,72.0,77.0,81.0,84.0,51.0,55.0,44.0,59.0,50.0,33.0,34.0,35.0,30.0,33.0,25.0,30.0,20.0,18.0,23.0,10.0,11.0,16.0,10.0,5.0,6.0,5.0,4.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3544,11016,1596,0,1115,1222,1207,1361,1655,1319,1118,1002,1018,997,999,830,717,578,407,259,165,116,52,17,2,0,15938,148,61,9,0,15940,172,35,9,0,3516,151,411,2737,476,141,5181,3543,0,7305,8748,103,0,7,719,159,2,0,0,9,0,0,127,15133,0,305,187,836,38,15,23,2144,12608,0,3812,4217,1080,84,11,6952,0,1.8592132505175984,0.0,2.737900691389064,0.0,10.036518940331764,86,78,292,19,6,9,776,3545,0,241,128,99,193,402,469,605,437,704,494,361,232,258,101,77,4,4728,83,4424,387,4296,515,965,3846,4492,319,1531,3280,2592,2219,1359,3452,4564,247,4358,453,2736,1622,2612,2199,3822,989,2311,2500,391,4420,325,4486,62,4749,859,2432,1345,175,2,2819,1992,0,3,194,42,0,0,0,2,0,0,33,4537,0,1.6091834614585498,1.747558695200499,1.0476190476190477,1.0578034682080926,1.0578034682080926,50.40095614217418 +,91012,Veraguas,Santiago,Urracá,890,7,0,0,0,0,0,0,5,0,0,0,0,0,0,25,467,111,11,600,3,0,1,0,7,3,579,0,3,6,1,3,17,0,5,120,157,245,34,58,0,0,564,42,3,0,0,5,614,0,132,56,52,32,11,0,68,14,501,28,2,1,580,3,0,29,0,2,0,588,7,16,1,2,0,0,223,366,1,23,1,0,0,560,41,2,0,1,0,0,0,2,6,2,0,902,6.963394342762063,22.274542429284526,6.991680532445924,23.05657237936772,1.004885993485342,3.552117263843648,2.2931596091205213,617,336,609,45,123,18,30,22,7,32,12,3,247,0,58,17,5,10,7,17,4,1452,521,0,544,1429,0,959,1014,0,1800,173,0,544,1429,0,481,63,1298,131,0,133,33,36,2,37,60,92,70,61,287,0,0,0,53,78,149,54,70,430,0,2,14,16,41,89,40,88,16,2,19,0,0,0,1,0,756,54,949,0,6,20,19,138,320,413,74,4,471,30,45,20,57,0,173,0,0,1160,941,181,435,22,147,4,1,3,3,20,124,9,502,27,0,0,1000,476,2,5,35,208,13,19,1,0,3,25,96,41,38,97,46,98,81,285,915,257,45,123,208,162,163,53,84,41,12,4,2,2,3,27,36.0,26.0,36.0,30.0,42.0,43.0,29.0,31.0,35.0,34.0,38.0,42.0,32.0,27.0,29.0,31.0,31.0,43.0,35.0,31.0,27.0,35.0,35.0,36.0,33.0,34.0,37.0,31.0,28.0,29.0,34.0,31.0,37.0,27.0,30.0,34.0,26.0,18.0,16.0,23.0,25.0,23.0,28.0,28.0,11.0,18.0,29.0,29.0,15.0,11.0,27.0,33.0,19.0,21.0,18.0,29.0,16.0,24.0,25.0,18.0,21.0,20.0,22.0,15.0,21.0,24.0,18.0,20.0,10.0,4.0,11.0,12.0,16.0,10.0,13.0,16.0,11.0,8.0,9.0,10.0,8.0,9.0,11.0,5.0,6.0,4.0,9.0,6.0,4.0,4.0,2.0,3.0,5.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,510,1318,273,0,170,172,168,171,166,159,159,117,115,102,118,112,99,76,62,54,39,27,14,1,0,0,2088,7,4,2,0,2088,10,1,2,0,564,12,42,343,59,6,565,510,0,972,1125,4,0,3,157,159,0,0,1,0,0,2,17,1762,0,13,50,153,8,11,5,472,1389,0,404,565,123,20,0,989,0,2.0166666666666666,0.0,2.848148148148148,0.0,8.104236078058067,5,20,57,3,3,2,144,383,0,22,65,15,44,60,75,72,51,84,50,27,17,12,6,7,10,597,20,545,72,530,87,101,516,501,116,107,510,366,251,87,530,499,118,521,96,290,231,202,415,298,319,266,351,237,380,242,375,6,611,158,303,140,16,5,465,152,0,1,19,13,0,0,1,0,0,1,1,581,0,1.864951768488746,1.5128617363344052,1.0,1.05,1.05,54.43760129659643 +,91013,Veraguas,Santiago,Rodrigo Luque,2670,22,266,36,0,0,0,0,0,0,0,0,9,0,0,391,2045,89,13,2449,76,0,0,0,13,0,2519,0,0,2,0,1,12,0,4,2108,309,91,5,14,1,10,2496,9,7,0,0,26,2538,0,139,39,112,76,90,0,945,354,1185,43,4,7,2511,1,0,21,0,5,0,2244,7,286,0,0,0,1,1770,705,0,17,0,46,2241,179,104,3,0,0,0,0,0,1,10,0,1268,1735,6.944928684627575,22.40253565768621,6.967908082408875,22.83993660855785,1.0094562647754135,3.7868400315208826,2.438140267927502,2571,1559,3509,262,449,93,120,134,61,140,40,20,113,43,71,45,27,52,42,12,33,7684,898,0,4317,4265,0,7095,1487,0,7987,595,0,3261,5321,0,2629,632,5021,300,0,323,130,169,36,174,217,237,208,217,707,2,1,21,221,267,556,238,289,1704,3,30,180,271,327,492,699,417,136,30,272,0,3,2,3,0,3812,325,3449,0,59,58,57,289,1954,981,92,133,3016,172,336,156,297,16,63,2,31,4460,4654,1381,1552,169,822,107,1,19,38,15,175,37,2540,19,0,0,2990,2416,21,50,180,1567,108,250,4,0,38,241,1044,283,235,727,74,578,289,628,4308,481,216,349,456,661,878,355,586,419,222,51,63,17,33,19,129.0,117.0,137.0,149.0,168.0,161.0,164.0,161.0,163.0,179.0,173.0,158.0,144.0,167.0,150.0,175.0,183.0,150.0,154.0,185.0,189.0,154.0,170.0,149.0,154.0,154.0,131.0,153.0,135.0,128.0,146.0,122.0,149.0,150.0,127.0,121.0,140.0,150.0,135.0,147.0,137.0,122.0,131.0,118.0,125.0,136.0,117.0,121.0,126.0,117.0,109.0,107.0,86.0,118.0,80.0,79.0,96.0,90.0,91.0,61.0,66.0,59.0,69.0,52.0,46.0,60.0,44.0,53.0,32.0,32.0,36.0,22.0,31.0,27.0,25.0,14.0,28.0,15.0,18.0,12.0,21.0,19.0,11.0,9.0,12.0,11.0,10.0,6.0,8.0,6.0,7.0,2.0,3.0,0.0,2.0,3.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2320,6210,584,0,700,828,792,847,816,701,694,693,633,617,500,417,292,221,141,87,72,41,14,8,0,0,8953,74,82,5,0,8955,84,70,5,0,2106,90,365,1613,174,69,2377,2320,0,2571,6478,65,0,9,880,111,5,2,0,4,0,1,75,8027,0,99,124,380,37,13,10,608,7843,0,2489,2868,357,24,4,3372,0,1.680195222193681,0.0,2.5749395648670426,0.0,9.864384463462804,26,44,134,16,6,7,222,2116,0,95,55,38,65,134,204,322,214,378,294,262,153,163,103,80,2,2542,29,2402,169,2325,246,431,2140,2345,226,1000,1571,1349,1222,623,1948,2476,95,2353,218,1582,771,1457,1114,2038,533,1451,1120,492,2079,506,2065,45,2526,327,1564,570,110,0,1660,911,0,2,176,22,0,2,0,2,0,0,19,2348,0,1.734733566705562,1.810190587320109,1.0,1.0384615384615383,1.0384615384615383,47.51925320886814 +PA131108,91014,Veraguas,Santiago,Nuevo Santiago,2142,0,1140,97,0,0,15,0,0,0,0,0,3,0,0,2051,730,44,5,2754,71,1,0,0,4,0,2818,0,2,4,0,2,2,0,2,2569,101,115,7,12,0,26,2788,9,10,0,0,23,2830,1,182,49,154,130,33,0,1689,290,823,28,0,0,2809,3,1,5,0,12,0,1794,5,127,904,0,0,0,2270,557,0,3,0,0,2707,116,3,1,0,0,1,0,0,0,1,1,2921,476,6.959660297239915,22.645789101203118,6.981245576786978,23.326610049539987,1.0095406360424029,3.650530035335689,2.5498233215547703,2860,1624,4166,174,489,124,152,100,43,109,31,32,747,26,175,53,27,86,60,34,45,8375,1645,0,4464,5556,0,7449,2571,0,9371,649,0,4014,6006,0,3345,669,5711,295,0,313,183,174,30,257,239,286,275,282,854,1,3,7,294,431,730,323,470,2011,3,24,214,321,379,679,368,493,107,12,241,0,4,0,12,0,4032,294,4463,0,9,112,47,345,2457,1110,128,423,3124,181,330,227,319,6,58,5,16,5388,5289,1287,1735,248,879,77,0,24,16,30,157,37,2910,79,0,0,3912,2945,7,32,226,1325,98,229,15,0,17,194,812,379,260,905,63,612,256,828,5415,650,291,400,586,696,959,368,560,346,152,48,67,17,43,79,148.0,154.0,178.0,177.0,203.0,211.0,172.0,244.0,208.0,193.0,207.0,221.0,176.0,199.0,199.0,197.0,183.0,159.0,173.0,167.0,198.0,186.0,211.0,198.0,183.0,228.0,201.0,204.0,184.0,168.0,208.0,168.0,213.0,188.0,200.0,174.0,161.0,182.0,197.0,165.0,148.0,132.0,163.0,132.0,127.0,141.0,118.0,117.0,125.0,100.0,103.0,93.0,108.0,95.0,81.0,85.0,75.0,90.0,76.0,67.0,71.0,58.0,80.0,63.0,55.0,58.0,51.0,51.0,36.0,33.0,37.0,26.0,22.0,20.0,28.0,14.0,23.0,22.0,23.0,22.0,15.0,9.0,18.0,12.0,6.0,4.0,12.0,11.0,6.0,6.0,7.0,4.0,2.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2890,7199,588,0,860,1028,1002,879,976,985,977,879,702,601,480,393,327,229,133,104,60,39,15,6,2,0,10463,104,94,16,0,10467,117,77,16,0,2485,95,326,1506,188,74,3115,2888,0,2224,8382,71,0,16,761,134,1,2,0,21,0,0,47,9695,0,151,215,644,57,15,18,1441,8136,0,2427,2806,363,27,6,5048,0,1.748397435897436,0.0,2.655504096900606,0.0,9.429989697480565,41,45,204,14,5,4,448,2099,0,80,48,47,111,224,304,406,246,488,299,192,117,145,69,78,3,2836,24,2710,150,2627,233,451,2409,2676,184,978,1882,1365,1495,754,2106,2789,71,2692,168,1741,951,1495,1365,2107,753,1345,1515,411,2449,393,2467,49,2811,350,1781,652,77,15,1572,1288,0,3,152,33,1,1,0,4,0,0,13,2653,0,1.874086956521739,1.839652173913044,1.2142857142857142,1.0384615384615383,1.0384615384615383,45.518181818181816 +PA131108,91015,Veraguas,Santiago,Santiago Este,531,2,16,0,0,0,0,0,0,0,0,0,0,0,0,1,362,80,12,421,22,1,0,0,11,0,430,0,0,10,3,0,6,0,6,5,359,69,3,17,0,2,434,11,1,0,0,9,455,0,39,18,0,27,10,0,2,19,406,28,0,0,425,0,12,4,0,14,0,450,1,2,0,2,0,0,126,318,0,11,0,0,0,427,24,1,0,0,0,1,0,0,2,0,0,549,6.800443458980045,10.490022172949002,6.986696230598669,12.753880266075388,1.0175824175824175,3.7406593406593407,2.345054945054945,463,229,431,37,161,13,22,22,2,43,3,6,17,0,41,18,5,38,22,10,13,1198,180,0,467,911,0,1006,372,0,1285,93,0,376,1002,0,299,77,968,34,0,35,15,20,8,29,26,48,40,36,244,0,0,1,37,77,107,41,73,294,1,11,28,26,48,45,49,18,4,3,14,0,0,0,0,0,548,51,668,0,1,8,1,139,230,255,34,10,432,15,36,22,58,0,31,0,1,713,736,195,236,24,135,1,0,3,1,11,45,7,389,9,0,0,725,393,1,11,24,96,3,14,0,0,1,35,56,49,29,95,14,101,68,151,575,152,45,91,139,78,183,58,68,29,13,5,4,0,0,9,19.0,13.0,17.0,22.0,17.0,15.0,21.0,17.0,21.0,20.0,25.0,24.0,19.0,24.0,18.0,17.0,19.0,15.0,16.0,13.0,26.0,27.0,27.0,22.0,17.0,21.0,24.0,17.0,19.0,15.0,24.0,17.0,18.0,12.0,18.0,13.0,12.0,19.0,16.0,12.0,26.0,17.0,23.0,14.0,18.0,23.0,17.0,17.0,19.0,22.0,20.0,22.0,13.0,19.0,20.0,13.0,11.0,22.0,20.0,17.0,21.0,20.0,19.0,17.0,17.0,12.0,16.0,18.0,12.0,19.0,10.0,10.0,7.0,15.0,7.0,9.0,6.0,7.0,14.0,6.0,10.0,7.0,7.0,5.0,8.0,6.0,3.0,3.0,5.0,1.0,0.0,0.0,1.0,2.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,923,234,0,88,94,110,80,119,96,89,72,98,98,94,83,94,77,49,42,37,18,5,5,1,0,1437,3,8,1,0,1438,3,7,1,0,366,23,32,228,56,3,449,292,0,975,468,6,0,1,30,12,0,0,0,0,0,0,12,1394,0,69,59,241,6,0,12,388,674,0,314,439,153,11,0,532,0,2.0838414634146343,0.0,2.768577494692144,0.0,8.641821946169772,27,14,88,5,0,6,137,186,0,12,17,15,16,46,61,69,48,80,34,26,16,15,1,5,2,448,15,411,52,411,52,90,373,426,37,112,351,287,176,78,385,433,30,408,55,236,172,163,300,340,123,202,261,204,259,183,280,11,452,99,210,139,15,0,292,171,0,0,6,3,0,0,0,0,0,0,2,452,0,1.5399568034557236,1.58963282937365,1.0,1.08,1.08,58.09287257019439 +PA131108,91016,Veraguas,Santiago,Santiago Sur,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,155,11,398,7,5,0,0,6,0,326,0,1,42,9,3,35,0,0,0,6,384,5,20,0,1,368,48,0,0,0,0,416,0,121,6,0,24,23,0,3,6,379,28,0,0,294,85,8,10,3,16,0,407,1,0,0,0,8,0,35,314,0,67,0,0,0,288,70,9,42,0,0,4,0,1,1,1,0,590,5.164804469273743,9.91899441340782,5.653631284916201,12.631284916201118,1.0120192307692308,3.5913461538461537,2.1899038461538463,421,237,433,29,77,10,14,7,3,12,5,6,13,0,19,9,10,4,16,13,5,888,327,0,93,1122,0,186,1029,0,1051,164,0,326,889,0,304,22,749,140,0,153,2,16,0,25,49,54,47,54,264,0,0,1,31,74,108,33,40,161,0,1,8,20,16,21,14,16,3,1,3,0,0,0,0,0,386,53,647,0,11,31,9,10,220,309,38,70,117,16,52,10,11,0,189,30,0,665,602,70,183,11,154,2,0,3,2,28,120,6,299,5,0,0,821,211,1,2,7,39,2,3,0,0,2,6,22,8,12,61,101,35,12,180,634,263,49,71,86,53,24,44,23,14,1,0,0,0,0,5,10.0,13.0,17.0,12.0,21.0,18.0,21.0,24.0,26.0,19.0,26.0,19.0,23.0,15.0,22.0,33.0,16.0,15.0,22.0,14.0,13.0,22.0,16.0,18.0,22.0,30.0,14.0,19.0,18.0,8.0,16.0,15.0,9.0,13.0,15.0,14.0,18.0,21.0,14.0,10.0,16.0,11.0,8.0,24.0,11.0,19.0,16.0,11.0,14.0,15.0,15.0,20.0,12.0,18.0,15.0,15.0,13.0,10.0,9.0,23.0,13.0,15.0,9.0,15.0,18.0,10.0,16.0,15.0,10.0,10.0,12.0,8.0,12.0,4.0,8.0,7.0,7.0,10.0,5.0,10.0,7.0,7.0,4.0,4.0,4.0,2.0,5.0,4.0,4.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,286,790,191,0,73,108,105,100,91,89,68,77,70,75,80,70,70,61,44,39,26,17,3,0,1,0,1262,3,0,2,0,1262,3,0,2,0,413,1,8,134,27,2,396,286,0,680,585,2,0,0,17,9,0,0,0,0,0,0,5,1236,0,14,7,151,4,0,0,299,792,0,107,256,11,1,0,892,0,2.777562862669245,0.0,3.8114754098360657,0.0,6.6732438831886345,3,3,65,3,0,0,95,252,0,27,65,23,58,81,51,31,27,29,11,7,6,3,2,0,0,403,18,291,130,275,146,45,376,267,154,17,404,114,307,9,412,324,97,240,181,163,77,39,382,18,403,77,344,193,228,184,237,4,417,99,228,82,12,0,314,107,0,0,6,2,0,0,0,0,0,0,2,411,0,1.5795724465558194,1.429928741092637,0.0,1.0,1.0,54.82422802850356 +PA131210,91101,Veraguas,Soná,Soná,4007,72,18,28,0,1,0,0,0,0,0,0,3,0,0,1666,1054,551,69,3131,140,0,0,0,65,4,3208,6,1,36,8,21,55,0,5,2863,139,295,5,25,2,11,3185,79,3,0,0,73,3340,0,256,47,119,252,111,0,384,177,2607,143,1,28,3174,65,0,82,18,0,1,3309,11,7,0,1,12,0,1574,1649,0,115,2,0,1859,1392,29,5,1,8,0,9,0,1,32,4,2585,1544,6.6832317073170735,16.647865853658537,6.720731707317073,16.79359756097561,1.0134730538922156,3.804491017964072,2.568263473053892,3388,1909,4447,247,1231,174,184,149,35,252,53,31,136,6,140,58,36,91,66,23,57,9407,2223,0,3509,8121,0,7106,4524,0,10554,1076,0,3908,7722,0,3454,454,7043,679,0,721,140,208,50,253,319,471,374,359,1511,6,21,14,358,522,918,299,455,2125,4,14,171,298,472,638,439,288,52,7,120,0,1,1,1,0,4039,582,5846,0,40,238,133,609,2561,2002,165,509,2733,202,533,246,402,11,290,55,5,6097,6145,1385,1650,254,1021,130,0,29,8,43,665,49,4257,24,0,0,5813,2857,16,37,347,1227,49,119,2,0,8,181,606,303,289,894,174,601,284,1281,6771,1055,427,460,773,660,672,398,478,305,135,29,27,8,20,24,152.0,130.0,162.0,168.0,172.0,191.0,192.0,186.0,212.0,210.0,221.0,202.0,196.0,230.0,209.0,233.0,219.0,183.0,202.0,197.0,192.0,206.0,202.0,212.0,194.0,178.0,193.0,177.0,169.0,174.0,145.0,151.0,160.0,154.0,154.0,165.0,146.0,159.0,163.0,165.0,147.0,165.0,155.0,136.0,156.0,163.0,153.0,123.0,133.0,145.0,142.0,129.0,144.0,133.0,130.0,131.0,118.0,119.0,118.0,127.0,125.0,123.0,104.0,110.0,101.0,94.0,94.0,84.0,99.0,87.0,76.0,67.0,83.0,68.0,62.0,65.0,54.0,55.0,60.0,41.0,52.0,45.0,47.0,47.0,59.0,35.0,45.0,25.0,27.0,17.0,28.0,18.0,11.0,10.0,10.0,9.0,2.0,6.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2833,7823,1586,0,784,991,1058,1034,1006,891,764,798,759,717,678,613,563,458,356,275,250,149,77,19,2,0,12130,63,38,11,0,12130,72,29,11,0,2787,70,276,2061,441,56,3719,2832,0,5675,6513,54,0,6,95,4,0,1,0,6,0,0,72,12058,0,113,96,469,43,5,9,849,10658,0,2192,3707,635,40,1,5667,0,2.249763481551561,0.0,3.216666666666667,0.0,8.462506126449927,47,34,168,18,3,2,266,2850,0,274,201,133,226,365,398,363,264,397,246,172,116,135,42,46,7,3281,107,2886,502,2949,439,631,2757,3030,358,732,2656,1522,1866,698,2690,3038,350,2755,633,2306,449,1299,2089,2170,1218,1127,2261,427,2961,389,2999,13,3375,472,1747,1082,87,1,2077,1311,0,2,32,1,0,1,0,0,0,0,20,3332,0,1.7990557686633226,1.813219238713485,1.0666666666666669,1.044776119402985,1.044776119402985,54.55578512396694 +PA131201,91102,Veraguas,Soná,Bahía Honda,299,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,133,26,151,10,18,0,0,8,0,0,0,8,115,1,14,49,0,0,0,0,177,3,7,0,0,114,71,0,0,0,2,187,0,70,12,1,30,5,0,0,0,170,17,0,0,112,64,1,6,4,0,0,181,1,0,0,0,5,0,7,124,1,53,2,0,0,129,8,9,6,5,0,29,0,0,0,1,0,305,3.905109489051095,6.043795620437956,5.160583941605839,15.54014598540146,1.0160427807486632,2.786096256684492,1.6844919786096255,190,111,273,7,55,1,8,1,1,11,2,0,8,0,7,4,1,2,3,1,4,207,416,0,10,613,0,32,591,0,545,78,0,181,442,0,178,3,380,62,0,62,7,3,1,20,31,31,43,53,160,0,0,0,21,28,84,11,19,47,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,243,7,300,0,0,2,5,2,125,154,7,12,52,7,4,3,8,0,93,79,0,390,278,9,53,3,166,1,0,14,0,30,42,1,208,1,0,0,501,48,0,0,0,1,0,0,0,0,0,1,1,0,4,25,163,4,4,48,494,79,32,11,15,19,13,1,3,0,0,0,0,0,0,1,8.0,6.0,13.0,18.0,10.0,13.0,8.0,13.0,21.0,8.0,19.0,17.0,17.0,17.0,16.0,11.0,12.0,11.0,9.0,10.0,10.0,3.0,7.0,14.0,6.0,8.0,15.0,11.0,7.0,5.0,10.0,7.0,11.0,8.0,12.0,8.0,7.0,5.0,11.0,4.0,11.0,6.0,9.0,6.0,8.0,2.0,8.0,6.0,6.0,8.0,5.0,9.0,14.0,4.0,7.0,5.0,6.0,17.0,8.0,8.0,7.0,3.0,4.0,5.0,6.0,1.0,3.0,0.0,4.0,6.0,5.0,5.0,3.0,6.0,4.0,4.0,3.0,2.0,6.0,1.0,1.0,1.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,204,400,64,0,55,63,86,53,40,46,48,35,40,30,39,44,25,14,23,16,7,1,3,0,0,0,667,1,0,0,0,667,1,0,0,0,214,5,14,50,10,2,169,204,0,600,67,1,0,0,8,1,0,0,0,0,0,0,5,654,0,2,4,204,3,0,0,417,38,0,33,44,3,0,0,588,0,3.257918552036199,0.0,4.503355704697986,0.0,5.410179640718563,1,3,70,1,0,0,108,7,0,39,23,22,32,28,21,15,3,6,1,0,0,0,0,0,0,142,48,30,160,38,152,19,171,13,177,1,189,79,111,0,190,60,130,18,172,13,5,1,189,0,190,0,190,89,101,60,130,4,186,47,101,37,5,0,165,25,0,0,3,1,0,0,0,0,0,0,3,183,0,2.0526315789473686,1.4631578947368422,0.0,1.0,1.0,53.357894736842105 +PA131202,91103,Veraguas,Soná,Calidonia,506,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,247,94,289,0,72,4,0,18,0,104,2,5,126,24,6,115,0,1,31,1,307,30,13,1,0,152,229,1,0,0,1,383,0,81,5,1,18,31,0,0,1,364,18,0,0,129,205,2,16,31,0,0,341,2,0,0,0,40,0,7,133,0,232,11,0,0,152,18,0,0,175,1,26,0,0,11,0,0,519,4.8,14.152941176470588,5.511764705882353,16.611764705882354,1.0026109660574412,2.671018276762402,1.4464751958224542,384,207,436,56,126,10,20,7,2,20,3,2,13,0,18,16,8,0,12,2,9,738,463,0,34,1167,0,168,1033,0,984,217,0,309,892,0,304,5,704,188,0,189,4,12,2,35,67,103,66,67,300,0,1,0,26,47,107,22,31,84,0,0,2,8,5,11,3,7,1,0,1,0,0,0,0,0,446,6,619,0,0,3,2,12,212,307,31,57,82,7,10,7,7,0,337,0,0,731,555,27,157,8,200,3,0,55,0,47,124,9,436,1,0,0,949,105,0,0,3,13,0,1,0,0,0,8,7,6,4,31,224,11,12,149,867,154,115,46,27,21,29,16,5,3,2,0,0,0,0,1,21.0,18.0,17.0,29.0,20.0,19.0,22.0,20.0,34.0,15.0,31.0,26.0,21.0,24.0,27.0,19.0,28.0,17.0,29.0,18.0,13.0,25.0,17.0,17.0,14.0,11.0,16.0,11.0,17.0,17.0,19.0,12.0,6.0,12.0,7.0,12.0,9.0,17.0,13.0,13.0,16.0,14.0,14.0,18.0,9.0,17.0,10.0,15.0,11.0,23.0,22.0,14.0,10.0,6.0,15.0,14.0,9.0,11.0,14.0,16.0,14.0,15.0,19.0,14.0,13.0,12.0,14.0,13.0,9.0,12.0,11.0,9.0,13.0,11.0,8.0,9.0,7.0,3.0,7.0,4.0,3.0,6.0,12.0,7.0,6.0,5.0,5.0,3.0,3.0,2.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,344,742,200,0,105,110,129,111,86,72,56,64,71,76,67,64,75,60,52,30,34,18,5,0,1,0,1275,1,0,10,0,1275,1,0,10,0,402,3,81,87,47,0,322,344,0,861,424,1,0,1,16,4,0,0,0,0,0,0,7,1258,0,0,4,26,0,1,0,7,1248,0,57,193,14,2,1,1019,0,3.1842696629213485,0.0,4.42443729903537,0.0,5.116640746500778,0,2,13,0,0,0,5,364,0,66,48,46,57,72,38,16,14,18,6,2,1,0,0,0,0,252,132,83,301,97,287,42,342,74,310,5,379,244,140,12,372,259,125,80,304,28,52,8,376,17,367,28,356,296,88,287,97,5,379,95,188,93,8,0,324,60,0,0,4,2,0,0,0,0,0,0,1,377,0,1.9036458333333333,1.4453125,0.0,1.0,1.0,57.578125 +PA131203,91104,Veraguas,Soná,Cativé,295,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,174,20,194,3,10,0,0,10,0,70,0,0,97,1,0,49,0,0,0,0,192,17,7,0,1,102,115,0,0,0,0,217,0,75,8,0,7,19,0,0,1,209,6,0,1,69,125,0,10,11,0,2,197,0,0,0,0,20,0,1,118,0,97,1,0,0,136,9,0,32,15,0,25,0,0,0,0,0,326,6.075862068965518,15.427586206896551,6.855172413793103,22.689655172413797,1.0,1.6267281105990783,0.6175115207373272,217,142,262,14,43,13,8,2,4,11,4,4,1,0,6,2,2,2,9,4,1,335,340,0,8,667,0,36,639,0,546,129,0,168,507,0,165,3,415,92,0,93,2,4,0,25,42,52,31,35,205,0,0,0,24,24,49,18,17,37,0,0,2,0,7,8,0,0,0,0,0,0,0,0,0,0,236,38,337,0,3,9,23,5,102,191,9,30,24,1,7,6,2,0,226,0,1,396,329,18,73,6,145,1,0,23,1,44,51,6,248,3,0,0,557,48,0,0,1,5,0,0,0,0,1,2,3,5,4,4,166,6,3,80,580,44,38,24,11,7,13,2,1,1,1,0,0,0,0,3,10.0,15.0,11.0,14.0,11.0,8.0,7.0,10.0,16.0,12.0,8.0,16.0,12.0,10.0,13.0,15.0,20.0,8.0,17.0,10.0,14.0,10.0,8.0,9.0,8.0,10.0,10.0,7.0,5.0,8.0,9.0,7.0,11.0,12.0,7.0,10.0,9.0,13.0,7.0,4.0,5.0,12.0,5.0,13.0,7.0,8.0,6.0,12.0,8.0,6.0,6.0,11.0,6.0,13.0,8.0,8.0,6.0,9.0,13.0,8.0,9.0,5.0,10.0,7.0,5.0,8.0,11.0,6.0,5.0,4.0,8.0,7.0,7.0,6.0,4.0,3.0,3.0,2.0,3.0,1.0,5.0,3.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,173,454,98,0,61,53,59,70,49,40,46,43,42,40,44,44,36,34,32,12,10,3,6,1,0,0,719,0,0,6,0,719,0,0,6,0,223,2,1,98,14,0,214,173,0,424,301,0,0,0,1,0,0,0,0,0,1,0,2,721,0,1,0,158,0,0,0,221,345,0,27,99,5,0,0,594,0,3.147058823529412,0.0,4.423913043478261,0.0,5.055172413793104,0,0,46,0,0,0,61,110,0,67,19,33,41,23,10,13,6,2,0,2,0,0,0,0,1,160,57,60,157,68,149,27,190,55,162,2,215,75,142,3,214,117,100,51,166,1,50,9,208,4,213,11,206,192,25,156,61,0,217,37,122,57,1,0,197,20,0,0,1,0,0,0,0,0,1,0,2,213,0,1.824884792626728,1.5161290322580645,0.0,1.0,1.0,53.40092165898618 +PA131204,91105,Veraguas,Soná,El Marañón,878,199,0,3,0,0,0,0,0,0,0,0,0,0,0,0,249,491,67,634,106,23,0,0,42,2,541,3,4,76,15,11,152,0,5,239,21,465,13,48,1,20,575,196,1,0,0,35,807,0,179,46,1,24,23,0,1,10,744,52,0,0,572,76,0,89,46,24,0,799,0,1,0,0,7,0,95,511,0,200,1,0,6,675,18,43,15,21,0,18,0,1,7,3,0,1080,5.901287553648069,16.505007153075823,6.683834048640915,21.14878397711016,1.0049566294919454,2.603469640644362,1.546468401486989,811,430,998,46,197,24,38,11,6,40,7,12,19,1,41,10,7,28,19,23,12,1631,862,0,278,2215,0,955,1538,0,2108,385,0,678,1815,0,632,46,1582,233,0,233,16,49,30,74,88,139,107,106,611,2,6,1,79,105,130,77,60,349,3,15,30,35,37,50,40,10,8,0,3,0,0,0,0,0,911,90,1239,0,1,37,32,37,443,519,40,200,315,19,67,81,111,0,390,1,0,1399,1241,106,480,82,300,4,0,12,0,25,237,16,806,0,0,0,1659,460,1,17,13,84,4,2,0,0,0,11,36,18,30,129,162,75,76,464,1711,337,109,113,116,98,78,36,29,7,5,0,1,0,0,0,36.0,39.0,36.0,36.0,41.0,49.0,49.0,37.0,35.0,42.0,55.0,40.0,40.0,52.0,41.0,52.0,50.0,39.0,36.0,37.0,45.0,34.0,39.0,25.0,38.0,44.0,38.0,42.0,35.0,32.0,42.0,28.0,35.0,37.0,36.0,40.0,22.0,35.0,26.0,38.0,35.0,32.0,43.0,37.0,36.0,39.0,33.0,24.0,28.0,33.0,22.0,22.0,32.0,30.0,28.0,19.0,27.0,29.0,30.0,30.0,29.0,16.0,35.0,26.0,21.0,16.0,22.0,23.0,18.0,19.0,15.0,17.0,21.0,10.0,16.0,13.0,10.0,18.0,11.0,12.0,13.0,14.0,20.0,11.0,11.0,5.0,2.0,8.0,4.0,6.0,6.0,2.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,628,1661,351,0,188,212,228,214,181,191,178,161,183,157,134,135,127,98,79,64,69,25,15,0,1,0,2629,4,0,7,0,2629,4,0,7,0,759,12,29,269,72,2,869,628,0,1581,1059,0,0,1,8,1,0,0,0,0,0,0,33,2597,0,6,11,321,5,0,0,644,1653,0,238,588,37,3,0,1774,0,2.70706106870229,0.0,3.660220994475138,0.0,6.476893939393939,1,6,112,2,0,0,212,478,0,122,99,81,109,140,91,46,40,45,21,11,2,2,2,0,0,690,121,439,372,439,372,61,750,447,364,40,771,417,394,7,804,584,227,429,382,219,210,116,695,292,519,139,672,439,372,378,433,2,809,191,418,187,15,0,560,251,0,0,2,0,0,0,0,0,0,0,5,804,0,1.7250308261405671,1.530209617755857,1.5,1.0588235294117647,1.0588235294117647,54.26387176325524 +PA131205,91106,Veraguas,Soná,Guarumal,765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,239,24,483,20,2,0,0,21,1,460,0,2,24,2,0,37,0,2,50,0,435,8,34,0,0,498,19,1,0,0,9,527,0,135,20,1,71,11,0,0,16,503,6,2,0,467,47,0,4,7,2,0,511,0,1,0,0,15,0,65,424,0,37,1,0,4,490,0,0,0,18,0,10,0,0,4,1,0,765,6.72672064777328,16.546558704453442,6.947368421052632,18.65182186234818,1.0075901328273245,3.3851992409867173,2.225806451612903,531,285,391,61,90,13,19,10,7,21,2,7,19,0,17,7,4,13,9,12,15,1046,350,0,119,1277,0,644,752,0,1250,146,0,318,1078,0,300,18,984,94,0,94,18,11,0,37,50,81,83,88,333,0,1,5,50,67,118,30,41,206,0,5,7,12,16,24,5,11,1,0,2,0,0,0,0,0,522,16,766,0,0,8,6,45,217,425,25,54,113,26,33,10,57,1,173,117,1,769,687,66,206,10,220,9,12,7,1,11,187,10,404,1,0,0,1010,232,5,5,13,37,1,1,0,0,1,14,20,4,21,65,145,33,27,208,754,251,92,93,92,58,54,21,22,12,4,0,0,0,2,1,13.0,17.0,12.0,18.0,15.0,11.0,14.0,17.0,17.0,18.0,22.0,25.0,24.0,18.0,24.0,17.0,26.0,20.0,22.0,17.0,16.0,17.0,26.0,16.0,28.0,10.0,16.0,10.0,17.0,18.0,15.0,10.0,17.0,13.0,9.0,20.0,16.0,14.0,18.0,11.0,13.0,12.0,21.0,19.0,16.0,20.0,13.0,18.0,21.0,20.0,18.0,20.0,35.0,22.0,25.0,14.0,23.0,11.0,26.0,18.0,18.0,19.0,23.0,14.0,20.0,15.0,20.0,22.0,15.0,16.0,15.0,15.0,16.0,9.0,18.0,12.0,8.0,8.0,11.0,12.0,10.0,7.0,11.0,10.0,8.0,2.0,3.0,5.0,2.0,7.0,5.0,4.0,3.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,898,293,0,75,77,113,102,103,71,64,79,81,92,120,92,94,88,73,51,46,19,12,4,0,0,1453,1,2,0,0,1453,1,2,0,0,411,11,19,239,56,1,454,265,0,922,531,3,0,0,3,0,0,0,0,0,0,0,5,1448,0,10,16,167,6,1,0,223,1033,0,120,382,46,5,0,903,0,2.842809364548495,0.0,3.687927107061504,0.0,6.640796703296704,3,7,61,3,1,0,83,373,0,48,74,42,88,89,74,35,23,29,9,9,4,3,1,3,0,513,18,391,140,409,122,55,476,403,128,28,503,224,307,16,515,418,113,359,172,240,119,45,486,204,327,94,437,183,348,216,315,1,530,158,250,109,14,0,417,114,0,0,0,0,0,0,0,0,0,0,2,529,0,1.448210922787194,1.2937853107344632,0.0,1.105263157894737,1.105263157894737,58.15254237288136 +PA131206,91107,Veraguas,Soná,La Soledad,654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,259,12,428,27,3,0,0,8,1,375,0,4,40,4,6,38,0,0,153,105,186,5,18,0,0,420,36,1,0,0,10,467,0,127,19,0,12,29,0,1,6,453,7,0,0,369,71,1,12,14,0,0,438,1,0,0,0,28,0,79,311,0,77,0,0,1,447,9,0,0,8,0,2,0,0,0,0,0,654,5.964989059080962,9.824945295404817,6.457330415754924,14.11159737417943,1.0107066381156318,3.6423982869379015,2.28051391862955,472,287,509,52,102,12,9,10,5,18,3,6,11,0,57,16,9,7,16,14,6,1028,405,0,121,1312,0,226,1207,0,1237,196,0,383,1050,0,366,17,882,168,0,168,9,11,8,48,54,59,59,60,344,0,1,2,36,53,112,42,74,218,0,5,3,5,14,16,3,24,1,0,4,0,0,0,0,0,523,53,734,0,0,38,10,27,263,346,18,80,195,30,46,15,23,1,235,3,0,813,683,76,334,16,62,4,0,56,0,21,146,5,457,3,0,0,1014,230,2,6,15,38,1,4,0,0,0,6,24,10,16,56,84,33,30,317,849,198,69,80,127,61,51,19,27,5,2,1,2,1,1,3,6.0,13.0,22.0,22.0,20.0,17.0,14.0,35.0,18.0,19.0,25.0,18.0,35.0,25.0,22.0,27.0,27.0,34.0,32.0,26.0,26.0,19.0,25.0,17.0,23.0,16.0,10.0,16.0,12.0,13.0,9.0,19.0,24.0,18.0,16.0,16.0,21.0,22.0,19.0,19.0,21.0,16.0,24.0,25.0,20.0,17.0,17.0,21.0,25.0,19.0,12.0,16.0,17.0,18.0,15.0,12.0,22.0,19.0,15.0,15.0,16.0,22.0,19.0,15.0,9.0,19.0,8.0,16.0,14.0,13.0,11.0,11.0,7.0,15.0,7.0,17.0,5.0,6.0,7.0,7.0,8.0,9.0,12.0,6.0,7.0,5.0,8.0,3.0,1.0,4.0,4.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,311,953,232,0,83,103,125,146,110,67,86,97,106,99,78,83,81,70,51,42,42,21,6,0,0,0,1496,0,0,0,0,1496,0,0,0,0,424,13,8,204,39,0,497,311,0,837,659,0,0,0,0,0,0,0,0,0,0,0,7,1489,0,67,146,217,4,0,1,160,901,0,171,454,33,0,0,838,0,2.84991568296796,0.0,3.846522781774581,0.0,6.497326203208556,26,56,77,1,0,1,43,268,0,23,71,27,65,81,71,45,33,31,12,4,2,5,0,2,0,449,23,335,137,344,128,62,410,340,132,25,447,286,186,4,468,364,108,317,155,252,65,52,420,58,414,104,368,254,218,305,167,3,469,101,259,104,8,0,374,98,0,0,0,0,0,0,0,0,0,0,2,470,0,1.722457627118644,1.4470338983050848,1.0,1.0,1.0,56.34745762711864 +PA131207,91108,Veraguas,Soná,Quebrada de Oro,357,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,186,9,257,21,1,0,0,7,1,184,0,3,30,2,2,66,0,0,0,17,252,0,18,0,0,219,60,0,0,0,8,287,0,73,4,0,37,1,0,1,0,278,7,1,0,200,68,0,6,12,1,0,276,0,1,0,0,10,0,53,166,0,68,0,0,0,190,52,10,0,17,0,14,0,2,2,0,0,402,6.768595041322314,22.487603305785125,6.921487603305785,23.727272727272727,1.0139372822299653,3.1149825783972127,2.0313588850174216,291,187,388,39,73,10,12,3,5,19,2,2,4,0,14,9,1,6,11,8,9,583,395,0,64,914,0,223,755,0,853,125,0,243,735,0,233,10,625,110,0,112,3,12,1,22,43,49,46,76,236,0,0,0,23,45,85,20,34,115,0,4,4,8,6,14,12,8,0,0,0,0,0,0,0,0,400,42,440,0,0,17,6,15,161,199,32,33,118,19,21,20,28,4,218,5,0,587,448,38,203,20,112,15,1,44,0,3,84,5,137,0,0,0,711,133,0,5,4,29,0,0,0,0,0,13,6,7,8,49,111,27,13,208,643,111,51,56,73,39,22,16,15,7,0,1,1,0,0,0,16.0,10.0,17.0,14.0,16.0,12.0,20.0,19.0,12.0,17.0,13.0,29.0,14.0,15.0,16.0,19.0,23.0,14.0,18.0,16.0,19.0,18.0,24.0,19.0,12.0,13.0,8.0,15.0,13.0,9.0,14.0,19.0,11.0,7.0,18.0,6.0,11.0,9.0,20.0,7.0,15.0,9.0,11.0,13.0,13.0,12.0,11.0,17.0,7.0,13.0,10.0,11.0,8.0,10.0,13.0,15.0,16.0,14.0,10.0,15.0,9.0,8.0,7.0,10.0,15.0,6.0,5.0,4.0,8.0,7.0,8.0,5.0,9.0,6.0,6.0,8.0,8.0,5.0,3.0,4.0,3.0,6.0,4.0,3.0,5.0,8.0,3.0,1.0,3.0,3.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,240,654,141,0,73,80,87,90,92,58,69,53,61,60,52,70,49,30,34,28,21,18,7,2,1,0,1034,1,0,0,0,1034,1,0,0,0,340,2,15,101,32,4,301,240,0,627,406,2,0,12,29,0,0,0,0,1,0,0,6,987,0,11,81,111,3,0,2,56,771,0,73,188,12,7,0,755,0,3.077956989247312,0.0,4.110687022900764,0.0,6.142028985507246,1,21,46,1,0,1,18,203,0,28,19,26,33,57,42,27,16,20,9,9,1,4,0,0,0,252,39,165,126,158,133,38,253,150,141,7,284,163,128,4,287,182,109,136,155,85,51,23,268,61,230,29,262,206,85,219,72,0,291,55,159,74,3,0,244,47,0,2,10,0,0,0,0,1,0,0,1,277,0,2.0171821305841924,1.5395189003436427,0.0,1.0,1.0,55.93814432989691 +PA131208,91109,Veraguas,Soná,Río Grande,666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,348,82,2,427,4,0,0,0,2,0,326,0,2,22,14,12,57,0,0,225,0,195,0,1,0,12,362,66,0,0,0,5,433,0,135,20,1,64,13,0,0,2,426,4,1,0,278,143,0,6,5,1,0,419,0,0,1,0,13,0,38,315,1,79,0,0,0,401,8,9,1,4,0,8,0,1,0,1,0,666,5.268948655256724,13.17359413202934,6.992665036674817,18.726161369193157,1.0046189376443415,3.323325635103926,2.0831408775981526,435,256,508,41,119,18,5,3,4,19,4,1,3,0,19,7,6,6,4,11,6,710,639,0,58,1291,0,432,917,0,1169,180,0,435,914,0,425,10,786,128,0,133,22,18,2,53,58,67,74,76,278,0,1,0,49,79,126,43,64,143,0,1,17,7,7,15,5,8,1,0,2,0,0,0,0,0,416,48,742,0,7,7,29,12,302,335,47,46,89,12,65,3,14,1,238,33,0,768,648,45,167,7,198,13,9,16,0,14,132,9,458,0,0,0,1000,177,0,1,5,20,1,2,0,0,0,8,10,3,11,45,159,54,21,153,979,172,89,53,53,23,20,9,14,2,2,0,0,0,0,0,10.0,17.0,17.0,23.0,18.0,24.0,19.0,30.0,28.0,24.0,39.0,44.0,30.0,19.0,23.0,30.0,38.0,33.0,29.0,20.0,19.0,18.0,15.0,21.0,14.0,12.0,17.0,18.0,13.0,9.0,18.0,15.0,11.0,12.0,21.0,17.0,16.0,25.0,13.0,17.0,20.0,16.0,22.0,21.0,12.0,22.0,16.0,17.0,5.0,18.0,15.0,15.0,13.0,12.0,21.0,17.0,17.0,12.0,13.0,12.0,13.0,15.0,10.0,13.0,18.0,11.0,5.0,13.0,10.0,13.0,11.0,11.0,12.0,12.0,9.0,7.0,7.0,7.0,10.0,5.0,4.0,5.0,8.0,4.0,2.0,3.0,6.0,5.0,2.0,2.0,2.0,4.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,365,856,195,0,85,125,155,150,87,69,77,88,91,78,76,71,69,52,55,36,23,18,9,2,0,0,1415,1,0,0,0,1415,1,0,0,0,474,0,35,118,37,1,387,364,0,977,438,1,0,1,38,6,0,0,0,0,0,0,23,1348,0,19,243,330,34,0,1,237,552,0,76,316,9,4,0,1011,0,3.159132007233273,0.0,4.326370757180157,0.0,6.106638418079096,7,81,108,18,0,0,71,150,0,88,62,53,53,76,42,23,13,16,3,4,1,1,0,0,0,418,17,259,176,289,146,42,393,295,140,12,423,158,277,3,432,246,189,242,193,208,34,16,419,71,364,44,391,259,176,259,176,3,432,107,239,86,3,0,328,107,0,0,4,0,0,0,0,0,0,0,6,425,0,1.7655172413793103,1.4896551724137932,0.0,1.0,1.0,54.84827586206897 +PA131209,91110,Veraguas,Soná,Rodeo Viejo,614,182,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,438,59,457,37,50,0,0,9,0,121,25,0,155,11,5,234,1,1,0,0,513,17,23,0,0,215,338,0,0,0,0,553,0,197,11,0,21,14,0,1,1,538,8,5,0,158,295,0,74,26,0,0,546,0,0,0,0,7,0,20,190,1,337,4,1,1,324,44,7,45,114,0,16,0,0,2,0,0,796,6.387533875338754,19.4390243902439,6.913279132791328,23.520325203252032,1.0,2.5913200723327305,1.535262206148282,553,275,654,15,138,25,32,11,7,20,6,4,9,0,17,24,12,13,14,6,11,751,905,0,51,1605,0,136,1520,0,1372,284,0,406,1250,0,396,10,998,252,0,254,6,13,5,45,79,119,112,106,447,0,0,1,36,71,90,36,48,123,1,6,7,17,7,5,7,10,3,0,2,0,0,0,0,0,680,23,807,0,1,5,8,16,272,394,39,86,56,11,20,25,20,0,567,0,0,988,761,33,324,26,274,14,0,28,0,70,187,14,254,2,0,0,1321,159,1,4,1,21,1,2,0,0,0,6,8,7,2,28,277,16,8,351,1260,246,83,54,25,26,22,12,11,4,3,0,0,0,1,2,25.0,26.0,19.0,23.0,21.0,20.0,21.0,27.0,25.0,32.0,33.0,20.0,39.0,30.0,39.0,29.0,32.0,21.0,24.0,21.0,35.0,16.0,27.0,20.0,17.0,13.0,19.0,18.0,22.0,10.0,23.0,17.0,14.0,14.0,18.0,21.0,24.0,22.0,19.0,20.0,15.0,21.0,15.0,19.0,20.0,28.0,20.0,22.0,23.0,18.0,27.0,19.0,18.0,21.0,30.0,22.0,13.0,24.0,20.0,13.0,21.0,22.0,26.0,14.0,18.0,14.0,13.0,19.0,21.0,18.0,22.0,16.0,20.0,14.0,13.0,14.0,10.0,9.0,11.0,12.0,13.0,12.0,7.0,7.0,8.0,11.0,7.0,6.0,6.0,6.0,4.0,3.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,400,1025,324,0,114,125,161,127,115,82,86,106,90,111,115,92,101,85,85,56,47,36,13,0,2,0,1743,0,0,6,0,1743,0,0,6,0,512,1,61,131,92,1,551,400,0,1396,353,0,0,1,3,0,0,0,0,0,0,0,13,1732,0,87,6,62,3,0,0,236,1355,0,52,274,13,5,0,1405,0,3.1612403100775195,0.0,4.169934640522876,0.0,5.277301315037164,20,1,24,1,0,0,74,433,0,112,56,67,110,107,36,21,12,19,4,2,4,1,1,1,0,336,217,123,430,133,420,45,508,122,431,11,542,384,169,11,542,236,317,140,413,98,42,19,534,22,531,32,521,431,122,368,185,6,547,139,254,152,8,0,431,122,0,0,1,0,0,0,0,0,0,0,4,548,0,1.786618444846293,1.376130198915009,0.0,1.0,1.0,58.35262206148282 +,91111,Veraguas,Soná,Hicaco,901,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,207,378,28,513,73,2,0,0,24,2,530,0,1,39,12,6,23,0,3,227,0,375,1,6,2,3,570,38,0,0,0,6,614,0,186,10,14,69,9,0,2,33,568,11,0,0,477,108,0,7,19,3,0,599,0,11,0,0,4,0,45,476,1,87,1,4,1,532,34,18,13,0,0,11,0,0,4,1,0,902,6.430335097001763,10.132275132275131,6.670194003527337,15.037037037037036,1.006514657980456,3.2996742671009773,2.099348534201954,618,359,706,53,154,22,24,11,5,36,2,1,16,0,17,17,3,1,14,0,4,1422,476,0,162,1736,0,1095,803,0,1687,211,0,515,1383,0,491,24,1227,156,0,156,14,24,1,66,74,117,95,113,299,0,0,0,81,131,161,62,98,292,0,0,8,9,21,49,10,9,2,1,3,0,0,0,2,0,795,20,882,0,0,7,8,25,329,378,67,83,306,23,164,9,21,0,102,183,2,1058,949,41,365,10,350,17,1,24,2,31,108,8,429,0,0,0,1291,314,0,0,18,68,2,3,1,0,6,41,24,24,24,163,220,84,25,204,1129,232,94,136,140,135,56,26,36,16,6,1,0,0,0,0,22.0,24.0,36.0,27.0,35.0,24.0,25.0,45.0,31.0,41.0,42.0,39.0,34.0,34.0,37.0,38.0,31.0,32.0,43.0,36.0,34.0,25.0,30.0,30.0,26.0,30.0,26.0,15.0,32.0,27.0,34.0,17.0,31.0,27.0,23.0,25.0,27.0,28.0,29.0,29.0,23.0,26.0,30.0,38.0,28.0,33.0,24.0,22.0,36.0,22.0,29.0,18.0,21.0,23.0,20.0,25.0,22.0,16.0,21.0,15.0,23.0,16.0,16.0,13.0,12.0,16.0,10.0,17.0,18.0,11.0,17.0,9.0,13.0,14.0,10.0,6.0,7.0,6.0,4.0,3.0,4.0,8.0,6.0,4.0,2.0,7.0,5.0,3.0,0.0,2.0,3.0,2.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,496,1297,214,0,144,166,186,180,145,130,132,138,145,137,111,99,80,72,63,26,24,17,10,1,1,0,1941,9,53,4,0,1941,40,22,4,0,682,10,133,168,58,1,460,495,0,1199,751,57,0,0,14,1,0,2,0,0,0,0,4,1986,0,7,203,268,58,0,1,629,841,0,138,207,21,3,4,1634,0,2.7135614702154625,0.0,3.7903525046382183,0.0,6.672645739910314,5,65,89,28,0,1,171,259,0,75,61,40,66,88,87,62,34,63,20,14,4,2,1,1,0,591,27,463,155,472,146,43,575,470,148,40,578,214,404,8,610,505,113,395,223,254,141,83,535,291,327,134,484,225,393,265,353,4,614,138,328,137,15,0,419,199,0,0,2,0,0,1,0,0,0,0,0,615,0,1.7119741100323624,1.535598705501618,0.0,1.0454545454545454,1.0454545454545454,51.26375404530744 +,91112,Veraguas,Soná,La Trinchera,630,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,148,309,14,379,78,4,0,0,8,2,340,0,6,43,4,3,73,0,2,67,0,381,11,9,0,3,420,43,0,0,0,8,471,0,87,17,1,19,36,0,0,3,454,13,0,1,354,100,0,3,14,0,0,436,0,0,0,0,35,0,36,359,1,73,2,0,1,408,27,2,12,4,0,15,0,0,2,0,0,631,5.479357798165138,16.46330275229358,6.759174311926605,22.889908256880734,1.0021231422505308,3.2441613588110405,2.225053078556263,472,262,515,35,161,12,12,7,10,21,6,1,10,0,23,10,8,2,7,8,8,955,487,0,135,1307,0,523,919,0,1230,212,0,406,1036,0,391,15,880,156,0,160,15,25,1,59,48,84,83,91,251,0,0,1,55,80,92,43,56,188,1,4,8,25,17,26,10,14,1,1,3,0,0,0,0,0,503,81,703,0,1,25,42,22,244,338,87,12,164,26,55,10,32,0,243,26,2,819,705,89,287,11,116,18,0,35,2,55,143,11,360,0,0,0,988,235,1,5,11,44,1,2,0,0,2,13,34,7,8,62,92,50,33,283,847,221,85,83,105,73,42,19,28,12,8,0,1,0,0,0,26.0,18.0,17.0,21.0,18.0,22.0,26.0,35.0,22.0,32.0,32.0,26.0,23.0,21.0,27.0,22.0,19.0,27.0,30.0,26.0,20.0,28.0,21.0,17.0,11.0,14.0,15.0,16.0,18.0,26.0,18.0,16.0,24.0,25.0,18.0,18.0,22.0,17.0,20.0,16.0,11.0,19.0,11.0,12.0,16.0,27.0,17.0,10.0,11.0,18.0,15.0,15.0,18.0,19.0,21.0,13.0,31.0,17.0,16.0,18.0,18.0,16.0,25.0,13.0,19.0,15.0,10.0,18.0,14.0,13.0,12.0,14.0,14.0,9.0,13.0,6.0,13.0,3.0,4.0,8.0,5.0,9.0,5.0,1.0,1.0,9.0,4.0,4.0,6.0,7.0,0.0,4.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,366,930,228,0,100,137,129,124,97,89,101,93,69,83,88,95,91,70,62,34,21,30,9,2,0,0,1520,1,1,2,0,1520,2,0,2,0,496,5,38,124,46,2,447,366,0,916,606,2,0,0,12,1,0,0,0,0,0,0,2,1509,0,10,33,299,6,0,0,75,1101,0,148,379,29,1,1,966,0,3.081034482758621,0.0,3.988066825775656,0.0,6.284776902887139,2,16,92,2,0,0,32,328,0,30,62,24,66,88,73,39,22,33,14,9,4,3,4,1,0,432,40,292,180,307,165,43,429,313,159,14,458,169,303,1,471,350,122,239,233,215,24,35,437,176,296,57,415,194,278,263,209,0,472,101,240,122,9,0,355,117,0,0,1,1,0,0,0,0,0,0,1,469,0,1.7351694915254237,1.49364406779661,0.0,1.0,1.0,56.62923728813559 +PA130602,91201,Veraguas,Mariato,Llano de Catival o Mariato,1433,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,632,291,20,877,49,6,0,0,14,0,764,0,2,90,3,4,82,0,1,181,17,679,9,53,1,6,843,83,0,0,0,20,946,0,378,40,3,40,39,0,0,44,839,61,1,1,804,108,0,13,4,15,2,880,2,35,0,0,25,4,185,648,2,100,9,2,0,712,199,2,0,11,1,13,0,1,6,1,0,1446,6.3413830954994514,21.625686059275523,6.6684961580680575,22.835345773874863,1.0031712473572938,3.3276955602537,2.1659619450317127,949,542,962,95,144,33,41,22,7,32,13,5,39,0,37,14,17,18,11,1,8,2131,571,0,364,2338,0,1892,810,0,2318,384,0,754,1948,0,701,53,1680,268,0,274,27,48,5,82,132,135,124,106,470,0,0,1,106,126,203,63,93,424,3,16,21,39,40,72,57,10,9,1,11,0,1,0,3,0,1149,49,1213,0,0,9,30,45,448,595,75,50,447,53,207,27,56,5,254,139,7,1530,1354,147,475,29,445,74,0,16,9,29,178,18,719,12,0,0,1703,505,1,19,23,138,8,10,4,0,9,48,51,33,38,179,199,148,57,436,1608,265,117,175,185,185,125,70,74,45,13,1,4,3,2,12,44.0,43.0,49.0,46.0,48.0,45.0,45.0,51.0,56.0,46.0,62.0,50.0,49.0,50.0,56.0,50.0,46.0,56.0,49.0,41.0,35.0,55.0,32.0,43.0,44.0,41.0,55.0,31.0,49.0,31.0,33.0,35.0,38.0,42.0,37.0,42.0,35.0,46.0,46.0,36.0,38.0,42.0,32.0,34.0,38.0,38.0,31.0,35.0,24.0,31.0,36.0,34.0,26.0,35.0,35.0,30.0,29.0,32.0,27.0,17.0,28.0,30.0,24.0,18.0,21.0,30.0,18.0,23.0,16.0,17.0,16.0,22.0,22.0,8.0,22.0,15.0,10.0,14.0,5.0,8.0,12.0,5.0,10.0,7.0,13.0,3.0,9.0,5.0,6.0,2.0,5.0,2.0,1.0,1.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,740,1813,331,0,230,243,267,242,209,207,185,205,184,159,166,135,121,104,90,52,47,25,9,4,0,0,2742,73,54,15,0,2746,82,41,15,0,799,34,279,429,80,16,507,740,0,1740,1036,108,0,3,69,42,0,0,0,0,0,0,19,2751,0,49,74,272,26,3,2,543,1915,0,246,409,29,3,26,2171,0,2.585867620751342,0.0,3.622886866059818,0.0,6.727808599167823,16,26,105,14,0,1,191,596,0,85,66,78,99,148,135,74,61,93,45,23,12,14,6,5,5,895,54,660,289,715,234,126,823,677,272,102,847,376,573,16,933,835,114,533,416,438,95,168,781,715,234,260,689,458,491,482,467,18,931,219,497,208,25,0,723,226,0,1,11,4,0,0,0,0,0,0,7,926,0,1.612223393045311,1.4267650158061116,1.0,1.0,1.0,50.67755532139094 +PA130601,91202,Veraguas,Mariato,Arenas,360,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,18,6,215,6,0,0,0,6,0,199,0,1,10,0,1,16,0,0,0,11,191,1,24,0,0,217,7,0,0,0,3,227,0,107,3,0,19,9,0,0,9,196,22,0,0,196,29,0,2,0,0,0,224,1,2,0,0,0,0,56,159,0,8,4,0,0,194,30,0,1,0,0,0,0,1,1,0,0,365,6.660714285714286,22.165178571428573,6.629464285714286,22.477678571428573,1.0044052863436124,3.2775330396475773,2.2202643171806167,228,145,175,22,35,3,3,4,1,10,1,2,9,2,7,0,0,4,4,0,3,464,139,0,59,544,0,425,178,0,541,62,0,128,475,0,116,12,431,44,0,45,3,5,1,10,29,31,27,18,158,0,0,0,29,36,45,6,22,83,2,0,11,6,9,5,16,2,2,0,2,0,0,0,0,0,275,14,265,0,1,12,0,7,84,145,22,7,76,7,14,7,10,0,171,3,0,352,288,29,172,8,54,19,0,6,0,6,34,5,231,0,0,0,416,103,0,2,10,20,1,2,0,0,0,7,6,6,5,20,46,22,22,155,347,62,32,42,51,49,31,10,4,5,5,1,0,0,1,0,8.0,8.0,9.0,12.0,8.0,8.0,4.0,8.0,14.0,7.0,10.0,6.0,9.0,11.0,12.0,10.0,5.0,10.0,7.0,14.0,7.0,10.0,8.0,11.0,9.0,11.0,10.0,7.0,5.0,10.0,8.0,4.0,10.0,9.0,6.0,5.0,4.0,6.0,13.0,10.0,8.0,10.0,9.0,8.0,9.0,12.0,7.0,13.0,9.0,11.0,11.0,9.0,6.0,11.0,13.0,8.0,7.0,4.0,9.0,5.0,4.0,4.0,5.0,7.0,6.0,3.0,9.0,2.0,4.0,4.0,3.0,6.0,2.0,5.0,7.0,5.0,7.0,2.0,5.0,3.0,6.0,1.0,4.0,5.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,134,414,92,0,45,41,48,46,45,43,37,38,44,52,50,33,26,22,23,22,19,3,1,1,1,0,633,2,1,4,0,633,2,1,4,0,269,7,56,61,17,1,95,134,0,384,255,1,0,1,8,2,0,0,0,0,0,0,0,629,0,1,4,27,0,1,0,8,599,0,40,64,7,0,0,529,0,2.476,0.0,3.216216216216216,0.0,6.8046875,1,2,12,0,0,0,5,208,0,18,19,22,36,31,33,32,7,11,10,6,0,2,0,1,0,223,5,166,62,181,47,43,185,163,65,20,208,88,140,1,227,187,41,130,98,116,14,16,212,170,58,55,173,130,98,158,70,0,228,49,129,40,10,0,180,48,0,0,3,2,0,0,0,0,0,0,0,223,0,1.543859649122807,1.263157894736842,1.0,1.0,1.0,52.89035087719298 +,91203,Veraguas,Mariato,El Cacao,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,25,5,160,1,2,0,2,1,0,92,0,1,53,0,1,19,0,0,0,5,121,2,34,2,2,156,10,0,0,0,0,166,0,52,1,0,31,9,0,0,2,142,22,0,0,101,65,0,0,0,0,0,161,4,0,0,0,1,0,17,135,0,9,5,0,0,116,47,3,0,0,0,0,0,0,0,0,0,259,6.809815950920245,22.865030674846626,6.822085889570552,22.88957055214724,1.0,3.3313253012048194,2.1867469879518078,166,86,119,7,19,4,6,2,1,3,1,0,15,1,3,1,0,2,2,0,4,303,111,0,49,365,0,275,139,0,365,49,0,80,334,0,72,8,276,58,0,59,1,1,0,12,10,22,12,23,92,0,0,0,16,9,31,9,20,52,0,3,7,5,7,12,2,4,3,0,2,0,0,0,0,0,196,4,179,0,1,0,2,6,51,97,14,11,43,4,5,1,2,0,143,2,0,241,189,26,95,1,68,8,0,2,0,3,30,5,117,0,0,0,281,68,0,1,9,15,3,2,0,0,0,4,8,6,4,14,66,7,11,80,195,53,23,36,50,29,20,8,5,5,1,2,1,0,2,0,4.0,3.0,3.0,6.0,5.0,6.0,4.0,9.0,4.0,7.0,6.0,5.0,2.0,6.0,1.0,5.0,9.0,7.0,8.0,6.0,5.0,8.0,6.0,4.0,4.0,10.0,5.0,6.0,6.0,3.0,4.0,4.0,7.0,6.0,6.0,4.0,3.0,6.0,3.0,5.0,3.0,4.0,7.0,5.0,3.0,3.0,13.0,7.0,8.0,4.0,10.0,4.0,6.0,10.0,6.0,3.0,6.0,7.0,4.0,7.0,2.0,3.0,4.0,9.0,9.0,7.0,4.0,3.0,3.0,4.0,3.0,6.0,3.0,3.0,1.0,5.0,3.0,1.0,4.0,1.0,1.0,1.0,2.0,2.0,4.0,3.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,71,287,72,0,21,30,20,35,27,30,27,21,22,35,36,27,27,21,16,14,10,5,5,1,0,0,427,0,0,3,0,427,0,0,3,0,151,4,48,39,16,1,100,71,0,275,155,0,0,0,20,11,0,0,0,0,0,0,0,399,0,1,0,43,2,0,0,100,284,0,27,64,6,0,0,333,0,2.580246913580247,0.0,3.4782608695652173,0.0,6.774418604651163,1,0,21,1,0,0,36,107,0,5,21,8,21,35,31,12,6,12,6,3,2,1,1,2,0,161,5,95,71,110,56,21,145,86,80,9,157,51,115,3,163,120,46,81,85,74,7,20,146,109,57,43,123,138,28,120,46,1,165,54,70,28,14,0,133,33,0,0,5,4,0,0,0,0,0,0,0,157,0,1.4518072289156627,1.1385542168674698,0.0,1.1666666666666667,1.1666666666666667,54.12048192771084 +PA130603,91204,Veraguas,Mariato,Quebro,709,9,2,0,0,0,0,0,0,0,0,0,0,0,0,2,307,105,31,406,8,11,1,0,19,0,316,0,7,52,4,12,54,0,0,0,42,347,4,48,2,2,389,47,1,0,0,8,445,0,173,12,1,52,37,0,0,9,387,47,1,1,319,116,0,7,1,1,1,407,4,17,0,2,11,4,99,256,3,81,6,0,0,297,103,1,4,27,0,7,0,0,6,0,0,720,6.9175,19.465,6.9375,19.995,1.006741573033708,3.1123595505617976,1.9146067415730337,448,238,342,40,56,9,12,9,5,17,2,1,16,0,12,10,4,5,3,4,5,781,349,0,145,985,0,697,433,0,974,156,0,265,865,0,240,25,770,95,0,95,16,19,1,51,60,64,51,50,213,1,1,0,53,56,90,32,40,142,0,0,9,19,14,23,9,8,4,1,8,0,0,0,0,0,520,13,492,0,3,2,2,36,153,250,38,15,180,6,69,10,15,1,209,42,0,654,541,39,303,11,154,23,0,2,0,18,71,6,340,2,0,0,788,174,0,2,13,39,2,7,0,0,0,20,17,12,12,54,112,37,23,246,596,147,76,70,73,87,61,20,28,22,6,4,2,0,1,2,14.0,20.0,15.0,16.0,16.0,18.0,16.0,21.0,19.0,15.0,25.0,16.0,16.0,17.0,21.0,15.0,19.0,18.0,12.0,19.0,23.0,17.0,19.0,12.0,13.0,19.0,20.0,19.0,13.0,10.0,11.0,15.0,20.0,20.0,15.0,13.0,15.0,17.0,13.0,10.0,18.0,15.0,17.0,13.0,16.0,19.0,18.0,10.0,20.0,16.0,21.0,9.0,12.0,13.0,12.0,14.0,13.0,15.0,11.0,15.0,16.0,18.0,6.0,23.0,15.0,9.0,12.0,13.0,10.0,12.0,7.0,14.0,12.0,9.0,4.0,10.0,6.0,4.0,5.0,2.0,5.0,5.0,0.0,4.0,3.0,3.0,1.0,4.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,772,158,0,81,89,95,83,84,81,81,68,79,83,67,68,78,56,46,27,17,9,1,2,0,0,1157,17,17,4,0,1159,28,4,4,0,433,10,157,121,20,8,181,265,0,771,381,43,0,3,23,4,0,0,0,0,0,0,3,1162,0,3,7,195,14,1,0,256,719,0,86,168,16,2,23,900,0,2.7311827956989245,0.0,3.654434250764526,0.0,6.4569037656903765,1,4,86,6,0,0,104,247,0,30,65,33,58,66,52,41,26,32,15,7,8,11,2,2,0,415,33,289,159,303,145,72,376,304,144,63,385,156,292,7,441,313,135,231,217,197,34,71,377,272,176,128,320,177,271,250,198,10,438,142,217,76,13,0,330,118,0,3,10,2,0,0,0,0,0,0,0,433,0,1.4598214285714286,1.2075892857142858,0.0,1.0,1.0,51.785714285714285 +,100102,Comarca Kuna Yala,Comarca Kuna Yala,Ailigandí,2470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,220,1597,199,41,0,6,1537,42,12,9,27,40,1157,10,13,537,1,43,0,0,2,2,10,1822,1,791,963,0,0,0,83,1837,26,74,112,81,204,136,0,0,3,1790,44,0,0,331,254,0,12,1233,7,0,314,20,240,0,26,1234,3,73,466,10,1237,50,1,0,1750,0,0,0,0,0,68,0,0,17,2,0,2470,6.232,19.492571428571427,4.787428571428571,13.217714285714283,1.0005443658138269,1.5557974959172565,0.5166031573217202,1838,1196,3718,191,2094,153,192,385,200,352,199,167,225,1,60,32,15,22,25,2,16,6778,3021,0,697,9102,0,4471,5328,0,7675,2124,0,3775,6024,0,3733,42,4492,1532,0,1537,184,305,20,351,463,586,552,560,1544,1,4,3,555,638,834,287,430,482,1,2,112,88,71,112,24,37,10,0,5,0,0,0,1,0,3293,25,4693,0,1,9,11,152,2132,2087,140,182,626,819,103,12,54,1,1376,319,1,5264,5647,192,348,12,2537,42,4,175,1,391,408,30,3552,36,0,0,7063,797,3,3,19,118,4,4,0,0,1,45,111,80,133,283,1560,835,46,224,9002,642,399,234,213,108,92,35,45,49,32,5,12,4,3,36,269.0,290.0,273.0,280.0,263.0,300.0,282.0,314.0,324.0,305.0,290.0,317.0,253.0,279.0,266.0,229.0,219.0,188.0,196.0,165.0,162.0,132.0,155.0,149.0,121.0,141.0,114.0,99.0,115.0,126.0,120.0,123.0,107.0,113.0,106.0,107.0,116.0,129.0,111.0,99.0,95.0,88.0,94.0,97.0,98.0,81.0,81.0,86.0,84.0,100.0,88.0,83.0,82.0,79.0,95.0,72.0,83.0,73.0,68.0,82.0,85.0,63.0,81.0,84.0,77.0,78.0,71.0,68.0,67.0,49.0,55.0,49.0,45.0,61.0,79.0,54.0,64.0,51.0,31.0,26.0,53.0,14.0,18.0,12.0,27.0,18.0,16.0,15.0,10.0,8.0,5.0,4.0,3.0,4.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4305,5541,1065,0,1375,1525,1405,997,719,595,569,562,472,432,427,378,390,333,289,226,124,67,17,3,6,0,10502,3,0,406,0,10502,3,0,406,0,3514,19,683,352,450,21,1577,4295,0,9373,1534,4,0,10877,2,0,0,0,0,0,0,0,1,31,0,14,0,0,0,1,0,20,10876,0,133,232,175,1,3,10367,0,2.9372037914691944,0.0,3.945028011204482,0.0,4.9696636421959495,5,0,0,0,0,0,2,1831,0,279,128,204,273,331,232,122,67,78,33,38,19,14,8,8,4,1176,662,372,1466,8,1830,221,1617,84,1754,9,1829,463,1375,17,1821,1197,641,220,1618,83,137,141,1697,759,1079,21,1817,1367,471,114,1724,90,1748,132,492,1090,124,0,1381,457,0,1833,0,0,0,0,0,0,0,0,1,4,0,2.863982589771491,3.072361262241567,1.0,1.106194690265487,1.106194690265487,53.050054406964094 +,100103,Comarca Kuna Yala,Comarca Kuna Yala,Puerto Obaldía,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,154,1,15,194,2,2,0,8,4,1,203,1,0,3,0,2,0,0,2,0,113,91,3,2,1,1,202,5,0,0,0,4,211,3,22,1,0,0,0,0,0,30,155,26,0,0,149,61,0,0,1,0,0,44,43,116,0,0,8,0,74,130,0,6,1,0,0,210,0,0,0,0,0,1,0,0,0,0,0,237,6.714285714285714,23.747619047619047,6.70952380952381,23.69047619047619,1.0,3.241706161137441,2.1943127962085307,211,111,156,39,48,6,7,5,1,11,2,2,11,1,6,7,1,2,3,1,3,452,116,0,42,526,0,354,214,0,490,78,0,135,433,0,132,3,376,57,0,58,6,18,0,18,29,28,27,43,77,0,0,0,25,37,45,15,52,70,0,2,1,1,8,0,3,2,3,0,0,0,0,0,0,0,202,18,257,0,6,3,5,8,65,157,16,11,67,24,30,3,24,2,28,40,0,303,308,36,22,4,150,4,0,2,0,11,2,0,248,68,0,0,386,77,0,1,2,9,1,1,0,0,0,9,2,19,9,59,57,22,10,33,393,36,13,33,24,13,14,8,4,1,3,1,0,0,0,68,16.0,7.0,6.0,14.0,20.0,12.0,14.0,20.0,11.0,14.0,9.0,9.0,9.0,12.0,3.0,9.0,8.0,10.0,10.0,9.0,6.0,9.0,9.0,8.0,9.0,10.0,12.0,18.0,13.0,4.0,9.0,8.0,13.0,6.0,5.0,13.0,10.0,12.0,11.0,7.0,6.0,2.0,8.0,7.0,4.0,9.0,5.0,6.0,4.0,3.0,9.0,6.0,4.0,5.0,8.0,5.0,6.0,4.0,4.0,4.0,6.0,5.0,3.0,4.0,8.0,6.0,5.0,5.0,3.0,3.0,6.0,6.0,4.0,2.0,0.0,2.0,0.0,1.0,4.0,1.0,0.0,0.0,3.0,1.0,3.0,1.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,176,373,62,0,63,71,42,46,41,57,41,53,27,27,32,23,26,22,18,8,7,4,3,0,0,0,349,200,57,5,0,349,203,54,5,0,207,4,35,62,17,0,110,176,0,291,73,247,0,26,0,0,0,0,0,3,0,0,4,578,0,123,83,114,64,0,1,174,52,0,36,44,7,1,0,523,0,2.356,0.0,2.98936170212766,0.0,6.058919803600655,50,24,34,31,0,1,61,10,0,53,20,16,25,21,13,17,9,5,2,3,1,0,0,0,26,203,8,162,49,164,47,14,197,180,31,30,181,67,144,7,204,165,46,155,56,111,44,18,193,127,84,4,207,59,152,34,177,7,204,44,113,44,10,0,134,77,0,9,0,0,0,0,0,2,0,0,1,199,0,1.4360189573459716,1.4597156398104263,0.0,1.2857142857142858,1.2857142857142858,47.18483412322275 +,100104,Comarca Kuna Yala,Comarca Kuna Yala,Tubualá,1396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,24,9,1128,52,0,1,9,1102,14,2,0,1,21,865,1,4,273,2,13,0,0,171,274,9,726,0,332,835,0,0,0,13,1180,29,47,42,9,80,9,0,0,2,1128,50,0,0,284,220,0,0,675,1,0,242,13,129,0,14,778,4,26,369,10,755,19,1,0,1077,0,5,75,0,0,2,0,1,19,1,0,1396,5.825441039925719,16.594243268337976,5.689879294336119,16.64623955431755,1.0033898305084743,1.7576271186440675,0.7254237288135593,1184,837,2512,153,1630,74,93,202,161,283,138,70,202,1,67,48,3,4,10,1,13,4887,1812,0,323,6376,0,3708,2991,0,4974,1725,0,2064,4635,0,2052,12,3222,1413,0,1421,68,165,3,243,312,397,370,402,1471,0,3,0,267,334,595,122,190,222,2,3,16,36,11,21,6,14,4,0,1,0,0,0,0,0,2433,38,3003,0,9,4,7,49,1154,1576,103,121,200,687,71,6,53,0,1275,169,0,3550,3990,106,142,5,1900,55,2,251,0,259,290,19,2035,26,0,0,5137,288,1,3,4,37,3,1,0,0,0,16,50,58,58,187,1307,579,46,170,6342,440,241,161,107,89,50,19,22,29,5,4,2,1,2,26,194.0,231.0,210.0,206.0,212.0,197.0,192.0,207.0,216.0,201.0,206.0,219.0,183.0,194.0,175.0,135.0,153.0,139.0,132.0,117.0,110.0,104.0,100.0,113.0,89.0,96.0,87.0,91.0,96.0,99.0,96.0,89.0,82.0,79.0,76.0,76.0,50.0,75.0,63.0,77.0,69.0,69.0,59.0,57.0,61.0,55.0,56.0,85.0,68.0,59.0,50.0,63.0,57.0,61.0,58.0,56.0,54.0,79.0,53.0,47.0,66.0,35.0,28.0,52.0,49.0,38.0,39.0,49.0,44.0,24.0,16.0,15.0,31.0,51.0,59.0,40.0,33.0,41.0,22.0,10.0,31.0,10.0,17.0,10.0,8.0,7.0,6.0,6.0,7.0,2.0,5.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3043,3870,627,0,1053,1013,977,676,516,469,422,341,315,323,289,289,230,194,172,146,76,28,8,2,1,0,7303,10,3,224,0,7303,10,3,224,0,2519,26,450,180,344,15,972,3034,0,6462,1062,16,0,7512,3,0,0,0,0,0,0,0,0,25,0,3,5,4,0,0,0,12,7516,0,88,161,63,3,2,7223,0,2.692910702113156,0.0,3.66148445336008,0.0,4.243899204244032,1,1,0,0,0,0,1,1181,0,135,68,135,165,269,174,79,42,56,27,12,8,6,1,3,4,840,344,246,938,32,1152,479,705,86,1098,13,1171,311,873,16,1168,904,280,171,1013,106,65,48,1136,536,648,6,1178,959,225,91,1093,26,1158,40,306,735,103,0,914,270,0,1180,0,0,0,0,0,0,0,0,0,4,0,2.998310810810811,3.3699324324324325,1.0,1.1020408163265305,1.1020408163265305,52.483108108108105 +,110101,Comarca Emberá-Wounaán,Cémaco,Cirilo Guaynora,643,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,116,360,28,447,29,3,4,0,20,1,477,0,0,4,0,12,9,0,2,59,0,256,151,10,27,1,482,16,1,0,0,5,504,0,75,53,7,13,32,0,0,4,487,13,0,0,100,392,0,2,3,1,6,472,0,0,0,2,30,0,14,156,0,7,325,2,0,131,0,1,0,0,238,124,0,7,0,3,0,684,5.259541984732825,10.488549618320612,5.229007633587786,10.419847328244275,1.003968253968254,3.0654761904761907,1.8948412698412695,506,361,1096,40,354,16,29,28,15,58,9,4,4,0,17,16,9,17,12,3,10,1205,1066,0,308,1963,0,747,1524,0,1802,469,0,966,1305,0,954,12,1004,301,0,306,54,47,14,64,111,123,134,153,330,1,1,1,90,107,177,75,84,295,2,0,17,20,15,27,12,11,0,0,0,0,0,0,0,0,913,33,973,0,2,4,18,4,556,316,43,54,149,50,46,3,22,0,652,6,5,1342,1178,127,11,3,587,3,1,194,7,266,103,32,1115,17,0,0,1519,355,1,1,5,38,0,0,0,0,8,16,27,20,12,82,578,76,8,119,2047,124,59,56,52,36,39,13,46,22,4,1,1,2,1,17,61.0,67.0,47.0,74.0,51.0,67.0,50.0,53.0,79.0,52.0,81.0,86.0,72.0,58.0,60.0,55.0,61.0,56.0,56.0,42.0,37.0,43.0,30.0,34.0,40.0,27.0,31.0,34.0,34.0,33.0,27.0,35.0,32.0,24.0,29.0,23.0,25.0,32.0,22.0,24.0,27.0,26.0,29.0,31.0,16.0,20.0,20.0,15.0,24.0,26.0,21.0,27.0,26.0,21.0,19.0,19.0,20.0,12.0,24.0,27.0,17.0,8.0,10.0,10.0,14.0,11.0,8.0,16.0,14.0,10.0,5.0,4.0,6.0,5.0,16.0,8.0,5.0,10.0,3.0,6.0,7.0,6.0,5.0,2.0,5.0,0.0,1.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,958,1395,167,0,300,301,357,270,184,159,147,126,129,105,114,102,59,59,36,32,25,8,4,3,0,0,2398,64,8,50,0,2398,64,8,50,0,825,1,72,90,56,1,517,958,0,1855,557,108,0,4,3,0,0,0,0,1142,1230,0,2,139,0,12,11,48,25,0,0,48,2376,0,123,198,4,0,0,2195,0,3.2040586245772267,0.0,4.494057724957555,0.0,5.491666666666666,11,4,12,8,0,0,8,463,0,97,44,58,62,82,37,26,18,35,18,10,5,7,1,3,3,493,13,303,203,257,249,77,429,292,214,1,505,85,421,0,506,353,153,212,294,102,110,50,456,80,426,13,493,378,128,173,333,6,500,46,251,205,4,0,416,90,0,2,1,0,0,0,0,229,232,0,0,42,0,2.652173913043478,2.3280632411067192,1.0,1.0857142857142856,1.0857142857142856,50.691699604743086 +,110102,Comarca Emberá-Wounaán,Cémaco,Lajas Blancas,1311,1,0,8,0,0,0,0,0,0,0,1,2,0,0,1,247,656,91,882,22,36,15,0,37,3,406,33,37,383,13,33,90,0,0,0,0,908,71,13,3,0,973,15,0,0,0,7,995,0,124,124,3,64,10,0,0,2,971,22,0,0,151,826,0,2,2,0,14,872,0,0,0,27,96,0,0,189,2,16,788,0,1,203,1,9,7,5,348,396,0,20,5,0,0,1323,4.019512195121951,3.6878048780487807,3.7365853658536583,3.3073170731707315,1.0050251256281406,2.4452261306532663,1.371859296482412,1003,768,2436,119,506,28,39,54,11,140,42,4,10,1,25,12,11,9,13,3,8,2826,1690,0,142,4374,0,1220,3296,0,3547,969,0,1742,2774,0,1721,21,2102,672,0,677,64,109,4,153,208,283,255,274,623,0,0,1,213,226,389,117,182,601,0,3,20,25,31,26,9,18,1,0,4,0,0,0,0,0,1712,8,1920,0,0,5,2,5,1017,843,7,48,252,120,18,0,81,0,1156,87,0,2687,2474,158,159,1,1210,3,2,181,0,493,190,28,1617,3,0,0,2900,676,1,3,13,45,0,2,0,0,0,17,37,32,14,257,1086,91,88,98,4235,328,132,107,97,60,76,63,43,13,2,0,1,0,1,3,155.0,173.0,156.0,161.0,167.0,150.0,125.0,118.0,178.0,138.0,152.0,158.0,130.0,135.0,110.0,104.0,92.0,100.0,112.0,71.0,92.0,86.0,69.0,96.0,74.0,86.0,79.0,70.0,65.0,61.0,75.0,58.0,73.0,61.0,53.0,53.0,61.0,43.0,53.0,38.0,46.0,43.0,49.0,45.0,44.0,49.0,37.0,28.0,46.0,40.0,34.0,27.0,46.0,25.0,37.0,35.0,20.0,27.0,17.0,37.0,26.0,14.0,32.0,34.0,19.0,16.0,16.0,25.0,31.0,15.0,19.0,17.0,17.0,7.0,15.0,8.0,8.0,4.0,6.0,6.0,3.0,4.0,8.0,10.0,4.0,7.0,4.0,2.0,6.0,2.0,1.0,1.0,2.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0,2206,2682,273,0,812,709,685,479,417,361,320,248,227,200,169,136,125,103,75,32,29,21,6,4,3,0,4929,79,24,129,0,4938,79,15,129,0,1715,6,124,208,68,0,835,2205,0,3676,1336,149,0,2,8,0,1,0,0,4381,690,0,3,76,0,8,45,4,0,3,3,31,5067,0,128,223,5,1,1,4803,0,3.0530035335689045,0.0,4.5129579982126895,0.0,5.202092617709746,3,5,2,0,2,0,11,980,0,130,67,113,172,189,104,60,44,77,29,7,1,6,0,1,0,989,14,403,600,306,697,103,900,247,756,5,998,121,882,0,1003,531,472,219,784,167,52,51,952,199,804,27,976,738,265,280,723,11,992,90,606,297,10,0,864,139,0,0,3,0,1,0,0,856,124,0,2,17,0,2.678963110667996,2.4666001994017948,1.0,1.0909090909090908,1.0909090909090908,47.383848454636095 +,110103,Comarca Emberá-Wounaán,Cémaco,Manuel Ortega,582,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,197,202,182,18,100,54,0,47,1,122,0,39,105,22,32,75,0,7,0,0,207,164,25,6,0,378,23,0,0,0,1,402,0,92,62,2,15,10,0,0,3,381,17,1,0,49,341,0,4,1,0,7,367,1,0,0,10,24,0,0,76,0,5,320,1,1,224,0,1,0,1,1,174,0,0,0,0,0,583,6.96,22.346666666666668,6.933333333333334,22.27111111111111,1.007462686567164,2.430348258706468,1.373134328358209,405,285,845,5,199,18,24,10,5,47,12,1,10,0,48,14,2,1,7,2,5,546,1115,0,31,1630,0,87,1574,0,1286,375,0,586,1075,0,576,10,784,291,0,292,22,33,1,62,102,122,75,103,341,0,0,1,67,95,98,38,44,134,1,2,2,6,4,7,4,3,0,1,1,0,0,0,0,0,713,8,630,0,1,0,5,1,304,281,31,13,68,41,5,0,1,1,602,1,1,1003,863,38,15,0,537,2,0,127,1,220,117,20,593,0,0,0,1185,143,1,2,5,13,1,1,0,0,2,0,15,9,1,60,593,22,2,17,1459,157,70,56,55,21,14,9,16,5,4,0,0,0,0,0,45.0,58.0,50.0,52.0,44.0,60.0,44.0,48.0,70.0,44.0,49.0,53.0,55.0,33.0,41.0,40.0,29.0,35.0,21.0,27.0,30.0,25.0,27.0,34.0,27.0,16.0,28.0,24.0,27.0,22.0,16.0,26.0,19.0,17.0,25.0,21.0,18.0,20.0,20.0,13.0,13.0,10.0,17.0,18.0,13.0,18.0,13.0,8.0,20.0,15.0,20.0,19.0,13.0,13.0,14.0,12.0,13.0,16.0,16.0,20.0,14.0,16.0,17.0,7.0,10.0,8.0,7.0,12.0,15.0,7.0,11.0,9.0,7.0,6.0,7.0,7.0,8.0,7.0,2.0,3.0,6.0,3.0,2.0,3.0,4.0,2.0,1.0,4.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,746,972,148,0,249,266,231,152,143,117,103,92,71,74,79,77,64,49,40,27,18,10,1,2,1,0,1783,33,0,50,0,1783,33,0,50,0,542,0,65,176,53,0,285,745,0,1442,384,40,0,2,17,0,0,0,0,1692,125,0,8,22,0,2,33,12,1,0,3,62,1753,0,37,79,1,1,0,1748,0,3.322847682119205,0.0,4.559036144578314,0.0,4.592175777063237,0,5,3,1,0,0,14,382,0,48,29,49,77,88,49,24,11,12,8,4,5,1,0,0,0,397,8,107,298,63,342,25,380,90,315,2,403,89,316,0,405,108,297,70,335,54,16,9,396,14,391,4,401,217,188,185,220,5,400,57,202,140,6,0,349,56,0,1,7,0,0,0,0,370,16,0,3,8,0,2.476543209876543,2.130864197530864,1.0,1.103448275862069,1.103448275862069,50.995061728395065 +,110201,Comarca Emberá-Wounaán,Sambú,Río Sábalo,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,343,38,405,9,14,0,0,21,3,311,1,1,96,18,10,14,0,1,0,0,382,32,35,3,0,395,46,0,0,0,11,452,0,105,47,2,0,6,0,0,1,438,13,0,0,41,380,0,4,13,0,14,401,0,0,0,5,45,1,2,53,0,4,389,4,2,390,0,0,0,0,1,49,0,0,8,2,0,612,6.591836734693878,22.415816326530614,6.862244897959184,23.42091836734694,1.002212389380531,2.230088495575221,1.1792035398230087,453,341,849,67,318,12,13,26,8,90,16,6,27,0,23,7,0,3,7,1,1,752,1230,0,65,1917,0,157,1825,0,1650,332,0,740,1242,0,733,7,979,263,0,266,35,47,0,82,110,134,123,117,319,0,0,0,91,103,115,71,84,234,0,0,3,4,12,15,11,4,0,0,2,0,0,0,0,0,1091,2,549,0,0,1,0,6,376,88,14,65,130,416,13,0,9,0,499,26,0,1188,1038,99,19,0,839,5,0,131,0,281,162,21,528,0,0,0,1357,241,0,0,13,29,0,2,0,0,0,14,28,18,16,66,499,398,19,35,1825,129,86,32,31,29,49,11,18,5,3,2,1,0,5,0,63.0,67.0,57.0,57.0,53.0,65.0,43.0,61.0,63.0,55.0,66.0,56.0,62.0,46.0,48.0,57.0,41.0,54.0,39.0,40.0,36.0,38.0,27.0,25.0,31.0,30.0,28.0,23.0,22.0,31.0,17.0,27.0,24.0,18.0,24.0,31.0,19.0,25.0,21.0,21.0,19.0,23.0,18.0,19.0,28.0,20.0,26.0,20.0,17.0,20.0,20.0,14.0,16.0,12.0,14.0,11.0,15.0,17.0,12.0,16.0,8.0,12.0,13.0,7.0,20.0,15.0,20.0,11.0,15.0,8.0,10.0,13.0,20.0,18.0,13.0,10.0,5.0,1.0,2.0,2.0,2.0,1.0,0.0,3.0,12.0,5.0,0.0,2.0,4.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,862,1166,198,0,297,287,278,231,157,134,110,117,107,103,76,71,60,69,74,20,18,12,3,1,1,0,2184,14,0,28,0,2184,14,0,28,0,743,1,30,159,46,0,385,862,0,1327,869,30,0,1,1,0,0,0,2,2114,24,0,1,83,0,0,12,1,0,0,0,9,2204,0,76,72,7,0,0,2071,0,3.1246684350132625,0.0,4.1688311688311686,0.0,5.14240790655885,0,4,1,0,0,0,1,447,0,48,29,68,81,81,45,31,23,22,8,4,5,3,0,5,0,406,47,143,310,139,314,33,420,122,331,4,449,24,429,0,453,153,300,113,340,91,22,17,436,19,434,1,452,348,105,119,334,4,449,31,229,183,10,0,373,80,0,0,1,0,0,0,0,423,7,0,0,22,0,2.622516556291391,2.2913907284768213,1.0,1.125,1.125,52.196467991169975 +,110202,Comarca Emberá-Wounaán,Sambú,Jingurudó,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,15,95,8,8,0,0,7,0,0,0,0,86,23,8,1,0,0,0,0,79,0,38,1,0,107,10,0,0,0,1,118,0,17,5,1,2,0,0,0,0,117,1,0,0,1,94,0,1,15,0,7,92,0,0,0,3,23,0,0,0,0,0,100,18,0,110,0,0,0,0,0,8,0,0,0,0,0,143,7.0,24.0,7.0,24.0,1.0,2.101694915254237,1.0508474576271187,118,91,267,13,48,3,4,3,8,17,3,2,8,0,5,3,0,0,3,0,3,13,504,0,2,515,0,1,516,0,407,110,0,137,380,0,134,3,270,110,0,110,1,2,0,13,29,31,29,35,130,0,0,0,46,25,25,6,10,23,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,315,0,100,0,0,0,0,0,69,12,3,16,7,118,2,0,0,0,91,97,0,308,277,6,1,0,291,0,0,17,0,74,26,11,109,0,0,0,390,24,0,0,0,1,0,0,0,0,0,1,1,3,0,3,90,120,36,61,440,58,46,24,8,0,2,3,1,1,1,0,0,1,0,0,12.0,19.0,19.0,18.0,16.0,21.0,11.0,18.0,16.0,20.0,14.0,14.0,16.0,14.0,10.0,11.0,11.0,7.0,14.0,7.0,7.0,17.0,9.0,7.0,7.0,8.0,8.0,7.0,7.0,4.0,7.0,7.0,6.0,9.0,4.0,7.0,6.0,6.0,7.0,8.0,3.0,6.0,5.0,2.0,3.0,3.0,4.0,8.0,4.0,5.0,7.0,6.0,7.0,7.0,3.0,3.0,9.0,2.0,2.0,4.0,3.0,3.0,2.0,6.0,2.0,2.0,6.0,4.0,1.0,2.0,0.0,2.0,2.0,2.0,0.0,3.0,1.0,2.0,2.0,0.0,2.0,0.0,0.0,2.0,3.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,238,307,40,0,84,86,68,50,47,34,33,34,19,24,30,20,16,15,6,8,7,4,0,0,0,0,573,7,0,5,0,573,7,0,5,0,217,1,25,14,10,0,81,237,0,498,77,10,0,1,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,0,1,584,0,6,10,0,0,0,569,0,3.2240437158469946,0.0,4.412698412698413,0.0,4.203418803418804,0,0,0,0,0,0,0,118,0,10,3,12,24,39,15,3,3,5,2,1,0,0,1,0,0,108,10,4,114,1,117,2,116,1,117,0,118,1,117,0,118,1,117,1,117,0,1,1,117,0,118,0,118,114,4,56,62,1,117,12,58,42,6,0,109,9,0,0,0,0,0,0,0,118,0,0,0,0,0,2.610169491525424,2.347457627118644,0.0,1.0,1.0,49.17796610169491 +,120101,Comarca Ngäbe-Buglé,Besiko,Soloy,1774,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,24,870,430,745,149,208,148,0,59,15,337,1,4,197,7,18,743,1,16,0,0,1127,101,82,12,2,369,949,1,1,0,4,1324,0,85,2,7,340,16,0,0,10,1285,29,0,0,211,873,1,53,158,4,24,1266,7,0,0,31,20,0,13,248,15,1020,27,1,0,414,37,118,137,591,0,5,0,0,21,1,0,1777,5.008869179600887,12.889135254988911,6.700665188470066,20.895787139689578,1.0045317220543806,2.440332326283988,1.3330815709969788,1330,645,3133,103,889,48,112,113,10,143,12,11,20,0,23,24,11,11,14,2,19,1546,4226,0,216,5556,0,753,5019,0,4371,1401,0,2307,3465,0,2209,98,2360,1105,0,1116,35,130,6,283,286,360,290,317,598,1,5,0,296,306,443,194,315,599,1,4,19,28,26,43,25,30,13,0,2,0,0,0,1,0,889,83,3588,0,10,21,24,8,1492,1963,48,77,254,209,48,17,46,1,363,4,1,3136,3433,158,140,17,508,2,1,113,4,378,167,11,2861,265,0,0,3766,680,0,11,9,82,9,2,1,0,4,17,67,27,23,138,377,149,25,145,5515,282,88,81,107,71,52,32,53,15,7,0,0,0,1,265,187.0,217.0,200.0,193.0,225.0,216.0,208.0,216.0,185.0,162.0,217.0,164.0,171.0,165.0,199.0,179.0,184.0,153.0,157.0,115.0,112.0,139.0,98.0,122.0,82.0,95.0,83.0,87.0,81.0,67.0,68.0,62.0,70.0,65.0,65.0,61.0,59.0,85.0,66.0,67.0,56.0,61.0,55.0,55.0,49.0,46.0,39.0,52.0,39.0,46.0,50.0,47.0,46.0,39.0,17.0,27.0,33.0,36.0,27.0,25.0,22.0,23.0,14.0,38.0,15.0,17.0,16.0,16.0,18.0,15.0,16.0,10.0,22.0,23.0,18.0,16.0,9.0,9.0,8.0,4.0,3.0,0.0,7.0,3.0,3.0,2.0,6.0,8.0,5.0,1.0,1.0,1.0,3.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2925,3379,265,0,1022,987,916,788,553,413,330,338,276,222,199,148,112,82,89,46,16,22,9,1,0,0,6291,0,1,277,0,6291,0,1,277,0,2010,20,326,106,121,16,1058,2912,0,5485,1078,6,0,7,6509,1,0,0,0,0,0,0,1,51,0,3,11,16,0,1,0,11,6527,0,91,161,8,0,1,6308,0,2.822058220582206,0.0,4.207033842070339,0.0,4.943674836352565,0,3,2,0,1,0,3,1321,0,410,127,161,169,159,87,71,30,52,18,12,4,3,0,1,26,652,678,138,1192,85,1245,655,675,144,1186,11,1319,222,1108,7,1323,502,828,73,1257,48,25,63,1267,157,1173,31,1299,668,662,622,708,44,1286,178,576,564,12,3,590,740,0,0,1325,0,0,0,0,0,0,0,0,5,0,2.352588147036759,2.575393848462116,1.0,1.1111111111111112,1.1111111111111112,44.965413533834585 +,120102,Comarca Ngäbe-Buglé,Besiko,Boca de Balsa,1263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,305,358,287,20,96,243,0,16,3,0,0,3,185,3,11,455,0,8,0,0,497,129,33,5,1,62,600,0,1,0,2,665,1,26,1,1,569,0,0,0,0,662,3,0,0,30,494,4,21,102,6,8,638,0,1,0,18,8,0,6,52,10,582,15,0,0,171,18,58,106,305,0,6,0,0,1,0,0,1263,6.317460317460317,19.994708994708997,6.98941798941799,23.7989417989418,1.0015037593984963,2.324812030075188,1.1293233082706766,666,313,1506,65,428,12,26,28,0,44,4,4,0,0,14,21,3,0,7,1,3,534,2184,0,47,2671,0,153,2565,0,1884,834,0,1040,1678,0,1034,6,940,738,0,739,14,42,0,124,141,173,174,168,267,5,0,0,135,163,188,83,102,167,0,1,6,10,4,2,3,5,1,0,1,0,0,0,0,0,557,24,1579,0,0,2,5,2,627,919,21,10,58,226,19,2,13,1,256,3,2,1459,1637,31,49,2,379,9,4,104,2,237,85,9,1066,62,0,0,1959,190,0,1,1,8,1,0,0,0,2,4,4,6,6,59,304,139,5,52,2704,129,65,42,41,22,22,4,4,1,0,0,0,0,0,62,105.0,78.0,102.0,93.0,97.0,88.0,100.0,104.0,78.0,91.0,110.0,86.0,83.0,78.0,100.0,80.0,88.0,64.0,58.0,59.0,64.0,41.0,50.0,50.0,37.0,41.0,34.0,46.0,33.0,31.0,40.0,30.0,27.0,29.0,26.0,16.0,33.0,23.0,34.0,20.0,33.0,28.0,28.0,19.0,27.0,19.0,17.0,21.0,28.0,23.0,38.0,20.0,15.0,17.0,17.0,14.0,23.0,23.0,25.0,9.0,14.0,15.0,19.0,14.0,12.0,6.0,11.0,7.0,3.0,9.0,9.0,6.0,16.0,7.0,6.0,6.0,3.0,14.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,5.0,4.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1393,1572,131,0,475,461,457,349,242,185,152,126,135,108,107,94,74,36,44,27,9,12,1,2,0,0,2894,0,0,202,0,2894,0,0,202,0,973,18,134,54,74,16,437,1390,0,2627,469,0,0,2,3083,6,0,0,1,0,0,0,0,4,0,3,99,15,3,0,1,3,2972,0,12,24,3,0,0,3057,0,2.9906462585034013,0.0,4.432098765432099,0.0,4.037144702842378,0,25,4,1,0,0,1,635,0,224,58,91,97,93,41,26,16,9,2,0,0,0,0,0,9,157,509,6,660,10,656,345,321,5,661,0,666,133,533,1,665,124,542,9,657,5,4,13,653,14,652,3,663,397,269,359,307,8,658,103,322,241,0,0,335,331,0,1,662,1,0,0,1,0,0,0,0,1,0,2.190690690690691,2.457957957957958,0.0,1.1794871794871795,1.1794871794871795,47.25975975975976 +,120103,Comarca Ngäbe-Buglé,Besiko,Camarón Arriba,1074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,673,203,590,84,84,62,0,44,13,0,0,4,235,3,2,601,0,32,0,0,772,70,24,11,0,107,759,0,0,0,11,877,3,9,1,0,182,2,0,0,1,872,4,0,0,30,503,6,87,205,4,42,714,6,0,0,61,96,0,2,29,5,772,67,2,0,113,1,103,219,321,0,117,0,0,3,0,0,1074,4.956140350877193,13.675438596491228,6.587719298245614,21.69298245614035,1.0057012542759407,1.6875712656784492,0.6385404789053591,882,397,2021,53,785,15,40,51,0,82,7,6,2,0,14,18,5,0,12,0,7,721,3108,0,25,3804,0,45,3784,0,2616,1213,0,1528,2301,0,1526,2,1204,1097,0,1100,29,91,19,189,185,240,250,266,453,0,1,0,183,190,213,108,137,142,1,2,6,5,2,8,2,5,1,1,0,0,0,0,0,0,840,27,2138,0,5,2,0,6,859,1223,19,31,92,246,13,8,12,2,492,0,0,2091,2250,31,107,10,498,2,3,214,0,268,124,7,1423,27,0,0,2830,161,0,2,0,11,1,0,0,0,0,4,11,10,1,62,603,74,4,98,3828,216,78,64,70,22,19,8,5,4,0,0,0,0,0,27,106.0,133.0,124.0,149.0,139.0,152.0,152.0,150.0,121.0,110.0,143.0,163.0,123.0,128.0,132.0,130.0,118.0,98.0,91.0,74.0,60.0,60.0,63.0,59.0,46.0,45.0,36.0,40.0,46.0,45.0,52.0,38.0,36.0,46.0,43.0,27.0,34.0,40.0,36.0,45.0,39.0,29.0,50.0,29.0,40.0,32.0,31.0,28.0,36.0,32.0,35.0,24.0,32.0,20.0,23.0,23.0,15.0,22.0,24.0,18.0,22.0,14.0,26.0,25.0,23.0,20.0,17.0,15.0,18.0,7.0,19.0,11.0,10.0,12.0,11.0,13.0,5.0,7.0,6.0,2.0,6.0,5.0,5.0,2.0,4.0,5.0,3.0,4.0,2.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2025,2100,216,0,651,685,689,511,288,212,215,182,187,159,134,102,110,77,63,33,22,14,6,1,0,0,4120,0,0,221,0,4120,0,0,221,0,1229,8,186,118,113,31,635,2021,0,4127,213,1,0,2,4318,7,0,0,0,0,0,0,0,14,0,4,42,405,20,0,2,17,3851,0,19,34,5,1,0,4282,0,3.1525215252152523,0.0,4.653455284552845,0.0,3.651923519926284,2,12,79,5,0,2,4,778,0,252,88,118,137,160,72,19,20,8,5,0,0,1,0,0,2,299,583,13,869,7,875,352,530,9,873,2,880,146,736,4,878,237,645,14,868,3,11,6,876,11,871,6,876,670,212,658,224,25,857,107,390,383,2,0,440,442,0,0,874,2,0,0,0,0,0,0,0,6,0,2.370748299319728,2.5510204081632653,0.0,1.0714285714285714,1.0714285714285714,48.14399092970522 +,120104,Comarca Ngäbe-Buglé,Besiko,Cerro Banco,1296,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,477,432,456,22,229,190,0,10,3,1,1,5,193,3,6,662,4,35,0,0,708,144,47,9,2,60,850,0,0,0,0,910,5,44,2,2,318,16,0,0,1,903,6,0,0,35,692,4,30,136,4,9,863,1,1,0,25,19,1,6,49,9,759,87,0,0,221,23,124,205,336,1,0,0,0,0,0,0,1297,5.081967213114754,15.655737704918034,6.581967213114754,22.4344262295082,1.0076923076923077,1.8824175824175824,0.7769230769230769,917,449,2441,75,817,15,36,33,4,68,4,7,3,0,17,16,10,1,6,0,17,556,3772,0,48,4280,0,40,4288,0,3155,1173,0,1823,2505,0,1809,14,1507,998,0,1003,41,96,1,214,263,316,260,265,574,0,1,0,217,234,302,124,267,84,1,1,14,10,12,7,6,12,2,0,0,0,0,1,0,0,444,17,2906,0,3,0,2,3,1166,1649,36,52,67,96,13,6,8,1,264,3,2,2284,2585,37,68,6,296,4,2,42,5,306,110,15,1643,95,0,0,3217,124,0,1,0,23,1,1,0,0,5,2,15,4,5,36,258,60,7,69,4420,179,68,31,37,11,9,6,7,4,2,0,0,0,0,95,89.0,153.0,135.0,164.0,156.0,156.0,180.0,169.0,143.0,157.0,160.0,139.0,147.0,123.0,159.0,146.0,118.0,121.0,126.0,92.0,84.0,89.0,76.0,79.0,73.0,63.0,63.0,52.0,56.0,43.0,49.0,32.0,38.0,50.0,43.0,47.0,47.0,50.0,45.0,39.0,48.0,31.0,52.0,40.0,24.0,29.0,26.0,34.0,31.0,39.0,38.0,31.0,41.0,29.0,30.0,23.0,15.0,17.0,22.0,23.0,23.0,12.0,21.0,25.0,13.0,17.0,17.0,13.0,15.0,7.0,10.0,10.0,12.0,10.0,6.0,13.0,7.0,12.0,7.0,6.0,5.0,2.0,6.0,2.0,3.0,4.0,5.0,3.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2230,2438,201,0,697,805,728,603,401,277,212,228,195,159,169,100,94,69,48,45,18,14,6,1,0,0,4574,2,0,293,0,4574,2,0,293,0,1416,8,143,132,67,7,874,2222,0,4548,320,1,0,7,4828,10,0,0,0,0,0,0,0,24,0,1,4,4,1,2,0,12,4845,0,15,42,4,0,0,4808,0,3.0120087336244543,0.0,4.698795180722891,0.0,4.070034914766892,0,2,2,0,0,0,0,913,0,276,97,152,152,139,53,17,5,7,8,1,1,0,0,0,9,208,709,9,908,13,904,472,445,11,906,4,913,156,761,2,915,213,704,7,910,3,4,7,910,6,911,6,911,364,553,356,561,20,897,94,395,425,3,0,458,459,0,0,913,2,0,0,0,0,0,0,0,2,0,2.490730643402399,2.8189749182115595,1.0,1.0465116279069768,1.0465116279069768,47.88985823336969 +,120105,Comarca Ngäbe-Buglé,Besiko,Cerro de Patena,530,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,188,185,11,41,139,0,6,2,0,0,3,76,1,2,301,0,1,0,0,245,115,19,5,0,14,369,0,0,0,1,384,0,6,0,0,140,1,0,0,0,382,2,0,0,5,279,1,19,75,0,5,362,0,0,0,9,13,0,0,2,0,324,58,0,0,50,3,27,59,200,0,45,0,0,0,0,0,531,4.9245283018867925,12.320754716981131,6.886792452830188,23.32075471698113,1.0,1.5,0.4765625,384,202,1037,30,266,8,17,33,1,22,3,2,9,0,6,11,2,1,5,0,4,429,1339,0,12,1756,0,33,1735,0,1281,487,0,786,982,0,784,2,574,408,0,409,9,43,2,102,132,99,101,111,220,0,0,0,78,99,124,64,62,102,0,1,0,7,0,1,1,1,0,0,0,0,0,0,0,0,782,5,578,0,0,1,0,1,273,299,4,1,14,67,1,4,2,2,697,0,0,990,1024,9,18,4,356,0,0,400,0,136,39,5,776,30,0,0,1252,110,0,1,0,2,0,0,0,0,0,1,3,3,1,8,724,32,0,15,1732,100,47,43,35,10,9,4,2,2,0,0,0,0,0,30,67.0,58.0,54.0,67.0,56.0,63.0,67.0,84.0,77.0,56.0,67.0,70.0,52.0,54.0,67.0,55.0,61.0,40.0,45.0,59.0,27.0,30.0,34.0,22.0,24.0,24.0,23.0,22.0,21.0,16.0,17.0,18.0,18.0,19.0,19.0,13.0,21.0,10.0,18.0,20.0,15.0,14.0,18.0,15.0,20.0,11.0,17.0,19.0,12.0,15.0,12.0,11.0,17.0,11.0,10.0,6.0,5.0,9.0,7.0,9.0,9.0,8.0,9.0,13.0,10.0,4.0,4.0,7.0,4.0,6.0,5.0,3.0,4.0,8.0,4.0,2.0,2.0,3.0,2.0,2.0,4.0,1.0,2.0,2.0,2.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,959,978,77,0,302,347,310,260,137,106,91,82,82,74,61,36,49,25,24,11,11,4,1,1,0,0,1899,0,0,115,0,1899,0,0,115,0,604,1,102,31,47,5,271,953,0,1889,125,0,0,0,2013,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,2011,0,5,2,3,1,0,2003,0,3.217821782178218,0.0,4.666666666666667,0.0,4.024329692154915,0,0,0,0,0,0,0,384,0,98,29,51,71,75,25,15,8,9,1,1,0,0,0,0,1,88,296,2,382,1,383,124,260,1,383,0,384,40,344,0,384,32,352,0,384,0,0,3,381,0,384,2,382,318,66,216,168,17,367,33,176,171,4,0,220,164,0,0,384,0,0,0,0,0,0,0,0,0,0,2.578125,2.6666666666666665,0.0,1.0526315789473684,1.0526315789473684,47.171875 +,120106,Comarca Ngäbe-Buglé,Besiko,Emplanada de Chorcha,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,322,309,43,232,79,0,6,5,0,0,2,186,7,1,473,2,3,0,0,593,57,20,2,2,81,593,0,0,0,0,674,0,49,0,0,221,34,0,0,1,668,3,2,0,58,483,1,20,89,2,21,637,1,0,0,15,20,1,2,58,10,579,23,2,0,24,20,58,57,447,0,67,0,0,1,0,0,978,6.295454545454546,21.84090909090909,6.704545454545454,23.363636363636363,1.0,2.4955489614243325,1.3397626112759644,674,342,1434,52,517,19,27,52,3,67,6,9,21,0,7,7,1,1,2,0,5,703,2177,0,149,2731,0,366,2514,0,2088,792,0,1068,1812,0,1058,10,1119,693,0,696,19,65,0,131,161,187,165,173,473,2,2,0,118,130,225,72,81,108,0,1,15,10,14,7,5,6,9,2,3,0,0,0,0,0,908,48,1308,0,3,4,11,12,606,642,16,32,79,273,25,8,16,1,544,2,1,1549,1674,39,122,9,637,2,1,135,4,135,75,3,1122,23,0,0,2083,155,1,1,1,16,4,3,0,0,4,4,19,7,1,56,531,198,6,130,2512,196,177,90,127,42,23,10,11,8,3,1,0,0,0,23,79.0,94.0,74.0,96.0,100.0,114.0,112.0,114.0,82.0,94.0,124.0,95.0,78.0,86.0,78.0,78.0,104.0,52.0,76.0,61.0,40.0,40.0,51.0,33.0,37.0,52.0,34.0,51.0,45.0,31.0,33.0,34.0,35.0,42.0,34.0,26.0,20.0,28.0,31.0,36.0,27.0,28.0,28.0,35.0,33.0,20.0,24.0,37.0,26.0,28.0,25.0,21.0,21.0,20.0,26.0,19.0,15.0,18.0,9.0,14.0,16.0,8.0,9.0,23.0,17.0,9.0,12.0,17.0,6.0,8.0,6.0,6.0,9.0,10.0,8.0,5.0,10.0,7.0,9.0,4.0,4.0,1.0,2.0,4.0,1.0,0.0,2.0,0.0,2.0,3.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1420,1651,152,0,443,516,461,371,201,213,178,141,151,135,113,75,73,52,39,35,12,7,6,1,0,0,3077,0,0,146,0,3077,0,0,146,0,1052,4,154,62,84,5,446,1416,0,2885,338,0,0,0,3193,19,0,0,0,0,0,0,0,11,0,0,94,1,0,0,0,1,3127,0,27,45,13,0,0,3138,0,3.035264483627204,0.0,4.473755047106326,0.0,4.138380390940118,0,20,0,0,0,0,1,653,0,123,50,77,97,130,96,41,17,18,13,2,5,2,0,0,3,232,442,12,662,6,668,336,338,7,667,0,674,144,530,1,673,222,452,22,652,5,17,18,656,18,656,6,668,535,139,502,172,16,658,79,301,278,16,0,354,320,0,0,667,4,0,0,0,0,0,0,0,3,0,2.298219584569733,2.483679525222552,0.0,1.0666666666666669,1.0666666666666669,47.560830860534125 +,120107,Comarca Ngäbe-Buglé,Besiko,Nämnoni,829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,150,444,77,86,32,0,31,1,1,0,4,227,2,2,435,0,0,0,0,603,42,24,2,0,82,585,0,0,0,4,671,0,40,1,0,112,5,0,0,2,666,3,0,0,63,388,8,18,101,72,21,618,2,0,0,21,29,1,0,136,4,461,70,0,0,73,16,44,126,400,0,11,0,0,1,0,0,829,3.8764044943820224,10.887640449438202,6.898876404494382,23.786516853932586,1.0,2.144560357675112,1.0715350223546944,671,318,1696,60,549,16,32,37,1,84,2,1,2,0,16,6,7,3,5,0,6,1322,1695,0,144,2873,0,596,2421,0,2229,788,0,1243,1774,0,1237,6,1123,651,0,654,22,68,8,183,151,193,185,181,367,0,0,0,157,156,222,117,112,202,1,0,7,8,2,5,5,9,1,0,1,0,0,0,0,0,1289,69,1015,0,0,0,1,5,544,455,7,4,69,207,31,12,21,0,1015,1,0,1723,1746,30,97,17,710,0,1,500,1,161,69,5,1020,43,0,0,2131,223,0,0,3,14,1,1,0,0,1,3,9,6,6,59,1073,107,5,89,2782,180,115,138,135,40,20,6,5,5,0,0,0,0,0,43,111.0,108.0,115.0,118.0,113.0,109.0,116.0,115.0,97.0,94.0,112.0,90.0,96.0,114.0,80.0,117.0,74.0,85.0,84.0,58.0,65.0,54.0,80.0,56.0,36.0,48.0,41.0,40.0,52.0,30.0,37.0,39.0,38.0,21.0,29.0,32.0,33.0,31.0,26.0,26.0,27.0,27.0,29.0,28.0,30.0,25.0,24.0,24.0,22.0,21.0,21.0,21.0,25.0,17.0,12.0,17.0,16.0,18.0,21.0,15.0,12.0,10.0,18.0,17.0,16.0,14.0,4.0,10.0,19.0,8.0,8.0,6.0,8.0,10.0,6.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,0.0,0.0,2.0,1.0,1.0,3.0,1.0,0.0,2.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1588,1745,136,0,565,531,492,418,291,211,164,148,141,116,96,87,73,55,38,21,9,6,7,0,0,0,3315,3,0,151,0,3315,3,0,151,0,1024,13,275,105,55,2,409,1586,0,3006,457,6,0,1,3443,11,0,0,0,0,0,0,0,14,0,1,1,0,0,0,0,8,3459,0,17,21,5,1,1,3424,0,3.015187849720224,0.0,4.560723514211887,0.0,4.23580282502162,1,1,0,0,0,0,1,668,0,94,41,65,104,168,109,38,23,22,5,2,0,0,0,0,0,281,390,13,658,6,665,337,334,4,667,2,669,121,550,8,663,193,478,8,663,3,5,9,662,23,648,0,671,531,140,503,168,30,641,75,278,316,2,0,330,341,0,0,667,1,0,0,0,0,0,0,0,3,0,2.567809239940388,2.602086438152012,0.0,1.088235294117647,1.088235294117647,46.66915052160954 +,120108,Comarca Ngäbe-Buglé,Besiko,Niba,1280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,468,241,11,70,329,0,25,44,0,0,4,123,3,4,417,1,168,0,0,453,192,67,5,3,17,701,0,0,1,1,720,25,42,9,32,443,9,0,0,0,716,4,0,0,13,597,1,18,78,1,12,697,2,0,0,16,5,0,0,15,3,605,97,0,0,138,31,119,101,320,3,7,0,0,0,1,0,1280,5.502958579881657,15.284023668639051,6.940828402366864,19.60355029585799,1.0,1.7555555555555555,0.6680555555555555,720,381,1900,50,554,18,41,60,4,77,10,13,13,0,19,25,6,1,7,1,6,568,2872,0,28,3412,0,90,3350,0,2108,1332,0,1234,2206,0,1222,12,1070,1136,0,1147,16,36,1,150,176,227,226,206,430,0,0,0,162,154,213,86,94,94,0,0,3,4,3,6,1,4,0,0,1,0,0,0,0,0,461,22,2273,0,8,1,5,1,849,1370,27,26,76,122,13,4,4,0,252,0,8,1872,1969,24,86,4,308,0,3,46,8,214,99,4,1242,158,0,0,2639,107,0,0,0,9,0,1,0,0,8,4,8,5,6,13,303,38,0,98,3391,131,48,19,57,12,14,3,7,1,0,0,0,0,0,158,76.0,102.0,113.0,110.0,112.0,103.0,116.0,116.0,130.0,107.0,135.0,113.0,116.0,101.0,130.0,125.0,102.0,77.0,90.0,72.0,76.0,54.0,63.0,49.0,66.0,56.0,43.0,41.0,46.0,39.0,38.0,36.0,36.0,44.0,29.0,44.0,27.0,38.0,32.0,43.0,32.0,29.0,55.0,29.0,25.0,26.0,32.0,30.0,25.0,31.0,33.0,26.0,25.0,19.0,25.0,16.0,19.0,27.0,20.0,18.0,21.0,19.0,12.0,14.0,16.0,20.0,15.0,12.0,7.0,10.0,6.0,7.0,11.0,15.0,13.0,6.0,9.0,6.0,4.0,4.0,2.0,2.0,4.0,2.0,4.0,1.0,2.0,2.0,0.0,2.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1680,1990,171,0,513,572,595,466,308,225,183,184,170,144,128,100,82,64,52,29,14,7,5,0,0,0,3574,0,0,267,0,3574,0,0,267,0,1277,10,101,29,121,24,604,1675,0,3455,382,4,0,4,3821,11,0,0,0,1,0,0,0,4,0,0,2,10,1,0,0,2,3826,0,12,18,1,0,0,3810,0,3.1209398756046998,0.0,4.793594306049823,0.0,3.474876334287946,0,0,3,0,0,0,0,717,0,249,71,108,112,77,35,19,12,15,1,1,0,0,0,0,20,59,661,6,714,11,709,368,352,4,716,4,716,101,619,1,719,114,606,10,710,3,7,8,712,4,716,6,714,516,204,437,283,14,706,76,324,311,9,0,444,276,0,0,719,1,0,0,0,0,0,0,0,0,0,2.6,2.734722222222222,0.0,1.181818181818182,1.181818181818182,49.38611111111111 +,120201,Comarca Ngäbe-Buglé,Mironó,Hato Pilón,982,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,597,69,517,95,19,26,0,21,3,102,1,2,130,7,5,423,0,11,0,0,564,77,32,8,0,113,564,0,0,0,4,681,5,76,3,2,185,34,0,0,2,674,4,1,0,79,388,1,48,132,23,10,659,0,1,0,11,10,0,4,98,2,553,24,0,0,304,48,61,33,230,1,3,0,0,1,0,0,986,5.696022727272728,17.264204545454547,6.7414772727272725,21.633522727272727,1.170337738619677,2.262848751835536,1.2011747430249633,797,409,1970,72,385,16,40,44,4,40,3,8,6,0,9,27,6,2,18,1,10,749,2594,0,71,3272,0,77,3266,0,2443,900,0,1387,1956,0,1377,10,1273,683,0,686,47,74,1,156,182,213,176,206,436,0,0,1,172,161,231,87,155,303,2,4,4,9,7,8,6,14,1,1,0,0,0,0,0,0,722,41,1818,0,2,2,15,8,851,872,41,46,120,279,26,10,17,1,297,0,0,1803,1991,45,173,12,474,1,1,41,3,247,101,14,633,70,0,0,2221,337,1,1,1,19,1,0,0,0,3,2,11,10,15,52,304,188,5,173,2929,217,168,141,150,61,34,14,5,4,0,1,0,0,0,70,117.0,106.0,120.0,108.0,137.0,145.0,129.0,127.0,117.0,107.0,124.0,104.0,102.0,116.0,106.0,105.0,89.0,88.0,75.0,67.0,73.0,60.0,77.0,58.0,50.0,41.0,37.0,41.0,39.0,26.0,47.0,30.0,47.0,38.0,40.0,32.0,36.0,40.0,30.0,32.0,38.0,24.0,26.0,39.0,36.0,27.0,28.0,27.0,25.0,28.0,22.0,35.0,17.0,18.0,17.0,21.0,12.0,17.0,15.0,10.0,17.0,5.0,16.0,16.0,19.0,17.0,10.0,13.0,8.0,4.0,8.0,8.0,9.0,15.0,13.0,7.0,11.0,8.0,6.0,6.0,7.0,2.0,7.0,4.0,0.0,2.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1765,1853,176,0,588,625,552,424,318,184,202,170,163,135,109,75,73,52,53,38,20,6,5,1,1,0,3638,0,0,156,0,3638,0,0,156,0,1121,8,144,89,69,14,590,1759,0,3180,613,1,0,4,3776,6,0,0,0,0,0,0,0,8,0,2,1,2,0,0,0,4,3785,0,27,25,6,3,0,3733,0,2.9799139167862267,0.0,4.316470588235294,0.0,4.529520295202952,1,0,2,0,0,0,0,794,0,144,48,76,118,148,104,59,47,31,12,4,2,1,0,0,3,339,458,44,753,32,765,429,368,46,751,5,792,134,663,3,794,252,545,26,771,10,16,21,776,8,789,3,794,510,287,447,350,16,781,59,461,272,5,0,435,362,0,0,795,1,0,0,0,0,0,0,0,1,0,2.262233375156838,2.4981179422835638,0.0,1.3448275862068966,1.3448275862068966,44.92722710163112 +,120202,Comarca Ngäbe-Buglé,Mironó,Cascabel,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,121,135,24,19,90,0,7,5,7,0,1,57,2,0,92,0,121,0,0,192,70,14,4,0,18,262,0,0,0,0,280,3,1,0,10,142,0,0,0,0,277,2,1,0,8,192,2,12,54,2,10,230,0,0,0,9,38,3,0,23,1,246,9,1,0,51,18,38,36,130,1,6,0,0,0,0,0,436,6.391304347826087,22.52173913043478,6.695652173913044,23.07246376811594,1.0,1.7857142857142858,0.6928571428571428,280,141,823,16,266,2,29,31,0,42,2,3,1,0,2,10,2,0,1,0,5,224,1187,0,26,1385,0,116,1295,0,948,463,0,603,808,0,594,9,476,332,0,335,18,32,2,74,98,107,83,98,153,0,0,0,50,68,133,42,52,49,0,0,4,4,2,1,2,4,0,0,0,0,0,0,0,0,400,9,662,0,2,0,0,0,319,318,2,23,20,56,3,0,1,0,321,8,0,769,867,18,53,0,281,0,1,56,0,3,1,2,839,10,0,0,1005,61,0,0,0,5,0,0,0,0,0,1,3,4,5,6,302,29,2,57,1373,70,46,46,45,24,15,3,0,3,1,0,0,0,0,10,53.0,62.0,56.0,54.0,62.0,51.0,58.0,57.0,58.0,54.0,56.0,63.0,44.0,52.0,41.0,49.0,43.0,33.0,32.0,23.0,33.0,30.0,20.0,21.0,24.0,16.0,9.0,16.0,11.0,24.0,14.0,17.0,20.0,14.0,12.0,18.0,16.0,16.0,13.0,11.0,15.0,14.0,17.0,8.0,6.0,7.0,13.0,12.0,10.0,16.0,11.0,8.0,14.0,12.0,5.0,3.0,4.0,5.0,10.0,10.0,7.0,3.0,4.0,5.0,6.0,7.0,3.0,2.0,5.0,6.0,5.0,5.0,2.0,1.0,1.0,4.0,3.0,2.0,1.0,1.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,821,760,55,0,287,278,256,180,128,76,77,74,60,58,50,32,25,23,14,11,5,1,1,0,0,0,1521,1,0,114,0,1521,1,0,114,0,481,1,72,12,45,8,199,818,0,1441,192,3,0,2,1629,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,1635,0,5,9,0,0,0,1622,0,3.155,0.0,4.730659025787966,0.0,3.827628361858191,0,0,0,0,0,0,0,280,0,52,22,38,42,57,31,23,4,4,4,2,1,0,0,0,0,94,186,4,276,9,271,142,138,6,274,3,277,57,223,3,277,52,228,4,276,4,0,2,278,5,275,1,279,229,51,188,92,8,272,16,125,138,1,0,168,112,0,0,279,0,0,0,0,0,0,0,0,1,0,2.7464285714285714,3.0964285714285715,0.0,1.0666666666666669,1.0666666666666669,48.10714285714285 +,120203,Comarca Ngäbe-Buglé,Mironó,Hato Corotú,692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,506,44,449,58,28,5,0,11,0,0,0,16,221,8,7,288,0,11,0,0,509,23,19,0,0,123,425,0,0,0,3,551,7,17,0,0,116,1,0,0,1,550,0,0,0,43,368,1,28,102,1,8,528,2,0,0,9,11,1,2,58,6,453,32,0,0,52,14,30,25,426,1,3,0,0,0,0,0,692,5.848484848484849,16.28787878787879,6.96969696969697,23.348484848484848,1.0036297640653358,2.148820326678766,1.08529945553539,553,263,1232,33,337,8,40,26,1,39,4,5,2,0,16,12,7,1,4,0,4,962,1288,0,204,2046,0,607,1643,0,1774,476,0,922,1328,0,907,15,955,373,0,376,32,58,0,106,113,127,141,125,313,0,1,0,120,132,171,70,111,184,0,0,13,14,7,8,5,18,3,0,2,0,0,0,0,0,456,28,1343,0,2,4,13,14,588,708,25,8,94,145,17,11,10,3,191,0,1,1240,1303,38,103,11,257,4,2,55,2,190,83,4,942,42,0,0,1572,226,0,0,2,23,2,2,0,0,2,3,21,7,8,42,225,83,4,89,2170,129,45,50,44,18,19,7,9,8,2,0,0,0,0,42,71.0,76.0,69.0,77.0,65.0,68.0,90.0,62.0,64.0,74.0,68.0,75.0,56.0,77.0,67.0,68.0,65.0,69.0,68.0,60.0,58.0,43.0,50.0,40.0,19.0,28.0,31.0,33.0,36.0,31.0,28.0,25.0,26.0,24.0,38.0,26.0,26.0,30.0,26.0,22.0,28.0,17.0,26.0,22.0,15.0,19.0,15.0,13.0,18.0,16.0,16.0,22.0,21.0,17.0,15.0,11.0,5.0,7.0,14.0,17.0,14.0,6.0,10.0,18.0,19.0,6.0,6.0,11.0,9.0,6.0,8.0,6.0,14.0,3.0,6.0,3.0,7.0,3.0,1.0,2.0,1.0,0.0,0.0,2.0,1.0,2.0,2.0,2.0,3.0,0.0,3.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1059,1371,113,0,358,358,343,330,210,159,141,130,108,81,91,54,67,38,37,16,4,9,7,1,1,0,2447,3,0,93,0,2447,3,0,93,0,753,3,123,124,51,7,425,1057,0,2296,246,1,0,2,2528,2,0,0,0,1,0,0,0,10,0,1,0,0,0,0,0,6,2536,0,33,68,12,2,0,2428,0,2.818569903948773,0.0,4.200996677740863,0.0,4.898151789225325,0,0,0,0,0,0,2,551,0,169,56,58,87,88,38,19,15,9,9,2,0,2,0,0,1,277,276,15,538,7,546,273,280,5,548,2,551,106,447,7,546,229,324,11,542,2,9,18,535,88,465,13,540,349,204,147,406,10,543,82,248,221,2,0,306,247,0,0,550,0,0,0,0,0,0,0,0,3,0,2.2423146473779387,2.35623869801085,1.0,1.0909090909090908,1.0909090909090908,45.69801084990959 +,120204,Comarca Ngäbe-Buglé,Mironó,Hato Culantro,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,325,159,305,25,12,139,0,7,1,0,0,0,123,0,3,357,1,5,0,0,414,61,13,1,0,70,419,0,0,0,0,489,1,2,0,16,161,4,0,0,0,486,2,1,0,9,340,0,29,107,0,4,483,0,0,0,2,4,0,0,24,2,431,31,1,0,185,8,4,10,275,0,1,0,0,6,0,0,673,5.865284974093265,16.39896373056995,6.818652849740933,22.30569948186529,1.0,2.067484662576687,1.0040899795501022,489,277,1459,41,927,20,36,45,5,90,5,8,4,0,11,13,8,1,8,0,17,781,2147,0,109,2819,0,248,2680,0,1989,939,0,1253,1675,0,1248,5,968,707,0,713,40,71,1,185,151,186,168,203,371,0,0,0,131,161,187,66,113,130,0,0,9,10,12,5,5,9,0,1,0,0,0,0,0,0,812,28,1351,0,1,5,6,2,666,618,26,39,64,97,15,5,9,3,640,0,0,1601,1805,50,50,5,508,3,1,216,0,17,17,2,1400,202,0,0,2010,168,0,0,3,10,0,0,0,0,0,2,11,11,10,39,632,58,5,72,2719,161,113,83,68,34,10,5,5,3,2,0,0,1,0,202,122.0,111.0,117.0,128.0,137.0,137.0,121.0,121.0,114.0,107.0,120.0,108.0,98.0,94.0,86.0,84.0,83.0,60.0,65.0,65.0,47.0,42.0,54.0,44.0,33.0,33.0,35.0,42.0,36.0,33.0,31.0,30.0,27.0,29.0,26.0,22.0,26.0,22.0,24.0,27.0,27.0,23.0,31.0,21.0,25.0,29.0,22.0,23.0,26.0,32.0,23.0,16.0,24.0,13.0,18.0,17.0,14.0,18.0,16.0,23.0,10.0,9.0,16.0,11.0,21.0,20.0,6.0,11.0,12.0,5.0,7.0,9.0,8.0,8.0,13.0,10.0,6.0,5.0,3.0,3.0,5.0,3.0,4.0,2.0,1.0,2.0,5.0,3.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1721,1528,157,0,615,600,506,357,220,179,143,121,127,132,94,88,67,54,45,27,15,11,4,0,1,0,3155,1,0,250,0,3155,1,0,250,0,1086,4,69,48,64,11,407,1717,0,3063,341,2,0,3,3396,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,1,3404,0,11,14,2,0,0,3379,0,3.1578947368421053,0.0,4.587684069611781,0.0,3.84380504991192,0,0,0,0,0,0,0,489,0,96,40,49,68,91,65,39,13,15,6,4,0,0,0,2,1,211,278,4,485,5,484,325,164,6,483,1,488,125,364,1,488,143,346,2,487,1,1,4,485,5,484,2,487,404,85,276,213,11,478,26,158,303,2,0,305,184,0,0,489,0,0,0,0,0,0,0,0,0,0,3.2740286298568506,3.69120654396728,0.0,1.0625,1.0625,51.29856850715746 +,120205,Comarca Ngäbe-Buglé,Mironó,Hato Jobo,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,135,197,23,23,71,0,40,1,3,2,5,99,1,3,240,0,2,0,0,262,52,34,6,1,30,324,0,0,0,1,355,0,7,0,0,79,6,0,0,0,354,1,0,0,4,260,0,15,68,1,7,349,0,0,0,4,2,0,1,11,4,315,23,1,0,138,5,16,17,177,0,2,0,0,0,0,0,447,5.307692307692308,17.46153846153846,7.0,24.0,1.0,1.4985915492957746,0.4619718309859155,355,232,1045,21,526,9,22,30,1,79,2,0,4,0,16,8,3,1,8,0,9,560,1443,0,34,1969,0,318,1685,0,1507,496,0,824,1179,0,822,2,825,354,0,354,43,75,5,95,105,99,110,136,293,0,0,0,108,113,128,63,85,165,0,1,7,7,3,1,4,3,0,0,0,0,0,0,0,0,507,19,1060,0,3,1,0,5,451,559,19,26,45,153,11,1,6,2,308,0,0,1189,1137,25,89,1,265,1,18,127,0,221,61,5,585,42,0,0,1395,186,0,0,0,5,0,0,0,0,0,2,6,4,4,18,369,56,0,67,2058,90,20,35,46,20,10,2,1,1,1,0,0,0,0,42,84.0,84.0,81.0,74.0,79.0,82.0,78.0,60.0,72.0,46.0,58.0,60.0,60.0,55.0,63.0,75.0,55.0,69.0,53.0,51.0,47.0,43.0,49.0,39.0,29.0,33.0,27.0,26.0,29.0,22.0,23.0,20.0,32.0,25.0,20.0,13.0,18.0,16.0,24.0,23.0,12.0,14.0,20.0,24.0,7.0,22.0,20.0,8.0,13.0,18.0,17.0,15.0,15.0,13.0,17.0,11.0,18.0,10.0,19.0,10.0,11.0,8.0,9.0,6.0,5.0,5.0,9.0,5.0,5.0,6.0,5.0,8.0,4.0,2.0,1.0,2.0,8.0,1.0,2.0,2.0,2.0,4.0,5.0,1.0,1.0,3.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1036,1203,87,0,402,338,296,303,207,137,120,94,77,81,77,68,39,30,20,15,13,6,3,0,0,0,2225,0,1,100,0,2225,0,1,100,0,727,2,92,80,35,2,356,1032,0,1990,336,0,0,4,2311,8,0,0,0,0,0,0,0,3,0,1,171,1,0,0,0,7,2146,0,13,34,4,1,0,2274,0,3.0,0.0,4.379098360655738,0.0,4.395098882201204,0,35,0,0,0,0,0,320,0,59,30,38,73,71,43,25,5,9,1,1,0,0,0,0,0,152,203,10,345,2,353,203,152,5,350,2,353,48,307,1,354,120,235,6,349,0,6,4,351,5,350,0,355,251,104,226,129,8,347,24,127,203,1,0,258,97,0,0,352,3,0,0,0,0,0,0,0,0,0,3.3492957746478877,3.202816901408451,0.0,1.0416666666666667,1.0416666666666667,49.971830985915496 +,120206,Comarca Ngäbe-Buglé,Mironó,Hato Julí,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,422,35,386,38,6,4,0,25,0,147,0,1,76,2,1,231,0,1,0,0,389,47,19,4,0,171,288,0,0,0,0,459,1,10,2,0,142,3,0,0,3,454,2,0,0,192,180,0,25,59,1,2,455,2,0,0,1,1,0,6,186,4,256,6,1,0,176,1,10,8,257,0,0,0,0,7,0,0,617,4.333333333333333,11.677966101694915,6.728813559322034,22.54237288135593,1.017429193899782,2.363834422657952,1.30718954248366,467,223,1095,58,273,14,42,14,1,37,8,3,2,0,5,5,3,2,7,0,5,589,1384,0,89,1884,0,46,1927,0,1572,401,0,759,1214,0,755,4,907,307,0,308,27,47,3,98,73,105,126,106,245,0,0,0,93,104,116,77,90,245,1,4,20,22,11,13,12,18,6,0,3,0,0,0,0,0,504,23,1050,0,2,8,1,4,488,517,31,10,120,108,25,11,25,0,228,0,1,1080,1157,66,140,12,282,6,0,11,1,103,68,9,610,57,0,0,1222,311,0,5,3,31,3,2,0,0,1,2,21,13,8,61,192,101,14,114,1793,135,34,45,65,32,34,22,14,4,2,0,0,0,0,57,66.0,69.0,67.0,62.0,81.0,64.0,81.0,66.0,46.0,58.0,81.0,55.0,52.0,50.0,56.0,58.0,58.0,56.0,59.0,50.0,53.0,50.0,37.0,39.0,29.0,31.0,26.0,26.0,42.0,30.0,29.0,18.0,20.0,27.0,27.0,26.0,19.0,26.0,19.0,17.0,19.0,15.0,18.0,17.0,15.0,15.0,17.0,19.0,15.0,12.0,13.0,12.0,10.0,10.0,15.0,11.0,13.0,10.0,9.0,10.0,13.0,5.0,5.0,8.0,8.0,7.0,5.0,7.0,5.0,4.0,3.0,5.0,3.0,5.0,5.0,8.0,5.0,4.0,6.0,1.0,3.0,0.0,6.0,1.0,3.0,1.0,0.0,1.0,3.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,954,1186,97,0,345,315,294,281,208,155,121,107,84,78,60,53,39,28,21,24,13,6,3,2,0,0,2183,0,0,54,0,2183,0,0,54,0,657,3,106,94,37,3,383,954,0,1871,365,1,0,1,2224,3,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,3,2234,0,23,42,4,1,1,2166,0,2.6153846153846154,0.0,3.914933837429112,0.0,5.365221278497988,0,0,0,0,0,0,1,466,0,66,40,71,75,65,52,38,26,19,7,6,1,0,0,0,1,327,140,71,396,49,418,250,217,64,403,1,466,56,411,5,462,227,240,55,412,29,26,26,441,11,456,8,459,294,173,351,116,10,457,39,239,187,2,0,226,241,0,1,465,0,0,0,0,0,0,0,0,1,0,2.312633832976445,2.477516059957173,0.0,1.0625,1.0625,45.12633832976445 +,120207,Comarca Ngäbe-Buglé,Mironó,Quebrada de Loro,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,451,12,410,42,3,3,0,5,1,0,0,4,243,3,1,213,0,0,0,0,443,10,6,4,1,158,303,2,0,0,1,464,0,8,0,0,112,0,0,0,1,463,0,0,0,165,199,1,31,61,1,6,451,1,3,0,5,4,0,1,157,1,287,18,0,0,62,27,90,10,95,0,178,0,0,2,0,0,584,6.764044943820225,23.0561797752809,7.0,24.0,1.0021551724137931,2.127155172413793,1.105603448275862,465,192,1096,31,475,13,26,17,2,48,5,0,6,0,7,20,6,1,3,0,8,633,1438,0,54,2017,0,430,1641,0,1662,409,0,920,1151,0,912,8,833,318,0,319,29,61,2,83,103,122,152,118,304,0,1,0,85,125,140,58,87,187,1,1,10,23,10,9,10,26,3,0,2,0,0,0,0,0,318,30,1322,0,2,16,10,3,603,698,14,4,99,70,16,15,15,0,120,0,0,1134,1242,58,103,17,150,0,0,7,0,104,100,6,797,64,0,0,1388,245,0,1,6,26,2,2,0,0,0,5,11,13,14,37,90,56,8,114,2002,118,36,15,57,29,27,10,12,4,1,1,0,0,0,64,84.0,93.0,72.0,56.0,60.0,77.0,81.0,56.0,64.0,63.0,97.0,67.0,49.0,60.0,78.0,59.0,61.0,64.0,50.0,44.0,43.0,48.0,47.0,33.0,36.0,36.0,27.0,26.0,25.0,31.0,17.0,30.0,33.0,29.0,20.0,17.0,22.0,19.0,21.0,19.0,22.0,21.0,21.0,19.0,16.0,12.0,15.0,22.0,10.0,17.0,16.0,12.0,19.0,14.0,11.0,6.0,13.0,13.0,11.0,9.0,3.0,6.0,5.0,11.0,11.0,3.0,8.0,11.0,9.0,2.0,5.0,3.0,9.0,11.0,2.0,10.0,9.0,6.0,8.0,1.0,7.0,3.0,5.0,2.0,2.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1057,1192,127,0,365,341,351,278,207,145,129,98,99,76,72,52,36,33,30,34,19,7,3,1,0,0,2263,1,0,112,0,2263,1,0,112,0,755,3,71,59,46,4,386,1052,0,2266,109,1,0,5,2362,2,0,0,0,0,0,0,0,7,0,2,0,0,0,1,0,3,2370,0,46,77,3,0,0,2250,0,2.769316909294513,0.0,4.258122743682311,0.0,4.978535353535354,0,0,0,0,0,0,0,465,0,101,54,75,65,60,31,34,18,16,4,1,1,1,2,0,2,317,148,6,459,6,459,288,177,5,460,1,464,102,363,1,464,241,224,8,457,2,6,5,460,62,403,3,462,298,167,184,281,25,440,50,193,219,3,0,208,257,0,1,460,1,0,0,0,0,0,0,0,3,0,2.438709677419354,2.670967741935484,0.0,1.0833333333333333,1.0833333333333333,48.03225806451613 +,120208,Comarca Ngäbe-Buglé,Mironó,Salto Dupí,740,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,557,27,539,25,4,7,0,14,2,0,0,9,190,4,6,378,0,4,0,0,494,39,52,6,0,67,523,1,0,0,0,591,4,1,3,0,139,3,0,0,0,589,2,0,0,41,425,4,21,89,8,3,556,2,1,0,20,11,1,1,53,4,466,64,3,0,220,13,36,53,214,1,52,0,0,2,0,0,741,4.017167381974249,7.798283261802575,6.901287553648069,23.128755364806867,1.1708967851099832,3.296108291032149,2.1336717428087986,692,400,1687,70,444,49,36,42,5,46,2,3,6,0,11,17,7,2,8,0,12,1274,1760,0,117,2917,0,280,2754,0,2354,680,0,1265,1769,0,1244,21,1284,485,0,491,43,121,3,130,191,198,151,157,408,3,2,1,116,171,246,106,129,279,0,5,12,12,10,7,9,31,1,0,1,0,0,0,0,0,696,23,1708,0,1,4,2,1,748,901,21,37,158,162,29,10,16,1,340,0,0,1672,1810,65,142,11,434,2,1,60,1,92,96,9,285,8,0,0,2059,322,1,5,4,34,1,1,0,0,1,3,16,6,12,67,375,102,7,130,2706,206,189,126,120,57,34,22,5,7,2,0,0,0,0,8,97.0,118.0,123.0,110.0,106.0,97.0,115.0,120.0,96.0,73.0,89.0,92.0,87.0,98.0,106.0,97.0,98.0,72.0,83.0,65.0,77.0,59.0,69.0,57.0,48.0,51.0,39.0,40.0,38.0,40.0,35.0,35.0,40.0,33.0,28.0,29.0,32.0,24.0,35.0,24.0,36.0,30.0,30.0,31.0,17.0,25.0,21.0,25.0,26.0,15.0,31.0,25.0,22.0,14.0,20.0,18.0,14.0,14.0,16.0,23.0,19.0,14.0,12.0,20.0,19.0,19.0,8.0,10.0,13.0,4.0,5.0,9.0,8.0,6.0,11.0,9.0,6.0,9.0,5.0,8.0,5.0,5.0,6.0,4.0,3.0,3.0,2.0,5.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1527,1785,170,0,554,501,472,415,310,208,171,144,144,112,112,85,84,54,39,37,23,14,2,0,1,0,3328,1,0,153,0,3328,1,0,153,0,1028,6,87,162,68,6,603,1522,0,3044,435,3,0,2,3466,4,0,0,2,0,0,0,0,8,0,0,0,0,0,0,0,0,3482,0,32,58,2,0,0,3390,0,3.010827532869296,0.0,4.479503105590062,0.0,4.771970132107984,0,0,0,0,0,0,0,692,0,74,37,70,83,145,105,70,40,46,12,5,1,2,0,0,2,337,355,9,683,7,685,420,272,5,687,0,692,127,565,2,690,353,339,10,682,2,8,23,669,14,678,5,687,545,147,512,180,14,678,41,356,292,3,0,401,291,0,1,688,2,0,0,0,0,0,0,0,1,0,2.4161849710982657,2.615606936416185,0.0,1.08,1.08,45.21531791907515 +,120301,Comarca Ngäbe-Buglé,Müna,Chichica,1184,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,144,554,121,569,129,67,4,0,45,5,304,49,10,210,1,3,197,1,44,0,0,652,56,100,11,0,296,489,3,0,0,31,819,0,7,2,0,352,6,0,0,3,806,10,0,0,356,225,3,97,74,53,11,802,3,0,0,2,11,1,102,324,3,379,11,0,0,400,16,99,28,193,0,36,0,0,45,2,0,1187,6.237980769230769,21.40625,6.882211538461538,23.528846153846157,1.0048840048840049,2.468864468864469,1.3467643467643469,824,385,1639,50,369,23,60,28,3,65,4,13,7,0,11,9,3,4,3,1,11,1311,1768,0,337,2742,0,630,2449,0,2472,607,0,1310,1769,0,1261,49,1274,495,0,499,31,87,1,137,129,152,149,139,278,0,0,0,137,168,210,104,124,331,1,6,39,72,53,82,40,80,21,2,7,0,0,0,0,0,402,9,2118,0,6,0,3,12,861,1199,8,38,175,96,29,7,18,1,83,0,0,1630,1840,143,47,7,107,10,0,85,10,42,64,2,2406,29,0,0,1795,549,0,5,12,153,9,6,0,0,10,7,90,10,16,52,111,58,13,44,2988,132,48,50,48,32,37,28,36,34,5,2,0,0,1,29,76.0,119.0,94.0,102.0,95.0,109.0,87.0,101.0,89.0,69.0,103.0,87.0,68.0,90.0,103.0,94.0,86.0,75.0,70.0,80.0,73.0,76.0,70.0,48.0,58.0,43.0,42.0,48.0,53.0,35.0,41.0,37.0,30.0,42.0,35.0,39.0,42.0,38.0,34.0,34.0,32.0,21.0,41.0,32.0,31.0,18.0,31.0,29.0,11.0,22.0,29.0,38.0,27.0,29.0,18.0,22.0,21.0,19.0,8.0,12.0,17.0,19.0,9.0,19.0,18.0,12.0,16.0,16.0,11.0,6.0,8.0,6.0,11.0,11.0,6.0,5.0,8.0,8.0,4.0,2.0,8.0,4.0,5.0,3.0,6.0,2.0,9.0,2.0,2.0,3.0,2.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1392,1896,182,0,486,455,451,405,325,221,185,187,157,111,141,82,82,61,42,27,26,18,7,0,1,0,3389,2,1,78,0,3389,2,1,78,0,1026,5,139,182,66,9,654,1389,0,3083,386,1,0,1,3424,11,0,0,0,0,0,0,0,34,0,0,8,9,1,0,0,9,3443,0,87,124,12,0,0,3247,0,2.601769911504425,0.0,4.030940594059406,0.0,5.992795389048991,0,1,5,1,0,0,1,816,0,430,60,48,57,41,33,26,25,41,24,9,4,6,1,1,17,498,326,121,703,127,697,328,496,96,728,12,812,175,649,12,812,351,473,141,683,118,23,113,711,132,692,37,787,475,349,499,325,13,811,129,406,284,5,0,455,369,0,1,815,1,0,0,0,0,0,0,0,7,0,1.9781553398058247,2.233009708737864,1.0,1.0,1.0,45.28519417475728 +,120302,Comarca Ngäbe-Buglé,Müna,Alto Caballero,918,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,675,27,528,164,3,1,0,20,3,393,3,4,143,4,7,158,0,7,0,0,653,26,29,10,1,420,291,0,0,0,8,719,13,121,4,1,46,17,0,0,3,706,10,0,0,342,168,1,64,114,27,3,707,1,0,0,2,9,0,41,386,7,282,3,0,0,189,9,10,4,416,1,84,0,3,0,3,0,921,4.257575757575758,11.035353535353536,6.217171717171717,16.88888888888889,1.0139082058414464,2.6648122392211406,1.5688456189151598,729,389,1526,72,362,7,39,41,2,58,5,9,7,1,15,11,4,13,7,0,9,1660,1241,0,501,2400,0,1162,1739,0,2413,488,0,1314,1587,0,1296,18,1239,348,0,352,45,85,4,114,136,147,140,131,343,0,2,1,136,144,203,93,111,313,2,6,50,51,55,49,65,102,8,2,11,0,0,0,0,0,935,37,1384,0,2,18,12,32,758,520,34,40,275,138,91,16,47,2,390,0,0,1599,1648,173,191,19,459,8,0,109,0,271,108,11,1218,13,0,0,1641,542,1,5,11,141,4,11,0,0,0,15,81,28,19,127,341,167,22,172,2561,188,79,101,75,59,45,51,39,30,2,2,1,1,0,13,84.0,80.0,74.0,108.0,99.0,93.0,106.0,77.0,88.0,82.0,84.0,89.0,68.0,81.0,79.0,80.0,73.0,65.0,70.0,74.0,54.0,73.0,71.0,56.0,70.0,41.0,55.0,57.0,42.0,41.0,41.0,38.0,41.0,35.0,33.0,40.0,36.0,32.0,39.0,28.0,35.0,22.0,35.0,32.0,22.0,23.0,27.0,15.0,18.0,23.0,24.0,17.0,15.0,10.0,20.0,21.0,19.0,12.0,17.0,18.0,17.0,10.0,12.0,15.0,16.0,16.0,10.0,12.0,13.0,10.0,8.0,6.0,8.0,12.0,10.0,4.0,5.0,10.0,6.0,2.0,4.0,2.0,6.0,2.0,4.0,4.0,4.0,5.0,1.0,3.0,0.0,1.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1292,1780,175,0,445,446,401,362,324,236,188,175,146,106,86,87,70,61,44,27,18,17,5,2,1,0,3171,2,0,74,0,3171,2,0,74,0,928,9,128,131,61,3,695,1292,0,2336,906,5,0,6,3065,13,2,0,0,0,0,0,1,160,0,2,2,8,0,1,0,12,3222,0,159,298,23,6,4,2757,0,2.7167774086378738,0.0,4.08984375,0.0,6.281798583307669,0,1,2,0,0,0,2,724,0,127,67,87,85,108,66,45,36,63,26,5,4,5,2,2,1,609,120,221,508,163,566,258,471,122,607,5,724,258,471,19,710,550,179,208,521,106,102,133,596,333,396,32,697,359,370,352,377,24,705,92,396,234,7,0,361,368,0,1,690,6,2,0,0,0,0,0,0,30,0,2.1934156378600824,2.2606310013717423,1.0,1.0,1.0,46.55418381344308 +,120303,Comarca Ngäbe-Buglé,Müna,Bakama,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,80,192,30,60,1,0,18,1,57,1,5,94,1,1,142,1,0,0,0,286,6,8,2,0,68,233,1,0,0,0,302,0,42,4,0,59,7,0,0,0,302,0,0,0,63,122,6,61,40,10,0,300,1,0,0,0,1,0,1,84,1,212,4,0,0,47,43,13,33,154,0,11,0,0,1,0,0,414,5.7,9.744444444444444,6.722222222222222,12.844444444444443,1.0,2.73841059602649,1.5927152317880795,302,174,684,40,175,2,19,6,2,39,2,1,12,0,1,4,7,2,1,1,3,532,742,0,39,1235,0,273,1001,0,972,302,0,456,818,0,452,4,524,294,0,297,12,32,1,39,61,72,88,67,157,0,0,0,57,63,96,28,47,98,0,0,10,7,10,15,9,6,1,1,0,0,0,0,0,0,320,8,705,0,1,4,1,3,290,361,9,42,57,26,10,8,3,0,224,0,0,713,745,25,75,8,184,2,0,34,0,111,60,1,403,7,0,0,875,138,0,0,1,18,1,0,0,0,0,1,5,8,7,21,202,20,2,62,1198,79,65,31,31,20,11,6,6,2,1,0,1,0,0,7,33.0,54.0,48.0,49.0,46.0,34.0,51.0,36.0,40.0,34.0,46.0,43.0,34.0,36.0,34.0,42.0,30.0,25.0,22.0,24.0,35.0,30.0,35.0,24.0,15.0,25.0,25.0,16.0,20.0,21.0,17.0,13.0,18.0,15.0,13.0,12.0,10.0,19.0,13.0,8.0,12.0,9.0,11.0,12.0,11.0,12.0,6.0,12.0,14.0,12.0,12.0,7.0,10.0,12.0,10.0,3.0,10.0,5.0,5.0,6.0,7.0,8.0,5.0,9.0,3.0,4.0,8.0,5.0,6.0,1.0,4.0,2.0,5.0,8.0,2.0,8.0,1.0,4.0,8.0,5.0,2.0,0.0,2.0,0.0,2.0,5.0,2.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,618,750,90,0,230,195,193,143,139,107,76,62,55,56,51,29,32,24,21,26,6,9,3,1,0,0,1390,0,0,68,0,1390,0,0,68,0,459,0,82,41,31,2,225,618,0,1203,255,0,0,0,1414,6,0,0,0,0,0,0,0,38,0,0,1,4,0,0,0,24,1429,0,19,48,6,0,0,1385,0,2.9103053435114505,0.0,4.398753894080997,0.0,4.5699588477366255,0,1,2,0,0,0,3,296,0,41,29,38,54,66,35,12,7,13,4,1,1,1,0,0,0,180,122,26,276,28,274,124,178,26,276,3,299,119,183,3,299,169,133,27,275,10,17,13,289,30,272,4,298,204,98,215,87,7,295,41,158,95,8,0,203,99,0,0,294,0,0,0,0,0,0,0,0,8,0,2.3609271523178808,2.466887417218543,0.0,1.0,1.0,49.12582781456954 +,120304,Comarca Ngäbe-Buglé,Müna,Cerro Caña,681,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,354,205,311,47,166,3,0,28,8,46,57,10,173,3,1,185,1,87,0,0,511,21,27,3,1,110,453,0,0,0,0,563,2,24,1,0,63,29,0,0,1,556,6,0,0,50,301,8,137,66,0,1,557,0,0,0,5,1,0,0,55,7,491,10,0,0,252,9,3,9,290,0,0,0,0,0,0,0,682,4.954022988505747,7.547892720306513,6.854406130268199,21.0,1.0088809946714032,1.6234458259325044,0.5683836589698046,568,303,1554,35,441,26,49,45,4,69,4,5,6,0,3,18,4,1,5,1,15,895,1848,0,119,2624,0,127,2616,0,2169,574,0,1282,1461,0,1280,2,1044,417,0,421,56,72,0,146,143,196,150,140,311,0,1,1,152,134,238,84,119,221,1,2,23,24,29,24,22,27,2,2,1,0,1,0,0,0,685,25,1486,0,12,6,6,2,783,637,24,40,104,125,29,5,10,4,423,1,1,1463,1646,67,70,5,433,1,3,122,1,241,116,5,1358,39,0,0,1816,322,2,0,8,45,1,2,0,0,1,2,33,15,12,32,414,125,7,69,2761,127,47,22,24,25,27,7,12,13,2,1,1,0,1,39,92.0,108.0,76.0,90.0,82.0,108.0,92.0,88.0,85.0,92.0,101.0,80.0,79.0,99.0,106.0,85.0,88.0,78.0,62.0,78.0,61.0,49.0,38.0,52.0,35.0,40.0,34.0,36.0,43.0,34.0,43.0,28.0,26.0,30.0,29.0,24.0,30.0,36.0,30.0,26.0,22.0,27.0,18.0,27.0,29.0,20.0,14.0,21.0,16.0,20.0,21.0,24.0,20.0,19.0,9.0,15.0,17.0,13.0,13.0,18.0,16.0,21.0,13.0,9.0,14.0,9.0,11.0,7.0,10.0,9.0,4.0,6.0,12.0,11.0,10.0,5.0,6.0,5.0,5.0,1.0,3.0,4.0,6.0,5.0,11.0,6.0,5.0,2.0,2.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1378,1571,160,0,448,465,465,391,235,187,156,146,123,91,93,76,73,46,43,22,29,15,4,0,1,0,2979,0,1,129,0,2979,0,1,129,0,836,5,145,149,67,9,524,1374,0,2629,479,1,0,3,3061,19,0,0,0,0,0,0,0,26,0,6,102,14,0,0,0,26,2961,0,61,120,1,0,1,2926,0,2.825938566552901,0.0,4.404624277456647,0.0,5.066902541009971,1,19,3,0,0,0,4,541,0,166,65,80,91,61,29,18,16,20,11,2,1,1,1,2,4,329,239,6,562,4,564,347,221,9,559,1,567,124,444,4,564,255,313,16,552,4,12,37,531,30,538,6,562,380,188,223,345,16,552,44,269,252,3,0,300,268,0,0,561,1,0,0,0,0,0,0,0,6,0,2.5757042253521125,2.897887323943662,0.0,1.1282051282051282,1.1282051282051282,48.471830985915496 +,120305,Comarca Ngäbe-Buglé,Müna,Cerro Puerco,1253,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,779,112,680,106,20,40,0,41,11,2,0,14,361,5,7,386,0,123,0,0,778,84,31,2,3,165,732,0,0,0,1,898,0,5,5,0,346,1,0,0,1,893,4,0,0,74,362,4,59,285,90,24,818,2,1,0,12,64,1,1,143,4,741,9,0,0,200,35,113,55,474,0,18,0,0,2,1,0,1255,4.459574468085107,9.148936170212766,6.753191489361702,21.41276595744681,1.0111358574610243,2.374164810690423,1.2628062360801782,908,486,2454,82,1069,24,35,67,9,153,8,9,6,0,22,13,5,3,10,0,7,1289,3396,0,139,4546,0,455,4230,0,3485,1200,0,1964,2721,0,1953,11,1722,999,0,1007,29,110,2,232,227,320,274,282,574,0,0,0,226,234,279,145,143,388,0,2,28,33,35,44,43,26,1,0,1,0,0,0,0,0,727,23,2964,0,18,2,2,6,1261,1632,26,39,99,179,42,7,18,0,400,2,0,2609,2701,61,160,8,411,2,1,103,1,300,128,9,2651,2,0,0,3111,557,0,1,4,39,1,1,0,0,1,3,25,10,16,66,429,69,7,124,4532,280,139,90,131,67,27,19,19,2,2,0,0,0,0,2,153.0,154.0,129.0,189.0,175.0,165.0,161.0,173.0,156.0,141.0,175.0,155.0,137.0,138.0,165.0,138.0,133.0,116.0,116.0,121.0,110.0,86.0,110.0,79.0,88.0,79.0,75.0,60.0,59.0,60.0,60.0,50.0,43.0,52.0,54.0,40.0,35.0,49.0,45.0,44.0,54.0,36.0,56.0,42.0,34.0,38.0,35.0,32.0,33.0,41.0,29.0,35.0,23.0,29.0,31.0,25.0,20.0,23.0,28.0,31.0,32.0,11.0,27.0,22.0,24.0,18.0,16.0,23.0,17.0,14.0,11.0,8.0,22.0,21.0,11.0,7.0,11.0,7.0,6.0,4.0,11.0,4.0,5.0,8.0,6.0,7.0,1.0,2.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2366,2693,251,0,800,796,770,624,473,333,259,213,222,179,147,127,116,88,73,35,34,14,3,2,2,0,5019,1,0,290,0,5019,1,0,290,0,1575,11,204,245,120,21,772,2362,0,4830,475,5,0,3,5294,5,0,0,0,0,0,0,0,8,0,1,0,1,0,1,0,6,5301,0,33,29,6,1,0,5241,0,3.137113402061856,0.0,4.495791245791246,0.0,4.625423728813559,1,0,0,0,0,0,0,907,0,237,87,92,106,151,105,52,28,33,9,5,2,1,0,0,0,421,487,11,897,5,903,346,562,4,904,2,906,82,826,4,904,211,697,13,895,6,7,21,887,36,872,5,903,606,302,433,475,25,883,91,341,471,5,0,463,445,0,0,901,3,0,0,0,0,0,0,0,4,0,2.873348017621145,2.9746696035242293,1.0,1.173913043478261,1.173913043478261,49.02312775330397 +,120306,Comarca Ngäbe-Buglé,Müna,Krüa,592,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,81,314,75,8,222,71,0,19,2,1,0,5,116,1,6,230,2,36,0,0,336,48,9,4,0,5,390,2,0,0,0,397,20,5,0,0,84,87,0,0,0,394,3,0,0,8,67,4,73,120,115,10,375,0,3,0,4,15,0,1,1,4,390,1,0,0,97,165,19,57,48,0,6,0,0,5,0,0,593,6.072519083969466,18.09923664122137,6.938931297709924,23.61450381679389,1.0302267002518892,1.1385390428211586,0.1385390428211587,409,252,1383,35,520,36,36,95,6,86,15,13,15,0,8,20,6,1,5,2,3,421,2138,0,8,2551,0,66,2493,0,1689,870,0,1108,1451,0,1107,1,671,780,0,784,11,41,0,142,158,133,154,174,364,1,4,0,89,108,156,58,62,102,4,0,8,0,2,1,3,0,0,0,0,0,0,0,0,0,228,3,1750,0,1,1,1,0,738,967,15,30,17,62,0,0,1,0,149,0,0,1371,1530,14,2,0,152,4,0,57,0,152,55,2,1672,89,0,0,1860,120,0,0,0,1,0,0,0,0,0,0,4,3,5,8,153,52,0,6,2726,61,4,5,7,0,4,4,1,0,0,0,0,0,0,89,72.0,78.0,96.0,96.0,98.0,93.0,89.0,110.0,100.0,88.0,93.0,91.0,96.0,89.0,92.0,80.0,90.0,71.0,53.0,52.0,50.0,38.0,37.0,32.0,45.0,41.0,24.0,25.0,34.0,27.0,28.0,16.0,22.0,21.0,30.0,18.0,12.0,28.0,26.0,25.0,25.0,27.0,24.0,22.0,20.0,29.0,14.0,34.0,38.0,20.0,26.0,15.0,19.0,12.0,20.0,12.0,12.0,10.0,15.0,17.0,11.0,7.0,5.0,13.0,10.0,8.0,13.0,12.0,7.0,12.0,9.0,1.0,10.0,7.0,10.0,13.0,8.0,2.0,4.0,3.0,2.0,1.0,5.0,3.0,1.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1381,1382,138,0,440,480,461,346,202,151,117,109,118,135,92,66,46,52,37,30,12,6,0,0,1,0,2667,0,0,234,0,2667,0,0,234,0,675,3,45,255,88,16,439,1380,0,2297,604,0,0,2,2884,5,0,0,0,0,0,0,0,10,0,0,2,0,0,0,0,5,2894,0,4,20,0,0,0,2877,0,2.972067039106145,0.0,4.698305084745763,0.0,3.5146501206480525,0,0,0,0,0,0,1,408,0,181,51,59,70,26,7,1,4,4,0,1,0,0,0,0,5,40,369,1,408,6,403,232,177,2,407,0,409,28,381,12,397,61,348,1,408,0,1,1,408,0,409,2,407,255,154,172,237,2,407,26,154,217,12,0,265,144,0,0,406,1,0,0,0,0,0,0,0,2,0,3.352078239608802,3.740831295843521,0.0,1.1724137931034482,1.1724137931034482,51.31295843520783 +,120307,Comarca Ngäbe-Buglé,Müna,Maraca,1053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,617,134,549,74,47,38,0,27,22,158,36,14,257,3,2,258,0,29,0,0,665,68,23,1,0,79,675,1,0,0,2,757,5,2,1,1,285,2,0,0,0,751,6,0,0,48,373,3,69,225,25,14,734,3,1,0,6,12,1,5,50,6,685,11,0,0,186,30,111,93,333,0,3,0,0,0,1,0,1053,4.523148148148148,10.88425925925926,6.916666666666667,23.15740740740741,1.0013210039630118,1.4808454425363275,0.463672391017173,758,363,1879,46,557,21,31,46,2,83,5,3,1,0,12,17,9,1,6,0,6,1012,2295,0,80,3227,0,241,3066,0,2556,751,0,1451,1856,0,1446,5,1236,620,0,621,26,72,0,170,200,215,237,200,431,0,0,1,150,173,245,107,138,248,1,2,11,14,16,14,5,10,0,0,0,0,0,0,0,0,280,11,2337,0,3,1,3,8,955,1286,17,71,41,136,10,1,7,1,93,0,0,1814,1981,27,46,2,136,0,0,76,2,266,113,4,2014,3,0,0,2306,296,1,1,6,18,0,0,0,0,2,1,13,2,7,12,184,39,2,29,3506,149,33,22,43,10,13,6,9,1,0,0,0,0,0,3,110.0,128.0,116.0,134.0,118.0,106.0,115.0,112.0,117.0,111.0,134.0,113.0,99.0,101.0,128.0,118.0,81.0,104.0,86.0,73.0,65.0,57.0,66.0,53.0,40.0,49.0,42.0,37.0,50.0,38.0,42.0,44.0,35.0,31.0,31.0,39.0,28.0,34.0,30.0,30.0,28.0,32.0,48.0,29.0,24.0,21.0,25.0,26.0,23.0,30.0,34.0,24.0,21.0,19.0,12.0,12.0,14.0,16.0,25.0,12.0,22.0,10.0,13.0,19.0,19.0,11.0,10.0,7.0,14.0,8.0,10.0,11.0,12.0,19.0,11.0,9.0,7.0,8.0,4.0,8.0,3.0,3.0,6.0,3.0,3.0,7.0,4.0,2.0,5.0,2.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1742,1861,192,0,606,561,575,462,281,216,183,161,161,125,110,79,83,50,63,36,18,20,3,2,0,0,3649,0,0,146,0,3649,0,0,146,0,1086,7,141,158,84,16,563,1740,0,3521,274,0,0,6,3782,3,0,1,0,0,0,0,0,3,0,1,0,0,0,0,0,1,3793,0,22,43,8,0,0,3722,0,3.1004304160688667,0.0,4.474108170310702,0.0,4.49802371541502,0,0,0,0,0,0,0,758,0,332,107,88,83,84,27,14,8,11,3,0,1,0,0,0,0,347,411,12,746,5,753,288,470,2,756,3,755,74,684,7,751,215,543,11,747,3,8,13,745,27,731,6,752,444,314,435,323,18,740,115,354,288,1,0,391,367,0,0,758,0,0,0,0,0,0,0,0,0,0,2.3931398416886545,2.613456464379947,1.0,1.0454545454545454,1.0454545454545454,47.482849604221634 +,120308,Comarca Ngäbe-Buglé,Müna,Nibra,677,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,161,285,26,130,2,0,26,3,105,1,4,104,2,3,252,1,0,0,0,426,24,21,1,0,78,392,0,0,0,2,472,2,60,36,0,97,13,0,0,3,468,1,0,0,56,158,64,138,43,7,6,468,1,1,0,1,1,0,2,49,6,405,9,1,0,158,16,40,9,241,0,2,0,1,5,0,0,680,4.672413793103448,14.14367816091954,6.747126436781609,21.7183908045977,1.0021186440677967,2.455508474576271,1.3559322033898304,473,235,1192,39,431,15,24,43,5,55,10,3,5,0,15,5,9,4,4,2,2,767,1427,0,55,2139,0,347,1847,0,1678,516,0,981,1213,0,979,2,808,405,0,410,30,46,0,117,122,146,145,123,294,0,3,0,95,117,176,83,70,157,0,1,10,11,10,5,6,16,1,0,0,0,0,0,0,0,299,9,1427,0,4,2,2,9,615,722,35,46,73,37,20,8,9,0,158,2,0,1247,1283,33,62,9,165,1,0,37,0,181,95,6,969,26,0,0,1518,188,0,1,4,23,1,0,0,0,0,2,14,6,7,39,152,36,9,43,2251,125,37,11,21,18,25,6,7,3,0,0,0,0,0,26,87.0,90.0,81.0,78.0,76.0,75.0,56.0,88.0,87.0,77.0,86.0,83.0,63.0,72.0,68.0,69.0,58.0,55.0,58.0,49.0,41.0,42.0,38.0,44.0,28.0,25.0,18.0,29.0,21.0,28.0,26.0,21.0,25.0,24.0,11.0,22.0,25.0,26.0,14.0,24.0,24.0,22.0,19.0,25.0,14.0,19.0,15.0,22.0,9.0,19.0,13.0,20.0,18.0,20.0,18.0,6.0,11.0,11.0,14.0,12.0,12.0,10.0,11.0,16.0,22.0,6.0,11.0,12.0,4.0,8.0,3.0,9.0,6.0,10.0,10.0,4.0,6.0,7.0,2.0,4.0,7.0,2.0,9.0,2.0,3.0,4.0,3.0,3.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1167,1223,140,0,412,383,372,289,193,121,107,111,104,84,89,54,71,41,38,23,23,11,4,0,0,0,2428,0,0,102,0,2428,0,0,102,0,685,7,128,90,65,3,386,1166,0,2039,491,0,0,5,2446,16,0,0,0,0,0,0,1,62,0,3,116,9,2,0,0,11,2389,0,29,83,8,1,1,2408,0,3.2229654403567447,0.0,4.725806451612903,0.0,4.501185770750988,1,19,4,0,0,0,2,447,0,137,57,68,74,56,30,18,9,9,6,2,1,1,0,0,5,255,218,27,446,28,445,228,245,26,447,4,469,113,360,7,466,207,266,72,401,20,52,18,455,39,434,6,467,342,131,311,162,8,465,57,204,207,5,0,248,225,0,1,452,5,0,0,0,0,0,0,0,15,0,2.636363636363636,2.712473572938689,1.0,1.103448275862069,1.103448275862069,50.00845665961945 +,120309,Comarca Ngäbe-Buglé,Müna,Peña Blanca,871,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,403,229,340,69,92,115,0,13,9,29,0,10,248,7,1,306,0,37,0,0,548,67,15,8,0,57,580,0,0,0,1,638,2,11,1,2,213,5,0,0,0,635,3,0,0,132,361,1,48,83,6,7,604,3,9,0,15,6,1,3,122,9,468,34,2,0,185,23,97,37,273,1,16,0,0,4,2,0,872,5.932692307692308,18.96153846153846,6.8173076923076925,23.08653846153846,1.0141065830721003,1.9075235109717867,0.8479623824451411,647,353,1880,46,481,15,26,37,5,64,6,1,1,0,26,19,5,1,8,0,12,524,2622,0,79,3067,0,138,3008,0,2372,774,0,1423,1723,0,1414,9,1070,653,0,655,26,74,1,153,178,177,204,193,353,0,0,0,146,173,191,97,118,292,3,4,13,18,13,21,17,23,1,0,2,0,0,0,0,0,128,3,2319,0,2,0,0,3,930,1338,16,32,43,41,7,2,4,0,34,0,0,1715,1847,34,14,2,26,0,0,55,0,205,82,5,2514,23,0,0,2043,366,0,3,4,32,1,1,0,0,0,2,14,9,7,8,65,10,4,12,3348,112,18,13,21,12,6,0,3,6,0,0,0,0,0,23,77.0,104.0,110.0,125.0,116.0,127.0,114.0,114.0,121.0,104.0,124.0,108.0,112.0,93.0,95.0,103.0,104.0,83.0,67.0,65.0,77.0,54.0,65.0,57.0,62.0,48.0,33.0,44.0,37.0,34.0,51.0,34.0,38.0,34.0,40.0,37.0,32.0,20.0,31.0,33.0,26.0,31.0,36.0,23.0,28.0,31.0,17.0,21.0,28.0,25.0,26.0,16.0,14.0,23.0,13.0,20.0,10.0,21.0,11.0,12.0,14.0,8.0,10.0,20.0,15.0,12.0,12.0,10.0,8.0,5.0,9.0,7.0,6.0,11.0,6.0,6.0,8.0,5.0,2.0,2.0,1.0,1.0,6.0,0.0,3.0,3.0,2.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1644,1782,136,0,532,580,532,422,315,196,197,153,144,122,92,74,67,47,39,23,11,9,4,2,1,0,3415,0,0,147,0,3415,0,0,147,0,1093,9,109,35,70,11,593,1642,0,3242,320,0,0,6,3543,8,0,0,0,0,0,0,0,5,0,2,1,0,0,0,0,2,3557,0,17,20,2,1,0,3522,0,2.9195046439628483,0.0,4.660949868073879,0.0,4.672936552498596,0,1,0,0,0,0,0,646,0,383,72,60,43,42,23,6,3,3,5,1,1,0,0,0,5,213,434,4,643,8,639,261,386,1,646,1,646,49,598,3,644,101,546,3,644,1,2,11,636,20,627,5,642,316,331,175,472,14,633,84,312,250,1,0,310,337,0,2,642,0,0,0,0,0,0,0,0,3,0,2.650695517774343,2.8547140649149925,1.0,1.0625,1.0625,46.09582689335394 +,120310,Comarca Ngäbe-Buglé,Müna,Rokari,751,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,25,295,238,270,50,63,150,0,24,1,56,2,5,204,5,1,283,1,1,0,0,482,56,14,6,0,97,458,2,0,0,1,558,34,13,2,0,140,4,0,0,1,553,4,0,0,84,257,3,117,94,1,2,542,2,1,0,5,7,1,1,90,4,454,9,0,0,365,36,45,40,30,0,24,0,0,18,0,0,752,6.598503740648379,20.276807980049878,6.917705735660848,23.64837905236908,1.003584229390681,1.403225806451613,0.3817204301075269,561,351,1597,37,433,21,41,44,9,79,9,6,15,1,17,20,8,2,4,1,6,776,2028,0,143,2661,0,644,2160,0,2135,669,0,1328,1476,0,1323,5,916,560,0,566,22,84,2,137,125,177,169,159,287,1,0,0,146,153,154,90,82,212,2,3,24,43,16,53,46,44,4,1,2,0,0,0,0,0,303,7,1881,0,3,3,0,3,855,992,20,11,105,70,10,2,10,1,110,0,0,1524,1680,78,41,2,130,8,0,49,0,240,64,4,1678,76,0,0,1740,339,0,1,8,98,3,2,0,0,0,2,46,11,12,31,140,35,2,31,2889,74,41,8,21,21,24,15,21,9,5,0,0,0,0,76,89.0,97.0,105.0,109.0,109.0,105.0,102.0,109.0,83.0,105.0,95.0,94.0,96.0,87.0,97.0,84.0,92.0,67.0,64.0,59.0,58.0,52.0,51.0,60.0,43.0,34.0,52.0,35.0,39.0,43.0,45.0,29.0,26.0,22.0,27.0,27.0,27.0,35.0,25.0,29.0,36.0,31.0,19.0,25.0,22.0,24.0,19.0,28.0,24.0,24.0,30.0,24.0,14.0,13.0,17.0,17.0,12.0,12.0,16.0,14.0,10.0,10.0,7.0,10.0,12.0,17.0,7.0,8.0,3.0,8.0,7.0,5.0,12.0,7.0,5.0,4.0,4.0,7.0,3.0,5.0,4.0,1.0,1.0,2.0,4.0,1.0,2.0,3.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1482,1595,127,0,509,504,469,366,264,203,149,143,133,119,98,71,49,43,36,23,12,7,4,2,0,0,3042,8,0,154,0,3042,8,0,154,0,948,7,61,136,61,26,485,1480,0,2670,526,8,0,1,3170,3,0,0,0,0,0,0,0,30,0,1,1,3,0,0,0,4,3195,0,43,74,1,2,0,3084,0,2.578632478632479,0.0,4.100591715976331,0.0,4.954744069912609,0,0,1,0,0,0,2,558,0,207,62,78,60,56,25,18,14,17,10,4,0,3,1,1,4,278,283,29,532,32,529,324,237,19,542,2,559,103,458,7,554,202,359,26,535,19,7,46,515,90,471,14,547,259,302,135,426,7,554,36,278,236,11,0,316,245,0,1,553,0,0,0,0,0,0,0,0,7,0,2.716577540106952,2.9946524064171123,0.0,1.05,1.05,45.09447415329768 +,120311,Comarca Ngäbe-Buglé,Müna,Sitio Prado,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,387,99,362,29,61,7,0,30,1,77,1,3,165,2,1,231,0,10,0,0,434,18,30,6,2,115,372,3,0,0,0,490,5,57,7,0,147,36,0,0,1,484,5,0,0,69,120,7,214,77,3,0,489,0,1,0,0,0,0,0,79,1,399,11,0,0,116,10,59,166,138,1,0,0,0,0,0,0,742,4.587301587301587,13.626984126984128,6.936507936507937,23.396825396825395,1.0,1.9040816326530607,0.8612244897959184,490,273,1370,32,405,14,40,39,4,74,4,7,14,1,14,12,10,5,5,2,18,830,1592,0,154,2268,0,415,2007,0,1917,505,0,1193,1229,0,1191,2,815,414,0,414,31,76,0,95,122,131,105,111,287,0,2,0,96,115,160,71,80,261,0,4,22,32,25,43,54,68,16,0,1,0,0,0,0,0,174,14,1726,0,4,4,5,5,802,874,24,21,95,12,14,3,2,0,58,0,2,1341,1426,74,26,4,41,0,1,38,2,20,7,4,2189,70,0,0,1385,396,0,5,2,109,16,1,0,0,3,4,36,12,7,16,65,11,3,31,2555,16,9,11,14,33,19,14,15,7,2,1,0,0,1,70,79.0,88.0,93.0,85.0,86.0,86.0,96.0,72.0,81.0,87.0,81.0,76.0,79.0,61.0,73.0,92.0,74.0,62.0,62.0,53.0,58.0,50.0,41.0,46.0,43.0,31.0,32.0,39.0,31.0,27.0,35.0,25.0,39.0,34.0,22.0,27.0,32.0,17.0,19.0,17.0,26.0,16.0,27.0,19.0,11.0,15.0,15.0,22.0,19.0,21.0,23.0,23.0,18.0,17.0,9.0,10.0,11.0,11.0,14.0,12.0,10.0,13.0,10.0,11.0,15.0,11.0,3.0,8.0,7.0,3.0,6.0,5.0,8.0,6.0,9.0,6.0,7.0,5.0,5.0,6.0,2.0,3.0,7.0,2.0,4.0,3.0,5.0,5.0,0.0,1.0,2.0,3.0,2.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1223,1406,138,0,431,422,370,343,238,160,155,112,99,92,90,58,59,32,34,29,18,14,9,2,0,0,2659,2,0,106,0,2659,2,0,106,0,778,7,104,150,53,4,449,1222,0,2247,518,2,0,3,2741,10,0,0,0,0,0,0,0,13,0,1,1,1,0,1,0,6,2757,0,61,160,5,0,0,2541,0,2.910191725529768,0.0,4.477977161500816,0.0,5.608239971087821,0,1,1,0,0,0,1,487,0,318,30,22,12,12,18,20,12,18,6,6,0,0,1,1,14,322,168,28,462,21,469,332,158,14,476,1,489,109,381,6,484,270,220,25,465,11,14,49,441,114,376,12,478,333,157,298,192,25,465,44,227,211,8,0,243,247,0,1,484,4,0,0,0,0,0,0,0,1,0,2.736734693877551,2.910204081632653,0.0,1.0,1.0,48.3 +,120312,Comarca Ngäbe-Buglé,Müna,Ümani,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,390,53,354,37,18,10,0,20,5,36,3,6,141,8,0,184,1,65,0,0,385,28,28,3,0,51,392,1,0,0,0,444,0,0,1,0,110,0,0,0,0,439,4,1,0,21,255,4,11,144,1,8,408,2,2,0,2,30,0,2,51,3,384,4,0,0,122,12,76,18,208,1,0,0,0,5,2,0,555,4.768656716417911,13.111940298507465,6.7388059701492535,22.470149253731343,1.0112612612612613,2.545045045045045,1.4211711711711712,449,198,1156,29,502,20,22,34,0,78,1,2,6,0,7,2,2,0,4,0,6,671,1544,0,70,2145,0,290,1925,0,1656,559,0,894,1321,0,894,0,879,442,0,445,13,66,1,84,131,118,129,113,272,0,0,1,85,126,167,79,82,191,0,0,22,20,18,17,12,19,3,0,1,0,0,0,0,0,317,8,1456,0,4,2,1,9,569,841,15,22,65,67,19,10,6,3,154,0,0,1162,1335,33,90,10,157,2,0,32,0,147,72,8,1208,2,0,0,1477,274,1,0,0,28,1,0,0,0,0,0,22,4,3,44,138,43,1,70,2151,123,48,37,59,33,19,5,14,5,1,0,0,0,0,2,70.0,74.0,74.0,64.0,76.0,73.0,88.0,62.0,69.0,66.0,71.0,64.0,56.0,61.0,81.0,71.0,71.0,61.0,61.0,55.0,51.0,53.0,50.0,41.0,27.0,36.0,38.0,29.0,31.0,21.0,30.0,30.0,17.0,31.0,23.0,14.0,21.0,25.0,20.0,14.0,22.0,24.0,18.0,22.0,19.0,18.0,23.0,15.0,11.0,13.0,19.0,9.0,15.0,15.0,12.0,15.0,12.0,20.0,15.0,7.0,13.0,9.0,8.0,19.0,15.0,14.0,9.0,10.0,5.0,18.0,5.0,4.0,12.0,5.0,8.0,6.0,3.0,4.0,1.0,4.0,1.0,0.0,4.0,2.0,4.0,1.0,4.0,4.0,2.0,1.0,1.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1049,1309,139,0,358,358,333,319,222,155,131,94,105,80,70,69,64,56,34,18,11,12,7,1,0,0,2396,0,0,101,0,2396,0,0,101,0,703,6,161,103,67,7,405,1045,0,2313,184,0,0,2,2488,4,0,0,0,0,0,0,0,3,0,2,1,1,0,0,0,4,2489,0,15,15,8,2,0,2457,0,3.005359056806002,0.0,4.611615245009075,0.0,4.903083700440528,0,0,0,0,0,0,1,448,0,137,37,34,68,62,38,25,16,20,6,3,2,0,1,0,0,185,264,13,436,5,444,151,298,5,444,1,448,17,432,0,449,116,333,8,441,5,3,11,438,3,446,3,446,292,157,229,220,1,448,65,150,230,4,0,239,210,0,0,449,0,0,0,0,0,0,0,0,0,0,2.5879732739420938,2.973273942093541,0.0,1.0909090909090908,1.0909090909090908,50.8619153674833 +,120313,Comarca Ngäbe-Buglé,Müna,Dikeri,825,2,0,0,0,0,0,0,0,0,0,0,1,0,0,2,2,445,132,364,85,68,4,0,58,2,153,6,7,222,3,3,179,0,8,0,0,487,43,44,6,1,127,437,0,0,0,17,581,0,7,0,0,233,6,0,0,0,574,7,0,0,108,180,8,192,86,6,1,569,2,1,0,4,5,0,9,108,2,450,12,0,0,111,7,44,11,376,2,4,0,0,23,3,0,828,5.033898305084746,11.042372881355933,6.593220338983051,21.838983050847457,1.0034423407917383,1.9931153184165236,0.9311531841652324,584,276,1144,57,334,15,22,30,3,40,6,9,1,0,8,7,6,0,6,0,1,768,1473,0,176,2065,0,310,1931,0,1782,459,0,966,1275,0,953,13,885,390,0,392,43,40,0,106,111,127,122,125,223,0,0,0,108,102,148,70,93,218,1,0,30,25,28,45,35,28,13,4,4,0,0,0,0,0,225,5,1566,0,5,0,0,5,642,879,14,26,66,59,25,3,12,0,65,0,0,1220,1301,55,41,3,64,3,1,61,2,110,72,2,1707,2,0,0,1365,347,0,0,2,70,11,1,0,0,2,3,33,4,7,26,78,38,2,37,2270,104,30,15,27,13,12,14,23,7,4,0,0,0,0,2,56.0,78.0,73.0,73.0,73.0,102.0,61.0,81.0,67.0,61.0,81.0,69.0,74.0,57.0,61.0,61.0,62.0,56.0,39.0,43.0,54.0,38.0,38.0,47.0,28.0,28.0,32.0,32.0,37.0,21.0,42.0,33.0,27.0,36.0,21.0,34.0,23.0,25.0,24.0,32.0,24.0,14.0,20.0,22.0,18.0,11.0,16.0,23.0,13.0,14.0,18.0,12.0,17.0,12.0,16.0,23.0,11.0,10.0,11.0,14.0,8.0,9.0,11.0,15.0,11.0,9.0,9.0,10.0,13.0,8.0,6.0,12.0,8.0,10.0,11.0,9.0,7.0,7.0,7.0,2.0,5.0,1.0,5.0,3.0,4.0,4.0,1.0,2.0,5.0,2.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1067,1286,168,0,353,372,342,261,205,150,159,138,98,77,75,69,54,49,47,32,18,14,6,1,1,0,2455,1,0,65,0,2455,1,0,65,0,697,3,106,130,57,9,455,1064,0,2282,239,0,0,4,2512,1,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,5,2512,0,18,53,4,1,1,2444,0,2.8818565400843883,0.0,4.360344827586207,0.0,5.473224910749702,0,0,0,0,0,0,0,584,0,329,59,41,37,47,11,14,11,15,8,4,4,2,0,0,1,268,316,42,542,21,563,207,377,9,575,1,583,94,490,7,577,179,405,40,544,23,17,30,554,46,538,2,582,338,246,385,199,4,580,119,276,188,1,0,348,236,0,1,580,1,0,0,0,0,0,0,0,2,0,2.089041095890411,2.227739726027397,0.0,1.0588235294117647,1.0588235294117647,46.76541095890411 +,120314,Comarca Ngäbe-Buglé,Müna,Diko,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,263,204,264,39,104,73,0,5,22,85,6,2,111,7,3,278,0,15,0,0,422,66,13,6,0,64,442,0,0,0,1,507,0,3,1,1,250,1,0,0,1,505,1,0,0,115,232,0,74,76,6,4,501,3,0,0,2,1,0,5,120,7,365,10,0,0,182,58,67,26,172,1,0,0,0,1,0,0,763,6.645833333333333,22.508333333333333,6.8125,23.075,1.0019723865877712,1.8678500986193292,0.8382642998027613,508,251,1320,40,328,9,27,50,4,48,6,4,1,0,6,14,5,4,6,2,5,440,1870,0,59,2251,0,179,2131,0,1662,648,0,958,1352,0,890,68,804,548,0,549,15,47,0,124,143,183,144,155,270,0,1,0,111,103,127,71,73,150,1,1,7,4,6,6,2,15,0,0,2,0,0,0,0,0,112,20,1654,0,1,8,10,2,623,991,10,28,37,41,7,2,2,1,25,1,0,1227,1369,27,20,2,55,0,0,10,2,165,44,4,1550,3,0,0,1592,174,0,1,2,15,0,2,0,0,2,0,9,7,8,11,49,13,2,31,2415,81,22,25,22,11,8,2,5,1,1,0,0,0,0,3,61.0,79.0,69.0,77.0,88.0,88.0,74.0,89.0,96.0,89.0,93.0,81.0,80.0,62.0,88.0,62.0,55.0,67.0,57.0,58.0,39.0,47.0,36.0,45.0,36.0,41.0,19.0,32.0,20.0,30.0,24.0,25.0,32.0,34.0,33.0,24.0,20.0,29.0,17.0,25.0,24.0,19.0,31.0,29.0,20.0,20.0,15.0,14.0,18.0,20.0,17.0,11.0,15.0,12.0,12.0,14.0,12.0,6.0,14.0,15.0,14.0,7.0,15.0,10.0,4.0,12.0,10.0,9.0,5.0,4.0,4.0,1.0,5.0,8.0,3.0,4.0,2.0,1.0,2.0,0.0,3.0,0.0,4.0,2.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1214,1295,87,0,374,436,404,299,203,142,148,115,123,87,67,61,50,40,21,9,11,4,1,1,0,0,2515,0,0,81,0,2515,0,0,81,0,833,5,62,43,61,8,375,1209,0,2335,261,0,0,3,2588,2,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,3,2591,0,7,10,1,1,0,2577,0,2.918324607329843,0.0,4.476102941176471,0.0,4.121340523882897,0,0,0,0,0,0,0,508,0,249,49,56,61,45,21,9,8,5,3,1,0,0,0,0,1,197,311,19,489,14,494,181,327,8,500,3,505,65,443,3,505,105,403,15,493,6,9,6,502,46,462,6,502,320,188,223,285,19,489,76,251,180,1,0,265,243,0,0,507,0,0,0,0,0,0,0,0,1,0,2.4153543307086616,2.69488188976378,0.0,1.2857142857142858,1.2857142857142858,45.20669291338583 +,120315,Comarca Ngäbe-Buglé,Müna,Kikari,577,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,324,59,298,28,19,1,0,39,0,111,34,4,91,5,4,132,0,4,0,0,347,20,15,2,1,96,287,0,1,0,1,385,0,0,0,0,193,0,0,0,0,384,1,0,0,76,114,3,36,125,25,6,377,1,1,0,3,2,1,3,163,3,213,3,0,0,82,5,56,5,232,0,2,0,0,1,2,0,578,4.218390804597701,5.839080459770115,6.908045977011494,23.2183908045977,1.0,2.727272727272727,1.6181818181818182,385,187,921,30,311,20,32,36,5,54,7,6,1,0,4,6,2,0,7,0,0,659,1118,0,64,1713,0,396,1381,0,1455,322,0,774,1003,0,769,5,753,250,0,251,31,44,0,82,83,117,98,98,211,0,0,0,101,107,137,54,90,179,0,1,15,18,19,11,13,15,1,0,1,0,0,0,0,0,300,4,1146,0,3,0,0,9,495,602,12,28,63,80,23,5,15,1,117,0,0,938,1057,33,91,4,156,0,0,19,1,109,60,2,874,2,0,0,1177,247,0,0,3,22,0,1,0,0,1,3,13,5,7,40,104,59,5,67,1669,98,42,33,59,39,29,7,10,7,0,0,0,0,0,2,51.0,51.0,51.0,65.0,46.0,51.0,57.0,63.0,50.0,60.0,61.0,57.0,38.0,60.0,65.0,51.0,55.0,62.0,50.0,44.0,38.0,40.0,31.0,38.0,28.0,25.0,16.0,28.0,22.0,18.0,32.0,28.0,15.0,20.0,10.0,19.0,18.0,16.0,22.0,11.0,16.0,19.0,16.0,23.0,21.0,17.0,18.0,20.0,11.0,18.0,13.0,11.0,11.0,8.0,9.0,11.0,12.0,6.0,6.0,5.0,13.0,8.0,7.0,11.0,10.0,5.0,5.0,8.0,4.0,4.0,6.0,5.0,4.0,3.0,12.0,9.0,3.0,9.0,6.0,3.0,2.0,2.0,0.0,6.0,1.0,5.0,0.0,2.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,826,1057,112,0,264,281,281,262,175,109,105,86,95,84,52,40,49,26,30,30,11,9,4,0,2,0,1918,1,0,76,0,1918,1,0,76,0,593,4,127,62,47,14,325,823,0,1874,121,0,0,1,1990,1,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,3,1991,0,18,23,11,0,0,1943,0,2.59514687100894,0.0,4.07847533632287,0.0,5.349874686716792,1,0,0,0,0,0,1,383,0,93,25,33,50,69,43,20,20,22,5,2,2,1,0,0,0,202,183,29,356,13,372,162,223,25,360,2,383,30,355,5,380,143,242,24,361,13,11,14,371,38,347,5,380,219,166,127,258,5,380,63,153,168,1,0,182,203,0,0,384,0,0,0,0,0,0,0,0,1,0,2.4363636363636365,2.7454545454545456,1.0,1.0,1.0,48.6961038961039 +,120316,Comarca Ngäbe-Buglé,Müna,Mreeni,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,269,145,251,20,116,3,0,24,2,19,0,4,78,6,7,296,1,5,0,0,376,23,13,4,0,25,389,0,0,0,2,416,4,156,3,0,61,10,0,0,2,410,4,0,0,42,48,12,292,10,8,4,402,0,6,0,8,0,0,1,34,2,375,4,0,0,171,43,27,98,73,0,0,0,0,4,0,0,650,5.813084112149533,17.55607476635514,6.878504672897196,23.317757009345797,1.0,2.2572115384615383,1.1610576923076923,416,207,1037,43,390,19,25,35,2,46,4,2,12,0,6,12,4,3,2,2,6,610,1349,0,101,1858,0,458,1501,0,1522,437,0,906,1053,0,904,2,661,392,0,396,33,38,2,95,101,110,96,112,191,0,3,0,87,96,130,59,104,196,0,1,29,14,9,15,13,25,3,0,1,0,0,0,0,0,67,9,1470,0,3,0,5,3,614,791,14,48,51,8,5,0,2,1,7,0,0,1110,1128,30,26,0,13,1,1,3,0,66,29,1,1646,40,0,0,1240,270,0,0,0,34,1,1,0,0,0,1,12,11,5,16,8,6,2,15,2083,48,11,9,15,11,10,0,4,5,2,0,0,0,0,40,67.0,79.0,54.0,79.0,70.0,69.0,74.0,62.0,77.0,61.0,63.0,73.0,50.0,57.0,67.0,58.0,65.0,54.0,53.0,62.0,31.0,45.0,29.0,24.0,33.0,34.0,19.0,29.0,19.0,24.0,25.0,26.0,21.0,21.0,19.0,16.0,16.0,22.0,28.0,19.0,16.0,17.0,16.0,16.0,13.0,14.0,17.0,15.0,16.0,10.0,18.0,13.0,14.0,14.0,14.0,11.0,10.0,7.0,11.0,13.0,10.0,5.0,7.0,16.0,13.0,12.0,12.0,8.0,8.0,6.0,9.0,10.0,1.0,6.0,3.0,6.0,2.0,5.0,1.0,2.0,4.0,2.0,5.0,4.0,2.0,2.0,2.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1002,1118,118,0,349,343,310,292,162,125,112,101,78,72,73,52,51,46,29,16,17,8,1,1,0,0,2166,1,0,71,0,2166,1,0,71,0,594,0,65,121,47,15,398,998,0,1506,730,2,0,1,2217,8,0,0,0,0,0,0,1,11,0,1,20,3,0,0,0,3,2211,0,19,58,3,0,0,2158,0,3.050761421319797,0.0,4.455823293172691,0.0,4.952636282394995,0,2,2,0,0,0,0,412,0,267,35,26,25,22,14,10,2,2,6,3,0,0,0,0,4,178,238,7,409,7,409,206,210,9,407,1,415,77,339,3,413,175,241,8,408,6,2,15,401,88,328,3,413,236,180,158,258,14,402,40,186,180,10,0,223,193,0,0,407,3,0,0,0,0,0,0,1,5,0,2.668269230769231,2.7115384615384617,0.0,1.0,1.0,47.82692307692308 +,120401,Comarca Ngäbe-Buglé,Nole Duima,Cerro Iglesias,1390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,968,136,783,205,14,18,0,90,14,362,7,5,182,7,21,479,0,61,0,0,1010,68,42,4,0,394,708,1,0,1,20,1124,14,53,8,1,183,7,0,0,2,1117,5,0,0,142,525,3,87,340,8,19,1057,1,1,0,12,51,2,11,151,12,914,34,2,0,607,22,13,19,439,2,1,0,0,18,3,0,1390,4.179650238473768,8.014308426073132,6.6852146263910965,23.05723370429253,1.0044483985765125,2.596085409252669,1.49288256227758,1129,573,2761,98,933,22,46,48,4,119,9,6,25,0,43,85,24,16,13,10,20,1770,3302,0,269,4803,0,558,4514,0,4011,1061,0,2057,3015,0,1961,96,2230,785,0,794,73,133,12,245,262,255,294,291,663,2,2,0,233,270,387,161,222,506,3,6,41,41,37,41,38,44,8,6,2,0,0,0,0,0,1290,115,2631,0,8,37,43,30,1209,1241,95,56,280,417,69,36,44,5,489,8,3,2855,2918,124,267,38,660,68,4,187,3,338,181,22,2395,154,0,0,3263,662,0,6,9,83,11,2,0,0,3,13,64,23,17,154,591,246,16,278,4441,367,154,149,223,108,98,22,27,19,9,0,1,1,0,154,184.0,175.0,189.0,153.0,176.0,210.0,177.0,171.0,145.0,157.0,174.0,139.0,123.0,146.0,169.0,158.0,129.0,132.0,125.0,113.0,132.0,112.0,93.0,110.0,74.0,81.0,94.0,64.0,91.0,65.0,66.0,60.0,62.0,52.0,68.0,49.0,53.0,44.0,53.0,57.0,45.0,43.0,47.0,33.0,37.0,37.0,38.0,47.0,41.0,42.0,37.0,44.0,28.0,27.0,38.0,42.0,31.0,32.0,18.0,32.0,24.0,18.0,29.0,27.0,24.0,23.0,15.0,20.0,13.0,11.0,19.0,13.0,25.0,17.0,13.0,10.0,10.0,10.0,7.0,10.0,13.0,5.0,15.0,2.0,2.0,8.0,4.0,2.0,3.0,1.0,2.0,1.0,4.0,2.0,0.0,2.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2488,2998,287,0,877,860,751,657,521,395,308,256,205,205,174,155,122,82,87,47,37,18,9,5,2,0,5549,1,0,223,0,5549,1,0,223,0,1654,27,269,267,120,22,932,2482,0,4555,1212,6,0,3,5726,18,0,0,0,4,0,0,0,22,0,1,2,6,1,0,0,8,5755,0,111,241,23,6,2,5390,0,2.9752851711026618,0.0,4.202049780380674,0.0,5.154339165078815,0,0,3,0,0,0,1,1125,0,205,88,121,146,187,142,84,43,55,24,13,7,6,0,1,7,718,411,167,962,104,1025,571,558,106,1023,5,1124,366,763,38,1091,556,573,140,989,51,89,72,1057,169,960,29,1100,695,434,497,632,36,1093,118,527,472,12,0,571,558,0,1,1113,6,0,0,0,1,0,0,0,8,0,2.528786536758193,2.58458813108946,0.0,1.0384615384615383,1.0384615384615383,48.01505757307352 +,120402,Comarca Ngäbe-Buglé,Nole Duima,Hato Chamí,1482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,703,123,719,144,22,52,0,45,4,318,2,2,117,2,37,503,2,3,0,0,825,102,46,12,1,265,704,2,0,0,15,986,1,51,7,3,433,1,0,0,0,974,11,1,0,89,320,7,189,137,238,6,959,1,8,0,6,9,3,2,344,11,597,28,4,0,644,7,79,9,208,0,9,0,0,29,1,0,1482,5.285714285714286,15.2073732718894,6.7695852534562215,21.61136712749616,1.0,2.0922920892494927,1.054766734279919,986,506,2501,76,884,20,47,60,9,113,4,6,6,0,37,29,12,9,16,4,20,1508,3003,0,179,4332,0,600,3911,0,3313,1198,0,1906,2605,0,1876,30,1665,940,0,944,48,128,17,182,242,264,277,249,511,1,0,0,210,230,359,135,162,436,0,1,7,24,15,23,14,28,2,0,2,0,0,0,0,0,1328,28,2201,0,6,12,1,7,1077,981,62,74,220,256,26,14,36,1,801,0,0,2550,2668,100,178,15,728,9,2,322,0,236,158,12,2244,118,0,0,3005,488,0,0,7,53,2,2,0,0,0,6,33,22,20,93,807,185,13,177,4258,259,164,126,110,67,63,18,21,12,1,0,1,0,0,118,170.0,189.0,180.0,168.0,180.0,177.0,186.0,140.0,143.0,128.0,172.0,149.0,144.0,133.0,146.0,157.0,137.0,138.0,94.0,99.0,95.0,81.0,81.0,80.0,76.0,76.0,52.0,43.0,63.0,50.0,55.0,56.0,55.0,53.0,44.0,48.0,56.0,45.0,50.0,30.0,51.0,41.0,56.0,43.0,36.0,43.0,19.0,27.0,38.0,34.0,29.0,32.0,30.0,27.0,17.0,15.0,23.0,19.0,24.0,23.0,19.0,18.0,21.0,25.0,26.0,25.0,16.0,16.0,17.0,16.0,18.0,16.0,20.0,19.0,7.0,16.0,4.0,6.0,2.0,2.0,5.0,5.0,8.0,7.0,7.0,5.0,4.0,4.0,2.0,2.0,1.0,3.0,1.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2405,2550,263,0,887,774,744,625,413,284,263,229,227,161,135,104,109,90,80,30,32,17,8,2,4,0,4998,1,1,218,0,4998,1,1,218,0,1578,17,215,163,110,4,730,2401,0,3827,1384,7,0,4,5164,29,0,0,0,0,0,0,0,21,0,3,0,0,0,0,0,4,5211,0,72,122,4,3,1,5016,0,3.185085836909871,0.0,4.3608074011774605,0.0,4.531046377922576,0,0,0,0,0,0,1,985,0,290,61,94,122,125,100,71,34,40,18,6,2,3,1,0,19,614,372,83,903,80,906,541,445,23,963,5,981,228,758,25,961,453,533,109,877,28,81,36,950,49,937,14,972,661,325,465,521,36,950,99,447,436,4,0,521,465,0,0,976,4,0,0,0,0,0,0,0,6,0,2.586206896551724,2.7058823529411766,1.5,1.0566037735849056,1.0566037735849056,47.34077079107505 +,120403,Comarca Ngäbe-Buglé,Nole Duima,Jädeberi,568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,278,82,242,42,7,56,0,17,2,0,0,7,161,6,3,187,0,2,0,0,304,50,6,6,0,56,306,1,0,0,3,366,0,32,2,0,167,1,0,0,1,360,5,0,0,13,142,1,191,16,0,3,356,1,0,0,0,9,0,1,34,0,315,16,0,0,237,1,0,0,126,1,0,0,0,1,0,0,568,6.491596638655462,22.789915966386555,6.978991596638656,23.899159663865547,1.0,1.4617486338797814,0.4371584699453552,366,200,1082,31,421,15,36,87,3,48,6,5,13,0,11,14,6,1,4,0,2,623,1362,0,39,1946,0,91,1894,0,1301,684,0,789,1196,0,778,11,661,535,0,536,22,42,0,99,110,93,133,124,220,0,0,0,87,92,133,53,55,155,0,0,5,9,5,1,3,7,1,0,0,0,0,0,0,0,531,3,985,0,0,0,2,3,472,452,29,29,62,41,29,2,12,1,385,0,0,1112,1201,30,74,2,242,0,4,180,0,46,55,5,1214,50,0,0,1333,174,0,0,1,10,1,0,0,0,0,3,11,7,8,30,351,41,5,78,2005,88,55,34,24,15,24,3,10,1,4,0,0,0,0,50,77.0,76.0,97.0,78.0,83.0,74.0,79.0,84.0,85.0,61.0,87.0,75.0,61.0,61.0,69.0,83.0,54.0,49.0,43.0,52.0,35.0,36.0,41.0,32.0,33.0,41.0,24.0,20.0,19.0,20.0,24.0,12.0,22.0,17.0,24.0,18.0,19.0,16.0,22.0,14.0,21.0,14.0,22.0,19.0,15.0,10.0,10.0,20.0,15.0,14.0,23.0,16.0,8.0,14.0,7.0,8.0,3.0,10.0,10.0,11.0,6.0,5.0,7.0,9.0,10.0,4.0,1.0,9.0,6.0,4.0,1.0,7.0,9.0,10.0,5.0,5.0,1.0,5.0,1.0,0.0,5.0,4.0,4.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1147,1077,89,0,411,383,353,281,177,124,99,89,91,69,68,42,37,24,32,12,16,1,2,1,1,0,2192,1,1,119,0,2192,1,1,119,0,695,6,51,41,59,2,313,1146,0,1625,670,18,0,0,2297,3,0,0,0,0,0,1,0,12,0,1,0,0,0,0,0,2,2310,0,12,37,2,1,0,2261,0,3.2832512315270934,0.0,4.797938144329897,0.0,3.927799394725465,0,0,0,0,0,0,1,365,0,114,36,46,46,48,25,17,14,8,3,3,3,1,0,0,2,176,190,3,363,3,363,223,143,2,364,0,366,106,260,4,362,123,243,3,363,2,1,3,363,10,356,5,361,306,60,297,69,6,360,29,136,188,13,0,238,128,0,0,363,1,0,0,0,0,0,0,0,2,0,3.0382513661202184,3.2814207650273226,0.0,1.0666666666666669,1.0666666666666669,48.10109289617486 +,120404,Comarca Ngäbe-Buglé,Nole Duima,Lajero,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,660,55,558,112,9,1,0,40,5,3,1,4,267,4,9,396,3,38,0,0,647,40,31,6,1,223,493,1,1,0,7,725,6,22,2,1,95,15,0,0,1,716,8,0,0,72,319,5,47,253,6,23,672,2,0,0,13,38,0,3,96,18,594,14,0,0,355,6,21,21,309,0,1,0,0,11,1,0,866,3.6454293628808863,7.831024930747922,6.894736842105263,23.371191135734072,1.0179310344827586,2.122758620689656,1.0358620689655171,738,377,1808,64,560,11,45,50,2,80,8,9,6,1,14,14,6,8,9,13,14,1213,2103,0,164,3152,0,290,3026,0,2763,553,0,1401,1915,0,1375,26,1482,433,0,444,46,90,2,151,193,188,176,179,442,3,2,0,152,189,216,104,211,341,0,1,33,36,17,32,24,41,2,1,0,0,0,0,0,0,987,49,1591,0,8,7,7,10,762,720,39,60,176,352,74,24,35,2,364,1,0,1848,1911,73,201,27,564,27,1,134,1,221,105,15,1184,59,0,0,2099,474,0,1,3,47,3,0,0,0,1,7,35,13,14,124,412,229,21,180,2805,223,186,137,149,90,54,18,22,11,3,0,2,0,0,59,105.0,125.0,110.0,103.0,136.0,127.0,114.0,124.0,106.0,82.0,99.0,103.0,76.0,87.0,103.0,104.0,81.0,110.0,79.0,101.0,83.0,66.0,81.0,56.0,69.0,56.0,56.0,42.0,46.0,46.0,44.0,48.0,35.0,22.0,41.0,31.0,33.0,33.0,27.0,35.0,26.0,34.0,28.0,28.0,31.0,26.0,24.0,23.0,35.0,27.0,27.0,23.0,20.0,27.0,15.0,27.0,15.0,25.0,16.0,14.0,14.0,11.0,19.0,14.0,19.0,9.0,8.0,10.0,14.0,10.0,11.0,6.0,8.0,6.0,9.0,7.0,12.0,3.0,4.0,3.0,10.0,3.0,7.0,3.0,4.0,4.0,2.0,3.0,2.0,2.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1600,1993,166,0,579,553,468,475,355,246,190,159,147,135,112,97,77,51,40,29,27,13,6,0,0,0,3620,0,4,135,0,3620,0,4,135,0,1027,9,149,195,78,14,689,1598,0,2947,805,7,0,4,3704,9,0,0,0,1,0,0,1,40,0,3,10,19,1,0,0,6,3720,0,77,157,9,2,0,3514,0,2.9293233082706767,0.0,4.334123222748815,0.0,5.394785847299814,0,3,4,1,0,0,2,728,0,106,46,54,108,128,107,68,37,39,25,9,3,4,1,0,3,487,251,21,717,6,732,396,342,12,726,2,736,142,596,3,735,386,352,17,721,6,11,24,714,18,720,8,730,479,259,424,314,35,703,77,344,311,6,0,392,346,0,1,727,1,0,0,0,0,0,0,1,8,0,2.5040650406504064,2.589430894308943,0.0,1.1025641025641026,1.1025641025641026,46.76422764227642 +,120405,Comarca Ngäbe-Buglé,Nole Duima,Susama,1100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,620,85,487,155,9,29,0,45,2,324,2,5,44,4,9,336,2,1,0,0,648,31,36,12,0,287,417,0,0,0,23,727,8,76,12,3,262,12,0,0,6,707,13,1,0,192,265,1,76,125,58,10,700,1,1,0,5,19,1,18,247,5,446,11,0,0,330,6,33,104,222,0,27,0,1,4,0,0,1100,3.619047619047619,9.422619047619047,5.3125,17.154761904761905,1.0027510316368635,2.3108665749656123,1.1444291609353507,729,359,1664,47,621,17,38,52,3,92,4,7,13,0,7,15,2,8,17,0,1,1306,1853,0,236,2923,0,498,2661,0,2432,727,0,1333,1826,0,1300,33,1277,549,0,554,42,97,1,165,157,149,167,153,411,1,0,0,141,174,246,111,116,319,0,5,22,18,15,15,11,57,9,0,3,0,0,0,0,0,795,40,1674,0,9,18,10,16,792,778,36,52,229,134,40,25,18,0,370,0,1,1732,1914,135,127,27,326,49,3,146,4,62,86,7,1898,107,0,0,2035,390,0,7,0,65,9,3,0,0,4,11,55,20,18,75,391,91,16,154,2849,190,88,72,112,81,70,28,19,23,2,4,0,0,1,107,131.0,116.0,122.0,118.0,114.0,123.0,114.0,111.0,105.0,83.0,109.0,75.0,108.0,87.0,112.0,90.0,100.0,73.0,72.0,89.0,69.0,62.0,65.0,62.0,43.0,45.0,49.0,46.0,51.0,44.0,37.0,40.0,41.0,26.0,29.0,41.0,23.0,39.0,31.0,33.0,38.0,27.0,33.0,32.0,28.0,23.0,20.0,30.0,29.0,24.0,29.0,16.0,21.0,23.0,16.0,18.0,18.0,20.0,11.0,18.0,25.0,13.0,15.0,23.0,11.0,15.0,10.0,10.0,11.0,10.0,11.0,5.0,13.0,10.0,8.0,5.0,5.0,3.0,4.0,5.0,3.0,3.0,4.0,2.0,1.0,2.0,1.0,4.0,0.0,2.0,2.0,1.0,2.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1628,1861,157,0,601,536,491,424,301,235,173,167,158,126,105,85,87,56,47,22,13,9,8,1,1,0,3474,1,0,171,0,3474,1,0,171,0,1077,8,113,151,67,4,600,1626,0,2534,1110,2,0,4,3590,25,0,0,0,0,0,0,0,27,0,2,7,4,0,0,0,5,3628,0,100,151,16,0,0,3379,0,2.974814814814815,0.0,4.194865810968495,0.0,4.97970378496983,2,2,2,0,0,0,2,721,0,200,73,56,69,81,73,57,33,35,20,8,8,6,1,1,8,491,238,173,556,123,606,354,375,125,604,5,724,184,545,14,715,405,324,116,613,51,65,62,667,32,697,21,708,419,310,307,422,44,685,100,312,305,12,0,343,386,0,1,710,11,0,0,0,0,0,0,0,7,0,2.375857338820302,2.625514403292181,0.0,1.0625,1.0625,46.59533607681756 +,120501,Comarca Ngäbe-Buglé,Ñürüm,Buenos Aires,375,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,16,238,15,221,33,2,0,0,11,2,0,0,5,113,3,43,103,0,2,0,0,178,5,84,2,0,71,197,0,1,0,0,269,0,50,20,16,29,0,0,0,1,263,5,0,0,67,27,156,19,0,0,0,267,1,0,1,0,0,0,5,80,0,182,2,0,0,219,0,0,10,30,0,9,0,0,1,0,0,384,6.698630136986301,22.442922374429223,7.0,24.0,1.003717472118959,2.45724907063197,1.3568773234200744,270,156,578,18,96,7,7,11,1,21,4,4,4,0,7,2,1,0,1,0,3,454,598,0,69,983,0,419,633,0,916,136,0,406,646,0,381,25,548,98,0,99,24,13,1,44,46,48,55,66,99,0,0,0,50,73,99,27,71,167,0,0,8,9,17,13,8,14,1,0,0,0,0,0,0,0,481,4,387,0,0,2,2,9,220,148,3,7,82,105,27,7,20,0,242,1,0,585,592,54,26,8,292,2,0,102,0,76,37,2,352,0,0,0,635,196,0,0,8,32,1,0,0,0,0,6,19,7,13,43,241,95,15,46,939,67,42,27,29,27,23,6,6,5,4,0,2,0,0,0,25.0,32.0,42.0,26.0,36.0,29.0,25.0,36.0,28.0,26.0,37.0,30.0,24.0,32.0,27.0,17.0,36.0,21.0,26.0,21.0,25.0,18.0,28.0,15.0,26.0,17.0,14.0,13.0,13.0,19.0,11.0,16.0,12.0,13.0,15.0,11.0,15.0,11.0,7.0,6.0,15.0,9.0,16.0,14.0,11.0,7.0,8.0,9.0,10.0,14.0,8.0,8.0,8.0,12.0,11.0,4.0,9.0,10.0,8.0,12.0,5.0,4.0,7.0,13.0,4.0,5.0,5.0,2.0,5.0,4.0,6.0,1.0,3.0,2.0,3.0,7.0,2.0,4.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,455,662,60,0,161,144,150,121,112,76,67,50,65,48,47,43,33,21,15,15,5,3,1,0,0,0,1169,2,0,6,0,1169,2,0,6,0,240,1,59,171,29,1,221,455,0,1094,82,1,0,0,402,704,0,0,1,0,0,0,0,70,0,0,0,1,0,0,0,0,1176,0,55,94,9,2,0,1017,0,2.6882217090069283,0.0,4.186567164179104,0.0,6.290569243840272,0,0,0,0,0,0,0,270,0,51,21,39,41,36,18,20,13,13,9,6,1,2,0,0,0,147,123,6,264,7,263,44,226,3,267,0,270,107,163,1,269,116,154,29,241,25,4,16,254,12,258,10,260,217,53,213,57,16,254,37,152,77,4,0,184,86,0,0,86,169,0,0,0,0,0,0,0,15,0,2.1666666666666665,2.1925925925925926,3.0,1.0,1.0,47.596296296296295 +,120502,Comarca Ngäbe-Buglé,Ñürüm,Agua de Salud,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,374,76,311,64,44,0,1,30,1,0,0,0,86,6,9,350,0,0,0,0,206,77,159,7,2,23,419,0,0,0,9,451,1,86,19,0,57,9,0,0,0,450,1,0,0,15,4,419,2,11,0,0,438,0,1,2,0,10,0,1,9,0,437,4,0,0,168,1,2,0,203,1,75,0,0,1,0,0,623,6.414201183431953,15.384615384615383,7.0,23.92899408284024,1.0022172949002215,2.1130820399113084,1.0509977827050998,452,292,1334,37,171,26,13,25,6,27,3,7,11,0,5,8,5,0,6,0,0,586,1474,0,27,2033,0,293,1767,0,1451,609,0,846,1214,0,842,4,803,411,0,414,33,90,1,90,148,174,118,132,318,0,0,0,95,124,149,31,37,89,0,0,5,2,1,6,0,2,0,0,1,0,0,0,0,0,932,17,628,0,0,13,2,0,345,232,13,38,126,26,4,7,1,0,783,0,0,1220,1184,19,131,10,394,0,0,393,0,118,50,9,994,0,0,0,1471,98,0,0,0,7,0,1,0,0,0,4,4,7,5,13,754,35,0,127,2170,59,24,24,88,20,10,5,2,2,0,0,0,0,0,0,72.0,94.0,80.0,98.0,81.0,84.0,81.0,72.0,87.0,78.0,87.0,71.0,71.0,67.0,72.0,60.0,48.0,53.0,47.0,46.0,55.0,38.0,34.0,43.0,27.0,24.0,26.0,25.0,21.0,24.0,30.0,32.0,26.0,23.0,29.0,14.0,22.0,17.0,18.0,16.0,25.0,19.0,28.0,18.0,14.0,24.0,12.0,17.0,9.0,16.0,12.0,9.0,10.0,12.0,4.0,8.0,10.0,7.0,13.0,9.0,11.0,9.0,11.0,10.0,11.0,2.0,9.0,5.0,7.0,3.0,0.0,2.0,8.0,2.0,4.0,7.0,4.0,4.0,2.0,4.0,1.0,2.0,1.0,3.0,0.0,0.0,5.0,3.0,0.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1195,1126,83,0,425,402,368,254,197,120,140,87,104,78,47,47,52,26,16,21,7,9,4,0,0,0,2365,0,0,39,0,2365,0,0,39,0,575,7,84,159,55,2,329,1193,0,2380,24,0,0,0,118,2231,0,0,0,0,0,0,0,55,0,0,1,8,0,0,0,4,2391,0,19,20,0,0,0,2365,0,3.3201581027667983,0.0,4.798283261802575,0.0,3.740016638935108,0,0,1,0,0,0,0,451,0,136,31,60,65,75,47,15,11,8,3,1,0,0,0,0,0,101,351,4,448,4,448,181,271,1,451,1,451,174,278,3,449,153,299,3,449,0,3,1,451,14,438,5,447,431,21,418,34,24,428,49,256,136,11,0,328,124,0,0,22,423,0,0,0,0,0,0,0,7,0,2.699115044247788,2.6194690265486726,0.0,1.1071428571428572,1.1071428571428572,42.75221238938053 +,120503,Comarca Ngäbe-Buglé,Ñürüm,Alto de Jesús,252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,177,13,177,3,5,0,0,8,0,91,0,0,29,1,2,70,0,0,0,0,172,6,15,0,0,62,131,0,0,0,0,193,0,27,3,0,25,4,0,0,0,187,6,0,0,70,8,9,56,50,0,0,193,0,0,0,0,0,0,0,106,0,87,0,0,1,67,0,0,16,108,0,1,0,0,0,0,0,253,3.323529411764706,4.0,6.029411764705882,13.897058823529411,1.0,2.8134715025906734,1.7253886010362691,194,118,405,24,117,3,13,16,3,18,1,0,7,1,17,4,3,4,2,0,4,381,446,0,99,728,0,196,631,0,677,150,0,320,507,0,317,3,401,106,0,106,17,26,1,24,33,46,28,24,138,0,0,0,24,43,84,31,32,99,0,0,13,16,9,18,9,5,0,0,1,0,0,0,0,0,318,9,353,0,0,7,2,3,190,105,11,44,56,12,10,6,3,0,238,0,0,505,415,44,17,6,136,0,0,122,0,70,52,5,357,0,0,0,510,143,0,0,2,24,0,1,0,0,0,1,17,10,3,17,234,23,5,17,747,57,22,20,21,10,20,5,11,3,2,0,2,0,0,0,24.0,17.0,25.0,27.0,32.0,28.0,21.0,20.0,20.0,26.0,21.0,19.0,22.0,21.0,17.0,23.0,28.0,15.0,16.0,22.0,21.0,9.0,23.0,17.0,11.0,20.0,9.0,15.0,6.0,20.0,15.0,8.0,6.0,15.0,12.0,5.0,3.0,6.0,10.0,10.0,9.0,8.0,12.0,3.0,12.0,6.0,13.0,3.0,8.0,7.0,6.0,6.0,6.0,9.0,3.0,5.0,6.0,11.0,4.0,6.0,5.0,6.0,6.0,6.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,1.0,2.0,3.0,5.0,2.0,4.0,2.0,2.0,3.0,4.0,1.0,2.0,1.0,3.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,340,515,65,0,125,115,100,104,81,70,56,34,44,37,30,32,27,20,14,13,11,5,1,1,0,0,907,0,0,13,0,907,0,0,13,0,240,4,29,77,28,2,200,340,0,644,276,0,0,0,827,8,0,0,0,0,0,0,1,84,0,0,2,25,1,0,0,41,851,0,51,108,4,0,0,757,0,3.229773462783172,0.0,4.6716417910447765,0.0,5.961956521739131,0,0,7,0,0,0,11,176,0,37,10,21,27,34,19,15,9,10,3,5,0,3,0,0,0,127,67,41,153,25,169,69,125,22,172,1,193,69,125,1,193,125,69,41,153,10,31,28,166,63,131,7,187,152,42,73,121,1,193,30,93,64,7,0,143,51,0,0,166,2,0,0,0,0,0,0,0,26,0,2.6030927835051547,2.1391752577319587,0.0,1.1428571428571428,1.1428571428571428,50.54639175257732 +,120504,Comarca Ngäbe-Buglé,Ñürüm,Cerro Pelado,529,416,0,1,0,0,0,0,0,0,0,0,0,0,0,0,63,554,60,535,82,20,0,0,40,0,262,13,5,119,3,54,218,0,3,0,0,625,20,31,0,1,263,412,0,0,0,2,677,0,152,26,8,53,30,0,0,0,666,11,0,0,213,84,2,250,84,44,0,671,0,0,0,0,6,0,6,342,0,328,1,0,0,388,11,0,0,270,0,2,0,0,5,1,0,946,4.7669172932330826,13.208020050125311,6.954887218045113,23.847117794486216,1.0073855243722305,2.8020679468242244,1.6986706056129983,682,392,1666,24,352,27,30,25,11,54,6,7,2,0,19,26,11,6,9,1,4,1275,1631,0,149,2757,0,788,2118,0,2395,511,0,1201,1705,0,1196,5,1340,365,0,375,77,61,1,106,143,141,175,155,463,0,0,0,110,170,197,100,146,311,3,2,26,34,27,45,15,19,3,1,0,0,0,0,0,0,755,103,1499,0,13,52,27,14,691,657,18,119,175,41,49,15,10,0,529,0,0,1683,1595,83,139,15,207,5,0,370,0,180,130,18,1491,332,0,0,1869,398,0,2,6,81,1,0,0,0,0,9,34,23,16,48,515,60,8,145,2404,250,83,40,50,47,26,13,16,11,5,0,1,0,0,332,91.0,95.0,85.0,101.0,96.0,94.0,96.0,91.0,96.0,76.0,90.0,87.0,74.0,69.0,101.0,84.0,73.0,82.0,70.0,68.0,65.0,57.0,55.0,42.0,33.0,44.0,45.0,44.0,41.0,31.0,43.0,22.0,37.0,36.0,34.0,37.0,24.0,31.0,40.0,34.0,26.0,31.0,25.0,35.0,22.0,24.0,23.0,28.0,27.0,24.0,23.0,25.0,11.0,24.0,17.0,14.0,20.0,15.0,19.0,19.0,20.0,17.0,14.0,21.0,19.0,7.0,12.0,11.0,17.0,5.0,10.0,15.0,10.0,14.0,17.0,12.0,9.0,6.0,9.0,2.0,8.0,6.0,4.0,6.0,5.0,8.0,5.0,7.0,5.0,2.0,2.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1342,1715,221,0,468,453,421,377,252,205,172,166,139,126,100,87,91,52,66,38,29,27,8,1,0,0,3237,3,0,38,0,3237,3,0,38,0,856,12,116,234,85,2,632,1341,0,2584,694,0,0,0,2739,55,0,0,0,1,0,0,1,482,0,1,14,318,1,0,0,27,2917,0,112,279,14,1,1,2871,0,3.107692307692308,0.0,4.696644295302013,0.0,5.487492373398414,0,1,73,0,0,0,7,601,0,230,55,46,75,92,59,30,21,26,11,5,5,3,0,0,24,441,241,121,561,121,561,159,523,94,588,6,676,240,442,8,674,396,286,140,542,57,83,43,639,227,455,24,658,482,200,455,227,7,675,70,370,240,2,0,425,257,0,0,553,12,0,0,0,0,0,0,0,117,0,2.467741935483871,2.338709677419355,0.0,1.121212121212121,1.121212121212121,48.64222873900293 +,120505,Comarca Ngäbe-Buglé,Ñürüm,El Bale,335,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,192,36,190,19,15,0,0,21,0,59,0,1,73,3,3,105,1,0,0,0,213,14,17,1,0,77,166,0,0,0,2,245,0,1,6,0,92,8,0,0,0,239,6,0,0,106,26,74,32,6,1,0,245,0,0,0,0,0,0,11,102,0,129,3,0,1,119,1,0,10,101,1,8,0,0,4,0,0,352,4.9421487603305785,15.074380165289256,6.950413223140496,23.694214876033055,1.0,2.608163265306122,1.563265306122449,245,158,457,18,78,4,9,13,3,15,4,1,4,0,7,4,1,6,3,0,3,450,488,0,146,792,0,298,640,0,741,197,0,349,589,0,329,20,470,119,0,125,16,33,0,38,54,68,47,42,162,0,0,0,30,68,67,20,42,95,2,0,3,1,5,8,4,6,1,0,1,0,0,0,0,0,376,13,395,0,2,8,1,0,204,156,18,17,73,12,16,5,4,0,277,0,0,537,472,30,52,7,203,0,0,95,0,75,63,10,264,2,0,0,658,107,0,0,1,16,1,1,0,0,0,3,11,8,10,33,266,19,8,31,791,90,31,31,16,12,18,7,7,2,2,0,0,0,0,2,12.0,22.0,21.0,16.0,24.0,25.0,25.0,24.0,31.0,25.0,22.0,25.0,17.0,19.0,30.0,29.0,23.0,27.0,32.0,24.0,7.0,22.0,15.0,9.0,15.0,10.0,9.0,14.0,11.0,12.0,11.0,10.0,9.0,11.0,9.0,13.0,12.0,10.0,11.0,11.0,8.0,13.0,10.0,7.0,17.0,7.0,11.0,8.0,14.0,2.0,6.0,6.0,10.0,7.0,10.0,6.0,6.0,7.0,5.0,9.0,6.0,8.0,12.0,5.0,8.0,10.0,6.0,5.0,7.0,10.0,4.0,9.0,3.0,5.0,2.0,1.0,3.0,2.0,3.0,2.0,2.0,0.0,1.0,3.0,4.0,4.0,2.0,3.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,338,574,97,0,95,130,113,135,68,56,50,57,55,42,39,33,39,38,23,11,10,12,1,2,0,0,1002,3,0,4,0,1002,3,0,4,0,206,8,60,162,22,3,210,338,0,651,355,3,0,2,55,71,0,0,0,1,0,0,1,879,0,0,0,16,5,0,0,1,987,0,49,80,2,0,0,878,0,2.912328767123288,0.0,4.651376146788991,0.0,5.32804757185332,0,0,7,2,0,0,0,236,0,39,18,33,50,49,13,13,12,11,3,1,0,3,0,0,0,172,73,43,202,52,193,26,219,35,210,4,241,167,78,4,241,130,115,59,186,49,10,20,225,48,197,13,232,215,30,187,58,5,240,40,127,76,2,0,204,41,0,0,24,17,0,0,0,0,0,0,0,204,0,2.1918367346938776,1.926530612244898,0.0,1.0,1.0,51.64081632653061 +,120506,Comarca Ngäbe-Buglé,Ñürüm,El Paredón,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,6,265,23,4,0,0,2,0,0,0,1,138,4,96,55,0,0,0,0,200,22,71,1,0,44,247,0,0,0,3,294,1,95,6,0,17,23,0,0,1,288,5,0,0,95,7,191,1,0,0,0,292,1,0,0,0,1,0,4,124,0,162,4,0,0,259,18,0,1,10,0,6,0,0,0,0,0,436,6.296028880866426,21.974729241877256,6.805054151624549,23.76173285198556,1.0,2.8537414965986394,1.5850340136054422,294,189,589,14,82,8,4,2,1,16,4,1,4,0,2,7,3,3,6,1,6,340,739,0,12,1067,0,212,867,0,849,230,0,366,713,0,365,1,588,125,0,130,20,29,1,40,70,83,64,66,229,0,1,2,45,55,131,19,25,62,0,0,0,1,0,3,2,0,0,1,0,0,0,0,0,0,350,10,542,0,0,2,5,2,211,272,16,41,54,4,11,10,4,0,276,1,0,654,554,19,51,12,227,0,0,51,0,100,58,6,354,0,0,0,831,65,2,0,0,3,1,0,0,0,0,2,7,4,5,11,271,9,2,49,1015,73,34,19,24,23,8,5,4,3,0,0,0,0,0,0,31.0,32.0,36.0,30.0,26.0,28.0,31.0,28.0,33.0,31.0,28.0,25.0,34.0,28.0,30.0,34.0,20.0,24.0,24.0,20.0,27.0,21.0,18.0,17.0,15.0,16.0,12.0,8.0,17.0,10.0,10.0,20.0,15.0,11.0,10.0,20.0,10.0,12.0,22.0,14.0,15.0,12.0,9.0,11.0,7.0,6.0,12.0,12.0,8.0,8.0,14.0,8.0,6.0,14.0,6.0,11.0,16.0,10.0,10.0,9.0,13.0,6.0,5.0,10.0,16.0,3.0,5.0,3.0,0.0,1.0,3.0,1.0,5.0,3.0,5.0,3.0,2.0,11.0,3.0,0.0,3.0,1.0,2.0,4.0,4.0,3.0,4.0,1.0,3.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,451,681,76,0,155,151,145,122,98,63,66,78,54,46,48,56,50,12,17,19,14,12,2,0,0,0,1204,0,0,4,0,1204,0,0,4,0,318,0,57,113,34,2,235,449,0,1112,96,0,0,0,563,37,0,0,0,0,0,0,52,556,0,3,63,66,0,0,0,276,800,0,25,37,2,0,0,1144,0,3.17359413202934,0.0,4.785992217898833,0.0,4.696192052980132,1,15,22,0,0,0,77,179,0,74,34,42,38,47,33,8,8,5,2,3,0,0,0,0,0,147,147,5,289,6,288,28,266,1,293,2,292,184,110,1,293,104,190,17,277,5,12,3,291,14,280,5,289,253,41,169,125,7,287,61,154,76,3,0,255,39,0,0,136,11,0,0,0,0,0,0,15,132,0,2.224489795918368,1.8843537414965987,0.0,1.0625,1.0625,50.302721088435376 +,120507,Comarca Ngäbe-Buglé,Ñürüm,El Piro,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,130,16,154,12,2,0,0,14,0,125,1,1,8,4,3,40,0,0,1,0,172,0,9,0,0,128,53,0,0,0,1,182,0,11,2,0,27,4,0,0,1,179,2,0,0,115,14,2,46,5,0,0,181,0,0,0,0,1,0,11,120,0,50,1,0,0,154,1,0,1,22,0,1,0,0,3,0,0,226,3.1548387096774198,4.070967741935484,3.806451612903226,5.612903225806452,1.010989010989011,3.2967032967032965,2.1263736263736264,184,112,353,22,73,6,9,15,2,12,2,3,9,0,8,3,6,6,5,3,2,491,243,0,244,490,0,390,344,0,621,113,0,301,433,0,296,5,351,82,0,84,15,18,2,30,35,25,29,34,107,0,0,0,19,40,38,19,33,168,0,0,3,0,3,16,11,3,0,0,2,0,0,0,0,0,242,20,346,0,0,6,13,7,167,118,12,42,85,7,23,14,3,1,113,0,0,426,376,38,47,14,130,0,0,17,0,53,58,5,242,0,0,0,402,175,0,1,1,27,0,2,0,0,0,7,18,7,3,31,113,23,6,54,565,78,34,19,39,17,12,15,14,4,3,2,0,0,0,0,21.0,14.0,13.0,20.0,22.0,18.0,20.0,25.0,21.0,20.0,21.0,18.0,18.0,15.0,22.0,8.0,19.0,14.0,23.0,13.0,22.0,14.0,13.0,11.0,9.0,11.0,7.0,6.0,13.0,9.0,5.0,8.0,14.0,8.0,11.0,9.0,8.0,8.0,9.0,9.0,12.0,6.0,14.0,8.0,10.0,5.0,6.0,5.0,8.0,5.0,4.0,7.0,7.0,3.0,11.0,4.0,3.0,4.0,5.0,7.0,5.0,5.0,4.0,3.0,3.0,5.0,5.0,6.0,4.0,2.0,1.0,2.0,5.0,1.0,5.0,7.0,4.0,3.0,0.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,3.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,288,435,79,0,90,104,94,77,69,46,46,43,50,29,32,23,20,22,14,16,11,9,4,2,1,0,793,4,1,4,0,793,4,1,4,0,224,7,56,58,21,1,147,288,0,527,272,3,0,0,668,6,0,0,0,0,0,0,2,126,0,1,1,1,0,0,0,11,788,0,65,135,8,0,0,594,0,2.950354609929078,0.0,4.294117647058823,0.0,6.344139650872818,0,0,0,0,0,0,3,181,0,31,16,18,14,24,25,16,5,16,10,3,0,3,3,0,0,153,31,79,105,88,96,39,145,74,110,1,183,73,111,1,183,151,33,84,100,75,9,41,143,95,89,10,174,114,70,77,107,4,180,30,97,50,7,0,139,45,0,0,145,4,0,0,0,0,0,0,0,35,0,2.315217391304348,2.0434782608695654,0.0,1.0,1.0,51.36413043478261 +,120508,Comarca Ngäbe-Buglé,Ñürüm,Guayabito,443,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,27,275,23,13,4,0,6,4,0,0,1,92,5,3,223,0,1,0,0,192,22,104,6,1,9,316,0,0,0,0,325,0,61,12,0,55,7,0,0,0,325,0,0,0,16,10,271,24,3,0,1,321,0,0,0,0,3,1,0,17,0,305,3,0,0,191,10,6,0,107,0,11,0,0,0,0,0,460,5.378109452736318,12.865671641791044,6.895522388059701,20.58208955223881,1.003076923076923,1.9138461538461535,0.8215384615384616,326,225,1078,27,341,19,31,40,8,60,4,1,16,0,3,8,4,2,2,1,1,551,1331,0,56,1826,0,111,1771,0,1419,463,0,805,1077,0,791,14,757,320,0,327,42,50,1,85,115,144,114,119,235,0,0,0,75,116,227,33,49,104,0,0,10,6,13,12,3,2,0,0,0,0,0,0,0,0,1062,2,395,0,0,1,1,2,268,88,5,32,37,209,0,1,0,0,816,0,0,1077,1099,22,9,1,511,0,0,520,0,10,52,6,883,9,0,0,1308,136,0,0,0,15,0,0,0,0,0,2,6,2,10,14,816,207,1,6,2044,53,42,4,4,3,10,2,4,0,1,0,0,0,0,9,63.0,68.0,86.0,77.0,74.0,74.0,72.0,66.0,71.0,66.0,72.0,61.0,76.0,47.0,77.0,70.0,49.0,52.0,40.0,34.0,37.0,36.0,27.0,29.0,28.0,22.0,25.0,21.0,19.0,18.0,17.0,16.0,19.0,29.0,20.0,18.0,21.0,19.0,21.0,21.0,16.0,18.0,10.0,22.0,21.0,20.0,13.0,19.0,12.0,15.0,12.0,17.0,15.0,16.0,14.0,5.0,11.0,11.0,13.0,12.0,9.0,5.0,11.0,10.0,8.0,8.0,6.0,4.0,5.0,4.0,2.0,2.0,6.0,3.0,9.0,6.0,6.0,3.0,3.0,1.0,5.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1050,1043,83,0,368,349,333,245,157,105,101,100,87,79,74,52,43,27,22,19,8,2,4,1,0,0,2129,0,0,47,0,2129,0,0,47,0,513,6,42,193,61,1,312,1048,0,2057,119,0,0,1,1446,707,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,1,2174,0,18,40,2,0,0,2116,0,3.2275132275132274,0.0,4.526200873362446,0.0,4.369944852941177,0,0,0,0,0,0,1,325,0,58,24,71,83,63,5,4,8,6,3,1,0,0,0,0,0,149,177,3,323,3,323,221,105,2,324,1,325,104,222,5,321,136,190,1,325,0,1,4,322,1,325,1,325,308,18,262,64,38,288,15,148,151,12,0,240,86,0,0,200,125,0,0,0,0,0,0,0,1,0,3.303680981595092,3.371165644171779,0.0,1.0,1.0,48.65644171779141 +,120509,Comarca Ngäbe-Buglé,Ñürüm,Güibale,396,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,264,16,220,45,6,0,0,9,1,0,0,1,91,1,1,187,0,0,0,0,215,5,53,8,0,16,265,0,0,0,0,281,0,99,2,1,3,11,0,0,0,278,3,0,0,20,11,242,4,4,0,0,264,1,0,0,0,16,0,0,25,0,255,1,0,0,121,66,0,0,70,0,20,0,0,4,0,0,397,6.572192513368984,21.3048128342246,6.818181818181818,22.657754010695182,1.00711743772242,2.772241992882562,1.612099644128114,283,210,764,31,131,9,10,23,0,16,1,5,1,0,18,20,6,0,7,2,7,321,949,0,17,1253,0,72,1198,0,881,389,0,488,782,0,485,3,520,262,0,263,34,39,0,53,60,75,72,83,217,0,0,0,52,70,101,34,25,81,1,1,1,2,3,2,0,1,0,0,0,0,0,0,0,0,560,1,440,0,0,0,1,1,232,157,24,26,53,4,4,6,1,1,491,1,0,751,733,18,64,6,227,1,0,245,0,5,45,2,383,9,0,0,909,87,0,1,2,2,0,0,0,0,0,3,3,2,4,14,465,5,2,63,1236,70,42,46,40,25,10,3,1,1,1,0,0,0,0,9,58.0,49.0,61.0,46.0,48.0,52.0,48.0,48.0,31.0,42.0,38.0,45.0,36.0,32.0,49.0,41.0,39.0,27.0,31.0,25.0,26.0,18.0,20.0,19.0,22.0,22.0,15.0,16.0,19.0,16.0,22.0,8.0,16.0,12.0,13.0,19.0,17.0,13.0,17.0,17.0,10.0,8.0,9.0,9.0,10.0,12.0,6.0,16.0,13.0,11.0,6.0,11.0,7.0,6.0,10.0,8.0,13.0,8.0,12.0,3.0,10.0,2.0,10.0,6.0,4.0,7.0,4.0,5.0,4.0,3.0,3.0,1.0,5.0,7.0,3.0,2.0,2.0,1.0,2.0,4.0,1.0,2.0,2.0,2.0,0.0,2.0,0.0,7.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,683,730,71,0,262,221,200,163,105,88,71,83,46,58,40,44,32,23,19,11,7,11,0,0,0,0,1457,0,0,27,0,1457,0,0,27,0,352,1,42,141,39,0,227,682,0,1343,141,0,0,0,18,1061,0,0,0,0,0,0,2,403,0,66,32,4,0,0,0,0,1382,0,15,26,1,0,0,1442,0,3.02755905511811,0.0,4.760942760942761,0.0,4.033692722371968,18,10,0,0,0,0,0,255,0,45,15,38,45,72,29,18,11,7,1,1,1,0,0,0,0,69,214,1,282,3,280,93,190,5,278,2,281,209,74,3,280,113,170,2,281,1,1,2,281,1,282,1,282,273,10,271,12,3,280,16,177,89,1,0,236,47,0,0,5,206,0,0,0,0,0,0,0,72,0,2.6537102473498235,2.590106007067138,1.0,1.0,1.0,46.74204946996466 +,120510,Comarca Ngäbe-Buglé,Ñürüm,El Peñón,640,23,0,1,0,0,0,0,0,0,0,0,2,0,0,0,4,352,56,332,24,7,0,1,47,1,44,0,11,215,2,11,128,0,1,0,0,277,35,86,10,4,73,308,0,0,0,31,412,0,23,32,0,194,3,0,0,0,408,4,0,0,83,10,286,31,1,1,0,409,0,0,0,1,2,0,1,72,5,330,4,0,0,313,23,0,0,57,0,1,0,0,18,0,0,666,5.517857142857143,14.87797619047619,6.895833333333333,23.52380952380953,1.0048543689320388,2.9781553398058254,1.854368932038835,416,252,983,17,157,9,12,12,3,27,1,7,5,0,13,5,4,3,5,0,4,606,1078,0,154,1530,0,417,1267,0,1359,325,0,693,991,0,684,9,801,190,0,194,22,52,3,78,90,110,87,94,256,0,1,0,62,96,150,53,74,210,0,2,4,12,9,14,7,2,2,0,0,0,0,0,0,0,860,19,494,0,0,13,6,2,292,149,14,37,96,28,26,8,2,2,715,0,0,969,932,40,75,8,381,0,4,369,0,147,79,11,534,9,0,0,1111,238,0,1,3,19,1,0,0,0,0,6,4,6,12,43,693,54,7,54,1567,120,58,48,44,25,11,8,6,2,3,0,0,0,0,9,59.0,58.0,43.0,57.0,66.0,40.0,67.0,53.0,37.0,48.0,59.0,51.0,64.0,39.0,48.0,61.0,45.0,52.0,45.0,28.0,36.0,40.0,34.0,31.0,33.0,28.0,22.0,23.0,22.0,20.0,15.0,22.0,18.0,15.0,19.0,15.0,14.0,22.0,13.0,17.0,14.0,15.0,17.0,12.0,22.0,13.0,11.0,20.0,16.0,18.0,15.0,20.0,10.0,6.0,14.0,15.0,13.0,4.0,12.0,11.0,6.0,4.0,8.0,8.0,6.0,5.0,4.0,3.0,10.0,5.0,6.0,6.0,9.0,3.0,6.0,7.0,9.0,8.0,1.0,4.0,2.0,1.0,3.0,5.0,4.0,1.0,1.0,2.0,3.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,789,1000,112,0,283,245,261,231,174,115,89,81,80,78,65,55,32,27,30,29,15,7,4,0,0,0,1888,0,1,12,0,1888,0,1,12,0,337,7,83,288,52,0,345,789,0,1331,570,0,0,0,261,1284,0,0,0,0,0,0,0,356,0,1,1,14,0,0,0,6,1879,0,38,82,3,0,0,1778,0,3.047692307692308,0.0,4.7293233082706765,0.0,5.3477117306680695,0,0,2,0,0,0,2,412,0,91,30,42,70,89,40,21,11,13,3,2,1,1,0,0,0,240,176,22,394,27,389,86,330,16,400,1,415,154,262,3,413,216,200,34,382,25,9,12,404,56,360,7,409,361,55,361,55,7,409,66,235,111,4,0,317,99,0,0,51,299,0,0,0,0,0,0,0,66,0,2.329326923076923,2.2403846153846154,0.0,1.1538461538461535,1.1538461538461535,47.14182692307692 +,120511,Comarca Ngäbe-Buglé,Ñürüm,El Piro N°2 (Muakwata Kubu),237,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,178,29,166,22,17,0,0,12,0,0,0,2,91,1,7,116,0,0,0,0,184,24,9,0,0,41,175,0,0,0,1,217,0,14,3,0,30,0,0,0,0,216,0,0,1,34,37,90,55,0,1,0,216,0,0,0,1,0,0,9,35,0,168,5,0,0,108,21,0,0,83,0,3,0,0,2,0,0,264,6.170542635658915,19.94573643410853,6.883720930232558,23.25581395348837,1.0,2.216589861751152,1.1935483870967742,217,141,636,20,144,15,26,29,4,30,5,3,8,0,1,1,3,5,2,0,0,422,676,0,82,1016,0,196,902,0,856,242,0,451,647,0,431,20,464,183,0,184,19,18,0,39,66,59,56,56,159,1,0,0,62,57,92,25,54,65,0,0,14,5,25,27,7,3,2,0,3,0,0,0,0,0,409,4,452,0,1,0,3,2,255,178,7,10,47,67,8,5,10,0,273,0,0,605,673,34,13,6,249,0,0,108,0,57,37,4,498,2,0,0,714,102,0,0,8,37,1,3,0,0,0,4,23,6,2,16,273,66,6,17,1158,38,18,10,12,5,8,4,13,7,2,1,0,0,0,2,45.0,46.0,44.0,45.0,40.0,36.0,38.0,40.0,44.0,35.0,36.0,33.0,28.0,28.0,37.0,32.0,26.0,37.0,26.0,21.0,19.0,20.0,23.0,23.0,16.0,20.0,16.0,11.0,14.0,14.0,14.0,16.0,11.0,17.0,18.0,8.0,18.0,5.0,12.0,12.0,7.0,7.0,8.0,7.0,12.0,12.0,8.0,14.0,6.0,7.0,12.0,18.0,10.0,9.0,9.0,5.0,4.0,8.0,5.0,2.0,7.0,2.0,5.0,3.0,3.0,9.0,3.0,3.0,1.0,6.0,4.0,3.0,2.0,1.0,4.0,4.0,1.0,5.0,0.0,1.0,2.0,0.0,1.0,1.0,4.0,4.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,575,639,64,0,220,193,162,142,101,75,76,55,41,47,58,24,20,22,14,11,8,7,1,1,0,0,1268,0,0,10,0,1268,0,0,10,0,274,5,60,143,26,1,195,574,0,1186,92,0,0,0,1178,78,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1,1,1276,0,36,58,2,0,0,1182,0,2.89010989010989,0.0,4.379928315412187,0.0,5.07433489827856,0,0,0,0,0,0,0,217,0,46,20,33,40,33,13,5,3,11,6,3,1,2,0,1,0,124,93,1,216,1,216,102,115,0,217,0,217,70,147,2,215,113,104,22,195,14,8,16,201,5,212,8,209,178,39,196,21,6,211,12,101,96,8,0,152,65,0,0,199,15,0,0,0,0,0,0,0,3,0,2.7880184331797238,3.1013824884792625,0.0,1.0833333333333333,1.0833333333333333,48.31336405529954 +,120601,Comarca Ngäbe-Buglé,Kankintú,Bisira,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,25,369,192,9,28,245,42,38,16,0,0,37,234,7,21,228,1,42,3,3,483,54,16,10,1,267,302,0,0,0,1,570,73,76,25,16,52,50,0,0,2,563,5,0,0,14,524,2,0,28,1,1,395,5,0,0,8,162,0,7,105,0,16,427,15,0,240,0,26,83,2,121,70,0,0,28,0,0,862,4.895833333333333,13.679166666666667,5.120833333333334,14.566666666666666,1.0035087719298246,3.543859649122807,2.3666666666666667,572,329,1395,85,795,21,22,55,1,97,8,10,19,0,19,9,5,1,7,1,13,677,2296,0,78,2895,0,373,2600,0,1974,999,0,1192,1781,0,1187,5,943,838,0,840,32,53,5,112,156,168,158,180,326,0,0,0,95,135,168,66,88,210,0,4,31,24,23,23,21,54,0,0,1,0,0,0,0,0,1259,20,1064,0,0,1,4,37,601,346,34,46,113,145,41,6,53,1,803,116,0,1681,1728,77,45,6,645,1,1,503,0,246,61,2,1311,3,0,0,1952,328,0,4,1,57,0,1,0,0,0,3,37,8,22,78,882,108,47,94,2972,138,78,57,63,26,26,8,14,17,4,1,2,0,0,3,104.0,107.0,108.0,117.0,104.0,100.0,105.0,98.0,118.0,105.0,105.0,102.0,100.0,100.0,90.0,97.0,79.0,78.0,60.0,68.0,66.0,61.0,61.0,64.0,35.0,37.0,41.0,40.0,38.0,30.0,28.0,29.0,27.0,29.0,35.0,23.0,32.0,38.0,26.0,35.0,29.0,28.0,23.0,28.0,23.0,21.0,22.0,24.0,24.0,25.0,22.0,27.0,26.0,17.0,24.0,23.0,18.0,16.0,16.0,16.0,20.0,15.0,16.0,18.0,8.0,8.0,11.0,9.0,11.0,8.0,9.0,5.0,10.0,13.0,10.0,5.0,9.0,7.0,7.0,2.0,4.0,3.0,4.0,6.0,3.0,4.0,3.0,3.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1563,1686,160,0,540,526,497,382,287,186,148,154,131,116,116,89,77,47,47,30,20,13,2,0,1,0,3190,1,1,217,0,3190,1,1,217,0,1033,6,179,93,73,2,465,1558,0,2665,743,1,0,3,3362,9,0,0,0,2,0,0,0,33,0,11,12,3,0,1,0,15,3367,0,47,85,37,3,3,3234,0,3.378836833602585,0.0,4.630864197530864,0.0,4.305661484306248,2,5,0,0,0,0,5,560,0,83,54,77,95,114,66,18,21,15,12,12,1,2,0,1,1,324,248,33,539,26,546,58,514,16,556,3,569,113,459,6,566,185,387,79,493,11,68,31,541,41,531,7,565,437,135,332,240,18,554,46,208,308,10,0,320,252,0,1,565,1,0,0,0,0,0,0,0,5,0,2.9388111888111887,3.020979020979021,0.0,1.21875,1.21875,50.29895104895105 +,120604,Comarca Ngäbe-Buglé,Kankintú,Gworoni,859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,523,5,1,0,515,2,1,5,0,2,4,114,0,4,405,0,0,0,0,287,238,1,3,0,36,492,0,1,0,0,529,73,152,2,0,16,87,0,0,0,529,0,0,0,4,291,15,6,208,2,3,201,0,0,0,14,313,1,0,6,4,174,263,82,0,72,9,1,0,4,4,437,0,0,2,0,0,859,6.9753086419753085,22.185185185185187,6.9753086419753085,23.37037037037037,1.0,2.943289224952741,1.77882797731569,529,260,1670,28,876,17,54,74,4,79,6,0,12,0,11,8,3,0,4,0,4,294,2869,0,38,3125,0,152,3011,0,1926,1237,0,1252,1911,0,1251,1,806,1105,0,1105,46,35,2,126,152,210,202,183,396,0,0,0,155,138,152,65,63,114,0,0,4,2,4,3,2,4,0,0,0,0,0,0,0,0,1191,4,1236,0,0,0,0,8,744,448,7,29,60,196,21,8,53,0,832,25,0,1686,1923,24,30,8,663,0,0,470,0,235,61,5,1503,1,0,0,2298,129,0,0,0,4,0,0,0,0,0,4,6,6,7,96,876,126,1,73,3379,91,39,26,30,12,23,4,3,1,0,0,0,0,0,1,101.0,128.0,92.0,125.0,128.0,112.0,117.0,114.0,146.0,115.0,149.0,104.0,117.0,125.0,116.0,111.0,107.0,88.0,95.0,70.0,62.0,49.0,55.0,49.0,37.0,38.0,29.0,25.0,37.0,24.0,42.0,38.0,26.0,35.0,35.0,23.0,36.0,29.0,22.0,30.0,22.0,24.0,20.0,24.0,29.0,25.0,18.0,29.0,27.0,39.0,34.0,18.0,27.0,20.0,16.0,16.0,13.0,10.0,12.0,18.0,16.0,12.0,13.0,14.0,15.0,7.0,10.0,5.0,5.0,5.0,6.0,7.0,11.0,2.0,9.0,9.0,5.0,4.0,4.0,2.0,7.0,3.0,4.0,2.0,3.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1789,1703,117,0,574,604,611,471,252,153,176,140,119,138,115,69,70,32,35,24,19,2,5,0,0,0,3317,0,0,292,0,3317,0,0,292,0,1088,10,171,29,75,7,447,1782,0,3460,149,0,0,2,3592,10,0,0,0,0,0,0,1,4,0,1,0,0,0,1,0,4,3603,0,12,12,7,1,0,3577,0,3.248550724637681,0.0,4.894230769230769,0.0,3.247714048212801,0,0,0,0,0,0,0,529,0,109,52,95,109,98,30,12,6,10,6,1,1,0,0,0,0,61,468,3,526,3,526,75,454,4,525,2,527,44,485,3,526,14,515,0,529,0,0,2,527,7,522,2,527,497,32,250,279,10,519,36,152,335,6,0,239,290,0,0,528,0,0,0,0,0,0,0,1,0,0,3.1871455576559544,3.635160680529301,0.0,1.25,1.25,49.1758034026465 +,120605,Comarca Ngäbe-Buglé,Kankintú,Kankintú,1216,0,0,13,0,1,0,1,0,0,0,0,0,0,0,2,196,18,599,195,21,3,548,0,44,4,0,0,71,390,7,24,307,2,14,0,10,665,96,21,23,0,470,342,1,0,0,2,815,58,101,67,26,115,47,0,0,4,804,7,0,0,49,737,0,1,21,4,3,648,4,0,0,0,163,0,16,234,1,90,466,8,0,570,2,22,20,8,15,141,0,0,34,3,0,1231,6.103146853146853,19.412587412587413,6.856643356643357,23.18006993006993,1.007361963190184,3.533742331288344,2.396319018404908,821,463,2180,94,956,29,62,83,10,130,16,4,31,0,27,30,10,4,12,1,18,1409,2845,0,216,4038,0,778,3476,0,3266,988,0,2039,2215,0,2028,11,1414,801,0,805,74,104,6,198,220,229,198,227,463,0,0,0,184,245,212,140,159,269,0,5,55,88,88,76,60,142,3,1,3,0,0,0,0,0,1522,26,1804,0,1,6,11,64,1118,542,22,58,268,155,26,6,91,4,948,36,0,2385,2494,155,90,6,736,11,11,525,0,359,94,7,1836,8,0,0,2561,595,0,4,9,180,1,2,0,0,0,12,71,28,33,119,958,109,45,173,4138,169,177,103,74,42,61,24,32,38,9,0,2,1,1,8,154.0,165.0,147.0,159.0,175.0,142.0,137.0,157.0,159.0,132.0,153.0,137.0,143.0,125.0,154.0,123.0,126.0,116.0,98.0,96.0,98.0,90.0,92.0,81.0,70.0,69.0,66.0,66.0,49.0,53.0,54.0,50.0,51.0,38.0,43.0,39.0,45.0,35.0,45.0,44.0,39.0,41.0,34.0,46.0,27.0,25.0,26.0,26.0,40.0,27.0,42.0,25.0,39.0,30.0,22.0,25.0,24.0,20.0,27.0,18.0,20.0,19.0,17.0,15.0,17.0,19.0,17.0,13.0,14.0,9.0,3.0,5.0,9.0,16.0,16.0,6.0,5.0,5.0,6.0,8.0,7.0,5.0,8.0,6.0,8.0,5.0,4.0,5.0,1.0,3.0,0.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2239,2428,212,0,800,727,712,559,431,303,236,208,187,144,158,114,88,72,49,30,34,18,6,2,1,0,4643,5,0,231,0,4643,5,0,231,0,1311,11,342,125,84,3,770,2233,0,3716,1156,7,0,2,4822,23,2,1,0,4,0,0,0,25,0,1,3,3,0,2,0,6,4864,0,110,198,59,6,3,4503,0,3.125,0.0,4.523389232127096,0.0,5.293707726993237,1,1,1,0,1,0,0,817,0,108,49,99,131,171,82,43,37,38,26,19,5,8,0,3,2,569,252,50,771,64,757,106,715,20,801,1,820,179,642,8,813,395,426,112,709,44,68,63,758,75,746,6,815,473,348,203,618,5,816,66,338,406,11,2,436,385,0,0,816,2,0,0,0,0,0,0,0,3,0,2.897934386391252,3.030376670716889,1.0,1.0625,1.0625,48.05115712545676 +,120606,Comarca Ngäbe-Buglé,Kankintú,Mününi,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,229,0,0,1,0,0,2,81,2,2,131,0,12,0,0,193,17,19,1,0,1,228,1,0,0,0,230,59,133,10,0,58,28,0,0,0,229,1,0,0,1,27,0,3,151,18,30,20,0,0,0,8,201,1,0,0,4,200,26,0,0,0,0,3,212,0,0,15,0,0,0,0,0,518,0.0,0.0,0.0,0.0,1.0,1.5739130434782609,0.5695652173913044,230,114,882,19,247,8,36,54,5,33,6,0,4,0,12,25,7,1,1,1,3,377,1106,0,0,1483,0,7,1476,0,898,585,0,598,885,0,598,0,317,568,0,568,8,5,0,60,88,80,89,88,170,0,0,0,68,83,135,8,16,15,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,956,0,205,0,0,0,0,1,142,52,7,3,1,8,0,0,4,0,943,0,0,749,889,1,0,0,311,0,0,644,0,83,14,0,701,0,0,0,1144,16,0,0,0,1,0,0,0,0,0,0,1,0,0,1,943,7,0,4,1502,27,28,34,45,2,0,0,0,0,0,0,0,0,0,0,20.0,37.0,44.0,54.0,42.0,49.0,45.0,68.0,59.0,59.0,57.0,49.0,54.0,57.0,62.0,48.0,46.0,51.0,51.0,33.0,28.0,31.0,26.0,21.0,23.0,18.0,19.0,17.0,14.0,14.0,15.0,14.0,9.0,14.0,15.0,14.0,9.0,16.0,15.0,10.0,16.0,17.0,10.0,8.0,11.0,11.0,11.0,7.0,5.0,16.0,19.0,14.0,9.0,15.0,13.0,6.0,3.0,8.0,7.0,7.0,9.0,4.0,9.0,13.0,10.0,5.0,4.0,8.0,2.0,3.0,2.0,1.0,7.0,3.0,3.0,1.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,756,829,53,0,197,280,279,229,129,82,67,64,62,50,70,31,45,22,16,9,4,0,2,0,0,0,1540,0,0,98,0,1540,0,0,98,0,495,5,52,14,48,15,256,753,0,1624,14,0,0,0,1631,2,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,1637,0,1,0,2,0,0,1635,0,2.43778801843318,0.0,4.442771084337349,0.0,3.1245421245421245,0,1,0,0,0,0,0,229,0,34,19,30,49,65,28,4,1,0,0,0,0,0,0,0,0,4,226,1,229,2,228,110,120,1,229,0,230,9,221,1,229,2,228,0,230,0,0,0,230,1,229,0,230,226,4,66,164,2,228,5,69,153,3,0,125,105,0,0,230,0,0,0,0,0,0,0,0,0,0,3.256521739130435,3.865217391304348,0.0,1.1111111111111112,1.1111111111111112,50.891304347826086 +,120607,Comarca Ngäbe-Buglé,Kankintú,Piedra Roja,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,391,2,0,1,386,0,1,3,0,0,0,113,0,1,265,1,13,0,0,167,214,11,1,0,4,389,0,0,0,0,393,13,137,19,0,31,34,0,0,0,393,0,0,0,1,129,0,16,245,2,0,58,0,0,0,0,335,0,0,0,4,329,60,0,0,2,1,9,374,1,0,6,0,0,0,0,0,627,7.0,11.666666666666666,7.0,16.0,1.0,1.6666666666666667,0.628498727735369,393,186,1222,23,876,4,53,127,0,61,11,5,1,0,17,8,0,0,0,7,24,156,2428,0,7,2577,0,143,2441,0,1174,1410,0,960,1624,0,958,2,301,1323,0,1325,3,9,5,86,111,157,149,166,227,2,0,0,76,71,112,14,43,25,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1579,1,420,0,0,0,0,5,270,83,13,49,17,25,0,0,56,1,1481,0,0,1281,1681,14,2,0,478,2,0,1084,0,105,37,0,965,0,0,0,1972,27,0,0,1,0,0,0,0,0,0,3,0,8,2,4,1477,24,0,62,2657,90,100,83,17,8,4,2,0,0,1,0,0,0,0,0,89.0,90.0,103.0,96.0,82.0,100.0,104.0,95.0,101.0,102.0,110.0,103.0,110.0,109.0,114.0,90.0,87.0,79.0,74.0,51.0,48.0,40.0,34.0,33.0,37.0,26.0,27.0,24.0,21.0,14.0,26.0,26.0,16.0,20.0,24.0,21.0,27.0,30.0,22.0,30.0,31.0,28.0,23.0,21.0,14.0,15.0,14.0,14.0,24.0,28.0,30.0,20.0,22.0,12.0,15.0,12.0,22.0,15.0,10.0,12.0,17.0,13.0,6.0,6.0,4.0,9.0,7.0,8.0,4.0,3.0,4.0,5.0,8.0,5.0,6.0,3.0,3.0,3.0,1.0,5.0,4.0,4.0,2.0,3.0,0.0,2.0,1.0,4.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1508,1355,99,0,460,502,546,381,192,112,112,130,117,95,99,71,46,31,28,15,13,9,3,0,0,0,2562,2,1,397,0,2562,2,1,397,0,909,3,54,17,81,9,387,1502,0,2958,1,3,0,2,2948,7,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,3,2958,0,3,58,6,0,0,2895,0,2.723386420787929,0.0,4.617737003058104,0.0,2.2424037812288997,0,0,0,0,0,0,0,393,0,35,25,41,89,118,58,13,7,5,0,2,0,0,0,0,0,18,375,4,389,4,389,196,197,4,389,1,392,3,390,1,392,3,390,0,393,0,0,1,392,3,390,0,393,380,13,103,290,2,391,8,126,258,1,0,197,196,0,0,393,0,0,0,0,0,0,0,0,0,0,3.2595419847328246,4.277353689567431,0.0,1.0,1.0,51.98218829516539 +,120610,Comarca Ngäbe-Buglé,Kankintú,Calante,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,165,4,0,0,163,1,0,1,0,0,4,43,0,7,113,1,1,0,0,150,17,2,0,0,20,148,1,0,0,0,169,31,69,4,0,41,30,0,0,0,169,0,0,0,0,157,1,3,8,0,0,68,0,0,0,0,101,0,0,3,0,3,157,6,0,58,18,15,6,0,13,59,0,0,0,0,0,344,6.5131578947368425,21.11842105263158,6.4868421052631575,21.88157894736842,1.0,3.076923076923077,1.8106508875739644,169,85,441,12,194,6,11,18,0,17,2,3,0,0,0,3,2,1,0,0,1,134,728,0,7,855,0,96,766,0,538,324,0,290,572,0,286,4,258,314,0,316,3,3,0,26,36,52,52,50,135,0,0,0,23,30,30,12,23,59,0,0,3,1,5,1,0,2,0,0,0,0,0,0,0,0,323,23,339,0,2,2,14,13,189,112,2,23,12,17,4,1,1,0,285,11,0,450,508,5,7,1,146,0,0,172,0,41,11,0,425,2,0,0,614,67,0,0,1,3,0,0,0,0,0,1,3,2,2,9,296,4,8,21,883,30,18,10,8,3,1,2,0,1,0,0,0,0,0,2,16.0,27.0,22.0,31.0,21.0,26.0,32.0,32.0,31.0,35.0,37.0,44.0,23.0,36.0,28.0,37.0,20.0,13.0,28.0,21.0,17.0,17.0,20.0,11.0,14.0,15.0,9.0,4.0,5.0,13.0,5.0,8.0,10.0,9.0,0.0,3.0,8.0,11.0,5.0,10.0,3.0,8.0,12.0,9.0,9.0,2.0,7.0,6.0,6.0,9.0,7.0,10.0,7.0,8.0,13.0,6.0,3.0,2.0,9.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,8.0,3.0,4.0,0.0,0.0,1.0,3.0,4.0,2.0,3.0,1.0,1.0,1.0,3.0,2.0,2.0,3.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,441,468,49,0,117,156,168,119,79,46,32,37,41,30,45,24,15,18,10,9,9,2,0,1,0,0,898,0,0,60,0,898,0,0,60,0,299,0,36,11,25,16,131,440,0,864,94,0,0,0,944,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,954,0,4,12,11,2,0,929,0,3.3029490616621984,0.0,4.616379310344827,0.0,3.605427974947808,0,0,0,0,0,0,0,169,0,56,13,29,29,28,7,3,2,1,1,0,0,0,0,0,0,49,120,3,166,0,169,14,155,1,168,0,169,46,123,5,164,31,138,2,167,0,2,0,169,1,168,1,168,123,46,55,114,4,165,8,55,106,0,0,69,100,0,0,168,1,0,0,0,0,0,0,0,0,0,2.662721893491124,3.0059171597633134,0.0,1.0,1.0,49.77514792899408 +,120611,Comarca Ngäbe-Buglé,Kankintú,Tolote,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,276,5,1,0,272,0,1,3,0,0,11,70,2,3,196,0,0,0,0,241,30,4,7,0,28,254,0,0,0,0,282,52,136,10,0,34,12,0,0,0,279,3,0,0,3,21,0,45,211,2,0,73,0,0,0,0,209,0,0,4,1,255,22,0,0,0,0,4,117,1,1,159,0,0,0,0,0,526,0.0,0.0,0.0,0.0,1.0070921985815602,1.2801418439716312,0.2765957446808511,284,167,1088,27,511,15,30,83,1,76,7,2,5,0,3,3,1,0,1,2,2,645,1290,0,28,1907,0,489,1446,0,905,1030,0,617,1318,0,613,4,371,947,0,947,6,30,0,84,113,119,114,114,128,0,0,0,69,37,92,25,25,21,0,0,2,2,3,1,3,0,0,0,0,0,0,0,0,0,1276,0,202,0,0,0,0,1,169,19,8,5,44,34,4,0,13,0,1179,2,0,1104,1192,9,20,0,596,0,1,650,0,44,10,0,893,1,0,0,1446,32,0,0,0,0,0,0,0,0,0,2,1,4,0,48,1165,17,1,38,1837,95,103,87,102,34,29,3,2,2,1,0,0,0,0,1,106.0,81.0,92.0,82.0,85.0,75.0,89.0,65.0,77.0,66.0,71.0,78.0,59.0,60.0,70.0,44.0,68.0,51.0,56.0,49.0,41.0,31.0,42.0,40.0,30.0,25.0,30.0,30.0,28.0,21.0,21.0,12.0,21.0,22.0,22.0,20.0,16.0,9.0,21.0,16.0,32.0,16.0,24.0,21.0,13.0,15.0,8.0,8.0,13.0,25.0,23.0,6.0,12.0,10.0,10.0,7.0,7.0,10.0,8.0,9.0,11.0,9.0,13.0,8.0,8.0,6.0,8.0,2.0,6.0,2.0,1.0,2.0,3.0,4.0,0.0,3.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1156,1092,48,0,446,372,338,268,184,134,98,82,106,69,61,41,49,24,10,8,3,3,0,0,0,0,2036,4,0,256,0,2036,4,0,256,0,749,3,27,4,47,9,304,1153,0,2033,259,4,0,6,2273,10,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,2294,0,7,3,2,0,0,2284,0,3.4097744360902253,0.0,4.915433403805497,0.0,2.182491289198606,0,0,0,0,0,0,0,284,0,22,12,29,32,60,48,24,17,21,10,4,3,1,1,0,0,87,197,4,280,9,275,168,116,0,284,0,284,50,234,0,284,55,229,3,281,0,3,2,282,0,284,1,283,270,14,241,43,2,282,15,91,174,4,0,164,120,0,0,283,1,0,0,0,0,0,0,0,0,0,3.887323943661972,4.197183098591549,0.0,1.1764705882352942,1.1764705882352942,47.90492957746479 +,120701,Comarca Ngäbe-Buglé,Kusapín,Kusapín,855,0,0,15,0,0,0,0,0,0,0,0,0,0,0,2,173,57,401,215,17,7,303,41,41,9,0,22,68,348,6,28,154,0,7,0,0,474,139,17,3,0,489,142,0,0,1,1,633,15,70,35,17,80,20,0,0,6,621,6,0,0,36,591,1,3,1,1,0,597,4,0,0,0,32,0,12,68,0,12,541,0,0,438,28,54,47,11,32,21,0,1,1,0,0,870,6.472103004291846,17.989270386266096,6.656652360515022,20.100858369098717,1.0,3.500789889415482,2.4170616113744074,633,358,1403,117,873,31,32,39,8,114,10,8,12,0,30,18,9,5,3,0,13,1315,1898,0,235,2978,0,620,2593,0,2716,497,0,1378,1835,0,1370,8,1443,392,0,395,32,77,1,139,161,196,193,194,420,0,1,0,157,175,187,87,153,373,0,1,43,37,39,24,39,82,4,1,2,0,0,0,0,0,1396,9,1180,0,3,2,4,44,751,308,33,44,206,169,45,7,57,1,811,105,0,1741,1897,136,50,8,789,0,2,416,0,231,115,16,418,1,0,0,1940,512,0,2,16,109,4,2,0,0,0,8,60,23,31,107,885,170,27,94,2889,242,177,77,73,53,45,23,22,18,14,1,2,0,1,1,94.0,106.0,109.0,116.0,113.0,114.0,104.0,108.0,93.0,96.0,118.0,99.0,94.0,105.0,88.0,88.0,79.0,93.0,74.0,70.0,60.0,49.0,62.0,60.0,33.0,47.0,54.0,46.0,41.0,37.0,44.0,30.0,51.0,34.0,36.0,33.0,38.0,44.0,25.0,42.0,32.0,26.0,20.0,22.0,26.0,27.0,32.0,27.0,24.0,25.0,27.0,30.0,29.0,19.0,31.0,18.0,18.0,24.0,32.0,15.0,36.0,16.0,14.0,8.0,17.0,15.0,10.0,15.0,10.0,1.0,7.0,7.0,11.0,20.0,7.0,8.0,14.0,8.0,7.0,7.0,8.0,4.0,6.0,6.0,13.0,7.0,2.0,6.0,4.0,3.0,3.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1557,1865,216,0,538,515,504,404,264,225,195,182,126,135,136,107,91,51,52,44,37,22,7,2,1,0,3516,3,0,119,0,3516,3,0,119,0,1044,10,104,178,80,8,661,1553,0,2815,817,6,0,1,3609,12,0,1,0,0,0,0,0,15,0,0,4,2,0,0,0,90,3542,0,76,197,48,5,0,3312,0,3.0094134685010863,0.0,4.320987654320987,0.0,5.735019241341396,0,2,0,0,0,0,15,616,0,46,38,53,94,144,71,55,36,48,19,10,4,7,5,3,0,564,69,102,531,129,504,86,547,41,592,6,627,186,447,8,625,350,283,191,442,80,111,45,588,49,584,2,631,540,93,260,373,42,591,58,231,333,11,0,317,316,0,0,628,0,0,0,0,0,0,0,0,5,0,2.750394944707741,2.996840442338073,1.0,1.1956521739130437,1.1956521739130437,50.92417061611374 +,120702,Comarca Ngäbe-Buglé,Kusapín,Bahía Azul,1034,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,21,65,588,71,15,8,371,191,14,4,0,0,35,292,1,12,329,0,5,0,0,583,50,19,22,0,266,408,0,0,0,0,674,44,59,60,35,112,60,0,0,0,672,2,0,0,2,650,0,5,8,3,6,388,1,0,0,0,284,1,1,16,0,7,643,7,0,143,6,225,192,7,42,56,0,0,3,0,0,1044,4.664429530201343,9.718120805369129,6.899328859060403,23.91946308724832,1.0014836795252229,3.4480712166172105,2.3427299703264093,675,428,1939,92,875,16,39,47,6,86,9,11,3,0,55,21,6,10,15,0,11,864,2830,0,29,3665,0,179,3515,0,2724,970,0,1557,2137,0,1557,0,1330,807,0,808,46,88,4,198,229,232,236,240,510,1,0,0,174,213,272,108,108,168,0,3,11,12,11,3,8,11,0,0,0,0,0,0,0,0,1403,7,1447,0,0,1,1,34,861,479,46,27,68,176,26,9,29,0,863,237,0,1984,2242,23,38,9,974,2,2,360,0,328,99,7,598,3,0,0,2630,209,0,2,0,16,0,0,0,0,0,1,12,5,6,48,1039,230,21,48,3702,206,146,78,49,21,8,4,4,4,1,0,0,0,0,3,136.0,133.0,124.0,139.0,139.0,146.0,125.0,150.0,146.0,131.0,147.0,135.0,118.0,121.0,144.0,128.0,110.0,102.0,104.0,78.0,78.0,62.0,64.0,62.0,37.0,50.0,44.0,33.0,28.0,37.0,34.0,40.0,33.0,39.0,40.0,34.0,32.0,53.0,37.0,45.0,36.0,29.0,28.0,40.0,36.0,30.0,24.0,22.0,25.0,34.0,32.0,28.0,20.0,23.0,19.0,17.0,17.0,13.0,34.0,14.0,24.0,16.0,16.0,11.0,14.0,9.0,11.0,12.0,16.0,12.0,7.0,9.0,8.0,11.0,10.0,12.0,15.0,7.0,5.0,7.0,5.0,4.0,0.0,6.0,3.0,6.0,4.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2034,2006,186,0,671,698,665,522,303,192,186,201,169,135,122,95,81,60,45,46,18,12,2,2,1,0,3843,0,0,383,0,3843,0,0,383,0,1145,5,150,189,68,5,634,2030,0,3461,762,3,0,9,4190,4,0,0,0,0,0,0,1,22,0,0,3,0,0,1,0,10,4212,0,19,41,27,8,0,4131,0,3.5140431090790334,0.0,5.023858921161826,0.0,4.05040227165168,0,0,0,0,0,0,2,673,0,70,38,75,116,192,111,37,18,12,3,1,2,0,0,0,0,457,218,16,659,15,660,85,590,4,671,1,674,174,501,15,660,243,432,34,641,8,26,4,671,34,641,1,674,559,116,158,517,10,665,44,257,371,3,0,399,276,0,1,672,1,0,0,0,0,0,0,0,1,0,2.9392592592592592,3.3214814814814817,1.0,1.0606060606060606,1.0606060606060606,48.74222222222223 +,120705,Comarca Ngäbe-Buglé,Kusapín,Río Chiriquí,960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,16,539,57,5,46,478,7,1,7,0,2,25,197,6,21,327,1,22,0,0,432,51,50,68,0,130,471,0,0,0,0,601,59,202,33,0,34,31,0,0,2,598,1,0,0,4,404,4,2,91,64,32,200,1,1,0,0,395,4,1,13,0,22,414,151,0,176,18,7,32,19,81,265,0,0,3,0,0,960,6.06701030927835,21.01546391752577,6.515463917525773,22.871134020618555,1.0016638935108153,3.086522462562396,1.9650582362728783,602,358,1810,34,812,23,25,40,7,96,14,10,5,0,15,17,5,2,7,0,41,604,2688,0,74,3218,0,187,3105,0,2252,1040,0,1327,1965,0,1323,4,1133,832,0,836,36,93,5,173,185,232,201,235,451,0,0,0,158,171,152,69,84,156,0,3,6,5,8,8,5,13,0,1,6,0,0,0,0,0,1503,21,967,0,2,0,2,12,552,341,11,51,103,85,29,11,5,0,1261,29,0,1846,1990,67,35,11,445,1,1,963,0,221,62,3,1443,8,0,0,2280,173,0,2,7,24,0,5,0,0,0,4,28,16,12,50,1277,72,16,49,3452,135,50,60,52,16,16,5,13,22,4,1,1,0,1,8,120.0,148.0,138.0,138.0,137.0,142.0,128.0,129.0,135.0,130.0,148.0,125.0,108.0,101.0,113.0,110.0,99.0,88.0,75.0,70.0,60.0,60.0,45.0,69.0,38.0,43.0,49.0,38.0,32.0,39.0,33.0,28.0,35.0,34.0,42.0,25.0,26.0,30.0,28.0,44.0,36.0,20.0,27.0,28.0,32.0,15.0,27.0,24.0,26.0,29.0,22.0,22.0,30.0,20.0,12.0,10.0,20.0,15.0,14.0,19.0,18.0,14.0,14.0,7.0,11.0,9.0,12.0,14.0,6.0,8.0,10.0,6.0,7.0,6.0,10.0,13.0,2.0,3.0,6.0,4.0,4.0,2.0,7.0,2.0,1.0,2.0,1.0,2.0,0.0,4.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1940,1752,144,0,681,664,595,442,272,201,172,153,143,121,106,78,64,49,39,28,16,9,3,0,0,0,3572,0,1,263,0,3572,0,1,263,0,1034,6,145,153,64,7,491,1936,0,3155,680,1,0,2,3763,17,0,0,0,0,0,0,0,54,0,4,39,12,2,3,2,51,3723,0,49,79,13,2,0,3693,0,3.450557620817844,0.0,4.794082840236686,0.0,3.688216892596455,1,5,4,0,2,2,16,572,0,129,40,91,88,106,71,21,9,14,16,9,2,5,0,1,0,199,403,40,562,39,563,107,495,21,581,2,600,91,511,3,599,77,525,49,553,21,28,20,582,6,596,2,600,493,109,301,301,8,594,29,264,304,5,0,341,261,0,0,586,1,0,0,0,0,0,0,0,15,0,3.0664451827242525,3.305647840531561,0.0,1.0294117647058822,1.0294117647058822,47.20099667774086 +,120706,Comarca Ngäbe-Buglé,Kusapín,Tobobe,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,35,429,100,2,11,254,124,24,16,0,1,20,220,4,18,241,0,27,0,0,394,66,18,53,0,276,249,1,0,0,5,531,16,102,40,13,58,16,0,0,1,525,5,0,0,5,511,0,4,9,1,1,411,1,1,0,0,118,0,1,18,0,6,503,3,0,93,27,131,113,53,86,28,0,0,0,0,0,776,5.741666666666666,12.925,6.816666666666666,22.08333333333333,1.0,3.340866290018832,2.146892655367232,531,365,1408,46,646,20,25,21,4,82,4,12,2,0,21,4,7,5,10,0,8,379,2393,0,33,2739,0,163,2609,0,2067,705,0,1157,1615,0,1152,5,1079,536,0,537,58,52,6,130,153,217,167,183,433,0,0,1,122,136,225,76,112,118,0,2,10,14,2,6,6,4,0,0,2,0,0,0,0,0,1001,16,1115,0,1,7,6,30,611,411,13,50,83,104,21,6,6,0,652,136,0,1534,1632,35,14,6,597,6,1,349,0,294,66,8,543,0,0,0,1967,149,1,1,1,11,0,2,0,0,0,1,13,10,9,71,764,84,16,49,2826,143,76,46,33,10,12,7,4,6,2,1,0,0,0,0,92.0,110.0,85.0,107.0,105.0,111.0,107.0,104.0,100.0,113.0,95.0,104.0,77.0,94.0,95.0,86.0,83.0,78.0,64.0,55.0,42.0,50.0,49.0,35.0,29.0,39.0,38.0,30.0,29.0,33.0,39.0,27.0,39.0,25.0,38.0,28.0,24.0,25.0,27.0,31.0,22.0,25.0,24.0,30.0,18.0,23.0,20.0,22.0,23.0,20.0,30.0,19.0,16.0,17.0,24.0,18.0,14.0,18.0,18.0,15.0,19.0,9.0,13.0,13.0,14.0,13.0,10.0,12.0,12.0,7.0,3.0,2.0,6.0,12.0,6.0,5.0,3.0,2.0,8.0,5.0,3.0,1.0,6.0,3.0,1.0,3.0,4.0,1.0,3.0,5.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1499,1527,140,0,499,535,465,366,205,169,168,135,119,108,106,83,68,54,29,23,14,16,4,0,0,0,2963,0,3,200,0,2963,0,3,200,0,864,11,62,198,47,6,482,1496,0,2558,605,3,0,4,3144,4,0,0,0,0,0,0,4,10,0,3,8,2,0,0,1,431,2721,0,29,95,29,3,1,3009,0,3.306233062330623,0.0,4.794405594405594,0.0,4.215413771320278,2,1,1,0,0,0,85,442,0,54,50,77,124,121,55,18,11,10,4,2,2,3,0,0,0,376,155,32,499,28,503,58,473,11,520,1,530,150,381,2,529,63,468,53,478,20,33,5,526,8,523,2,529,346,185,173,358,6,525,26,232,271,2,0,294,237,0,0,528,0,0,0,0,0,0,0,1,2,0,2.888888888888889,3.073446327683616,3.0,1.1578947368421053,1.1578947368421053,47.93596986817326 +,120708,Comarca Ngäbe-Buglé,Kusapín,Cañaveral,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,306,18,4,1,303,0,1,1,0,0,13,81,4,31,193,3,3,0,0,267,51,6,4,0,61,267,0,0,0,0,328,30,48,18,4,80,27,0,0,1,321,6,0,0,2,248,18,2,26,6,26,136,1,0,0,0,191,0,1,8,1,48,246,24,0,148,2,23,5,35,5,108,0,0,2,0,0,535,5.693333333333333,17.32,6.973333333333334,23.73333333333333,1.0030487804878048,3.216463414634146,2.100609756097561,329,170,948,57,498,10,31,47,9,54,9,3,16,0,40,20,3,0,8,0,74,211,1672,0,10,1873,0,86,1797,0,1179,704,0,762,1121,0,760,2,477,644,0,644,13,29,8,75,106,108,126,115,211,2,2,0,105,91,139,31,33,21,0,0,2,3,6,5,2,5,0,0,1,0,0,0,0,0,851,5,590,0,0,2,2,10,359,184,14,23,26,46,5,1,9,0,756,9,0,1051,1130,22,7,1,412,0,0,410,0,104,34,2,694,2,0,0,1401,35,0,0,4,5,0,1,0,0,0,5,8,3,7,15,758,33,3,24,2043,61,23,13,13,6,4,7,6,3,0,0,0,0,0,2,62.0,89.0,79.0,68.0,80.0,87.0,57.0,73.0,71.0,69.0,84.0,66.0,79.0,79.0,72.0,71.0,55.0,56.0,47.0,31.0,33.0,33.0,34.0,35.0,20.0,23.0,14.0,11.0,21.0,15.0,19.0,23.0,14.0,25.0,18.0,18.0,18.0,19.0,14.0,20.0,6.0,14.0,19.0,22.0,15.0,14.0,15.0,14.0,13.0,20.0,22.0,4.0,7.0,15.0,16.0,8.0,4.0,4.0,11.0,10.0,10.0,10.0,3.0,10.0,6.0,4.0,7.0,5.0,5.0,6.0,6.0,4.0,5.0,8.0,7.0,4.0,2.0,1.0,2.0,6.0,2.0,3.0,2.0,1.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1115,979,87,0,378,357,380,260,155,84,99,89,76,76,64,37,39,27,30,15,10,4,0,1,0,0,2007,0,0,174,0,2007,0,0,174,0,601,1,82,67,53,7,256,1114,0,1964,217,0,0,5,2170,5,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,5,2174,0,16,16,11,0,2,2136,0,3.5938697318007664,0.0,4.934156378600823,0.0,3.212746446584136,0,0,0,0,0,0,1,328,0,60,33,56,68,64,26,4,4,9,3,0,1,1,0,0,0,88,241,13,316,4,325,50,279,0,329,1,328,83,246,2,327,33,296,3,326,0,3,4,325,2,327,0,329,290,39,110,219,7,322,26,108,187,8,0,179,150,0,1,327,1,0,0,0,0,0,0,0,0,0,3.1945288753799392,3.434650455927052,0.0,1.0344827586206895,1.0344827586206895,47.46504559270517 +,120801,Comarca Ngäbe-Buglé,Jirondai,Samboa,773,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,9,542,27,2,0,534,1,6,1,0,28,14,275,3,4,236,0,11,0,1,249,276,32,13,0,169,402,0,0,0,0,571,32,129,16,17,5,4,0,0,2,569,0,0,0,5,462,1,13,67,11,12,364,2,0,0,0,203,2,2,6,1,45,512,5,0,125,8,6,99,148,5,178,0,1,0,1,0,774,6.879699248120301,20.383458646616543,6.796992481203008,22.86466165413534,1.0,3.444833625218914,2.182136602451839,571,303,1982,62,754,12,33,62,2,60,3,6,4,0,13,8,0,1,4,0,7,429,2931,0,28,3332,0,230,3130,0,2088,1272,0,1437,1923,0,1428,9,731,1192,0,1196,31,47,0,159,147,213,191,193,349,1,0,0,135,139,189,73,74,193,1,1,2,1,4,4,7,9,0,0,1,0,0,0,0,0,1728,1,835,0,0,0,0,5,601,176,10,43,80,125,11,5,15,0,1492,1,0,1848,2006,40,38,5,846,5,3,792,0,197,37,1,1496,3,0,0,2341,203,0,0,1,18,0,1,0,0,0,7,16,5,9,40,1487,128,4,33,3570,98,49,34,35,23,21,9,2,6,4,0,0,0,0,3,122.0,125.0,125.0,122.0,130.0,119.0,116.0,140.0,153.0,138.0,130.0,153.0,113.0,143.0,152.0,97.0,126.0,111.0,88.0,80.0,64.0,58.0,54.0,49.0,30.0,42.0,54.0,28.0,31.0,27.0,42.0,41.0,27.0,33.0,34.0,32.0,39.0,33.0,52.0,41.0,26.0,23.0,33.0,38.0,17.0,26.0,19.0,14.0,29.0,28.0,32.0,25.0,33.0,19.0,12.0,18.0,10.0,10.0,6.0,12.0,11.0,7.0,8.0,12.0,8.0,5.0,6.0,7.0,8.0,3.0,1.0,5.0,2.0,7.0,12.0,2.0,1.0,3.0,5.0,1.0,2.0,1.0,5.0,2.0,1.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1981,1789,84,0,624,666,691,502,255,182,177,197,137,116,121,56,46,29,27,12,11,5,0,0,0,0,3570,0,0,284,0,3570,0,0,284,0,1085,6,128,26,65,5,563,1976,0,3480,374,0,0,3,3831,7,0,0,0,0,0,0,1,12,0,2,0,1,0,2,0,4,3845,0,34,37,7,0,0,3776,0,3.0522230063514466,0.0,4.809876543209876,0.0,3.3814218993253764,0,0,1,0,0,0,0,570,0,120,52,91,93,110,46,23,12,11,5,4,3,1,0,0,0,240,331,18,553,12,559,158,413,7,564,1,570,39,532,1,570,28,543,11,560,5,6,7,564,2,569,2,569,545,26,465,106,27,544,18,254,295,4,0,250,321,0,0,566,2,0,0,0,0,0,0,1,2,0,3.236427320490368,3.5131348511383536,0.0,1.1111111111111112,1.1111111111111112,45.38528896672504 +,120802,Comarca Ngäbe-Buglé,Jirondai,Büri,1735,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,163,156,623,315,30,30,580,0,11,2,366,84,3,193,7,43,227,0,45,20,8,838,48,33,20,1,567,398,1,0,0,2,968,89,306,77,3,194,99,0,0,3,961,4,0,0,135,787,3,5,23,9,6,779,3,1,0,0,185,0,16,359,1,199,382,11,0,639,16,129,6,21,8,89,0,0,59,1,0,1736,5.803053435114504,20.166412213740458,6.332824427480916,22.35114503816794,1.0,3.4700413223140494,2.191115702479338,968,533,2723,82,1019,34,73,88,5,158,18,11,7,0,36,31,12,4,12,2,20,1463,3472,0,196,4739,0,214,4721,0,3625,1310,0,2026,2909,0,2009,17,1825,1084,0,1091,51,157,1,213,242,306,269,281,825,0,1,0,184,237,239,98,150,361,9,8,29,25,29,32,25,65,3,1,3,0,0,0,0,0,1958,52,1818,0,15,11,16,43,1048,655,35,37,287,126,65,21,43,1,1449,5,1,2786,2933,132,195,23,1014,6,1,626,1,382,68,9,2106,14,0,0,3237,497,0,0,2,88,1,3,0,0,1,20,56,20,32,145,1425,123,20,168,4940,188,107,115,90,95,76,23,38,21,7,2,1,1,1,14,193.0,198.0,177.0,216.0,179.0,181.0,200.0,177.0,173.0,197.0,148.0,179.0,155.0,159.0,171.0,147.0,161.0,124.0,147.0,127.0,99.0,100.0,102.0,90.0,72.0,74.0,73.0,77.0,65.0,59.0,75.0,47.0,47.0,67.0,56.0,64.0,52.0,55.0,57.0,51.0,45.0,44.0,45.0,48.0,42.0,38.0,31.0,35.0,35.0,29.0,39.0,26.0,28.0,29.0,36.0,22.0,20.0,16.0,25.0,21.0,27.0,16.0,13.0,22.0,14.0,13.0,15.0,10.0,13.0,10.0,8.0,10.0,16.0,10.0,13.0,6.0,7.0,5.0,14.0,3.0,6.0,3.0,3.0,4.0,4.0,2.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2703,2834,182,0,963,928,812,706,463,348,292,279,224,168,158,104,92,61,57,35,20,8,1,0,0,0,5423,1,0,295,0,5423,1,0,295,0,1687,12,342,116,70,12,779,2701,0,4431,1282,6,0,5,5588,18,4,1,2,1,0,0,1,99,0,1,5,1,2,1,1,20,5688,0,106,220,44,5,0,5344,0,2.9533267130089373,0.0,4.347113884555382,0.0,4.368770764119601,0,2,1,0,1,0,6,958,0,151,73,152,139,153,100,67,37,47,14,17,7,8,1,2,0,675,293,181,787,184,784,216,752,156,812,10,958,164,804,19,949,490,478,138,830,74,64,65,903,31,937,29,939,619,349,319,649,30,938,94,427,443,4,0,462,506,0,1,926,3,1,0,0,0,0,0,1,36,0,2.878099173553719,3.0299586776859506,0.0,1.0285714285714285,1.0285714285714285,44.51756198347108 +,120803,Comarca Ngäbe-Buglé,Jirondai,Gwaribiara,912,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,28,513,83,3,11,493,0,7,2,0,0,19,250,20,21,221,1,67,3,2,554,15,16,8,1,157,440,2,0,0,0,599,147,75,23,5,15,52,0,0,0,598,1,0,0,8,513,4,11,52,4,7,370,4,2,1,0,221,1,6,22,0,117,450,4,0,265,11,28,17,58,46,170,0,0,2,2,0,916,6.753623188405797,17.8731884057971,6.902173913043479,23.369565217391305,1.001669449081803,3.679465776293823,2.358931552587646,600,323,2045,61,826,14,50,36,5,66,2,2,6,0,18,13,1,0,7,0,17,735,2874,0,31,3578,0,15,3594,0,2331,1278,0,1474,2135,0,1472,2,945,1190,0,1192,19,41,8,139,193,217,195,252,488,0,0,0,157,152,174,60,79,197,0,0,10,8,8,4,6,8,1,1,0,0,0,0,0,0,1890,10,917,0,1,1,1,23,679,183,16,16,57,200,8,1,18,0,1583,32,0,1884,2152,42,20,2,917,4,2,912,0,198,38,2,1605,9,0,0,2574,228,0,0,1,14,0,0,0,0,0,3,19,7,15,46,1611,171,4,24,3672,126,78,35,37,22,22,15,8,7,4,0,0,1,0,9,100.0,97.0,118.0,112.0,125.0,144.0,116.0,129.0,139.0,139.0,141.0,129.0,124.0,119.0,138.0,112.0,130.0,89.0,99.0,87.0,64.0,87.0,70.0,59.0,60.0,51.0,54.0,52.0,42.0,45.0,39.0,43.0,31.0,33.0,41.0,28.0,32.0,35.0,34.0,35.0,44.0,25.0,35.0,30.0,29.0,22.0,19.0,19.0,25.0,47.0,35.0,35.0,24.0,26.0,27.0,14.0,13.0,24.0,22.0,7.0,19.0,8.0,10.0,21.0,10.0,20.0,13.0,13.0,12.0,4.0,3.0,1.0,6.0,6.0,4.0,4.0,4.0,4.0,5.0,6.0,1.0,2.0,1.0,2.0,3.0,1.0,3.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1870,2042,124,0,552,667,651,517,340,244,187,164,163,132,147,80,68,62,20,23,9,8,2,0,0,0,3660,0,0,376,0,3660,0,0,376,0,1390,14,132,28,52,11,543,1866,0,3710,326,0,0,5,3995,11,0,0,1,2,0,0,2,20,0,2,1,2,1,3,0,7,4020,0,22,33,21,3,0,3957,0,2.945560596241089,0.0,4.543169398907104,0.0,3.609514370664024,0,0,1,0,0,0,3,596,0,126,46,84,124,109,43,15,20,9,8,7,0,4,1,1,3,245,355,12,588,6,594,93,507,2,598,0,600,64,536,12,588,87,513,26,574,7,19,6,594,3,597,2,598,511,89,256,344,11,589,35,180,379,6,0,307,293,0,1,595,2,0,0,0,0,0,0,0,2,0,3.14,3.5866666666666664,0.0,1.0833333333333333,1.0833333333333333,48.531666666666666 +,120804,Comarca Ngäbe-Buglé,Jirondai,Man Creek,1381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,40,878,58,5,9,816,42,7,4,0,2,12,409,6,39,439,1,33,0,2,667,215,24,33,0,298,643,0,0,0,0,941,106,205,39,14,39,37,0,0,2,937,2,0,0,7,880,4,5,28,8,9,654,12,0,0,0,274,1,6,47,1,51,827,9,0,327,52,98,44,74,107,235,0,0,3,1,0,1381,5.562005277044855,19.56200527704485,6.306068601583114,22.61741424802111,1.002125398512221,3.240170031880978,2.148777895855473,943,533,3174,112,1504,17,49,94,8,136,16,7,1,0,23,17,3,1,5,0,10,1070,4643,0,47,5666,0,176,5537,0,3984,1729,0,2458,3255,0,2446,12,1686,1569,0,1575,49,133,3,297,293,407,350,354,815,1,0,0,248,277,386,107,122,233,0,0,16,12,10,6,10,8,0,1,0,0,0,0,0,0,2815,7,1502,0,0,2,1,25,1160,228,24,65,146,262,25,8,16,3,2296,64,0,3179,3415,59,120,8,1508,5,1,1119,0,253,77,0,1827,4,0,0,4028,279,0,0,2,15,0,0,0,0,0,7,21,13,11,105,2346,197,13,109,5816,235,158,123,128,57,31,18,10,9,4,1,0,0,0,4,213.0,219.0,223.0,226.0,220.0,221.0,225.0,255.0,228.0,240.0,229.0,218.0,224.0,208.0,214.0,177.0,181.0,151.0,139.0,133.0,128.0,101.0,97.0,91.0,70.0,77.0,79.0,67.0,71.0,54.0,73.0,52.0,68.0,73.0,51.0,55.0,48.0,47.0,52.0,65.0,48.0,62.0,46.0,45.0,35.0,38.0,28.0,40.0,36.0,44.0,57.0,26.0,42.0,38.0,38.0,34.0,22.0,17.0,32.0,26.0,17.0,20.0,11.0,19.0,15.0,16.0,18.0,18.0,12.0,7.0,5.0,5.0,11.0,9.0,8.0,12.0,11.0,5.0,6.0,7.0,11.0,7.0,4.0,3.0,6.0,4.0,1.0,1.0,1.0,0.0,0.0,3.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3363,3036,195,0,1101,1169,1093,781,487,348,317,267,236,186,201,131,82,71,38,41,31,7,5,2,0,0,5979,4,0,611,0,5979,4,0,611,0,1865,7,312,135,96,5,824,3350,0,5812,778,4,0,2,6557,16,0,0,0,0,0,0,0,19,0,3,6,0,0,3,1,10,6571,0,40,81,26,2,1,6444,0,3.298147350280052,0.0,4.768537768537769,0.0,3.603275705186533,2,1,0,0,1,0,2,937,0,88,47,110,188,236,119,66,32,33,15,6,2,1,0,0,0,449,494,33,910,9,934,227,716,9,934,3,940,88,855,14,929,278,665,19,924,6,13,14,929,15,928,1,942,827,116,510,433,20,923,59,350,533,1,0,463,480,0,0,938,2,0,0,0,0,0,0,0,3,0,3.3711558854718984,3.621420996818664,1.0,1.0975609756097562,1.0975609756097562,47.58748674443266 +,120805,Comarca Ngäbe-Buglé,Jirondai,Tu Gwai,1261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,193,217,492,364,47,9,390,1,35,57,164,2,14,349,4,13,283,2,72,2,45,729,15,85,26,1,456,447,0,0,0,0,903,84,203,20,6,20,25,0,0,1,899,3,0,0,104,769,2,0,23,4,1,701,5,0,0,0,196,1,5,210,1,139,534,14,0,537,40,91,70,55,12,62,0,0,35,1,0,1261,5.253032928942807,13.939341421143848,5.994800693240901,18.11958405545927,1.0055370985603544,3.485049833887043,2.236987818383167,908,532,2650,50,1095,18,47,98,1,167,16,5,14,0,30,20,6,2,11,3,14,1029,3846,0,125,4750,0,190,4685,0,3598,1277,0,2024,2851,0,2010,14,1811,1040,0,1049,83,146,3,275,262,295,272,260,699,1,2,1,206,283,361,123,162,292,4,2,14,10,20,12,8,26,2,0,2,0,0,0,0,0,1962,28,1798,0,2,3,10,38,1001,689,36,34,197,61,15,7,12,2,1687,1,0,2713,2888,77,109,7,901,5,2,881,0,280,68,10,2481,16,0,0,3395,354,1,1,2,31,2,2,0,0,0,12,28,12,20,74,1689,39,6,110,5067,154,90,80,67,42,38,15,17,8,5,2,0,0,0,16,171.0,200.0,193.0,162.0,188.0,184.0,199.0,191.0,168.0,157.0,167.0,180.0,133.0,137.0,183.0,132.0,149.0,155.0,135.0,119.0,112.0,106.0,73.0,84.0,63.0,78.0,69.0,81.0,75.0,66.0,56.0,49.0,64.0,58.0,64.0,45.0,47.0,49.0,58.0,43.0,47.0,42.0,47.0,44.0,54.0,28.0,38.0,29.0,33.0,47.0,44.0,30.0,27.0,33.0,21.0,31.0,27.0,21.0,27.0,19.0,20.0,12.0,14.0,16.0,15.0,14.0,10.0,11.0,15.0,8.0,9.0,7.0,6.0,11.0,19.0,9.0,8.0,5.0,15.0,10.0,5.0,4.0,5.0,3.0,2.0,3.0,2.0,1.0,0.0,3.0,2.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2613,2796,192,0,914,899,800,690,438,369,291,242,234,175,155,125,77,58,52,47,19,9,7,0,0,0,5344,3,2,252,0,5344,3,2,252,0,1633,11,240,234,73,7,794,2609,0,4361,1236,4,0,6,5518,33,5,0,0,0,0,0,0,39,0,2,612,4,5,2,0,26,4950,0,80,150,40,6,2,5323,0,3.0210420841683367,0.0,4.586991869918699,0.0,4.168005713265488,0,97,1,0,0,0,4,806,0,215,96,146,145,122,70,39,27,24,11,7,2,0,1,1,2,588,320,76,832,55,853,239,669,80,828,4,904,240,668,9,899,323,585,97,811,36,61,32,876,29,879,7,901,698,210,377,531,12,896,62,410,425,11,0,495,413,0,2,887,8,1,0,0,0,0,0,0,10,0,2.987885462555066,3.1806167400881056,0.0,1.069767441860465,1.069767441860465,46.33700440528634 +,120901,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Santa Catalina o Calovébora (Bledeshia),1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,523,108,532,39,25,79,0,3,1,0,1,27,199,12,15,425,0,0,0,0,547,66,59,7,0,103,571,0,0,0,5,679,13,99,37,9,205,36,0,0,0,676,3,0,0,13,500,4,2,121,26,13,161,1,1,0,0,513,3,7,31,1,83,485,72,0,172,3,2,30,180,28,264,0,0,0,0,0,1078,7.0,23.53142857142857,7.0,23.52,1.0191458026509572,2.3475699558173786,1.272459499263623,692,413,1499,97,262,18,26,26,6,27,9,3,5,0,14,27,3,1,7,5,11,426,2269,0,44,2651,0,320,2375,0,1979,716,0,1056,1639,0,1045,11,989,650,0,650,17,58,0,114,119,146,131,174,377,0,0,0,119,139,186,77,110,226,0,3,6,8,4,8,13,9,0,0,1,0,0,0,0,0,1682,5,459,0,0,1,3,6,333,89,19,12,90,47,20,6,14,1,1496,12,0,1550,1533,65,18,9,777,5,1,811,0,229,41,0,1047,1,0,0,1868,248,0,3,1,25,0,1,0,0,0,8,14,10,17,33,1504,48,10,43,2861,80,30,19,22,17,25,5,11,6,4,0,1,1,0,1,80.0,118.0,97.0,93.0,91.0,112.0,89.0,96.0,90.0,71.0,94.0,85.0,65.0,89.0,79.0,68.0,77.0,73.0,71.0,72.0,61.0,49.0,47.0,62.0,47.0,48.0,38.0,38.0,38.0,26.0,51.0,41.0,32.0,25.0,32.0,35.0,26.0,21.0,26.0,27.0,30.0,34.0,36.0,32.0,22.0,18.0,29.0,22.0,27.0,29.0,20.0,13.0,19.0,14.0,19.0,13.0,11.0,15.0,16.0,17.0,20.0,4.0,4.0,11.0,10.0,13.0,7.0,10.0,9.0,10.0,9.0,5.0,10.0,3.0,4.0,5.0,3.0,6.0,3.0,4.0,2.0,0.0,2.0,4.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1349,1616,118,0,479,458,412,361,266,188,181,135,154,125,85,72,49,49,31,21,8,4,3,1,1,0,2965,1,0,117,0,2965,1,0,117,0,970,13,109,79,56,1,508,1347,0,2669,413,1,0,2,776,1867,0,2,211,2,0,0,5,218,0,20,17,62,1,0,0,104,2879,0,42,53,6,0,1,2981,0,2.803867403314917,0.0,4.305059523809524,0.0,4.404800518975025,4,5,19,0,0,0,27,637,0,263,71,122,94,57,28,22,15,6,5,4,0,3,2,0,0,163,529,31,661,39,653,145,547,10,682,0,692,185,507,11,681,71,621,43,649,26,17,18,674,15,677,5,687,610,82,488,204,43,649,87,412,188,5,0,491,201,0,0,178,402,0,0,46,1,0,0,0,65,0,2.239884393063584,2.2153179190751446,0.0,1.32,1.32,42.9378612716763 +,120902,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Alto Bilingüe (Gdogüeshia),334,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,221,26,208,23,5,20,0,1,0,0,0,3,60,3,1,189,1,0,0,0,68,128,31,1,29,11,246,0,0,0,0,257,4,104,8,0,7,9,0,0,0,244,13,0,0,5,131,1,1,43,43,33,103,0,1,0,0,151,2,1,7,0,79,128,42,0,95,17,0,0,121,0,24,0,0,0,0,0,389,5.5,20.6875,6.6875,23.714285714285715,1.0,1.9883268482490275,0.9688715953307392,257,164,744,34,97,9,8,3,3,16,3,2,12,0,10,9,0,7,4,0,7,135,1033,0,12,1156,0,47,1121,0,772,396,0,424,744,0,423,1,400,344,0,346,10,40,0,43,47,66,56,71,183,0,0,0,45,62,80,24,30,52,0,0,4,3,1,2,0,3,0,0,0,0,0,0,0,0,630,2,281,0,1,0,0,0,143,116,9,13,22,11,5,2,0,0,592,0,0,648,704,13,14,2,241,0,0,362,0,61,11,0,239,0,0,0,848,59,0,0,1,5,0,0,0,0,0,4,1,2,5,4,589,17,0,10,1127,99,63,24,14,12,7,1,2,0,3,0,0,0,0,0,30.0,52.0,42.0,60.0,39.0,47.0,44.0,43.0,45.0,37.0,49.0,38.0,43.0,36.0,44.0,38.0,32.0,28.0,27.0,27.0,22.0,21.0,17.0,20.0,16.0,22.0,11.0,12.0,13.0,12.0,12.0,10.0,26.0,14.0,17.0,16.0,12.0,11.0,12.0,14.0,18.0,17.0,11.0,7.0,9.0,4.0,7.0,14.0,16.0,8.0,11.0,11.0,8.0,6.0,6.0,4.0,5.0,5.0,2.0,7.0,6.0,6.0,7.0,5.0,4.0,8.0,2.0,3.0,2.0,2.0,5.0,2.0,2.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,649,666,37,0,223,216,210,152,96,70,79,65,62,49,42,23,28,17,13,3,3,1,0,0,0,0,1292,0,0,60,0,1292,0,0,60,0,406,0,22,11,34,0,230,649,0,1241,111,0,0,1,22,1201,0,0,46,0,0,0,0,82,0,0,0,0,0,1,0,3,1348,0,12,15,0,0,0,1325,0,3.1379310344827585,0.0,4.630281690140845,0.0,3.64792899408284,0,0,0,0,1,0,1,255,0,34,21,33,42,52,37,18,10,4,3,2,1,0,0,0,0,43,214,2,255,3,254,50,207,0,257,0,257,49,208,0,257,19,238,5,252,4,1,3,254,3,254,0,257,244,13,193,64,0,257,26,159,61,11,0,184,73,0,0,5,220,0,0,12,0,0,0,0,20,0,2.5214007782101167,2.7392996108949417,0.0,1.1428571428571428,1.1428571428571428,43.3852140077821 +,120903,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Loma Yuca (Ijuicho),317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,115,46,1,0,114,0,1,0,0,0,1,28,1,0,132,0,0,0,0,99,2,55,6,0,3,159,0,0,0,0,162,85,0,1,0,67,2,0,0,0,162,0,0,0,0,77,0,0,77,5,3,39,0,0,0,0,123,0,0,1,0,103,55,3,0,0,10,7,46,21,1,77,0,0,0,0,0,317,7.0,24.0,7.0,24.0,1.0,1.845679012345679,0.8395061728395061,162,100,467,16,35,11,5,7,3,6,5,0,3,0,2,3,2,0,4,0,4,166,544,0,7,703,0,22,688,0,356,354,0,188,522,0,188,0,183,339,0,339,3,9,0,22,32,21,33,37,153,0,0,0,10,9,21,3,2,15,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,452,0,99,0,0,0,0,0,66,30,0,3,14,59,5,0,1,0,361,12,0,409,411,11,0,0,277,0,0,164,0,42,5,0,247,0,0,0,535,15,0,0,0,1,0,0,0,0,0,2,1,1,6,9,373,55,1,4,793,9,5,3,2,1,4,1,1,1,0,0,0,0,0,0,23.0,20.0,33.0,34.0,28.0,28.0,26.0,30.0,28.0,19.0,26.0,30.0,22.0,22.0,27.0,24.0,19.0,19.0,21.0,15.0,9.0,7.0,13.0,19.0,7.0,9.0,12.0,9.0,8.0,15.0,9.0,12.0,9.0,10.0,9.0,7.0,5.0,7.0,5.0,7.0,9.0,5.0,10.0,7.0,6.0,8.0,3.0,6.0,2.0,8.0,7.0,5.0,2.0,7.0,6.0,2.0,2.0,0.0,5.0,2.0,3.0,2.0,2.0,3.0,1.0,3.0,2.0,1.0,2.0,2.0,2.0,3.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,396,399,25,0,138,131,127,98,55,53,49,31,37,27,27,11,11,10,10,3,1,0,1,0,0,0,752,0,0,68,0,752,0,0,68,0,248,1,21,24,14,2,114,396,0,689,131,0,0,2,577,239,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,819,0,1,1,0,0,0,818,0,2.5069444444444446,0.0,4.25,0.0,2.3963414634146343,0,0,0,0,0,0,0,162,0,71,21,25,26,8,3,4,2,1,1,0,0,0,0,0,0,8,154,2,160,1,161,91,71,2,160,0,162,15,147,2,160,11,151,0,162,0,0,1,161,2,160,0,162,152,10,101,61,1,161,13,106,40,3,0,103,59,0,0,115,47,0,0,0,0,0,0,0,0,0,2.5246913580246915,2.537037037037037,0.0,1.125,1.125,41.18518518518518 +,120904,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),San Pedrito (Jiküi),837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,17,499,24,5,13,481,2,1,2,0,0,11,210,4,3,293,1,6,0,0,339,171,15,3,0,54,474,0,0,0,0,528,28,72,35,2,105,67,0,0,0,525,3,0,0,2,302,4,5,175,21,19,141,1,0,0,0,386,0,2,11,1,99,308,107,0,181,22,28,34,12,3,248,0,0,0,0,0,837,6.768472906403941,20.073891625615765,6.8817733990147785,22.935960591133004,1.0,2.75,1.681818181818182,528,337,1766,61,470,27,38,80,15,82,9,3,9,0,16,20,6,2,2,3,7,265,2611,0,20,2856,0,153,2723,0,1629,1247,0,1087,1789,0,1083,4,841,948,0,948,17,58,4,133,147,208,185,181,535,0,0,0,136,60,99,33,34,80,1,0,3,2,2,2,4,4,0,0,0,0,0,0,0,0,1527,6,596,0,0,0,5,1,399,166,14,16,39,21,13,0,7,2,1425,21,0,1616,1809,32,5,0,585,0,3,903,0,243,37,0,1379,0,0,0,2031,89,0,0,1,8,0,0,0,0,0,4,6,8,9,15,1439,30,7,15,3220,105,35,19,12,7,14,2,2,3,3,1,1,0,1,0,113.0,159.0,117.0,160.0,121.0,146.0,134.0,115.0,105.0,126.0,101.0,121.0,98.0,92.0,83.0,106.0,76.0,78.0,74.0,67.0,62.0,54.0,40.0,48.0,37.0,48.0,44.0,32.0,38.0,39.0,37.0,31.0,25.0,23.0,38.0,25.0,20.0,29.0,26.0,25.0,28.0,18.0,25.0,32.0,23.0,32.0,13.0,13.0,17.0,18.0,19.0,17.0,23.0,20.0,14.0,13.0,10.0,13.0,17.0,8.0,10.0,11.0,12.0,10.0,4.0,4.0,5.0,8.0,7.0,5.0,5.0,3.0,10.0,4.0,6.0,8.0,5.0,2.0,0.0,0.0,1.0,3.0,3.0,2.0,0.0,3.0,1.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1791,1542,92,0,670,626,495,401,241,201,154,125,126,93,93,61,47,29,28,15,9,7,2,1,1,0,3097,1,0,327,0,3097,1,0,327,0,1030,5,102,48,55,3,395,1787,0,2815,609,1,0,7,3315,80,0,0,0,0,0,0,0,23,0,0,140,1,1,1,0,4,3278,0,16,32,1,0,0,3376,0,3.251299826689775,0.0,4.791666666666667,0.0,2.970802919708029,0,25,0,0,1,0,0,502,0,112,62,97,121,83,23,5,7,9,2,3,1,2,0,1,0,89,439,8,520,6,522,133,395,2,526,0,528,38,490,1,527,53,475,12,516,5,7,3,525,3,525,2,526,461,67,262,266,6,522,18,264,239,7,0,334,194,0,0,511,10,0,0,0,0,0,0,0,7,0,3.060606060606061,3.426136363636364,0.0,1.0,1.0,43.25757575757576 +,120905,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Valle Bonito (Dogata),543,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,342,15,329,19,0,10,0,4,1,0,0,4,103,17,4,235,0,0,0,0,99,231,31,2,0,12,351,0,0,0,0,363,1,183,20,0,4,15,0,0,1,360,2,0,0,4,205,4,2,115,1,32,155,2,0,0,0,206,0,1,21,0,111,186,44,0,141,58,35,0,104,0,22,0,0,3,0,0,586,6.658291457286432,22.34170854271357,6.9798994974874375,23.592964824120603,1.002754820936639,2.253443526170799,1.1129476584022038,364,245,1056,43,169,23,25,26,11,27,11,4,30,0,5,5,1,0,0,0,7,199,1554,0,8,1745,0,106,1647,0,1154,599,0,620,1133,0,608,12,565,568,0,570,18,39,5,68,82,106,110,123,270,0,0,0,44,70,118,22,26,54,0,0,6,5,3,2,3,8,1,0,0,0,0,0,0,0,605,20,742,0,4,1,5,0,355,366,9,12,33,76,2,3,1,3,506,1,0,998,1036,12,29,3,379,0,2,200,0,89,19,3,465,1,0,0,1285,72,0,0,2,7,1,0,0,0,0,2,2,1,5,4,496,80,0,35,1834,68,51,40,21,11,3,3,1,0,1,0,0,0,0,1,65.0,74.0,74.0,68.0,62.0,58.0,68.0,81.0,54.0,63.0,55.0,74.0,55.0,59.0,43.0,52.0,50.0,42.0,45.0,41.0,36.0,34.0,37.0,32.0,33.0,31.0,24.0,24.0,23.0,28.0,18.0,21.0,22.0,20.0,14.0,12.0,20.0,16.0,24.0,18.0,9.0,15.0,17.0,20.0,18.0,14.0,13.0,11.0,20.0,9.0,15.0,8.0,13.0,15.0,12.0,13.0,10.0,8.0,7.0,10.0,8.0,5.0,9.0,10.0,4.0,9.0,6.0,5.0,7.0,2.0,7.0,3.0,7.0,3.0,3.0,1.0,1.0,0.0,1.0,1.0,2.0,2.0,2.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,953,1010,71,0,343,324,286,230,172,130,95,90,79,67,63,48,36,29,23,4,10,1,4,0,0,0,1942,0,0,92,0,1942,0,0,92,0,622,1,44,17,44,0,353,953,0,1816,218,0,0,0,36,1905,0,1,4,0,0,0,6,82,0,0,0,0,2,1,1,134,1896,0,18,15,0,0,0,2001,0,2.817796610169492,0.0,4.507211538461538,0.0,3.317600786627336,0,0,0,1,1,0,23,339,0,88,27,60,64,63,32,17,7,2,3,1,0,0,0,0,0,45,319,6,358,4,360,87,277,2,362,2,362,84,280,2,362,50,314,5,359,5,0,2,362,1,363,2,362,345,19,292,72,6,358,35,192,117,20,0,272,92,0,0,10,339,0,0,1,0,0,0,2,12,0,2.741758241758242,2.8461538461538463,0.0,1.0,1.0,43.15934065934066 +,130101,Panamá Oeste,Arraiján,Arraiján,13969,71,1035,172,2,2,0,0,0,0,0,1,14,0,0,394,9584,2028,192,11153,853,4,6,0,158,24,11581,491,16,13,3,34,23,0,37,4997,3796,2995,54,107,3,246,11844,62,103,0,0,189,12198,117,447,363,854,1011,257,0,530,1616,9040,686,58,268,11550,213,3,382,2,48,0,11777,197,115,103,5,0,1,5957,5801,9,380,51,0,10287,383,72,66,49,48,6,27,982,214,47,17,14807,459,3.86017501396388,13.098957363619435,3.9475889033699496,13.37618692980823,1.0309886866699458,3.4482702082308574,2.18216101000164,12591,7132,16068,999,3721,465,599,707,192,944,252,227,416,14,820,262,124,253,197,308,296,36261,5479,5,14168,27572,5,32365,9375,5,39035,2706,4,13145,28597,3,10838,2307,26793,1802,2,1902,307,684,104,850,977,1239,1076,1144,4381,10,25,275,1617,2206,4103,1471,2303,8775,37,93,787,1072,1260,1691,1552,1025,155,36,540,1,4,4,35,4,16217,2442,18645,4,88,898,392,2671,8063,6644,555,712,12996,696,2002,637,1532,157,39,43,140,22052,22275,2930,9844,698,4335,205,4,58,168,92,696,127,15440,118,1,1,19847,12313,293,143,425,3602,133,512,36,4,192,982,1845,1737,1332,3999,146,3019,1405,4002,21889,3086,960,1407,2158,3119,5036,2736,2081,845,409,159,174,57,93,118,601.0,612.0,662.0,707.0,805.0,681.0,716.0,761.0,763.0,711.0,806.0,817.0,662.0,751.0,781.0,692.0,741.0,726.0,730.0,739.0,778.0,779.0,794.0,846.0,720.0,783.0,786.0,718.0,669.0,638.0,621.0,614.0,570.0,612.0,560.0,565.0,565.0,606.0,623.0,484.0,534.0,535.0,529.0,539.0,514.0,531.0,521.0,552.0,528.0,524.0,551.0,579.0,543.0,521.0,533.0,503.0,504.0,488.0,518.0,448.0,470.0,370.0,407.0,412.0,333.0,332.0,297.0,304.0,263.0,245.0,219.0,221.0,219.0,213.0,199.0,187.0,162.0,134.0,140.0,125.0,102.0,75.0,86.0,79.0,86.0,53.0,46.0,53.0,39.0,46.0,22.0,24.0,20.0,11.0,11.0,5.0,7.0,5.0,8.0,3.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10836,29446,4045,0,3387,3632,3817,3628,3917,3594,2977,2843,2651,2656,2727,2461,1992,1441,1071,748,428,237,88,28,4,0,42115,1383,713,111,5,42141,1587,483,111,5,10117,599,2344,7445,1158,370,11457,10834,3,16348,27239,734,6,7466,1077,48,16,13,3,927,119,5,344,34304,5,2052,1778,1605,303,116,173,7681,30613,6,9897,10256,2809,228,51,21080,6,1.8791495710555763,5.328502158043374e-05,2.790160724483968,8.158603247124092e-05,8.798407291267173,684,582,579,128,53,69,2633,7863,0,741,402,230,465,841,1197,1766,1302,2120,1316,816,461,455,195,242,27,12326,265,11530,1061,10448,2143,1968,10623,11427,1164,2462,10129,6166,6425,2607,9984,12042,549,11061,1530,7191,3870,4954,7637,9735,2856,4871,7720,2325,10266,998,11593,105,12486,2129,6699,3458,305,4,7746,4845,0,1094,321,16,9,5,0,196,22,2,114,10812,0,1.7508535132989282,1.7685589519650655,1.36986301369863,1.054773082942097,1.054773082942097,50.841712334206974 +,130102,Panamá Oeste,Arraiján,Juan Demóstenes Arosemena,24626,82,964,67,0,0,0,1,1,0,0,1,12,0,0,17004,3273,309,66,20339,247,1,0,0,60,5,20504,113,8,10,0,6,5,0,6,16075,3678,780,16,19,0,84,20330,17,164,0,0,141,20652,84,1239,795,958,1774,237,0,12466,2165,5367,292,74,288,20507,25,1,115,0,4,0,11369,1150,7901,230,1,0,1,18755,1811,1,77,6,2,19837,258,12,14,1,3,1,1,216,294,8,7,25727,27,6.66156065051972,21.61073258069329,6.665091759088875,21.651116526582783,1.0130737943056365,3.877493705210149,2.590741816773194,20935,12704,23227,1576,2636,1241,852,662,538,676,309,293,752,73,906,268,171,377,257,198,221,59061,3931,0,41888,21104,0,57077,5915,0,59966,3026,0,21651,41341,0,12411,9240,39936,1405,0,1560,709,1102,113,1166,1246,1473,1252,1319,3561,4,36,450,1450,1867,3976,1510,2371,14487,95,496,1571,2240,2895,4774,5076,2932,706,213,2254,2,10,4,72,0,30496,2799,23044,0,91,827,282,3567,12046,6305,574,552,26044,1391,2364,462,2358,70,51,61,105,31905,34569,8056,17611,520,6211,266,4,52,186,12,477,109,20540,822,1,1,17836,21770,484,601,1193,11601,661,2118,75,0,267,3200,6843,5670,3013,5713,123,3420,2352,2694,28401,1999,1273,1543,2425,3454,6149,5189,6885,3966,2018,888,863,284,315,822,763.0,815.0,903.0,1001.0,1025.0,1096.0,1042.0,1156.0,1177.0,1157.0,1106.0,1135.0,1079.0,1095.0,1084.0,973.0,998.0,977.0,936.0,980.0,938.0,967.0,1007.0,1015.0,932.0,1016.0,1046.0,1046.0,991.0,1019.0,1117.0,1173.0,1204.0,1193.0,1247.0,1187.0,1199.0,1247.0,1239.0,1204.0,1235.0,1112.0,1054.0,1109.0,1020.0,955.0,912.0,912.0,892.0,823.0,935.0,831.0,842.0,817.0,778.0,740.0,661.0,602.0,618.0,570.0,545.0,495.0,513.0,401.0,374.0,382.0,340.0,330.0,255.0,278.0,287.0,187.0,208.0,229.0,200.0,177.0,153.0,130.0,144.0,121.0,119.0,95.0,86.0,64.0,73.0,55.0,46.0,51.0,35.0,30.0,42.0,25.0,27.0,19.0,13.0,12.0,8.0,7.0,4.0,1.0,6.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,15634,46597,4243,0,4507,5628,5499,4864,4859,5118,5934,6076,5530,4494,4203,3191,2328,1585,1111,725,437,217,126,32,10,0,61966,2785,1656,67,0,62020,3157,1230,67,0,14274,687,1297,14631,1358,724,17870,15633,0,13726,51134,1614,0,2800,581,67,10,9,4,160,23,8,801,62011,0,5768,2325,2546,901,291,379,10779,43485,0,22154,18055,3631,256,141,22237,0,1.4974791053361758,3.3837512266098194e-05,2.285290377278508,5.2988554472234e-05,10.59952763486476,2036,774,998,419,114,169,3852,12573,0,710,228,153,314,642,956,1561,1640,3478,3173,2463,1610,2001,931,874,188,20737,198,20407,528,19457,1478,3025,17910,19672,1263,10902,10033,11926,9009,7342,13593,20546,389,19992,943,16793,3199,13698,7237,18900,2035,14219,6716,2310,18625,736,20199,256,20679,3137,12830,4303,665,2,12627,8308,0,523,194,22,3,5,3,49,12,3,277,19844,0,1.5238572861441466,1.6510961455795958,1.328125,1.0439093484419264,1.0439093484419264,46.16403152615238 +,130103,Panamá Oeste,Arraiján,Nuevo Emperador,4644,55,49,1,0,0,0,0,8,0,0,0,7,0,0,1487,1481,184,18,3090,62,0,0,0,13,5,3005,109,8,17,3,6,14,0,8,2050,86,961,13,36,1,23,3123,22,16,0,0,9,3170,74,492,318,88,376,231,0,1245,209,1662,46,4,4,3096,5,0,57,2,10,0,2150,349,665,3,0,3,0,2354,765,0,47,3,1,2597,507,41,14,0,0,0,2,0,5,3,1,4062,702,6.744674085850557,22.02639109697933,6.796820349761526,22.342130365659777,1.0100946372239747,3.526813880126183,2.38832807570978,3209,1920,3914,274,384,119,125,114,43,88,48,24,146,6,109,29,11,45,32,36,34,8498,1176,0,3686,5988,0,7959,1715,0,9041,633,0,3297,6377,0,2532,765,6016,361,0,374,129,171,12,245,248,284,270,277,947,4,1,52,273,399,827,297,445,2352,11,104,197,298,279,348,371,306,29,14,105,1,0,1,3,0,4083,481,3881,0,38,177,100,336,1870,1454,114,107,3273,152,444,98,451,8,14,2,14,5110,5304,887,2329,120,1015,21,0,12,72,4,129,17,3471,159,0,0,3953,3096,61,134,156,930,24,88,3,0,104,251,518,512,361,965,64,679,391,719,5242,480,247,312,445,624,943,709,734,303,103,47,46,6,14,159,153.0,195.0,176.0,216.0,202.0,202.0,194.0,216.0,220.0,195.0,212.0,206.0,208.0,187.0,168.0,160.0,151.0,166.0,144.0,169.0,141.0,125.0,152.0,143.0,153.0,186.0,171.0,174.0,168.0,200.0,207.0,195.0,206.0,206.0,217.0,180.0,195.0,186.0,190.0,161.0,167.0,130.0,136.0,147.0,127.0,115.0,114.0,120.0,138.0,92.0,121.0,112.0,127.0,97.0,95.0,88.0,68.0,68.0,74.0,80.0,58.0,68.0,66.0,59.0,58.0,53.0,43.0,43.0,46.0,35.0,35.0,28.0,40.0,29.0,30.0,28.0,28.0,14.0,15.0,13.0,13.0,11.0,17.0,15.0,9.0,4.0,8.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,2.0,1.0,4.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2950,6871,593,0,942,1027,981,790,714,899,1031,912,707,579,552,378,309,220,162,98,65,24,16,8,0,0,9947,319,115,33,0,9948,341,92,33,0,2711,81,122,1689,178,61,2622,2950,0,3181,7066,167,0,503,337,21,3,2,0,52,4,2,97,9393,0,816,380,486,157,51,47,2338,6139,0,2710,2693,334,26,9,4642,0,1.7519612367328103,0.0,2.6333333333333333,0.0,8.81524870366814,271,136,168,66,21,17,810,1720,0,220,95,62,117,188,254,359,324,570,393,246,131,128,47,29,39,3187,22,3013,196,2854,355,394,2815,2896,313,918,2291,1747,1462,859,2350,3083,126,2884,325,2204,680,1406,1803,2514,695,1653,1556,724,2485,324,2885,60,3149,519,2004,567,119,8,2082,1127,0,99,86,7,2,1,0,18,1,1,35,2959,0,1.58843643145788,1.6487410631022692,1.1,1.0595238095238095,1.0595238095238095,45.11810532876285 +,130105,Panamá Oeste,Arraiján,Veracruz,7121,93,1156,0,10,1,0,0,0,0,2,1,2,0,0,1706,3883,880,186,6125,344,7,1,0,137,41,5745,860,6,10,1,7,10,0,16,3781,1912,876,32,19,2,33,6341,44,170,0,2,98,6655,187,374,163,451,300,240,0,845,1148,3653,339,15,655,6107,344,3,191,0,10,0,5068,341,414,817,8,0,7,4011,2317,6,244,74,3,4817,429,19,66,19,28,7,6,1073,123,54,14,8094,292,5.666096866096866,17.21823361823362,5.67369420702754,17.296866096866097,1.029000751314801,3.529526671675432,2.246130728775357,6851,3997,8955,425,1976,318,345,290,123,443,120,118,403,122,352,112,64,112,140,77,107,19286,3541,0,9755,13072,0,16989,5838,0,21157,1670,0,7543,15284,0,5449,2094,14450,834,0,899,359,487,91,595,608,719,579,625,2151,2,10,112,863,1152,2126,752,1254,3858,31,154,370,445,499,902,965,857,258,69,938,2,6,8,81,0,9302,1035,9562,0,31,465,142,1204,4292,3450,335,281,7270,611,959,311,756,58,10,80,82,12135,12351,1476,5661,293,2388,189,7,29,94,30,320,65,9261,659,0,0,10299,5343,128,152,200,2512,258,922,85,0,111,1209,1412,948,601,1825,124,1548,596,1963,12602,1192,443,635,967,1346,2270,952,1022,514,428,250,386,219,601,659,397.0,364.0,436.0,462.0,434.0,507.0,475.0,541.0,497.0,474.0,474.0,449.0,439.0,440.0,369.0,398.0,352.0,362.0,403.0,375.0,359.0,378.0,399.0,415.0,338.0,403.0,381.0,348.0,344.0,328.0,372.0,367.0,314.0,363.0,336.0,380.0,335.0,380.0,390.0,381.0,356.0,314.0,360.0,325.0,337.0,283.0,321.0,302.0,313.0,274.0,299.0,298.0,281.0,285.0,270.0,236.0,216.0,203.0,209.0,198.0,221.0,168.0,200.0,166.0,149.0,155.0,131.0,135.0,126.0,99.0,123.0,111.0,101.0,92.0,113.0,81.0,96.0,69.0,73.0,49.0,49.0,51.0,31.0,35.0,35.0,22.0,30.0,23.0,21.0,21.0,16.0,6.0,9.0,10.0,8.0,3.0,6.0,6.0,2.0,3.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6758,15785,1943,0,2093,2494,2171,1890,1889,1804,1752,1866,1692,1493,1433,1062,904,646,540,368,201,117,49,20,2,0,21345,1295,1745,101,0,21401,2187,797,101,0,5155,207,249,4715,577,191,6636,6756,0,10435,12766,1285,0,4937,360,33,2,0,1,925,64,2,361,17801,0,1311,541,1194,343,49,104,2605,18339,0,5658,5197,1106,74,152,12299,0,1.9053718597954523,0.0,2.7992464204973624,0.0,8.978436657681941,443,189,427,141,19,50,833,4749,0,482,199,106,230,381,524,793,505,932,535,378,240,336,228,790,189,6695,156,6327,524,5783,1068,1029,5822,6087,764,2873,3978,3553,3298,1859,4992,6520,331,6168,683,4583,1585,3341,3510,5371,1480,3098,3753,804,6047,320,6531,61,6790,1193,3686,1630,342,13,4142,2709,0,752,113,7,1,0,1,240,14,0,123,5600,0,1.7679195804195804,1.799388111888112,1.3243243243243243,1.053156146179402,1.053156146179402,48.443876806305646 +,130109,Panamá Oeste,Arraiján,Vacamonte,14487,1,2177,3,0,0,0,0,0,0,0,0,2,0,0,13215,202,2,1,13271,148,0,0,0,1,0,13403,10,2,3,0,1,0,0,1,10075,3322,6,2,1,0,14,13284,4,79,0,0,53,13420,132,706,909,455,869,177,0,7502,1437,4339,106,33,3,13415,4,0,1,0,0,0,8304,790,2831,1491,0,0,4,12055,1356,3,1,2,3,13405,8,1,0,0,0,0,0,0,5,0,1,16669,1,6.892276725808856,21.52355747726256,6.893767705382436,21.578798270463693,1.0130402384500743,3.8226527570789863,2.5847242921013414,13597,7806,16852,1041,3169,803,646,670,303,690,254,229,514,23,689,224,116,256,203,166,197,41125,3098,0,22920,21303,0,39622,4601,0,41944,2279,0,14802,29421,0,10753,4049,28242,1179,0,1264,374,750,148,850,888,1089,979,1002,2614,0,21,386,1288,1647,3797,1476,2392,12094,14,197,1143,1608,1688,2212,1806,1661,195,60,554,0,2,3,21,0,18894,2639,17942,0,79,957,348,2995,8821,5127,425,574,16728,699,1508,309,1623,54,4,43,83,21996,24601,4891,11747,378,3786,101,0,23,125,14,318,104,14120,440,0,0,15723,16915,401,248,591,4936,147,497,17,0,149,1506,2575,2964,2420,4684,63,2395,1844,2933,21437,1830,999,1206,1921,2772,5847,3810,3714,1516,603,208,190,46,58,440,525.0,582.0,623.0,644.0,775.0,739.0,774.0,797.0,799.0,864.0,881.0,848.0,817.0,824.0,789.0,808.0,734.0,775.0,750.0,758.0,754.0,769.0,792.0,772.0,704.0,828.0,800.0,729.0,705.0,735.0,690.0,674.0,693.0,665.0,740.0,683.0,646.0,739.0,682.0,672.0,710.0,650.0,647.0,622.0,592.0,592.0,597.0,538.0,577.0,591.0,605.0,637.0,642.0,600.0,608.0,542.0,543.0,537.0,572.0,516.0,508.0,415.0,410.0,402.0,355.0,285.0,290.0,262.0,215.0,168.0,180.0,194.0,146.0,144.0,114.0,97.0,111.0,101.0,79.0,81.0,70.0,58.0,47.0,54.0,49.0,44.0,40.0,35.0,25.0,20.0,17.0,20.0,13.0,14.0,11.0,5.0,4.0,6.0,3.0,1.0,3.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,11281,32305,3011,0,3149,3973,4159,3825,3791,3797,3462,3422,3221,2895,3092,2710,2090,1220,778,469,278,164,75,19,8,0,44621,1113,789,74,0,44646,1273,604,74,0,10092,664,2626,8509,1130,421,11876,11279,0,9864,36125,608,0,4842,271,28,12,3,3,140,17,0,629,40652,0,4426,2074,2524,809,226,326,7330,28882,0,13922,12493,3087,198,28,16869,0,1.6503898820844427,0.0,2.4538842013383766,0.0,9.76077859089641,1475,664,896,337,99,149,2363,7614,0,547,170,152,277,531,810,1534,1400,2611,2083,1374,799,725,297,188,97,13534,63,13300,297,12621,976,1999,11598,13007,590,5844,7753,7894,5703,4256,9341,13344,253,13139,458,10627,2512,7301,6296,12174,1423,7554,6043,295,13302,156,13441,108,13489,1821,7797,3561,418,0,7655,5942,0,795,113,11,5,1,3,44,4,0,180,12441,0,1.6177097889240273,1.809296168272413,1.2402597402597402,1.0413907284768211,1.0413907284768211,48.1563580201515 +,130107,Panamá Oeste,Arraiján,Burunga,15770,1798,1148,120,0,0,0,1,0,0,0,3,22,0,0,1961,9384,3156,655,13866,635,14,7,0,588,46,14187,692,10,51,14,101,93,0,8,8300,1012,5508,73,85,5,173,14641,239,79,2,1,194,15156,45,528,379,606,1561,561,0,1731,1344,10573,661,32,815,12483,558,2,2053,9,51,0,14400,102,614,18,15,4,3,7057,6139,4,1847,106,3,13918,508,79,28,9,17,20,91,127,80,270,9,16331,2531,3.950086177180282,14.779041709755257,4.057290589451913,15.016959669079627,1.0197281604645023,3.0328582739509105,1.8629585642649773,15480,8782,19197,1264,2842,616,688,507,197,746,245,199,383,21,796,321,146,279,218,166,176,42212,5769,0,16066,31915,0,33563,14418,0,44691,3290,0,15709,32272,0,12782,2927,30324,1948,0,2006,567,905,104,1119,1268,1513,1311,1321,5501,11,35,182,1830,2440,4702,1713,2658,9962,78,238,799,1122,1223,1706,1465,1341,207,58,562,2,1,4,27,0,18909,2828,20592,0,121,1369,427,2237,9346,7861,623,525,14753,676,2796,704,1819,283,47,71,26,25500,25667,3316,11257,836,5428,246,8,43,41,74,625,130,17681,815,0,0,23259,13654,192,258,445,3776,181,537,27,0,99,913,2093,2016,1466,4617,255,4047,1665,4566,26126,2644,1156,1650,2290,3312,5586,3134,2494,1049,477,179,153,53,49,815,751.0,767.0,820.0,848.0,951.0,961.0,935.0,979.0,906.0,920.0,938.0,966.0,840.0,882.0,876.0,862.0,844.0,855.0,789.0,835.0,897.0,904.0,941.0,959.0,886.0,971.0,980.0,870.0,871.0,802.0,798.0,801.0,769.0,743.0,687.0,702.0,707.0,651.0,702.0,676.0,712.0,616.0,674.0,683.0,612.0,609.0,683.0,641.0,632.0,637.0,665.0,581.0,628.0,625.0,583.0,581.0,493.0,530.0,480.0,449.0,418.0,376.0,386.0,366.0,320.0,302.0,269.0,238.0,243.0,224.0,208.0,181.0,191.0,206.0,144.0,116.0,130.0,94.0,85.0,86.0,85.0,80.0,64.0,65.0,48.0,54.0,37.0,41.0,31.0,25.0,15.0,14.0,15.0,15.0,9.0,8.0,5.0,3.0,5.0,2.0,1.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,13340,34482,3345,0,4137,4701,4502,4185,4587,4494,3798,3438,3297,3202,3082,2533,1866,1276,930,511,342,188,68,23,7,0,48763,1595,625,184,0,48783,1676,524,184,0,12997,579,2359,7563,1036,328,12971,13334,0,16411,33875,881,0,2340,1711,143,14,29,17,2111,673,4,466,43659,0,2716,1960,2374,565,57,145,7392,35958,0,11595,11586,2193,204,32,25557,0,1.894719564809604,0.0,2.778391390540923,0.0,8.555123419391405,881,680,848,244,23,63,2465,10276,0,1254,481,343,626,1080,1402,2267,1538,2493,1463,939,512,518,199,180,160,15092,388,13626,1854,12706,2774,2095,13385,14007,1473,3085,12395,7615,7865,2761,12719,14829,651,12903,2577,9203,3700,5666,9814,10773,4707,5940,9540,567,14913,300,15180,136,15344,2660,9050,3460,310,1,9429,6051,0,443,497,54,3,8,5,558,165,3,161,13583,0,1.6471804147018927,1.6579678315354305,1.1984732824427482,1.0440613026819925,1.0440613026819925,46.90872093023256 +,130108,Panamá Oeste,Arraiján,Cerro Silvestre,11473,169,73,34,0,2,0,0,1,0,0,1,5,0,0,5279,3485,638,123,9115,287,0,1,3,111,8,9382,112,4,3,1,9,9,1,4,7370,285,1648,122,48,2,50,9365,40,40,0,0,80,9525,42,515,437,358,687,185,0,3475,943,4707,194,34,172,9225,31,1,243,1,24,0,8758,237,514,12,2,1,1,6852,2471,1,189,9,3,9441,66,6,1,0,1,0,1,0,5,3,1,10074,1684,6.769578471565227,21.794807106065385,6.78124671502155,21.885104593713866,1.019002624671916,3.5581102362204726,2.385301837270341,9712,5562,11186,822,1889,415,421,334,139,430,138,144,358,17,471,164,87,159,156,48,120,26996,2832,0,13782,16046,0,23919,5909,0,28276,1552,0,9751,20077,0,7137,2614,19221,856,0,918,302,499,74,592,641,833,714,749,2557,3,17,301,872,1251,2589,977,1521,7291,34,296,632,935,1022,1396,1224,918,176,49,422,0,3,4,16,0,13022,1351,12313,0,36,532,180,1944,5774,3854,345,396,10368,502,1750,357,969,64,12,115,22,15494,16073,3080,7310,384,3253,89,2,14,27,15,431,78,9305,120,0,0,11899,10292,317,307,336,2971,149,402,13,0,32,816,1703,1793,1336,2960,144,2174,1277,2138,14462,1614,635,1057,1592,2190,3502,2354,2347,970,359,136,128,44,57,120,427.0,385.0,443.0,484.0,498.0,480.0,557.0,529.0,544.0,534.0,595.0,570.0,514.0,541.0,483.0,544.0,552.0,485.0,502.0,508.0,445.0,485.0,547.0,517.0,478.0,586.0,594.0,553.0,506.0,470.0,491.0,483.0,476.0,480.0,444.0,453.0,481.0,477.0,503.0,490.0,432.0,453.0,435.0,480.0,431.0,486.0,442.0,424.0,429.0,367.0,421.0,382.0,347.0,371.0,306.0,337.0,285.0,265.0,265.0,265.0,250.0,227.0,233.0,220.0,227.0,190.0,200.0,155.0,195.0,167.0,176.0,153.0,154.0,159.0,116.0,133.0,89.0,98.0,88.0,80.0,43.0,78.0,48.0,44.0,47.0,45.0,34.0,27.0,23.0,19.0,15.0,16.0,8.0,16.0,13.0,14.0,5.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7584,21330,2653,0,2237,2644,2703,2591,2472,2709,2374,2404,2231,2148,1827,1417,1157,907,758,488,260,148,68,21,3,0,30175,951,399,42,0,30186,1014,325,42,0,7416,397,1307,5487,822,283,8274,7581,0,9321,21779,467,0,1214,459,52,1,0,1,124,25,6,311,29374,0,2176,1096,1322,408,104,127,4306,22028,0,8626,8148,1978,170,31,12614,0,1.7149525893508388,0.0,2.5620397232760546,0.0,9.39870751100833,745,383,514,154,37,64,1572,6243,0,357,238,170,300,554,734,1173,969,1859,1348,787,430,437,174,145,31,9612,100,9266,446,8769,943,1385,8327,9089,623,2979,6733,5250,4462,2482,7230,9426,286,8981,731,6626,2355,4500,5212,7187,2525,4864,4848,205,9507,145,9567,75,9637,1596,5593,2300,223,3,5890,3822,0,227,134,16,0,0,0,40,7,1,115,9172,0,1.5948533196088523,1.6544518785383429,1.1756756756756757,1.0398936170212767,1.0398936170212767,48.1579489291598 +,130301,Panamá Oeste,Capira,Capira,2321,1,0,0,0,0,0,2,1,0,0,1,2,0,0,54,1640,122,12,1751,65,1,1,0,9,1,1795,8,0,5,5,5,10,0,0,213,1380,220,5,5,0,5,1768,24,8,0,0,28,1828,0,233,53,40,125,43,0,105,237,1360,123,3,0,1806,6,0,13,0,3,0,1792,4,29,0,1,1,1,854,957,0,16,1,0,907,635,45,13,0,1,0,2,109,110,4,2,1423,905,6.264020163831128,20.100189035916824,6.352867044738501,20.88531821045999,1.0142231947483589,3.5568927789934355,2.2685995623632387,1856,962,1996,120,419,53,74,52,19,94,33,17,120,4,91,34,26,54,23,8,29,4874,658,0,2256,3276,0,4226,1306,0,5178,354,0,1572,3960,0,1260,312,3735,225,0,228,41,87,18,110,101,150,133,141,663,0,2,35,145,254,523,186,312,1290,2,17,96,138,185,229,227,108,29,7,70,0,0,0,5,0,2322,174,2540,0,2,80,31,450,1015,863,84,128,1641,128,359,63,196,8,70,3,2,2902,2917,597,1021,83,722,42,0,2,3,2,146,30,1853,1,0,0,2583,1703,39,20,84,507,28,67,5,0,3,175,283,246,151,434,71,477,219,437,2783,273,155,198,371,432,677,325,354,132,54,21,25,7,11,1,53.0,73.0,80.0,81.0,85.0,92.0,74.0,92.0,68.0,85.0,94.0,101.0,83.0,79.0,98.0,107.0,91.0,90.0,87.0,78.0,98.0,91.0,92.0,112.0,93.0,100.0,93.0,76.0,80.0,71.0,71.0,76.0,84.0,86.0,75.0,75.0,73.0,79.0,77.0,83.0,67.0,79.0,79.0,72.0,83.0,74.0,82.0,63.0,72.0,65.0,80.0,82.0,77.0,75.0,84.0,71.0,69.0,65.0,65.0,53.0,69.0,46.0,61.0,50.0,59.0,47.0,57.0,49.0,40.0,38.0,37.0,41.0,30.0,34.0,42.0,29.0,27.0,21.0,19.0,27.0,23.0,13.0,15.0,13.0,15.0,6.0,11.0,12.0,7.0,8.0,12.0,7.0,3.0,7.0,1.0,3.0,3.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1238,3880,701,0,372,411,455,453,486,420,392,387,380,356,398,323,285,231,184,123,79,44,30,9,1,0,5576,162,72,9,0,5580,179,51,9,0,1453,70,385,871,213,75,1515,1237,0,2429,3255,135,0,33,118,5,0,1,0,4,0,0,54,5604,0,221,202,501,43,40,7,1623,3182,0,1334,1232,437,44,8,2764,0,1.869928400954654,0.0,2.705601907032181,0.0,9.058944835882452,81,76,190,20,14,4,534,937,0,115,60,36,82,143,211,261,168,300,178,105,75,64,28,27,1,1815,41,1725,131,1592,264,305,1551,1605,251,481,1375,1008,848,317,1539,1715,141,1637,219,1008,629,739,1117,1291,565,776,1080,400,1456,300,1556,41,1815,393,935,441,87,4,1197,659,0,8,29,3,0,0,0,3,0,0,19,1794,0,1.560215053763441,1.5682795698924732,1.3333333333333333,1.0714285714285714,1.0714285714285714,52.716594827586206 +,130302,Panamá Oeste,Capira,Caimito,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,564,100,2,650,15,0,0,0,2,0,621,4,17,16,3,1,4,0,1,92,21,540,1,9,0,4,648,13,0,0,0,6,667,0,144,23,3,26,8,0,1,7,622,35,2,0,640,14,0,12,1,0,0,665,0,0,0,0,2,0,112,538,0,17,0,0,0,433,216,2,0,7,0,0,0,8,1,0,0,871,6.406779661016949,14.893682588597844,6.764252696456087,16.764252696456087,1.0194902548725635,3.2188905547226385,2.12143928035982,680,397,788,40,94,7,22,9,2,34,5,1,5,0,41,18,5,12,8,1,9,1489,458,0,227,1720,0,1040,907,0,1826,121,0,472,1475,0,445,27,1398,77,0,78,20,29,1,33,67,83,65,66,530,0,0,3,48,96,221,49,86,332,0,11,12,17,17,40,17,17,1,1,6,0,0,0,1,0,869,58,821,0,1,10,0,47,286,431,38,19,394,60,195,42,45,5,163,4,0,1095,989,95,384,46,366,4,0,13,0,18,111,13,524,3,0,0,1272,373,3,15,8,69,3,4,1,0,0,24,28,29,35,132,150,153,52,324,1146,189,101,92,117,177,134,67,41,9,5,1,2,0,0,3,30.0,36.0,39.0,32.0,35.0,39.0,23.0,33.0,35.0,34.0,41.0,37.0,38.0,23.0,35.0,40.0,24.0,24.0,28.0,33.0,26.0,32.0,41.0,34.0,33.0,38.0,38.0,35.0,42.0,38.0,37.0,40.0,48.0,33.0,23.0,32.0,32.0,28.0,33.0,30.0,26.0,23.0,23.0,16.0,16.0,20.0,22.0,27.0,29.0,23.0,19.0,31.0,26.0,21.0,25.0,25.0,17.0,21.0,17.0,16.0,11.0,20.0,17.0,22.0,13.0,19.0,10.0,14.0,10.0,11.0,14.0,13.0,13.0,14.0,7.0,16.0,6.0,6.0,2.0,5.0,6.0,9.0,1.0,3.0,2.0,3.0,3.0,2.0,2.0,1.0,2.0,3.0,2.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,510,1368,206,0,172,164,174,149,166,191,181,155,104,121,122,96,83,64,61,35,21,11,10,3,1,0,2070,12,1,1,0,2070,13,0,1,0,744,9,48,172,35,5,561,510,0,1379,699,6,0,2,44,11,0,0,0,1,0,0,5,2021,0,22,34,195,6,24,1,436,1366,0,330,380,44,6,0,1324,0,2.234355828220859,0.0,3.128342245989305,0.0,7.1708253358925145,5,14,82,3,11,1,147,417,0,43,56,40,70,72,115,95,56,76,31,14,5,4,1,1,1,663,17,590,90,537,143,87,593,457,223,29,651,326,354,13,667,570,110,570,110,256,314,87,593,350,330,144,536,304,376,297,383,12,668,145,414,116,5,0,471,209,0,0,16,0,0,0,0,0,0,0,1,663,0,1.6102941176470589,1.4544117647058823,1.0,1.1333333333333333,1.1333333333333333,49.78382352941176 +,130303,Panamá Oeste,Capira,Campana,939,14,0,0,0,0,0,0,3,0,0,0,0,0,0,1,539,115,26,638,17,1,0,0,24,1,657,9,0,4,0,0,10,1,0,91,256,324,3,5,1,1,664,11,1,0,0,5,681,0,156,56,6,37,17,0,1,31,567,78,3,1,653,6,0,21,0,1,0,672,1,5,1,0,2,0,221,434,0,22,4,0,7,455,141,6,0,2,0,2,0,62,6,0,0,956,5.774461028192372,18.140961857379768,6.85240464344942,22.86567164179105,1.011747430249633,3.3245227606461087,2.202643171806167,689,356,798,25,185,12,26,33,8,44,14,8,68,2,23,15,12,8,10,11,9,1795,354,0,464,1685,0,1610,539,0,2000,149,0,571,1578,0,524,47,1518,60,0,65,31,50,9,36,49,66,65,70,427,1,0,6,49,122,228,64,110,443,0,0,23,37,53,88,32,12,3,1,8,0,0,0,1,0,920,101,909,0,4,53,25,97,337,329,49,97,441,106,170,68,125,7,64,1,0,1189,1079,108,349,72,437,13,0,3,0,11,86,13,686,43,0,0,1223,538,7,3,32,115,3,8,1,0,0,35,42,41,33,219,130,198,61,262,1159,194,85,92,158,145,187,79,81,25,14,2,3,0,1,43,26.0,34.0,24.0,35.0,35.0,44.0,40.0,32.0,30.0,38.0,41.0,45.0,27.0,32.0,38.0,41.0,27.0,33.0,37.0,40.0,26.0,38.0,35.0,47.0,29.0,45.0,43.0,38.0,31.0,28.0,35.0,44.0,34.0,31.0,26.0,25.0,36.0,20.0,22.0,24.0,28.0,26.0,26.0,18.0,25.0,18.0,23.0,24.0,32.0,24.0,31.0,30.0,35.0,31.0,40.0,23.0,30.0,23.0,27.0,33.0,27.0,14.0,17.0,17.0,12.0,18.0,28.0,13.0,13.0,19.0,12.0,14.0,10.0,14.0,14.0,10.0,10.0,9.0,6.0,14.0,12.0,8.0,11.0,2.0,3.0,6.0,3.0,4.0,4.0,4.0,1.0,2.0,6.0,2.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,521,1469,278,0,154,184,183,178,175,185,170,127,123,121,167,136,87,91,64,49,36,21,14,3,0,0,2210,33,19,6,0,2211,35,16,6,0,608,24,246,334,71,10,454,521,0,1298,947,23,0,12,34,21,0,0,0,0,0,0,12,2189,0,32,38,155,10,2,1,616,1414,0,331,380,100,3,7,1447,0,2.13551912568306,0.0,3.017741935483871,0.0,7.998236331569664,11,9,52,3,0,1,188,425,0,42,64,34,41,81,76,78,59,87,55,30,9,17,2,2,12,677,12,600,89,551,138,94,595,532,157,83,606,380,309,21,668,611,78,607,82,335,272,147,542,443,246,187,502,305,384,180,509,99,590,148,333,159,49,3,457,232,0,3,8,3,0,0,0,0,0,0,5,670,0,1.7182080924855492,1.5592485549132948,1.5,1.0740740740740742,1.0740740740740742,53.06966618287373 +,130310,Panamá Oeste,Capira,Lídice,2334,135,0,0,0,0,0,0,0,0,0,0,2,0,0,7,1483,362,46,1757,95,2,0,0,43,1,1779,4,7,49,3,10,44,0,2,52,1316,510,4,14,0,2,1788,44,4,0,0,62,1898,0,342,68,23,96,42,0,40,88,1688,57,3,22,1778,29,0,83,5,2,1,1867,1,28,0,0,2,0,657,1153,0,88,0,0,1365,347,22,19,1,65,0,2,0,57,20,0,1769,702,5.9746251441753175,17.273933102652826,6.170126874279124,18.79123414071511,1.0131717597471022,3.247629083245521,2.1332982086406744,1925,1084,2261,118,484,53,78,58,22,122,20,23,66,1,86,47,22,36,41,33,48,5169,802,0,2089,3882,0,4861,1110,0,5562,409,0,1642,4329,0,1439,203,4137,192,0,200,87,97,24,121,130,211,164,167,1067,0,2,35,174,240,535,184,301,1298,6,26,93,127,152,184,233,67,8,1,36,0,0,0,1,0,2737,236,2397,0,12,108,24,260,955,946,159,77,1456,205,401,243,267,12,329,4,0,3198,3117,398,1214,250,989,24,0,42,0,7,279,35,1644,29,0,0,3095,1691,40,30,77,393,7,36,1,0,0,89,211,163,92,633,249,603,232,701,2968,503,269,321,452,494,555,288,256,101,40,16,13,6,4,29,69.0,85.0,98.0,92.0,115.0,107.0,84.0,104.0,83.0,108.0,131.0,94.0,89.0,88.0,81.0,101.0,92.0,94.0,95.0,98.0,110.0,109.0,130.0,103.0,108.0,111.0,125.0,113.0,84.0,83.0,104.0,94.0,85.0,82.0,82.0,90.0,82.0,86.0,79.0,82.0,82.0,76.0,83.0,76.0,85.0,71.0,60.0,79.0,73.0,81.0,87.0,87.0,87.0,83.0,83.0,73.0,70.0,58.0,72.0,55.0,65.0,47.0,57.0,45.0,45.0,46.0,56.0,37.0,37.0,38.0,38.0,38.0,31.0,38.0,32.0,43.0,19.0,39.0,17.0,25.0,15.0,10.0,17.0,11.0,14.0,8.0,10.0,5.0,9.0,7.0,6.0,7.0,6.0,6.0,5.0,3.0,2.0,4.0,1.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1428,4202,685,0,459,486,483,480,560,516,447,419,402,364,427,328,259,214,177,143,67,39,30,10,5,0,6212,39,45,19,0,6214,42,40,19,0,1753,103,606,840,204,25,1356,1428,0,3044,3231,40,0,30,89,4,0,0,0,4,1,0,18,6169,0,164,175,485,51,19,14,2719,2688,0,1115,1265,247,28,15,3645,0,2.086527514231499,0.0,2.931339977851606,0.0,8.337450514647664,62,57,182,20,7,5,874,718,0,67,84,64,138,203,241,247,191,304,140,93,48,57,16,20,10,1833,92,1603,322,1502,423,312,1613,1543,382,257,1668,1014,911,194,1731,1750,175,1618,307,1144,474,601,1324,1442,483,621,1304,794,1131,552,1373,33,1892,371,998,491,65,0,1259,666,0,9,18,4,0,0,0,0,1,0,5,1888,0,1.6612987012987013,1.6192207792207791,1.8571428571428568,1.021505376344086,1.021505376344086,51.79012987012987 +,130305,Panamá Oeste,Capira,Cirí de Los Sotos,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,506,12,596,33,0,0,0,12,0,0,0,6,568,16,5,46,0,0,0,1,625,2,13,0,0,470,168,0,0,0,3,641,0,191,24,0,26,34,0,0,5,614,21,1,0,263,374,1,2,0,1,0,630,1,1,0,0,9,0,13,466,0,140,22,0,0,190,422,19,4,6,0,0,0,0,0,0,0,916,6.753267973856209,23.266339869281047,6.968954248366013,23.91830065359477,1.0062402496099845,3.232449297971919,2.1310452418096726,645,435,989,43,107,15,17,12,2,33,1,10,2,2,23,14,12,7,16,6,18,1148,1022,0,53,2117,0,735,1435,0,1930,240,0,589,1581,0,579,10,1468,113,0,116,22,40,5,64,96,115,101,114,740,0,1,1,68,73,210,41,74,248,1,0,5,5,9,11,4,3,1,0,2,0,0,0,0,0,1004,36,892,0,0,21,5,8,352,417,47,68,146,43,42,55,51,1,675,2,1,1248,1065,30,313,55,529,17,0,71,1,128,110,11,643,16,0,0,1642,273,1,1,3,10,0,2,0,0,1,10,5,7,10,93,474,66,25,349,1694,200,104,79,89,55,30,26,15,2,2,0,0,0,1,16,35.0,40.0,34.0,34.0,44.0,36.0,44.0,42.0,34.0,38.0,61.0,41.0,37.0,50.0,59.0,50.0,49.0,49.0,52.0,45.0,35.0,41.0,36.0,38.0,34.0,32.0,29.0,34.0,31.0,22.0,24.0,32.0,29.0,23.0,28.0,26.0,24.0,32.0,28.0,26.0,36.0,32.0,26.0,23.0,21.0,25.0,29.0,32.0,26.0,15.0,28.0,25.0,22.0,28.0,25.0,25.0,25.0,21.0,23.0,16.0,21.0,21.0,23.0,26.0,17.0,12.0,18.0,10.0,18.0,14.0,17.0,14.0,10.0,7.0,13.0,8.0,6.0,9.0,6.0,10.0,6.0,7.0,5.0,4.0,2.0,6.0,4.0,4.0,2.0,5.0,1.0,1.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,629,1460,224,0,187,194,248,245,184,148,136,136,138,127,128,110,108,72,61,39,24,21,4,3,0,0,2286,3,0,24,0,2286,3,0,24,0,747,15,58,213,66,0,585,629,0,1446,865,2,0,3,7,0,0,0,0,3,2,0,182,2116,0,9,186,55,0,0,1,739,1323,0,69,149,10,2,0,2083,0,3.001141552511416,0.0,4.455357142857143,0.0,5.975789018590575,4,47,21,0,0,1,246,326,0,134,65,86,89,97,62,38,19,36,9,6,0,1,0,1,2,574,71,46,599,126,519,118,527,18,627,0,645,339,306,9,636,469,176,255,390,141,114,16,629,209,436,35,610,555,90,454,191,2,643,119,406,116,4,0,523,122,0,1,4,0,0,0,0,2,2,0,45,591,0,1.9348837209302323,1.6511627906976745,0.0,1.0,1.0,51.86046511627907 +,130306,Panamá Oeste,Capira,Cirí Grande,1610,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,179,939,42,1027,91,0,0,0,41,1,463,1,9,478,28,10,169,0,2,10,6,1077,13,44,4,6,798,357,1,2,0,2,1160,0,337,63,8,20,23,0,3,7,1119,29,2,0,616,529,3,11,0,0,1,1140,0,1,0,1,18,0,35,814,2,297,12,0,1,571,265,16,0,284,0,10,0,9,3,1,15,1597,6.358422939068101,20.630824372759857,6.841099163679809,22.990442054958184,1.0275862068965518,3.0982758620689657,1.956034482758621,1192,841,2065,85,228,22,33,17,5,68,6,8,23,0,30,25,12,28,21,14,7,2405,1797,0,196,4006,0,1365,2837,0,3729,473,0,1198,3004,0,1172,26,2794,210,0,218,67,109,4,115,160,257,157,155,1401,0,0,0,118,133,455,112,106,541,1,2,15,12,19,15,15,12,0,0,3,0,0,0,0,0,1902,51,1689,0,2,27,14,14,612,839,53,171,240,102,138,82,69,2,1304,0,0,2462,2131,68,427,85,934,2,9,409,3,201,193,24,1289,96,0,0,3006,599,1,2,7,24,0,3,0,0,3,11,10,15,13,141,1164,103,68,425,3302,312,215,189,179,141,97,35,21,3,0,2,1,0,0,96,89.0,107.0,93.0,102.0,94.0,96.0,100.0,97.0,101.0,72.0,105.0,94.0,79.0,91.0,100.0,100.0,88.0,76.0,101.0,84.0,82.0,87.0,80.0,78.0,83.0,66.0,67.0,79.0,85.0,65.0,52.0,66.0,68.0,63.0,48.0,61.0,43.0,56.0,53.0,42.0,55.0,57.0,52.0,55.0,41.0,56.0,31.0,45.0,42.0,44.0,48.0,41.0,31.0,47.0,34.0,40.0,35.0,30.0,29.0,36.0,35.0,28.0,25.0,37.0,33.0,25.0,28.0,28.0,31.0,23.0,19.0,19.0,17.0,16.0,25.0,13.0,15.0,19.0,15.0,10.0,16.0,8.0,5.0,6.0,8.0,5.0,4.0,5.0,5.0,5.0,4.0,9.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1420,2780,393,0,485,466,469,449,410,362,297,255,260,218,201,170,158,135,96,72,43,24,17,3,3,0,4550,9,3,31,0,4550,11,1,31,0,1482,9,140,440,105,2,997,1418,0,2984,1600,9,0,2,31,14,0,0,0,0,0,0,22,4524,0,17,791,55,1,3,1,1081,2644,0,167,289,20,0,1,4116,0,2.734730538922156,0.0,4.108411214953271,0.0,5.930328761158284,5,216,16,0,0,1,321,633,0,204,104,150,162,201,127,96,68,51,17,3,4,2,0,0,3,1082,110,406,786,398,794,251,941,323,869,6,1186,513,679,43,1149,781,411,482,710,374,108,61,1131,469,723,100,1092,877,315,646,546,32,1160,157,801,224,10,1,986,206,0,0,1,3,0,0,0,0,0,0,4,1184,0,2.063704945515507,1.7862531433361275,1.0,1.0425531914893618,1.0425531914893618,49.62751677852349 +,130307,Panamá Oeste,Capira,El Cacao,2096,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,316,1154,49,1346,125,0,0,0,48,1,854,5,16,417,31,14,182,0,1,18,5,1391,27,74,0,5,1068,445,2,2,0,3,1520,0,408,68,4,68,30,0,1,19,1445,54,1,0,743,713,7,41,11,5,0,1472,4,4,0,1,39,0,29,1065,2,385,39,0,3,696,380,42,14,321,0,51,0,2,11,0,16,2082,6.023169601482855,18.748841519925858,6.535681186283596,21.322520852641336,1.0125,2.9289473684210527,1.7888157894736842,1539,968,2352,95,382,35,63,29,11,131,13,8,13,0,54,28,9,31,34,13,23,3356,1863,0,267,4952,0,1859,3360,0,4736,483,0,1401,3818,0,1356,45,3514,304,0,306,42,98,4,141,229,270,220,243,1609,0,0,0,153,211,517,146,189,651,4,3,30,34,34,44,18,17,4,0,2,0,0,0,0,0,2666,35,1908,0,1,19,3,46,742,889,114,117,382,232,218,113,93,14,1642,0,2,3089,2550,106,767,118,1278,8,1,416,2,203,250,27,1754,5,0,0,3766,761,0,5,26,47,2,2,0,0,2,12,28,26,33,267,1368,182,67,716,4019,471,230,246,255,210,107,53,25,15,2,1,0,0,0,5,90.0,113.0,92.0,125.0,104.0,100.0,96.0,112.0,116.0,82.0,119.0,103.0,95.0,89.0,106.0,117.0,107.0,104.0,116.0,98.0,100.0,114.0,105.0,94.0,83.0,91.0,98.0,82.0,75.0,77.0,82.0,77.0,81.0,87.0,77.0,77.0,75.0,87.0,83.0,74.0,64.0,68.0,64.0,61.0,64.0,63.0,50.0,55.0,53.0,50.0,63.0,44.0,52.0,41.0,46.0,45.0,43.0,56.0,40.0,40.0,50.0,29.0,63.0,40.0,29.0,43.0,31.0,32.0,35.0,35.0,38.0,31.0,29.0,39.0,21.0,23.0,20.0,18.0,16.0,19.0,15.0,13.0,12.0,9.0,20.0,14.0,12.0,10.0,8.0,6.0,5.0,1.0,2.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1542,3534,563,0,524,506,512,542,496,423,404,396,321,271,246,224,211,176,158,96,69,50,9,4,1,0,5595,18,10,16,0,5596,22,5,16,0,1983,17,141,387,116,6,1447,1542,0,3678,1948,13,0,4,8,1,0,1,0,2,0,0,18,5605,0,7,34,179,4,2,0,1098,4315,0,298,387,52,7,3,4892,0,2.786506024096385,0.0,4.013005780346821,0.0,6.175385706685582,0,13,54,1,1,0,379,1091,0,279,118,172,212,243,201,112,86,69,31,8,4,1,1,0,2,1369,170,690,849,685,854,228,1311,466,1073,17,1522,588,951,22,1517,1181,358,723,816,477,246,76,1463,494,1045,139,1400,1029,510,772,767,29,1510,288,879,359,13,0,1148,391,0,1,2,0,0,1,0,0,0,0,6,1529,0,2.0071474983755686,1.6569200779727096,0.0,1.0161290322580645,1.0161290322580645,50.89538661468486 +,130308,Panamá Oeste,Capira,La Trinidad,1137,5,0,0,0,0,0,0,0,0,0,0,1,0,0,0,230,578,41,762,46,0,0,0,41,0,429,4,9,348,8,4,46,0,1,10,13,813,0,12,1,0,750,93,1,2,0,3,849,0,204,35,0,26,28,0,3,16,810,15,5,0,627,189,0,22,0,11,0,835,0,1,0,0,13,0,38,698,2,103,7,1,4,433,332,47,1,18,1,5,0,0,7,1,0,1143,5.877763328998699,17.83224967490247,6.637191157347204,21.76723016905072,1.028268551236749,3.027090694935218,1.9305064782096584,874,548,1225,74,142,18,24,11,6,51,3,6,9,0,44,17,9,2,15,8,31,1940,851,0,169,2622,0,1321,1470,0,2490,301,0,681,2110,0,656,25,1960,150,0,155,29,47,9,73,107,121,89,107,966,0,0,0,69,104,267,74,91,360,0,5,18,21,23,26,9,15,3,0,3,0,0,0,0,0,1248,298,944,0,3,148,55,21,389,370,72,92,429,124,146,134,100,3,491,2,2,1626,1365,61,730,138,376,24,3,97,2,122,152,19,861,17,0,0,2007,420,0,6,9,44,1,3,0,0,3,27,27,19,24,190,302,114,50,790,1804,310,148,172,204,176,93,37,20,3,4,1,0,0,2,17,61.0,48.0,51.0,40.0,45.0,63.0,55.0,43.0,50.0,45.0,41.0,66.0,35.0,53.0,47.0,61.0,56.0,54.0,67.0,46.0,41.0,64.0,55.0,55.0,66.0,50.0,78.0,51.0,43.0,51.0,47.0,46.0,36.0,63.0,35.0,39.0,36.0,42.0,43.0,34.0,31.0,29.0,40.0,29.0,36.0,32.0,38.0,28.0,32.0,32.0,31.0,27.0,29.0,30.0,25.0,18.0,37.0,19.0,22.0,25.0,27.0,15.0,20.0,26.0,22.0,20.0,15.0,19.0,16.0,17.0,9.0,18.0,14.0,15.0,10.0,10.0,12.0,12.0,15.0,14.0,9.0,15.0,6.0,6.0,6.0,7.0,3.0,2.0,4.0,4.0,1.0,1.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,743,1959,289,0,245,256,242,284,281,273,227,194,165,162,142,121,110,87,66,63,42,20,6,4,1,0,2970,4,1,16,0,2971,4,0,16,0,1066,8,53,195,90,4,832,743,0,1833,1153,5,0,2,13,5,0,0,0,1,0,0,40,2930,0,3,30,509,3,0,1,1434,1011,0,208,299,22,5,0,2457,0,2.6678445229681977,0.0,3.741469816272966,0.0,6.357405549983283,1,10,174,2,0,0,403,284,0,89,64,80,102,149,145,97,51,57,23,8,3,0,1,1,3,839,35,382,492,487,387,115,759,319,555,10,864,441,433,9,865,726,148,493,381,291,202,60,814,447,427,120,754,538,336,543,331,9,865,172,530,165,7,0,676,198,0,0,2,0,0,0,0,1,0,0,7,864,0,1.860411899313501,1.5617848970251715,0.0,1.0238095238095235,1.0238095238095235,49.941647597254 +,130309,Panamá Oeste,Capira,Las Ollas Arriba,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,179,2,435,58,0,0,0,2,0,466,3,3,14,4,1,3,0,1,25,207,254,0,8,0,1,467,17,0,0,0,11,495,0,104,28,0,23,3,0,0,9,435,50,1,0,468,6,1,13,1,6,0,488,0,1,2,0,2,2,131,350,0,12,2,0,2,369,84,10,2,19,0,1,0,8,0,0,0,653,5.068131868131868,9.7010989010989,5.498901098901099,10.068131868131868,1.0101010101010102,3.2,1.698989898989899,500,276,601,8,84,12,9,8,4,22,2,3,21,0,32,11,4,10,24,3,10,1257,185,0,352,1090,0,1195,247,0,1350,92,0,374,1068,0,328,46,1010,58,0,60,10,21,10,30,29,42,35,49,264,0,1,6,34,80,131,45,77,311,12,34,11,14,27,65,20,18,0,0,6,0,0,0,0,0,637,48,616,0,0,35,8,70,248,248,41,9,349,45,103,41,42,5,74,1,0,794,756,76,307,40,227,7,1,2,0,3,51,24,471,4,0,0,776,389,6,14,13,97,0,6,0,0,0,18,36,30,26,95,101,152,56,171,777,96,47,95,120,166,121,57,47,12,5,0,2,0,1,4,32.0,22.0,27.0,27.0,27.0,27.0,22.0,25.0,19.0,21.0,25.0,32.0,18.0,12.0,29.0,31.0,24.0,33.0,22.0,20.0,26.0,26.0,47.0,19.0,22.0,26.0,24.0,30.0,31.0,24.0,16.0,27.0,24.0,22.0,19.0,23.0,12.0,22.0,22.0,26.0,19.0,16.0,21.0,12.0,11.0,24.0,23.0,16.0,22.0,15.0,16.0,15.0,21.0,24.0,12.0,18.0,17.0,24.0,22.0,10.0,21.0,14.0,11.0,17.0,12.0,8.0,7.0,12.0,5.0,8.0,7.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,6.0,6.0,5.0,6.0,9.0,5.0,6.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,365,1051,134,0,135,114,116,130,140,135,108,105,79,100,88,91,75,40,24,21,31,14,2,1,1,0,1523,16,3,8,0,1523,16,3,8,0,429,10,90,222,52,5,377,365,0,920,621,9,0,1,99,6,0,0,0,1,0,0,7,1436,0,36,70,271,16,4,0,610,543,0,289,322,67,9,1,862,0,2.1984126984126986,0.0,2.96,0.0,8.084516129032258,13,31,99,5,1,0,213,138,0,23,26,10,41,63,99,59,49,59,41,11,12,3,2,1,1,487,13,434,66,396,104,70,430,396,104,42,458,249,251,63,437,459,41,403,97,218,185,129,371,439,61,169,331,174,326,129,371,11,489,117,278,84,21,0,324,176,0,1,33,1,0,0,0,1,0,0,4,460,0,1.588,1.512,0.0,1.0,1.0,50.118 +,130311,Panamá Oeste,Capira,Villa Carmen,688,0,0,0,0,0,0,0,0,0,0,0,4,0,0,2,495,24,5,478,43,3,0,0,2,0,515,2,0,1,1,7,0,0,0,15,400,99,2,7,0,3,507,6,1,0,0,12,526,0,72,19,27,31,13,0,15,45,382,78,6,0,508,2,0,14,0,2,0,511,4,9,0,0,0,2,211,307,0,5,2,1,7,416,100,0,0,0,0,0,0,3,0,0,0,692,6.776290630975144,10.2887189292543,6.78585086042065,10.424474187380495,1.011406844106464,3.365019011406844,2.096958174904943,536,306,614,22,105,12,15,23,5,28,7,6,18,0,41,11,1,13,14,0,9,1423,177,0,484,1116,0,1275,325,0,1503,97,0,441,1159,0,358,83,1088,71,0,78,17,23,8,28,44,44,38,46,193,0,0,12,52,60,150,44,82,449,0,3,11,21,28,65,49,30,5,0,19,0,0,0,1,0,686,66,680,0,1,18,16,119,259,262,26,14,489,45,104,13,64,1,11,0,0,865,832,127,363,13,216,8,0,0,0,4,23,8,489,5,0,0,738,485,12,5,26,140,5,20,1,0,0,37,62,72,41,144,7,140,92,157,847,63,43,79,73,170,202,75,77,27,15,11,6,2,2,5,28.0,24.0,22.0,23.0,29.0,33.0,31.0,28.0,29.0,18.0,24.0,31.0,20.0,25.0,27.0,20.0,23.0,30.0,28.0,35.0,29.0,32.0,38.0,20.0,30.0,38.0,29.0,21.0,26.0,20.0,31.0,31.0,23.0,15.0,18.0,20.0,15.0,25.0,19.0,17.0,16.0,16.0,26.0,22.0,25.0,21.0,18.0,30.0,26.0,22.0,25.0,26.0,19.0,18.0,19.0,24.0,17.0,11.0,17.0,22.0,19.0,11.0,15.0,17.0,17.0,14.0,8.0,14.0,13.0,13.0,7.0,7.0,8.0,5.0,11.0,12.0,8.0,9.0,5.0,6.0,5.0,3.0,1.0,5.0,4.0,3.0,2.0,0.0,1.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,392,1132,173,0,126,139,127,136,149,134,118,96,105,117,107,91,79,62,38,40,18,6,8,1,0,0,1652,25,15,5,0,1652,26,14,5,0,450,25,33,279,55,11,452,392,0,692,980,25,0,8,59,68,0,0,0,3,0,0,44,1515,0,90,74,218,20,6,6,345,938,0,373,370,112,14,6,822,0,1.7977207977207976,0.0,2.539256198347108,0.0,8.620506776664703,33,13,66,14,3,4,115,288,0,30,14,14,25,46,65,78,42,92,48,36,14,15,4,8,1,521,15,490,46,456,80,112,424,481,55,128,408,283,253,68,468,506,30,468,68,297,171,183,353,452,84,227,309,175,361,108,428,9,527,102,299,118,17,0,362,174,0,2,14,15,0,0,0,1,0,0,11,493,0,1.6138059701492538,1.5522388059701493,0.0,1.05,1.05,50.798507462686565 +,130312,Panamá Oeste,Capira,Villa Rosario,2315,3,1,0,0,0,0,0,0,0,0,0,10,0,0,138,1473,194,18,1721,84,2,0,0,16,0,1788,9,2,6,1,2,10,0,5,192,1414,191,2,14,1,9,1762,14,17,0,1,29,1823,4,160,94,36,186,16,0,504,176,992,145,5,1,1780,9,0,29,1,4,0,1792,14,14,1,0,2,0,790,1003,0,29,0,1,899,789,55,4,4,1,0,0,0,61,5,5,1431,898,6.136546184738956,13.399311531841652,6.27653471026965,14.449799196787149,1.0197476686780034,3.469007131102578,2.176631925397696,1869,1000,2150,142,318,53,75,58,15,100,31,18,88,3,82,33,10,23,49,8,33,5075,491,1,1902,3664,1,4482,1084,1,5219,347,1,1581,3986,0,1349,232,3796,189,1,195,47,96,22,117,136,169,131,167,701,1,1,26,208,253,560,176,265,1328,10,15,132,141,165,210,147,94,19,4,30,0,0,0,0,1,2508,297,2175,1,6,91,35,277,911,813,38,136,1813,164,471,94,160,5,35,1,3,2974,2946,410,1434,113,738,31,0,17,3,10,130,17,1478,49,0,0,2656,1764,27,30,79,382,13,29,0,1,3,125,192,197,148,659,44,592,278,567,2684,330,247,283,416,462,667,332,287,101,34,8,12,2,6,49,81.0,95.0,73.0,104.0,102.0,89.0,98.0,92.0,105.0,100.0,93.0,124.0,84.0,111.0,73.0,87.0,72.0,98.0,98.0,107.0,100.0,99.0,114.0,95.0,102.0,116.0,116.0,114.0,96.0,89.0,92.0,92.0,88.0,72.0,77.0,77.0,71.0,85.0,86.0,68.0,83.0,79.0,74.0,81.0,82.0,82.0,74.0,84.0,88.0,79.0,73.0,74.0,73.0,65.0,48.0,55.0,69.0,78.0,61.0,45.0,56.0,40.0,25.0,46.0,45.0,42.0,30.0,42.0,42.0,30.0,32.0,29.0,19.0,17.0,19.0,27.0,20.0,13.0,14.0,18.0,27.0,15.0,12.0,7.0,10.0,9.0,6.0,7.0,3.0,2.0,3.0,4.0,6.0,4.0,6.0,4.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,1424,3970,525,1,455,484,485,462,510,531,421,387,399,407,333,308,212,186,116,92,71,27,23,9,1,1,5726,125,64,4,1,5726,133,56,4,1,1558,124,434,859,190,51,1279,1424,1,2122,3733,64,1,34,201,9,4,1,2,13,1,0,166,5488,1,320,337,528,44,10,17,1432,3231,1,1318,1361,289,14,9,2928,1,1.9227346278317152,0.0,2.6959858323494688,0.0,8.603716216216217,104,112,177,21,5,11,500,939,0,54,62,48,95,172,209,281,204,317,174,98,48,61,13,11,12,1836,33,1703,166,1620,249,282,1587,1642,227,404,1465,1020,849,265,1604,1794,75,1647,222,1247,400,662,1207,1475,394,781,1088,287,1582,283,1586,23,1846,363,992,437,77,0,1168,701,0,14,48,7,3,1,1,6,0,0,61,1728,0,1.5912252541466023,1.5762439807383628,1.3,1.0365853658536586,1.0365853658536586,49.196361690743714 +,130313,Panamá Oeste,Capira,Santa Rosa,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,460,7,504,18,1,0,0,6,0,18,0,4,433,9,1,63,0,1,0,0,504,1,24,0,0,320,209,0,0,0,0,529,0,110,8,0,8,15,0,0,1,521,6,1,0,175,337,3,7,4,2,1,508,1,1,0,1,18,0,6,311,6,199,7,0,0,213,271,7,18,9,0,7,0,1,3,0,0,670,6.506198347107438,21.73553719008265,6.952479338842975,23.84710743801653,1.0207939508506616,3.2665406427221173,2.062381852551985,540,381,1065,12,99,10,14,6,5,30,1,2,1,0,29,7,7,1,10,2,1,890,1116,0,38,1968,0,397,1609,0,1798,208,0,607,1399,0,597,10,1269,130,0,132,19,43,1,60,70,91,76,113,713,0,0,0,58,60,186,41,61,249,2,0,7,5,4,7,4,3,1,0,0,0,0,0,0,0,813,44,879,0,4,14,20,6,337,422,19,95,109,49,67,42,14,2,560,0,3,1186,980,32,181,43,440,40,1,106,3,133,82,6,764,15,0,0,1454,267,0,1,3,11,0,0,0,0,3,3,7,3,12,58,498,55,17,201,1745,129,51,64,70,45,31,5,3,5,3,0,0,0,0,15,36.0,45.0,35.0,44.0,43.0,41.0,52.0,54.0,35.0,45.0,45.0,68.0,51.0,51.0,44.0,55.0,44.0,45.0,54.0,35.0,49.0,44.0,38.0,43.0,36.0,27.0,28.0,27.0,33.0,31.0,23.0,30.0,17.0,21.0,20.0,27.0,21.0,25.0,29.0,24.0,28.0,26.0,18.0,26.0,23.0,15.0,13.0,22.0,21.0,22.0,19.0,18.0,14.0,17.0,19.0,18.0,15.0,14.0,19.0,18.0,18.0,15.0,19.0,12.0,13.0,11.0,16.0,16.0,13.0,8.0,17.0,12.0,15.0,7.0,10.0,2.0,5.0,5.0,6.0,3.0,8.0,2.0,4.0,1.0,4.0,2.0,5.0,1.0,5.0,4.0,1.0,1.0,2.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,689,1288,189,0,203,227,259,233,210,146,111,126,121,93,87,84,77,64,61,21,19,17,5,2,0,0,2142,4,0,20,0,2142,4,0,20,0,666,0,35,192,57,1,526,689,0,1411,755,0,0,0,4,0,0,0,0,3,0,0,7,2152,0,1,7,3,1,0,0,38,2116,0,81,83,7,0,0,1995,0,3.01280409731114,0.0,4.658995815899582,0.0,5.885964912280702,0,3,2,0,0,0,20,515,0,164,48,57,64,79,50,41,7,13,5,5,2,1,0,0,4,438,102,35,505,78,462,71,469,21,519,3,537,259,281,27,513,228,312,165,375,104,61,10,530,76,464,25,515,427,113,292,248,3,537,91,348,100,1,0,445,95,0,0,1,0,0,0,0,0,0,0,2,537,0,2.196296296296296,1.8148148148148149,0.0,1.0714285714285714,1.0714285714285714,51.06851851851852 +,130401,Panamá Oeste,Chame,Chame,1387,3,42,2,0,0,0,0,0,0,0,5,1,0,0,5,806,23,11,803,31,0,1,0,10,0,833,0,2,2,0,3,1,0,4,701,76,50,4,3,0,11,826,4,7,0,0,8,845,0,370,34,69,87,29,0,21,130,613,78,3,0,824,4,1,9,0,7,0,768,5,69,2,1,0,0,493,345,1,5,1,0,787,0,44,2,0,0,0,0,0,8,1,3,1350,90,6.641395908543923,22.31287605294825,6.671480144404332,22.719614921780988,1.015384615384615,3.6568047337278102,2.4698224852071005,864,435,799,66,177,22,40,21,21,42,4,12,37,4,56,18,6,17,15,4,10,2195,230,0,989,1436,0,1951,474,0,2306,119,0,619,1806,0,486,133,1744,62,0,65,22,40,3,40,57,53,50,39,273,0,1,20,76,140,208,77,115,578,1,19,35,67,96,92,108,101,9,1,38,0,0,0,1,0,958,125,1143,0,1,34,18,307,382,366,29,59,641,48,121,66,129,3,54,3,2,1248,1296,179,480,72,297,23,0,14,2,1,72,7,798,9,0,0,1050,750,23,39,58,263,7,35,1,0,2,72,106,93,64,214,53,206,63,210,1070,144,64,112,209,276,252,141,155,39,27,13,12,7,14,9,32.0,22.0,29.0,36.0,34.0,33.0,36.0,35.0,31.0,30.0,31.0,27.0,30.0,36.0,49.0,33.0,30.0,41.0,33.0,36.0,33.0,44.0,37.0,29.0,51.0,42.0,37.0,38.0,16.0,28.0,25.0,26.0,40.0,32.0,35.0,34.0,34.0,37.0,40.0,39.0,37.0,33.0,34.0,31.0,28.0,29.0,30.0,39.0,36.0,30.0,29.0,31.0,30.0,33.0,27.0,25.0,31.0,30.0,24.0,26.0,23.0,21.0,23.0,20.0,25.0,21.0,31.0,31.0,26.0,29.0,24.0,22.0,22.0,19.0,22.0,23.0,21.0,25.0,20.0,10.0,8.0,7.0,11.0,9.0,12.0,7.0,8.0,9.0,8.0,5.0,5.0,4.0,4.0,1.0,3.0,2.0,2.0,3.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,491,1595,458,0,153,165,173,173,194,161,158,184,163,164,150,136,112,138,109,99,47,37,17,9,2,0,2310,155,78,1,0,2311,162,70,1,0,552,40,82,469,111,22,777,491,0,1040,1392,112,0,3,53,2,0,0,0,5,0,0,27,2454,0,172,181,207,25,15,3,463,1478,0,493,519,285,20,19,1208,0,1.8603839441535777,0.0,2.651554404145078,0.0,9.527908805031446,52,58,79,18,4,2,186,465,0,45,16,16,33,75,106,110,91,142,91,47,22,26,9,25,4,851,13,807,57,742,122,194,670,773,91,302,562,450,414,191,673,813,51,781,83,579,202,352,512,677,187,352,512,93,771,71,793,6,858,186,426,218,34,0,552,312,0,1,13,1,0,0,0,3,0,0,11,835,0,1.4444444444444444,1.5,1.2222222222222223,1.048780487804878,1.048780487804878,55.31018518518518 +,130402,Panamá Oeste,Chame,Bejuco,2744,10,51,2,0,0,0,1,0,0,0,0,20,0,0,174,1608,130,60,1845,67,1,0,0,57,2,1941,5,1,3,4,2,15,0,1,1201,252,491,12,10,2,4,1916,9,9,0,0,38,1972,0,403,46,115,214,57,0,43,199,1595,128,7,0,1895,2,3,25,0,47,0,1886,16,70,0,0,0,0,973,984,0,15,0,0,1317,537,88,2,0,0,0,0,0,15,11,2,1896,932,6.70648815653965,22.3048403707518,6.81513903192585,22.99536560247168,1.013184584178499,3.5461460446247464,2.3179513184584177,2018,1090,2161,159,396,60,86,55,22,93,19,12,65,6,174,34,21,30,42,0,32,5075,825,0,1894,4006,0,3864,2036,0,5522,378,0,1584,4316,0,1399,185,4106,210,0,217,40,161,11,121,174,175,166,142,1067,1,11,6,203,267,507,150,289,1391,8,28,37,94,115,149,157,151,20,0,37,1,0,0,4,0,2399,298,2559,0,4,114,48,384,952,1022,118,83,1378,179,605,125,269,5,45,57,1,3100,3142,304,1083,142,1071,57,1,5,1,5,213,16,1916,15,0,0,3048,1634,9,36,77,396,17,36,3,0,6,107,186,206,121,562,151,639,182,537,2881,548,233,321,441,511,610,269,239,94,40,8,12,10,10,15,81.0,81.0,80.0,100.0,103.0,108.0,105.0,113.0,119.0,96.0,119.0,82.0,91.0,91.0,93.0,85.0,83.0,94.0,95.0,90.0,100.0,74.0,112.0,100.0,97.0,120.0,96.0,100.0,79.0,82.0,101.0,87.0,90.0,91.0,89.0,93.0,84.0,77.0,77.0,77.0,70.0,68.0,63.0,75.0,74.0,79.0,65.0,82.0,78.0,76.0,73.0,87.0,74.0,92.0,70.0,86.0,71.0,65.0,83.0,60.0,59.0,49.0,42.0,43.0,47.0,60.0,60.0,44.0,44.0,54.0,50.0,43.0,32.0,39.0,29.0,28.0,22.0,28.0,19.0,21.0,20.0,13.0,28.0,11.0,17.0,15.0,15.0,12.0,11.0,13.0,10.0,6.0,7.0,8.0,4.0,3.0,2.0,1.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1462,4004,776,0,445,541,476,447,483,477,458,408,350,380,396,365,240,262,193,118,89,66,35,11,2,0,5955,175,86,26,0,5959,183,74,26,0,1630,66,241,926,211,47,1660,1461,0,3048,3051,143,0,11,69,6,0,5,0,24,1,0,141,5985,0,268,268,476,19,31,35,1189,3956,0,1035,1241,360,29,24,3553,0,2.038878504672897,0.0,2.853804347826087,0.0,8.238705543095161,96,98,178,13,13,10,410,1200,0,124,119,61,104,206,233,276,212,295,166,86,51,32,13,17,3,1977,41,1874,144,1708,310,298,1720,1783,235,518,1500,1035,983,197,1821,1856,162,1839,179,1302,537,648,1370,1214,804,758,1260,133,1885,123,1895,20,1998,395,1130,442,51,1,1263,755,0,6,19,1,0,1,0,8,0,0,55,1928,0,1.5354135710747896,1.5562159484893512,1.3125,1.0333333333333334,1.0333333333333334,52.19970267591675 +,130403,Panamá Oeste,Chame,Buenos Aires,1131,0,1,0,0,0,0,0,1,0,0,1,0,0,0,2,447,251,28,670,30,2,0,0,26,0,668,2,8,14,3,14,18,0,1,290,19,393,3,20,0,3,680,27,2,0,0,19,728,0,291,62,25,24,2,0,1,17,668,40,2,0,667,8,7,16,0,30,0,699,1,27,0,1,0,0,212,493,0,20,3,0,4,615,89,0,1,3,2,4,0,6,4,0,0,1134,4.745762711864407,12.175141242937851,5.71045197740113,16.02542372881356,1.010989010989011,3.181318681318681,2.081043956043956,737,428,821,64,140,7,13,5,6,40,10,3,13,1,30,10,4,17,17,2,10,1660,513,0,338,1835,0,1314,859,0,2038,135,0,551,1622,0,508,43,1554,68,0,71,20,43,4,42,51,111,68,61,572,1,0,1,69,97,185,67,99,373,3,2,20,44,34,58,42,20,4,1,9,0,0,0,1,0,787,150,1027,0,0,107,16,110,340,443,56,78,350,67,152,132,108,1,87,4,0,1239,1049,110,366,139,247,20,0,18,1,14,149,11,782,14,0,0,1345,480,1,9,22,96,1,9,1,0,1,20,52,44,39,113,95,164,62,347,1202,261,68,157,128,185,142,59,39,11,9,3,4,3,3,14,28.0,26.0,26.0,35.0,35.0,26.0,44.0,34.0,20.0,50.0,41.0,30.0,27.0,29.0,37.0,32.0,49.0,31.0,32.0,38.0,36.0,36.0,40.0,30.0,35.0,29.0,37.0,27.0,29.0,32.0,33.0,37.0,29.0,26.0,29.0,21.0,40.0,35.0,29.0,28.0,24.0,27.0,34.0,25.0,28.0,40.0,30.0,33.0,29.0,33.0,24.0,34.0,30.0,26.0,31.0,32.0,16.0,21.0,19.0,18.0,19.0,22.0,24.0,16.0,20.0,22.0,28.0,25.0,18.0,13.0,16.0,21.0,14.0,9.0,6.0,14.0,15.0,13.0,9.0,13.0,3.0,11.0,10.0,9.0,7.0,11.0,3.0,14.0,2.0,4.0,2.0,0.0,4.0,1.0,4.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,488,1475,325,0,150,174,164,182,177,154,154,153,138,165,145,106,101,106,66,64,40,34,11,4,0,0,2248,29,6,5,0,2248,29,6,5,0,727,11,27,259,68,5,705,486,0,1455,812,21,0,2,30,0,0,0,0,0,0,0,9,2247,0,21,21,82,11,2,0,269,1882,0,297,365,108,12,5,1501,0,2.373318385650224,0.0,3.2251968503937007,0.0,7.610576923076923,8,9,37,4,2,0,105,572,0,59,65,23,83,93,108,104,58,76,28,14,4,7,3,5,6,707,30,591,146,553,184,97,640,494,243,77,660,410,327,19,718,612,125,622,115,372,250,147,590,425,312,168,569,191,546,115,622,5,732,163,428,134,12,1,533,204,0,0,7,0,0,0,0,0,0,0,7,723,0,1.6788617886178865,1.4214092140921408,1.5,1.0434782608695652,1.0434782608695652,54.42333785617368 +,130404,Panamá Oeste,Chame,Cabuya,1195,6,0,4,0,0,0,0,0,0,0,0,1,0,0,1,491,152,15,629,15,0,0,0,14,1,621,1,0,18,1,3,15,0,0,326,16,293,3,16,0,5,631,15,3,0,0,10,659,0,363,64,8,70,41,0,2,20,592,45,0,0,620,5,9,22,0,3,0,638,10,11,0,0,0,0,269,374,0,15,1,0,22,572,58,0,0,0,0,1,0,3,2,1,79,1127,6.585889570552148,20.34355828220859,6.611963190184049,20.6319018404908,1.0409711684370258,3.1669195751138086,2.056145675265554,687,384,757,28,80,31,34,21,1,28,5,4,18,0,41,24,8,11,6,2,14,1698,275,0,619,1354,0,1152,821,0,1859,114,0,516,1457,0,481,35,1405,52,0,53,22,38,1,43,51,74,52,53,465,0,0,13,61,94,222,52,100,361,5,41,9,17,13,49,19,42,3,0,19,0,1,0,0,0,731,120,913,0,2,42,15,150,310,364,56,33,359,79,163,63,46,0,52,0,54,1065,1013,128,246,74,290,9,1,14,54,2,73,9,445,219,0,0,1161,419,14,36,9,109,0,16,0,0,58,46,37,40,35,136,94,166,40,199,861,206,88,110,165,161,121,53,59,13,12,0,4,0,6,219,23.0,23.0,31.0,28.0,25.0,34.0,34.0,37.0,41.0,38.0,39.0,24.0,43.0,32.0,37.0,34.0,31.0,36.0,32.0,30.0,30.0,39.0,22.0,24.0,13.0,29.0,25.0,38.0,24.0,25.0,21.0,31.0,30.0,17.0,29.0,27.0,31.0,32.0,42.0,31.0,28.0,32.0,25.0,25.0,23.0,23.0,25.0,25.0,28.0,25.0,22.0,26.0,22.0,23.0,21.0,25.0,28.0,25.0,16.0,22.0,15.0,24.0,20.0,23.0,16.0,17.0,13.0,11.0,13.0,20.0,17.0,12.0,13.0,11.0,14.0,15.0,15.0,15.0,12.0,7.0,7.0,11.0,8.0,8.0,5.0,4.0,6.0,5.0,7.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,489,1310,279,0,130,184,175,163,128,141,128,163,133,126,114,116,98,74,67,64,39,25,6,3,1,0,2029,25,19,5,0,2029,36,8,5,0,585,13,83,316,54,14,524,489,0,1116,915,47,0,8,51,11,0,0,0,2,0,0,20,1986,0,81,82,106,12,1,10,388,1398,0,330,463,135,11,12,1127,0,2.069739952718676,0.0,3.046017699115044,0.0,7.884985563041386,31,35,43,5,0,5,151,417,0,47,57,24,56,95,108,80,49,74,32,22,6,10,2,6,18,666,21,599,88,531,156,119,568,577,110,108,579,352,335,119,568,636,51,613,74,347,266,208,479,457,230,227,460,186,501,162,525,10,677,146,398,128,15,0,404,283,0,1,14,1,0,0,0,2,0,0,8,661,0,1.5502183406113537,1.4745269286754004,1.1666666666666667,1.0,1.0,51.9839883551674 +,130405,Panamá Oeste,Chame,Chicá,599,2,0,0,0,0,0,0,0,0,0,0,0,0,0,15,224,40,11,274,5,0,0,0,11,0,273,2,1,4,1,1,8,0,0,221,1,47,0,9,0,12,281,3,0,0,0,6,290,0,228,32,21,23,7,0,0,9,258,23,0,0,269,0,0,10,2,9,0,276,7,5,2,0,0,0,96,184,0,9,1,0,3,198,54,0,0,1,0,1,0,26,7,0,0,601,6.419607843137255,11.31372549019608,6.729411764705882,12.847058823529412,1.0241379310344827,3.206896551724138,2.1517241379310343,297,179,300,18,53,4,11,4,1,8,1,0,5,1,5,5,6,9,12,1,7,687,155,0,158,684,0,553,289,0,777,65,0,213,629,0,189,24,602,27,0,27,17,14,5,12,21,28,19,26,190,0,0,3,28,33,87,19,30,159,0,0,5,15,20,37,31,9,2,0,4,0,0,0,1,0,380,53,334,0,2,7,1,33,126,130,19,26,137,63,78,53,36,6,51,0,0,468,414,44,106,54,205,7,0,8,0,2,62,11,198,7,0,0,481,180,3,4,16,77,2,3,1,0,1,10,26,21,19,55,88,73,23,117,431,100,49,50,54,69,54,29,23,6,6,3,0,1,0,7,5.0,10.0,8.0,17.0,11.0,24.0,10.0,8.0,9.0,13.0,18.0,16.0,21.0,11.0,13.0,16.0,9.0,9.0,12.0,11.0,9.0,15.0,7.0,12.0,9.0,11.0,10.0,11.0,9.0,9.0,13.0,14.0,16.0,16.0,12.0,13.0,19.0,12.0,11.0,7.0,14.0,12.0,9.0,10.0,7.0,10.0,7.0,11.0,10.0,10.0,14.0,9.0,10.0,8.0,13.0,9.0,5.0,11.0,5.0,12.0,9.0,10.0,15.0,6.0,13.0,12.0,9.0,10.0,15.0,12.0,7.0,3.0,7.0,3.0,4.0,6.0,8.0,6.0,2.0,5.0,3.0,3.0,5.0,6.0,1.0,4.0,0.0,5.0,2.0,1.0,1.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,194,541,147,0,51,64,79,57,52,50,71,62,52,48,54,42,53,58,24,27,18,12,7,1,0,0,856,21,3,2,0,856,21,3,2,0,236,5,52,161,33,8,193,194,0,566,300,16,0,0,4,9,0,0,0,3,0,0,1,865,0,1,8,39,1,1,0,57,775,0,108,178,42,3,1,550,0,2.127371273712737,0.0,2.953307392996109,0.0,8.138321995464853,0,3,13,1,0,0,24,256,0,23,17,13,26,41,41,36,23,45,13,8,1,7,1,0,2,290,7,265,32,246,51,45,252,114,183,5,292,154,143,8,289,268,29,256,41,163,93,68,229,219,78,102,195,53,244,41,256,118,179,58,175,59,5,0,216,81,0,0,2,1,0,0,0,1,0,0,1,292,0,1.5757575757575757,1.393939393939394,1.0,1.0,1.0,55.38383838383838 +,130406,Panamá Oeste,Chame,El Líbano,165,18,0,2,0,0,0,0,0,0,0,0,0,0,0,1,97,8,5,102,4,0,1,0,3,1,106,1,0,2,1,0,1,0,0,69,3,39,0,0,0,0,105,2,1,0,0,3,111,0,29,18,1,18,8,0,1,6,95,9,0,0,91,2,0,9,0,9,0,105,0,4,1,0,0,1,26,79,0,5,1,0,0,109,2,0,0,0,0,0,0,0,0,0,0,185,6.783783783783784,23.69369369369369,6.801801801801802,23.69369369369369,1.0,3.1621621621621623,2.018018018018018,111,41,105,8,15,2,6,1,2,3,2,0,3,0,13,3,0,0,0,1,1,230,52,0,68,214,0,189,93,0,258,24,0,70,212,0,61,9,197,15,0,15,3,1,0,10,13,12,10,7,55,0,0,1,11,16,26,6,12,63,0,0,0,0,4,3,7,6,0,0,1,0,0,0,0,0,98,19,127,0,1,5,4,25,40,46,8,8,70,6,21,4,13,0,1,1,0,139,160,21,50,4,40,0,0,1,0,0,10,0,99,3,0,0,159,63,1,0,3,17,0,1,0,0,0,9,6,8,5,21,9,25,6,28,154,16,9,17,22,24,25,11,11,4,2,0,0,0,1,3,5.0,5.0,2.0,5.0,6.0,6.0,5.0,6.0,8.0,7.0,1.0,6.0,5.0,3.0,3.0,2.0,7.0,4.0,2.0,5.0,9.0,3.0,3.0,5.0,3.0,3.0,6.0,1.0,3.0,4.0,4.0,6.0,9.0,5.0,6.0,5.0,0.0,3.0,7.0,1.0,4.0,2.0,6.0,0.0,4.0,2.0,5.0,6.0,2.0,4.0,2.0,5.0,4.0,4.0,5.0,1.0,2.0,1.0,4.0,1.0,2.0,3.0,5.0,2.0,2.0,0.0,3.0,4.0,3.0,3.0,2.0,0.0,1.0,1.0,5.0,0.0,2.0,3.0,3.0,2.0,1.0,0.0,2.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,73,184,42,0,23,32,18,20,23,17,30,16,16,19,20,9,14,13,9,10,8,0,2,0,0,0,293,2,4,0,0,293,2,4,0,0,73,4,42,25,12,4,66,73,0,152,146,1,0,7,4,0,0,0,0,13,0,0,0,275,0,18,29,30,0,0,0,86,136,0,47,51,23,2,0,176,0,2.19672131147541,0.0,2.9431818181818183,0.0,7.451505016722408,4,9,18,0,0,0,35,45,0,10,3,3,12,19,15,12,11,12,6,2,2,2,0,1,1,107,4,100,11,90,21,13,98,99,12,14,97,61,50,2,109,101,10,97,14,77,20,30,81,84,27,32,79,8,103,4,107,1,110,38,49,21,3,0,67,44,0,0,1,0,0,0,0,4,0,0,0,106,0,1.2522522522522523,1.4414414414414414,0.0,1.2,1.2,52.57657657657658 +,130407,Panamá Oeste,Chame,Las Lajas,2841,4,518,12,0,0,0,0,0,0,0,10,2,0,0,86,1099,95,19,1263,17,0,0,0,18,1,1286,5,1,1,2,1,1,0,2,726,315,232,2,18,0,6,1227,8,46,0,0,18,1299,0,1507,73,203,251,42,0,16,192,1030,61,0,0,1273,1,4,17,1,3,0,1156,70,26,44,1,1,1,820,464,1,12,1,1,343,719,216,0,0,0,0,1,0,19,0,1,3225,162,6.779342723004695,17.965571205007826,6.815336463223788,18.50625978090767,1.0300230946882216,3.340261739799846,2.139337952270978,1350,735,1274,105,216,29,26,22,9,57,13,9,40,8,52,18,6,20,21,13,23,3162,504,0,1174,2492,0,2359,1307,0,3438,228,0,952,2714,0,805,147,2620,94,0,96,28,85,7,73,76,96,94,88,596,1,4,15,102,163,354,119,154,838,1,55,25,50,59,117,163,126,12,4,60,1,0,0,4,0,1473,177,1646,0,2,47,78,366,563,553,75,89,749,91,374,236,84,2,22,3,64,1956,1937,175,567,252,518,36,0,12,65,3,76,12,962,332,0,0,1760,972,16,57,33,391,8,55,4,0,69,98,113,121,83,290,73,315,65,423,1578,179,136,176,259,351,339,159,166,77,49,27,21,18,26,332,55.0,47.0,61.0,64.0,61.0,60.0,74.0,64.0,55.0,56.0,58.0,48.0,51.0,55.0,69.0,54.0,57.0,58.0,49.0,62.0,66.0,56.0,63.0,70.0,56.0,49.0,58.0,55.0,46.0,65.0,49.0,42.0,54.0,53.0,51.0,44.0,60.0,40.0,48.0,55.0,56.0,43.0,54.0,53.0,48.0,44.0,53.0,50.0,64.0,44.0,53.0,51.0,43.0,44.0,42.0,44.0,42.0,47.0,35.0,41.0,42.0,33.0,35.0,44.0,47.0,30.0,46.0,40.0,29.0,23.0,26.0,32.0,27.0,26.0,22.0,32.0,25.0,20.0,25.0,10.0,11.0,9.0,10.0,8.0,15.0,5.0,4.0,4.0,6.0,6.0,1.0,0.0,2.0,6.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,878,2512,503,0,288,309,281,280,311,273,249,247,254,255,233,209,201,168,133,112,53,25,10,1,1,0,3469,210,214,0,0,3476,258,159,0,0,1036,36,244,714,118,55,812,878,0,1901,1656,336,0,21,78,13,0,4,0,0,0,0,11,3766,0,323,174,199,13,5,10,651,2518,0,659,776,234,27,119,2078,0,1.913887204366283,0.0,2.778280542986425,0.0,8.846134086822502,100,78,88,8,4,5,223,844,0,81,52,31,68,147,168,176,126,168,90,73,26,40,17,39,36,1323,27,1266,84,1125,225,184,1166,1227,123,469,881,662,688,318,1032,1265,85,1225,125,924,301,540,810,939,411,567,783,262,1088,159,1191,19,1331,323,758,232,37,0,905,445,0,4,22,5,0,1,0,0,0,0,3,1315,0,1.448888888888889,1.4348148148148148,1.0909090909090908,1.0277777777777777,1.0277777777777777,52.12814814814815 +,130408,Panamá Oeste,Chame,Nueva Gorgona,3708,7,1529,6,0,1,0,0,0,0,0,1,2,0,0,127,1432,113,21,1607,65,0,0,0,20,1,1665,17,0,3,0,4,0,0,4,990,350,310,3,31,3,6,1578,16,83,0,0,16,1693,0,2992,144,133,174,114,0,14,166,1328,179,2,4,1636,7,0,35,0,15,0,1254,142,111,182,3,0,1,1113,552,0,27,1,0,1176,366,50,11,2,1,0,0,1,80,0,6,5162,92,6.846105527638191,22.451005025125628,6.9290201005025125,23.275125628140703,1.015357353809805,3.432368576491436,2.108682811577082,1722,994,1605,118,227,34,39,30,17,56,21,15,56,11,87,27,10,20,16,10,21,4010,659,0,1617,3052,0,3604,1065,0,4383,286,0,1220,3449,0,1025,195,3305,144,0,154,61,62,3,99,131,155,113,149,743,1,0,21,185,273,411,128,198,849,11,54,54,80,102,177,109,229,17,2,81,1,0,2,14,0,1763,267,2133,0,12,134,50,505,706,745,106,71,845,153,361,309,280,4,10,37,3,2453,2492,203,613,329,805,28,4,14,6,3,128,8,1654,42,0,0,2357,1116,22,54,70,444,14,74,12,0,7,71,138,151,77,369,110,462,87,558,2362,285,143,225,331,396,375,178,195,100,94,33,59,19,108,42,72.0,62.0,67.0,75.0,86.0,76.0,67.0,83.0,103.0,91.0,80.0,78.0,59.0,82.0,74.0,75.0,67.0,66.0,75.0,80.0,71.0,79.0,82.0,96.0,57.0,78.0,69.0,64.0,68.0,64.0,72.0,73.0,57.0,73.0,62.0,72.0,54.0,67.0,65.0,73.0,53.0,49.0,65.0,61.0,61.0,73.0,63.0,68.0,51.0,54.0,71.0,63.0,60.0,66.0,54.0,50.0,56.0,44.0,34.0,51.0,50.0,32.0,53.0,49.0,57.0,47.0,41.0,47.0,46.0,36.0,43.0,34.0,38.0,42.0,30.0,28.0,25.0,23.0,23.0,17.0,20.0,15.0,13.0,10.0,9.0,8.0,12.0,5.0,5.0,6.0,2.0,4.0,2.0,3.0,6.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1155,3147,643,0,362,420,373,363,385,343,337,331,289,309,314,235,241,217,187,116,67,36,17,3,0,0,4230,435,258,22,0,4234,518,171,22,0,1396,34,81,903,106,46,1224,1155,0,2186,2251,508,0,14,51,2,3,1,1,8,0,0,36,4829,0,107,190,365,57,5,16,1101,3104,0,689,779,232,22,268,2955,0,1.9326968973747016,0.0,2.83764367816092,0.0,8.677249747219413,52,90,141,27,3,9,394,1006,0,128,63,36,104,185,214,184,149,207,105,81,50,47,46,111,9,1705,17,1603,119,1456,266,231,1491,1564,158,694,1028,915,807,337,1385,1621,101,1562,160,1171,391,735,987,1277,445,711,1011,184,1538,130,1592,21,1701,429,989,266,38,1,1112,610,0,8,9,1,2,1,0,3,0,0,20,1678,0,1.423679628554846,1.4463145676146256,1.2352941176470589,1.018867924528302,1.018867924528302,51.14343786295006 +,130409,Panamá Oeste,Chame,Punta Chame,439,2,441,1,0,0,0,0,0,0,0,0,5,0,0,5,179,0,4,181,3,1,0,0,3,0,182,0,2,1,0,0,1,0,2,151,13,23,0,0,1,0,183,1,2,0,0,2,188,0,476,14,181,6,18,0,5,18,140,24,1,0,175,3,0,0,1,9,0,33,1,143,9,0,0,2,89,98,0,1,0,0,0,144,43,0,0,1,0,0,0,0,0,0,0,888,6.957219251336898,23.684491978609625,7.0,23.97860962566845,1.0,3.4680851063829787,1.9095744680851063,193,90,138,14,18,2,5,2,1,8,0,0,6,0,13,2,2,1,1,0,0,409,51,0,141,319,0,384,76,0,432,28,0,92,368,0,81,11,352,16,0,16,5,8,0,7,6,13,7,12,96,0,0,1,25,16,47,16,18,101,0,1,4,3,8,7,7,25,0,1,7,0,0,0,3,0,235,12,173,0,0,5,2,34,49,71,7,12,115,8,25,24,21,0,0,52,0,256,221,25,83,26,104,7,0,0,0,0,13,2,122,1,0,0,252,116,1,1,3,38,0,6,3,0,2,18,10,23,3,51,52,19,14,55,234,43,17,30,32,34,40,7,11,6,10,4,3,2,3,1,4.0,3.0,2.0,8.0,8.0,7.0,7.0,9.0,5.0,4.0,5.0,5.0,5.0,10.0,5.0,6.0,6.0,5.0,3.0,7.0,8.0,9.0,3.0,12.0,3.0,3.0,10.0,9.0,6.0,2.0,8.0,9.0,5.0,6.0,6.0,12.0,5.0,9.0,8.0,6.0,6.0,5.0,7.0,6.0,7.0,2.0,3.0,4.0,8.0,15.0,9.0,7.0,8.0,9.0,3.0,9.0,8.0,6.0,10.0,6.0,10.0,6.0,9.0,8.0,3.0,1.0,4.0,2.0,2.0,3.0,2.0,5.0,3.0,1.0,5.0,3.0,3.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,0.0,3.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,87,340,50,0,25,32,30,27,35,30,34,40,31,32,36,39,36,12,16,9,3,7,3,0,0,0,415,45,17,0,0,415,46,16,0,0,143,9,54,73,22,2,87,87,0,230,199,48,0,0,4,0,0,0,0,0,0,0,2,471,0,17,18,36,10,8,0,167,221,0,91,77,25,1,8,275,0,1.9322916666666667,0.0,2.763358778625954,0.0,8.723270440251572,4,8,13,3,4,0,70,91,0,20,13,13,13,27,23,28,10,12,7,6,5,4,3,4,0,191,2,178,15,162,31,34,159,186,7,55,138,111,82,25,168,184,9,175,18,102,73,72,121,168,25,77,116,5,188,4,189,3,190,71,84,33,5,0,122,71,0,0,1,0,0,0,0,0,0,0,0,192,0,1.3264248704663213,1.145077720207254,1.0,1.0,1.0,52.95336787564767 +,130410,Panamá Oeste,Chame,Sajalices,1129,1,3,2,0,0,0,0,3,0,0,1,1,0,0,4,738,94,23,811,25,0,0,0,22,1,819,5,3,5,2,4,17,0,4,443,25,371,0,16,0,4,838,14,2,0,0,5,859,0,146,28,14,65,23,0,2,37,788,31,0,1,815,4,0,26,0,14,0,843,3,12,0,0,0,1,339,507,0,11,1,1,32,778,19,5,0,0,0,1,0,23,1,0,0,1140,6.215922798552473,21.47285886610374,6.254523522316044,22.00120627261761,1.019790454016298,3.408614668218859,2.008149010477299,878,504,1214,43,183,19,36,22,7,68,5,2,23,0,39,10,4,9,9,0,6,2360,414,0,595,2179,0,1640,1134,0,2605,169,0,812,1962,0,727,85,1853,109,0,109,37,32,1,69,86,85,92,95,487,0,0,7,108,152,295,108,162,495,3,2,42,57,43,77,68,46,6,0,9,0,0,0,1,0,1118,83,1275,0,0,29,40,95,520,570,56,34,433,66,292,37,213,4,14,114,2,1535,1469,105,328,49,684,4,0,1,4,3,62,11,1067,0,0,0,1620,635,7,6,40,154,5,8,1,0,5,11,59,56,43,240,195,268,93,231,1677,201,90,171,287,211,187,75,73,14,10,3,4,1,0,0,48.0,54.0,57.0,71.0,47.0,43.0,47.0,64.0,46.0,51.0,52.0,64.0,51.0,51.0,52.0,56.0,33.0,52.0,46.0,64.0,46.0,53.0,56.0,61.0,52.0,57.0,55.0,48.0,45.0,50.0,50.0,33.0,44.0,42.0,47.0,47.0,42.0,45.0,38.0,32.0,37.0,28.0,41.0,27.0,27.0,33.0,28.0,38.0,34.0,44.0,33.0,40.0,27.0,40.0,35.0,34.0,24.0,27.0,26.0,33.0,30.0,22.0,28.0,18.0,17.0,9.0,21.0,12.0,24.0,15.0,12.0,17.0,10.0,11.0,6.0,7.0,9.0,14.0,13.0,4.0,3.0,8.0,4.0,3.0,6.0,6.0,3.0,3.0,5.0,2.0,3.0,1.0,2.0,1.0,5.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,798,1965,241,0,277,251,270,251,268,255,216,204,160,177,175,144,115,81,56,47,24,19,12,2,0,0,2907,67,15,15,0,2907,74,8,15,0,925,15,80,310,58,11,807,798,0,1949,1018,37,0,2,41,18,1,1,0,1,0,1,42,2897,0,28,90,216,18,3,0,695,1954,0,358,439,90,12,6,2099,0,2.124382207578254,0.0,3.104089219330855,0.0,7.769973368841544,16,30,68,9,0,0,233,522,0,69,41,33,68,149,140,118,65,99,42,23,15,10,2,2,0,866,12,782,96,745,133,88,790,748,130,195,683,488,390,46,832,792,86,757,121,520,237,219,659,502,376,272,606,38,840,29,849,15,863,149,508,208,13,3,553,325,0,0,9,3,0,1,0,0,0,1,14,850,0,1.742338251986379,1.667423382519864,1.0,1.032258064516129,1.032258064516129,49.67995444191344 +,130411,Panamá Oeste,Chame,Sorá,1332,3,1,0,0,0,0,0,0,0,0,0,0,0,0,2,535,88,14,594,31,0,0,0,13,1,559,1,13,29,1,5,27,0,4,190,89,323,1,29,0,7,607,26,1,0,0,5,639,0,540,82,45,23,7,0,2,38,539,57,0,3,535,39,9,31,0,25,0,499,46,83,10,1,0,0,260,320,2,52,4,1,0,378,236,3,1,3,0,6,0,11,1,0,346,990,6.366449511400652,21.72801302931596,6.929967426710098,23.71986970684039,1.0156494522691706,3.456964006259781,2.1940532081377158,649,360,613,55,112,10,19,18,5,27,1,2,11,1,18,9,1,9,8,2,7,1561,219,0,510,1270,0,1393,387,0,1672,108,0,438,1342,0,397,41,1309,33,0,33,25,42,1,35,52,60,65,73,434,0,0,0,54,82,148,49,69,280,0,13,19,34,21,56,33,54,4,3,39,0,0,1,1,0,678,38,905,0,1,18,10,173,274,360,29,69,196,66,171,143,42,0,87,3,5,999,884,45,252,147,228,8,0,28,5,12,79,8,569,40,0,0,1063,365,0,10,16,125,2,39,1,0,5,20,31,27,21,73,124,108,28,279,924,146,74,88,135,176,108,57,43,32,27,12,12,4,5,40,25.0,26.0,29.0,23.0,14.0,32.0,41.0,28.0,25.0,19.0,34.0,28.0,25.0,21.0,29.0,34.0,37.0,29.0,30.0,26.0,28.0,20.0,38.0,34.0,22.0,27.0,21.0,32.0,17.0,25.0,26.0,13.0,27.0,22.0,28.0,23.0,19.0,24.0,19.0,27.0,18.0,24.0,28.0,27.0,21.0,19.0,31.0,26.0,22.0,20.0,23.0,22.0,20.0,26.0,22.0,13.0,13.0,22.0,16.0,25.0,22.0,18.0,10.0,16.0,16.0,20.0,20.0,20.0,26.0,11.0,14.0,19.0,15.0,22.0,13.0,11.0,21.0,13.0,9.0,12.0,12.0,7.0,7.0,5.0,6.0,4.0,7.0,3.0,3.0,2.0,3.0,4.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,399,1168,316,0,117,145,137,156,142,122,116,112,118,118,113,89,82,97,83,66,37,19,8,3,3,0,1746,62,71,4,0,1749,120,10,4,0,514,10,77,343,54,22,464,399,0,886,881,116,0,0,29,1,0,0,0,2,0,0,18,1833,0,8,58,76,8,1,2,121,1609,0,181,246,102,5,84,1265,0,2.16490765171504,0.0,3.147410358565737,0.0,8.033988316516197,3,18,28,2,1,2,55,540,0,41,40,33,45,68,110,72,43,62,35,28,13,16,11,10,22,636,13,543,106,475,174,116,533,374,275,57,592,374,275,49,600,616,33,512,137,342,170,190,459,430,219,206,443,258,391,260,389,28,621,172,353,116,8,0,496,153,0,0,7,0,0,0,0,0,0,0,5,637,0,1.539291217257319,1.362095531587057,1.0,1.04,1.04,54.76425269645608 +,130701,Panamá Oeste,La Chorrera,Barrio Balboa,9472,35,704,138,0,0,0,6,0,0,1,1,14,4,0,1398,6058,1024,65,7798,682,0,2,0,60,3,8349,150,12,2,1,14,8,0,9,7577,238,671,15,25,3,16,8268,41,73,0,0,163,8545,29,282,166,546,618,163,0,284,1351,6199,597,73,41,8332,19,2,192,0,0,0,8224,85,144,90,2,0,0,4870,3576,0,93,5,1,8122,290,7,1,0,0,1,0,109,8,4,3,10375,0,6.849744625252406,21.380686542344694,6.873737973631073,21.74711961040504,1.0183733177296663,3.589467524868344,2.2304271503803395,8722,4217,8469,464,2149,303,463,282,88,441,79,101,365,22,615,216,111,197,203,142,189,21821,3125,0,9108,15838,0,19542,5404,0,23699,1247,0,6393,18553,0,5079,1314,17847,706,0,728,154,339,83,433,487,684,560,533,2549,3,6,146,833,1078,2596,817,1449,5790,16,51,433,557,823,933,1383,945,163,29,325,0,0,2,18,0,9852,1494,11422,0,49,674,179,2517,3842,4341,554,168,7131,716,1727,387,988,74,45,17,3,12888,13277,2077,5037,424,3352,170,1,20,7,24,659,79,6850,50,0,0,11105,7652,165,103,417,2839,154,315,18,0,7,563,1472,1140,647,2405,92,2175,976,1869,11063,2269,793,1143,1872,2098,2807,1391,1385,648,308,111,135,44,48,50,306.0,288.0,295.0,330.0,352.0,344.0,354.0,363.0,387.0,378.0,407.0,352.0,346.0,356.0,310.0,359.0,327.0,362.0,342.0,366.0,381.0,434.0,423.0,472.0,404.0,480.0,442.0,410.0,347.0,358.0,353.0,334.0,341.0,340.0,331.0,272.0,295.0,324.0,315.0,296.0,327.0,285.0,285.0,286.0,295.0,284.0,318.0,295.0,340.0,329.0,335.0,385.0,359.0,369.0,359.0,322.0,346.0,338.0,320.0,334.0,352.0,288.0,310.0,282.0,251.0,261.0,256.0,245.0,215.0,202.0,204.0,217.0,207.0,205.0,157.0,160.0,160.0,150.0,149.0,128.0,120.0,106.0,103.0,90.0,84.0,72.0,63.0,66.0,39.0,53.0,42.0,26.0,29.0,20.0,14.0,12.0,10.0,4.0,8.0,6.0,3.0,4.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5168,17102,3895,0,1571,1826,1771,1756,2114,2037,1699,1502,1478,1566,1807,1660,1483,1179,990,747,503,293,131,40,12,0,24976,782,354,53,0,24985,835,292,53,0,5349,505,1579,4753,1033,385,7395,5166,0,9982,15721,462,0,183,367,49,1,6,3,21,5,1,400,25129,0,1466,1218,1382,204,93,89,3783,17930,0,5300,5468,2641,148,29,12579,0,1.9645689655172411,0.0,2.745948641236599,0.0,9.523332696350089,514,452,581,102,50,46,1477,5500,0,368,404,228,436,808,955,1100,834,1375,802,481,294,325,141,138,13,8541,181,8114,608,7544,1178,1502,7220,8003,719,2040,6682,4470,4252,1847,6875,8230,492,7899,823,5859,2040,3282,5440,6607,2115,3530,5192,1412,7310,619,8103,70,8652,1877,4300,2309,236,6,4978,3744,0,37,125,17,0,5,1,6,2,0,159,8370,0,1.476626947754354,1.521196150320807,1.2921348314606742,1.0417495029821071,1.0417495029821071,54.1425131850493 +,130702,Panamá Oeste,La Chorrera,Barrio Colón,14707,15,757,34,1,0,0,3,1,0,1,1,6,0,0,8000,4211,518,50,12415,314,2,2,0,38,8,12289,462,0,5,3,8,6,1,5,9396,3188,170,4,4,1,16,12546,23,99,2,0,109,12779,4,486,187,589,1249,219,0,4249,1689,5977,373,76,415,12430,48,0,288,1,12,0,9677,759,2261,73,2,0,7,10010,2658,0,99,6,6,12306,401,28,2,0,0,0,3,0,29,9,1,15526,0,6.941107184923439,22.72516686297605,6.941892422457793,22.732391048292108,1.0148681430471869,3.88841067376164,2.463338289381016,12976,7014,13508,650,2009,648,578,443,216,475,131,202,374,49,802,263,123,245,243,185,236,34512,3138,0,20488,17162,0,32726,4924,0,36087,1563,0,11069,26581,0,7039,4030,25728,853,0,930,285,556,117,619,720,817,688,719,2794,3,8,261,933,1239,2654,1049,1692,8446,17,240,820,1183,1604,2654,2957,1857,416,88,1211,5,3,6,59,0,16892,1709,15753,0,66,692,219,3418,6619,4716,544,456,13206,793,1674,332,2092,62,84,20,32,18979,20294,4452,8295,371,4720,322,6,55,74,19,534,84,11203,1743,0,0,12372,12235,285,289,821,6763,366,1165,58,0,90,1607,3730,2559,1394,3265,148,2463,1398,1947,16366,1492,802,1146,1841,2354,3299,2985,3131,1857,955,445,475,178,204,1743,332.0,362.0,463.0,466.0,496.0,520.0,569.0,576.0,604.0,531.0,589.0,594.0,549.0,559.0,550.0,544.0,568.0,512.0,602.0,547.0,560.0,578.0,651.0,566.0,589.0,623.0,602.0,526.0,521.0,453.0,533.0,499.0,546.0,582.0,592.0,553.0,618.0,585.0,643.0,638.0,677.0,601.0,586.0,589.0,590.0,557.0,536.0,535.0,541.0,519.0,557.0,553.0,514.0,524.0,544.0,485.0,508.0,500.0,470.0,437.0,422.0,401.0,399.0,372.0,356.0,320.0,313.0,323.0,283.0,274.0,235.0,228.0,232.0,208.0,190.0,176.0,197.0,151.0,185.0,156.0,132.0,91.0,116.0,84.0,82.0,79.0,67.0,56.0,49.0,54.0,36.0,32.0,26.0,31.0,29.0,19.0,16.0,14.0,11.0,3.0,7.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7760,27004,4509,0,2119,2800,2841,2773,2944,2725,2752,3037,3043,2688,2692,2400,1950,1513,1093,865,505,305,154,63,11,0,36168,2067,955,83,0,36196,2271,723,83,0,7413,561,1505,8813,1281,636,11304,7760,0,11119,26908,1246,0,440,508,42,1,10,7,84,10,6,736,37429,0,2614,1317,1513,351,132,187,6360,26799,0,10712,9077,3577,193,66,15648,0,1.647072021539152,0.0,2.4194260485651213,0.0,10.62396557431314,887,497,628,156,60,85,2389,8274,0,717,271,193,338,609,841,1097,1089,1924,1543,1066,765,953,490,520,553,12840,136,12511,465,11898,1078,2157,10819,12030,946,5463,7513,7203,5773,3938,9038,12506,470,12151,825,9718,2433,7250,5726,10922,2054,7725,5251,1377,11599,686,12290,132,12844,2318,7307,3026,325,6,7440,5536,0,118,172,13,1,3,4,33,5,2,288,12337,0,1.4619473116623016,1.5632414111847173,1.207920792079208,1.0563139931740615,1.0563139931740615,51.41669235511714 +,130703,Panamá Oeste,La Chorrera,Amador,1476,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,203,822,28,889,136,0,0,0,27,1,845,0,21,84,9,21,70,1,2,245,38,716,10,40,1,3,961,71,3,0,0,18,1053,2,288,64,2,53,14,0,0,52,944,47,10,0,883,88,1,73,1,7,0,1022,0,17,0,5,9,0,104,818,0,103,27,1,1,636,79,93,13,144,9,28,0,18,29,3,0,1478,3.11731843575419,9.435754189944134,3.625698324022346,10.600558659217876,1.0237416904083572,3.0142450142450143,1.8233618233618236,1080,582,1239,97,181,19,35,24,4,45,5,3,22,1,52,19,7,18,23,12,14,2404,705,0,255,2854,0,973,2136,0,2847,262,0,818,2291,0,763,55,2127,164,0,166,31,52,11,88,95,133,128,119,948,0,2,2,84,137,337,76,125,418,1,7,15,21,28,23,20,34,1,2,4,0,0,0,1,0,1047,117,1577,0,1,62,18,75,494,884,92,32,521,80,178,62,96,1,188,17,1,1758,1579,68,599,65,332,29,0,50,1,20,164,17,962,59,0,0,2163,486,3,5,16,65,1,2,0,0,1,12,29,36,32,119,144,142,93,556,1759,508,108,154,252,241,125,55,44,18,10,0,1,1,2,59,61.0,60.0,58.0,49.0,64.0,67.0,54.0,59.0,58.0,66.0,80.0,60.0,55.0,56.0,43.0,59.0,42.0,41.0,50.0,65.0,53.0,57.0,65.0,45.0,54.0,50.0,57.0,51.0,53.0,55.0,63.0,44.0,43.0,52.0,50.0,52.0,39.0,37.0,40.0,54.0,48.0,52.0,49.0,32.0,32.0,45.0,51.0,28.0,42.0,37.0,36.0,36.0,40.0,24.0,33.0,31.0,37.0,20.0,29.0,28.0,27.0,25.0,27.0,29.0,29.0,14.0,17.0,19.0,21.0,7.0,10.0,17.0,14.0,12.0,16.0,18.0,17.0,12.0,17.0,7.0,12.0,11.0,14.0,9.0,8.0,6.0,5.0,1.0,5.0,2.0,4.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,3.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,890,2138,309,0,292,304,294,257,274,266,252,222,213,203,169,145,137,78,69,71,54,19,9,7,2,0,3284,24,20,9,0,3284,26,18,9,0,1079,10,167,281,91,5,814,890,0,1907,1413,17,0,9,119,14,9,1,0,10,0,1,19,3155,0,36,274,221,18,10,8,668,2102,0,353,419,64,14,6,2481,0,2.5199692780337943,0.0,3.5551763367463027,0.0,6.554689841174707,14,88,66,10,6,1,238,657,0,113,81,57,121,158,197,111,78,89,27,19,7,3,4,2,11,1027,53,731,349,688,392,126,954,632,448,31,1049,424,656,6,1074,942,138,745,335,116,629,108,972,382,698,182,898,494,586,449,631,20,1060,247,638,178,17,0,723,357,0,2,34,5,1,1,0,3,0,0,9,1025,0,1.6277777777777778,1.462037037037037,1.0,1.0816326530612246,1.0816326530612246,49.6787037037037 +,130704,Panamá Oeste,La Chorrera,Arosemena,278,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,88,92,4,167,13,1,0,0,3,0,168,0,0,5,0,1,7,0,3,59,2,120,0,3,0,0,170,13,1,0,0,0,184,0,62,7,4,13,8,0,0,6,154,24,0,0,161,12,0,11,0,0,0,184,0,0,0,0,0,0,21,140,2,21,0,0,1,141,31,5,0,0,1,4,0,1,0,0,0,279,6.838150289017341,11.508670520231211,6.855491329479769,11.919075144508671,1.0108695652173914,2.9347826086956523,1.75,186,111,189,28,25,5,16,9,2,5,2,1,7,0,5,0,0,3,1,0,1,508,46,0,61,493,0,429,125,0,507,47,0,169,385,0,152,17,373,12,0,16,16,7,4,20,16,24,22,24,162,0,0,0,15,19,56,17,23,66,5,4,5,7,8,11,4,1,0,1,1,0,0,0,0,0,233,4,249,0,0,3,0,8,90,141,7,3,100,6,37,6,12,0,76,0,0,323,263,30,162,6,32,7,0,0,0,1,22,0,147,1,0,0,373,94,0,1,4,13,0,1,0,0,0,16,7,5,10,30,13,26,15,115,275,81,15,38,53,57,37,13,9,0,0,2,4,0,1,1,8.0,8.0,7.0,9.0,11.0,13.0,10.0,13.0,10.0,11.0,10.0,13.0,9.0,10.0,8.0,7.0,7.0,8.0,9.0,13.0,8.0,12.0,13.0,14.0,9.0,13.0,11.0,8.0,13.0,11.0,14.0,8.0,12.0,11.0,9.0,8.0,5.0,7.0,10.0,6.0,9.0,4.0,10.0,5.0,9.0,5.0,4.0,6.0,3.0,10.0,4.0,6.0,8.0,2.0,8.0,3.0,6.0,7.0,6.0,7.0,2.0,6.0,2.0,9.0,0.0,5.0,4.0,1.0,3.0,3.0,2.0,2.0,4.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,150,387,49,0,43,57,50,44,56,56,54,36,37,28,28,29,19,16,13,12,5,2,1,0,0,0,583,1,0,2,0,583,1,0,2,0,201,1,40,50,5,0,139,150,0,290,295,1,0,0,16,1,0,0,0,0,0,0,0,569,0,0,4,10,0,0,0,10,562,0,92,89,10,0,0,395,0,2.28110599078341,0.0,3.326388888888889,0.0,6.800341296928328,0,4,6,0,0,0,1,175,0,2,12,7,22,30,37,27,12,20,7,1,3,2,1,2,1,182,4,148,38,131,55,18,168,139,47,8,178,80,106,1,185,159,27,141,45,33,108,14,172,139,47,53,133,64,122,50,136,0,186,47,101,35,3,1,162,24,0,0,6,1,0,0,0,0,0,0,0,179,0,1.7272727272727273,1.4064171122994653,0.0,1.0,1.0,48.553763440860216 +,130705,Panamá Oeste,La Chorrera,El Arado,2793,34,11,14,0,0,0,0,0,0,0,4,3,0,0,840,824,229,17,1832,61,0,0,0,17,0,1850,7,2,18,1,7,23,0,2,1299,235,340,10,19,1,6,1841,39,19,2,0,9,1910,9,320,257,168,163,25,0,886,125,793,102,4,0,1761,16,0,51,2,80,0,1275,398,233,2,0,0,2,1319,542,0,42,4,3,1392,210,209,33,14,7,1,2,11,28,3,0,0,2859,6.335726118166758,20.812810601877416,6.431805632247377,21.32136940916621,1.02565445026178,3.64869109947644,2.457591623036649,1966,1193,2164,270,269,63,70,46,22,68,22,29,54,6,126,227,20,55,45,23,53,5077,731,0,2584,3224,0,4609,1199,0,5383,425,0,1947,3861,0,1437,510,3678,183,0,191,79,126,13,136,135,178,165,156,747,1,3,18,183,215,497,165,223,1133,10,52,99,153,162,356,302,141,39,12,111,0,0,0,7,0,2577,279,2223,0,10,101,76,198,1030,816,130,49,2035,114,233,79,189,14,136,4,2,3075,3167,529,1534,90,570,35,4,41,3,4,129,16,2240,34,0,0,2478,1582,18,61,99,711,36,87,7,0,3,183,384,334,212,538,122,350,238,492,2919,434,174,239,282,394,502,370,459,205,105,40,47,13,25,34,120.0,97.0,118.0,99.0,118.0,121.0,122.0,132.0,112.0,124.0,119.0,122.0,115.0,108.0,93.0,91.0,90.0,92.0,82.0,83.0,90.0,82.0,88.0,95.0,94.0,127.0,107.0,103.0,114.0,104.0,109.0,89.0,120.0,136.0,108.0,101.0,116.0,107.0,130.0,112.0,118.0,93.0,95.0,78.0,70.0,80.0,70.0,52.0,61.0,63.0,63.0,64.0,63.0,60.0,58.0,54.0,56.0,56.0,43.0,54.0,33.0,34.0,36.0,33.0,26.0,44.0,23.0,25.0,27.0,20.0,25.0,26.0,18.0,16.0,19.0,20.0,19.0,23.0,10.0,16.0,13.0,20.0,10.0,12.0,10.0,6.0,6.0,3.0,5.0,3.0,2.0,4.0,2.0,3.0,1.0,3.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1720,4083,439,0,552,611,557,438,449,555,562,566,454,326,308,263,162,139,104,88,65,23,12,7,1,0,5976,155,94,17,0,5986,172,67,17,0,1635,69,97,1049,119,42,1511,1720,0,1803,4341,98,0,113,246,22,1,2,0,18,0,2,160,5678,0,357,357,491,98,22,22,1463,3432,0,1666,1734,175,32,16,2619,0,1.7637490317583269,0.0,2.554976851851852,0.0,8.916372957385454,114,89,200,39,10,13,512,989,0,98,73,27,80,124,200,197,190,309,226,156,92,92,44,43,8,1923,43,1802,164,1720,246,275,1691,1709,257,589,1377,1025,941,443,1523,1880,86,1771,195,1274,497,897,1069,1538,428,1087,879,427,1539,286,1680,21,1945,317,1239,363,47,0,1267,699,0,24,59,9,1,1,0,5,0,0,48,1819,0,1.564089521871821,1.61088504577823,1.0769230769230769,1.0689655172413792,1.0689655172413792,45.63479145473042 +,130706,Panamá Oeste,La Chorrera,El Coco,8655,162,253,94,4,0,0,1,0,0,6,4,7,0,0,170,5306,1620,74,6459,637,1,0,0,64,9,6966,139,3,13,4,14,14,0,17,4506,376,2124,10,52,0,102,6948,56,28,0,0,138,7170,4,519,397,371,421,282,0,208,862,5776,303,17,4,6880,28,0,253,0,9,0,7007,43,116,3,1,0,0,3048,3943,1,172,3,3,5319,1545,91,30,1,0,2,1,119,26,23,13,8949,237,6.003594536304817,14.316894320632638,6.05607476635514,14.534004313443566,1.0220362622036263,3.2474198047419804,1.9856345885634588,7339,3998,8018,677,1330,203,233,170,74,294,66,48,349,8,501,143,63,154,171,151,122,19008,2588,0,6312,15284,0,15267,6329,0,20171,1425,0,6275,15321,0,5353,922,14469,852,0,868,113,322,83,455,522,651,551,529,2968,1,15,54,753,1130,2160,772,1238,5046,22,106,313,345,483,703,607,538,63,11,162,0,3,0,9,0,8058,1511,9760,0,79,550,182,1192,3915,3775,407,471,5835,437,1651,328,931,46,61,3,16,11368,11439,1342,4741,378,2656,120,2,31,38,35,495,69,8270,483,0,0,10848,6204,57,101,301,1616,46,144,12,0,41,296,861,782,566,2006,136,2153,975,1753,11222,1817,680,1040,1286,1537,2222,1010,901,334,152,45,42,13,23,483,294.0,288.0,314.0,315.0,397.0,380.0,342.0,407.0,367.0,374.0,413.0,357.0,367.0,368.0,349.0,356.0,386.0,346.0,347.0,417.0,366.0,381.0,442.0,422.0,370.0,394.0,408.0,366.0,355.0,297.0,351.0,301.0,309.0,291.0,311.0,307.0,321.0,313.0,308.0,281.0,292.0,294.0,304.0,284.0,277.0,289.0,291.0,294.0,303.0,300.0,298.0,298.0,272.0,273.0,282.0,260.0,260.0,265.0,253.0,239.0,221.0,190.0,193.0,175.0,183.0,148.0,161.0,156.0,149.0,116.0,129.0,107.0,127.0,113.0,111.0,73.0,96.0,84.0,70.0,57.0,60.0,53.0,48.0,44.0,32.0,32.0,30.0,17.0,27.0,23.0,18.0,13.0,8.0,14.0,5.0,7.0,5.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5332,15336,2139,0,1608,1870,1854,1852,1981,1820,1563,1530,1451,1477,1423,1277,962,730,587,380,237,129,58,14,4,0,22138,451,183,35,0,22152,478,142,35,0,5725,342,1387,3490,594,179,5759,5331,0,7920,14634,253,0,130,709,43,2,9,1,53,5,1,329,21525,0,864,929,1005,137,50,60,4177,15585,0,4422,5030,1200,104,33,12018,0,1.9392418032786884,0.0,2.7833891086096743,0.0,8.61279431753409,307,316,412,64,16,32,1500,4692,0,567,389,199,470,697,799,1078,702,1048,551,283,161,153,51,44,136,7151,188,6682,657,6317,1022,1239,6100,6598,741,1202,6137,3657,3682,1082,6257,6963,376,6465,874,4013,2452,2395,4944,4809,2530,2800,4539,1648,5691,991,6348,73,7266,1461,4172,1537,169,11,4523,2816,0,27,197,19,1,2,1,17,1,0,123,6951,0,1.5466666666666666,1.556326530612245,1.26,1.0496688741721854,1.0496688741721854,49.73634010083118 +,130707,Panamá Oeste,La Chorrera,Feuillet,1622,5,71,7,0,0,0,2,0,0,0,0,0,0,0,338,838,149,10,1255,70,0,0,0,9,1,1275,34,7,3,2,1,6,0,7,675,328,313,2,5,0,12,1294,10,15,0,0,16,1335,1,114,48,114,70,23,0,347,146,741,85,9,7,1310,5,1,17,0,2,0,884,123,325,3,0,0,0,849,475,0,9,1,1,28,925,360,2,0,0,0,0,0,17,2,1,1550,157,6.690784463061691,18.91012947448591,6.83015993907083,19.993145468392992,1.0224719101123596,3.413483146067416,2.149063670411985,1365,755,1479,57,187,54,55,24,7,41,14,15,36,5,76,24,10,31,21,53,24,3479,384,0,1572,2291,0,3011,852,0,3642,221,0,1192,2671,0,935,257,2547,124,0,132,30,63,15,86,88,102,110,109,406,1,1,21,136,175,344,124,208,875,16,69,66,72,77,127,134,167,43,8,55,0,0,1,2,0,1684,203,1543,0,12,114,23,223,698,506,74,42,1263,85,227,72,165,3,35,5,1,2038,2056,331,961,74,440,34,0,14,2,4,60,9,1031,44,0,0,1692,1137,22,70,22,405,27,53,2,0,2,117,200,186,131,393,28,307,177,346,1789,273,133,136,236,311,496,241,230,93,47,16,25,9,15,44,52.0,56.0,54.0,69.0,69.0,78.0,60.0,81.0,68.0,77.0,84.0,66.0,70.0,80.0,53.0,67.0,66.0,56.0,65.0,64.0,54.0,51.0,76.0,73.0,50.0,60.0,75.0,80.0,65.0,69.0,84.0,63.0,64.0,67.0,63.0,50.0,63.0,54.0,56.0,65.0,55.0,62.0,66.0,64.0,54.0,50.0,65.0,49.0,48.0,54.0,39.0,51.0,47.0,44.0,37.0,36.0,39.0,37.0,39.0,32.0,32.0,26.0,37.0,31.0,28.0,26.0,29.0,28.0,22.0,35.0,13.0,24.0,22.0,15.0,20.0,17.0,15.0,9.0,8.0,13.0,5.0,9.0,5.0,8.0,3.0,4.0,5.0,1.0,5.0,2.0,5.0,4.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1017,2722,355,0,300,364,353,318,304,349,341,288,301,266,218,183,154,140,94,62,30,17,11,1,0,0,3857,148,74,15,0,3859,161,59,15,0,979,59,103,734,94,44,1064,1017,0,1153,2810,131,0,53,126,9,3,1,0,12,1,0,47,3842,0,164,175,220,45,22,20,711,2737,0,990,975,220,13,17,1879,0,1.6948165404775772,0.0,2.532685512367491,0.0,9.114313629702004,68,64,86,22,12,6,271,836,0,43,31,28,57,99,144,199,159,250,136,74,40,50,10,33,12,1345,20,1280,85,1224,141,203,1162,1226,139,380,985,804,561,292,1073,1306,59,1217,148,894,323,531,834,1120,245,666,699,423,942,246,1119,26,1339,284,801,250,30,2,799,566,0,10,37,4,1,1,0,2,1,0,18,1291,0,1.490855888807608,1.5040234089246525,1.25,1.04,1.04,47.663003663003664 +,130708,Panamá Oeste,La Chorrera,Guadalupe,13604,391,642,341,0,0,0,1,0,0,0,0,21,0,0,1945,7934,2323,111,10918,1284,2,0,0,86,23,11720,437,3,21,5,24,20,0,83,9206,431,2488,17,81,0,90,11946,82,76,1,1,207,12313,19,650,394,669,744,189,0,1564,1742,8297,654,41,15,11795,65,0,431,3,19,0,11664,219,395,27,3,4,1,6039,5963,0,301,7,3,9606,2271,110,32,8,17,1,0,133,67,55,13,14439,561,6.463835822140652,17.6087428047051,6.530074247101026,18.08534245432552,1.0183545845853976,3.249898481279948,2.049947210265573,12560,6816,13682,1126,2125,383,436,338,137,465,147,139,344,26,761,278,140,297,263,200,239,32597,4076,1,12504,24169,1,28695,7978,1,34525,2149,0,11009,25665,0,9056,1953,24328,1337,0,1392,191,609,96,763,919,1076,945,875,4680,7,8,138,1298,1834,3548,1266,1933,7904,14,78,733,980,1217,1397,1318,804,238,38,358,0,0,3,14,0,15524,2267,15042,0,87,699,289,2091,6538,5181,536,696,11232,944,2808,681,1514,84,149,37,34,19331,19393,2783,8592,762,5012,200,5,81,48,72,888,100,11053,479,0,0,17542,10846,148,191,605,2941,211,335,14,0,49,702,1696,1574,1098,4031,223,3634,1598,3186,17028,3406,1299,1629,2212,2929,4008,2208,2059,764,356,135,122,34,56,479,468.0,473.0,527.0,582.0,612.0,609.0,642.0,659.0,658.0,661.0,650.0,634.0,618.0,663.0,590.0,614.0,654.0,569.0,646.0,597.0,620.0,684.0,692.0,709.0,637.0,703.0,625.0,600.0,573.0,528.0,570.0,581.0,564.0,549.0,530.0,539.0,546.0,582.0,577.0,524.0,505.0,520.0,545.0,500.0,455.0,544.0,511.0,515.0,493.0,515.0,513.0,529.0,492.0,478.0,423.0,420.0,441.0,403.0,397.0,395.0,376.0,328.0,322.0,269.0,283.0,296.0,239.0,223.0,230.0,226.0,219.0,153.0,186.0,170.0,174.0,151.0,151.0,122.0,116.0,115.0,97.0,102.0,72.0,53.0,72.0,50.0,47.0,49.0,39.0,23.0,13.0,25.0,25.0,14.0,13.0,3.0,5.0,5.0,3.0,4.0,1.0,1.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,9046,26185,3493,0,2662,3229,3155,3080,3342,3029,2794,2768,2525,2578,2435,2056,1578,1214,902,655,396,208,90,20,8,0,37411,867,366,79,1,37423,946,275,79,1,9215,614,1712,6398,1020,400,10320,9044,1,12828,25379,516,1,342,1755,92,16,11,3,65,10,8,746,35675,1,1814,1720,2592,321,149,149,10770,21208,1,8354,8952,2240,163,18,18996,1,1.913622066295669,0.0,2.7475553960706915,0.0,8.848853424233035,616,620,951,159,56,67,3817,6274,0,568,537,299,599,1069,1352,1683,1245,2151,1174,704,372,377,150,139,120,12324,236,11476,1084,10791,1769,2030,10530,11258,1302,2559,10001,6381,6179,2112,10448,12047,513,11051,1509,7866,3185,4568,7992,9727,2833,5032,7528,3155,9405,1471,11089,146,12414,2500,7155,2626,279,1,7762,4798,0,90,468,34,6,6,2,23,4,0,278,11649,0,1.538969827243054,1.5439057399888545,1.1473684210526316,1.0441176470588236,1.0441176470588236,49.314331210191085 +,130709,Panamá Oeste,La Chorrera,Herrera,10763,253,0,0,0,0,0,0,11,0,0,0,1,0,0,6478,247,415,31,7092,48,2,1,0,27,1,6868,39,42,147,7,18,44,0,6,4007,2807,329,14,9,1,4,7096,31,30,1,0,13,7171,30,1262,886,242,1356,69,0,5539,639,822,145,11,15,6911,4,1,254,0,1,0,3007,930,3233,1,0,0,0,6591,380,0,197,0,3,6541,205,98,29,3,45,0,1,230,10,9,0,9362,1666,6.952220923436586,23.47063120981882,6.95572764465225,23.519725306838108,1.005438572026217,3.2349742016455165,2.158694742713708,7211,4335,8540,818,703,343,330,259,137,179,178,80,301,10,212,64,50,150,78,66,56,19741,1827,0,8881,12687,0,19130,2438,0,19882,1686,0,7262,14306,0,6220,1042,13365,941,0,994,215,480,67,533,605,612,590,554,1694,0,15,66,638,886,1954,702,1273,5727,58,171,396,495,633,780,586,625,66,16,133,0,1,0,3,0,10062,788,7549,0,19,318,60,374,3982,2934,140,119,8232,370,905,211,630,19,283,14,10,11382,12042,1868,6490,251,1932,97,2,22,12,5,101,29,6462,96,0,0,8603,7408,69,125,272,1746,49,124,3,0,12,482,874,1145,936,2918,199,1473,963,1848,11575,822,497,559,881,1419,3615,1727,1504,477,159,29,44,8,12,96,383.0,463.0,484.0,526.0,542.0,555.0,538.0,519.0,521.0,494.0,501.0,465.0,401.0,390.0,405.0,387.0,345.0,353.0,359.0,332.0,309.0,331.0,361.0,338.0,340.0,408.0,439.0,459.0,504.0,485.0,598.0,515.0,545.0,538.0,483.0,466.0,479.0,439.0,446.0,413.0,405.0,370.0,340.0,302.0,270.0,287.0,277.0,267.0,218.0,205.0,219.0,201.0,211.0,201.0,157.0,149.0,144.0,143.0,125.0,108.0,121.0,78.0,87.0,67.0,70.0,51.0,46.0,51.0,39.0,32.0,42.0,24.0,30.0,28.0,12.0,22.0,19.0,22.0,16.0,10.0,17.0,10.0,12.0,10.0,8.0,4.0,5.0,7.0,10.0,4.0,4.0,1.0,3.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7187,15694,543,0,2398,2627,2162,1776,1679,2295,2679,2243,1687,1254,989,669,423,219,136,89,57,30,10,2,0,0,22394,677,288,65,0,22406,707,246,65,0,6985,200,1626,2795,193,134,4305,7186,0,2873,20311,240,0,1977,858,52,28,18,0,149,5,5,212,20120,0,1355,1290,1394,373,58,69,4581,14304,0,7104,6614,358,48,13,9287,0,1.6461828859060403,0.0,2.4542707173532685,0.0,8.589096653005464,499,398,578,169,25,31,1626,3885,0,157,81,72,149,296,517,1280,946,1699,1055,485,207,180,47,26,13,7167,44,6774,437,6489,722,670,6541,6599,612,2001,5210,4214,2997,1639,5572,7056,155,6613,598,5116,1497,3071,4140,6312,899,3140,4071,999,6212,402,6809,71,7140,1150,4527,1333,201,11,4383,2828,0,363,231,17,4,6,0,43,2,1,76,6468,0,1.5760177236222652,1.6674051509277208,1.2941176470588236,1.0076923076923077,1.0076923076923077,40.24018860074886 +,130710,Panamá Oeste,La Chorrera,Hurtado,795,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,199,12,488,34,2,0,0,10,0,491,1,3,28,3,2,6,0,0,219,24,279,5,5,0,2,510,21,2,0,0,1,534,0,163,36,5,42,16,0,1,34,396,103,0,0,501,4,0,28,1,0,0,507,5,15,5,1,1,0,126,381,0,27,0,0,0,432,86,1,4,5,0,2,0,1,3,0,0,796,6.735521235521236,19.65444015444016,6.785714285714286,20.301158301158303,1.0355805243445693,2.9906367041198503,1.794007490636704,553,287,517,66,90,8,12,10,4,20,1,5,23,3,64,12,3,8,10,15,13,1258,220,0,230,1248,0,1079,399,0,1373,105,0,368,1110,0,321,47,1034,76,0,76,4,27,4,43,36,47,59,64,367,1,0,0,45,65,152,45,64,221,1,3,20,18,16,32,40,21,2,1,4,0,0,0,0,0,694,16,614,0,0,9,6,51,219,303,32,9,357,36,115,37,39,1,121,0,2,848,751,59,419,37,170,10,0,11,2,11,50,3,235,3,0,0,944,278,1,4,9,82,2,4,0,0,1,37,28,28,15,84,54,98,64,301,636,183,74,81,163,182,138,49,51,23,5,4,3,0,4,3,42.0,26.0,27.0,26.0,29.0,23.0,24.0,31.0,27.0,20.0,30.0,25.0,27.0,23.0,24.0,14.0,33.0,27.0,19.0,28.0,17.0,32.0,23.0,21.0,26.0,32.0,31.0,18.0,19.0,17.0,28.0,22.0,26.0,18.0,29.0,21.0,25.0,26.0,25.0,21.0,26.0,23.0,19.0,25.0,15.0,28.0,21.0,19.0,23.0,19.0,21.0,14.0,18.0,19.0,24.0,15.0,18.0,15.0,10.0,13.0,12.0,11.0,10.0,9.0,6.0,14.0,8.0,10.0,12.0,7.0,10.0,6.0,11.0,9.0,5.0,5.0,2.0,6.0,7.0,3.0,3.0,10.0,3.0,4.0,6.0,4.0,3.0,4.0,4.0,3.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,404,1031,164,0,150,125,129,121,119,117,123,118,108,110,96,71,48,51,41,23,26,18,3,2,0,0,1531,49,6,13,0,1531,50,5,13,0,503,6,70,187,50,11,368,404,0,667,898,34,0,2,164,21,0,0,0,1,0,0,3,1408,0,33,127,281,19,1,3,584,551,0,255,238,50,7,4,1045,0,2.2156549520766773,0.0,3.1391509433962264,0.0,7.219512195121951,9,47,92,7,0,1,223,174,0,10,20,19,27,81,104,77,57,74,38,17,16,5,3,5,0,542,11,453,100,407,146,79,474,407,146,60,493,245,308,7,546,525,28,415,138,157,258,95,458,446,107,193,360,254,299,225,328,8,545,150,298,85,20,0,390,163,0,1,42,3,0,0,0,0,0,0,1,506,0,1.5334538878842676,1.3580470162748643,1.5,1.0,1.0,49.35081374321881 +PA120506,130711,Panamá Oeste,La Chorrera,Iturralde,679,2,0,0,0,0,0,0,1,0,0,0,0,0,0,1,232,218,12,405,46,1,0,0,11,0,426,1,0,16,2,1,14,0,3,210,34,205,1,13,0,0,446,10,0,0,0,7,463,1,140,12,1,51,13,0,0,25,329,108,0,1,415,14,1,27,0,6,0,454,2,3,0,0,2,2,85,349,0,26,1,2,2,345,87,3,3,14,0,3,0,2,1,3,0,682,4.7304147465437785,15.30184331797235,4.8986175115207375,16.112903225806452,1.0129589632829374,2.896328293736501,1.736501079913607,469,265,606,29,72,13,14,6,6,17,3,2,14,0,43,20,4,6,7,0,13,1179,233,0,156,1256,0,1071,341,0,1272,140,0,400,1012,0,372,28,940,72,0,76,17,30,0,38,55,64,43,55,355,0,0,0,54,79,148,54,61,197,9,13,7,2,11,16,12,11,2,1,2,0,0,0,0,0,596,65,581,0,0,12,4,26,235,270,23,27,297,34,84,42,23,1,147,21,0,805,711,40,376,47,166,7,0,13,0,4,49,6,319,10,0,0,958,235,1,2,6,37,1,2,0,0,0,12,19,18,23,67,66,98,62,296,706,192,85,78,110,162,92,53,18,8,1,0,0,0,1,10,30.0,17.0,28.0,29.0,18.0,35.0,30.0,27.0,32.0,28.0,29.0,37.0,17.0,31.0,36.0,31.0,25.0,34.0,13.0,21.0,31.0,19.0,34.0,19.0,22.0,23.0,31.0,20.0,26.0,24.0,22.0,27.0,28.0,21.0,26.0,25.0,19.0,13.0,20.0,25.0,22.0,17.0,22.0,19.0,17.0,26.0,21.0,13.0,16.0,9.0,17.0,20.0,17.0,15.0,13.0,19.0,13.0,18.0,4.0,8.0,18.0,10.0,11.0,8.0,4.0,6.0,7.0,3.0,5.0,6.0,8.0,9.0,2.0,8.0,8.0,1.0,6.0,4.0,6.0,3.0,8.0,1.0,4.0,3.0,2.0,4.0,6.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,424,976,116,0,122,152,150,124,125,124,124,102,97,85,82,62,51,27,35,20,18,12,2,2,0,0,1468,34,7,7,0,1468,36,5,7,0,458,8,140,150,33,5,298,424,0,709,778,29,0,0,159,4,0,0,0,5,0,0,5,1343,0,42,54,107,11,1,0,352,949,0,227,262,34,4,2,987,0,2.3893805309734515,0.0,3.269521410579345,0.0,6.7097625329815305,12,17,35,4,1,0,130,270,0,12,24,16,30,67,98,73,62,45,27,8,6,0,0,1,0,455,14,379,90,347,122,67,402,327,142,32,437,211,258,9,460,427,42,336,133,113,223,59,410,356,113,108,361,216,253,153,316,5,464,94,268,97,10,1,315,154,0,0,41,4,0,0,0,1,0,0,2,421,0,1.7127659574468086,1.5127659574468084,1.0,1.0,1.0,47.02985074626866 +,130712,Panamá Oeste,La Chorrera,La Represa,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,110,176,33,248,40,0,0,0,33,0,289,0,6,13,0,0,13,0,0,71,116,116,1,16,0,1,305,10,0,0,0,6,321,0,103,17,2,42,9,0,2,5,291,23,0,0,315,3,0,3,0,0,0,317,0,3,0,0,1,0,87,229,0,5,0,0,2,223,30,27,9,14,0,9,0,2,5,0,0,494,6.066666666666666,17.564705882352943,6.070588235294117,17.564705882352943,1.0031152647975077,3.152647975077881,2.074766355140187,322,186,325,33,37,7,9,4,0,5,1,1,6,0,22,8,2,5,5,4,9,689,177,0,108,758,0,407,459,0,793,73,0,229,637,0,205,24,615,22,0,29,11,16,8,21,31,36,30,34,285,1,0,1,26,43,74,20,36,103,0,0,5,12,14,14,11,4,0,1,0,0,0,0,0,0,330,44,400,0,0,16,20,25,131,203,24,17,143,24,62,6,28,0,68,39,0,495,441,26,155,7,161,3,0,18,0,1,41,4,344,5,0,0,609,128,1,2,7,27,0,0,0,0,0,5,8,18,12,44,66,44,64,113,572,72,29,37,59,71,41,25,15,4,4,0,1,1,0,5,23.0,12.0,17.0,18.0,11.0,13.0,21.0,15.0,17.0,15.0,24.0,21.0,11.0,9.0,11.0,15.0,17.0,8.0,10.0,14.0,20.0,13.0,24.0,10.0,6.0,21.0,17.0,21.0,11.0,12.0,14.0,15.0,16.0,8.0,9.0,17.0,15.0,10.0,8.0,14.0,8.0,12.0,7.0,14.0,8.0,12.0,6.0,10.0,7.0,10.0,13.0,9.0,9.0,14.0,10.0,9.0,8.0,11.0,12.0,10.0,5.0,11.0,9.0,9.0,13.0,7.0,6.0,8.0,7.0,7.0,5.0,5.0,6.0,1.0,6.0,7.0,2.0,3.0,1.0,3.0,6.0,3.0,2.0,1.0,3.0,0.0,2.0,2.0,3.0,2.0,4.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,238,591,107,0,81,81,76,64,73,82,62,64,49,45,55,50,47,35,23,16,15,9,7,2,0,0,923,8,0,5,0,923,8,0,5,0,315,5,60,90,30,2,196,238,0,553,377,6,0,6,45,1,0,0,0,8,0,0,14,862,0,10,53,83,40,37,12,349,352,0,103,127,26,5,3,672,0,2.333333333333333,0.0,3.305555555555556,0.0,6.598290598290598,4,19,32,20,14,4,124,105,0,46,30,23,25,36,63,30,20,31,8,4,2,2,0,1,1,311,11,267,55,234,88,35,287,245,77,22,300,140,182,3,319,297,25,255,67,113,142,34,288,133,189,91,231,120,202,114,208,1,321,77,199,42,4,0,257,65,0,3,12,0,0,0,0,0,0,0,5,302,0,1.5372670807453417,1.3695652173913044,0.0,1.0,1.0,50.09316770186335 +,130713,Panamá Oeste,La Chorrera,Los Díaz,747,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,192,21,522,27,1,0,0,19,1,549,0,0,11,1,1,7,0,1,286,38,233,4,9,0,0,552,13,1,0,0,4,570,0,124,24,3,22,9,0,3,15,477,75,0,0,550,8,0,11,1,0,0,556,6,6,1,0,1,0,130,429,0,10,1,0,0,479,62,8,0,17,0,1,0,1,1,1,0,752,6.606284658040665,16.2181146025878,6.728280961182994,16.91866913123845,1.0070175438596491,3.082456140350877,1.9596491228070176,574,323,604,54,99,10,17,16,4,28,9,2,9,1,36,16,5,12,2,3,10,1375,254,0,314,1315,0,812,817,0,1527,102,0,397,1232,0,357,40,1162,70,0,75,16,18,0,32,47,56,53,61,439,1,1,0,49,76,142,47,85,286,6,6,8,11,24,44,23,22,1,0,0,0,0,0,0,0,712,76,660,0,1,25,19,43,231,324,35,27,369,46,135,50,67,4,94,1,0,883,867,107,340,52,262,1,2,2,0,3,75,9,387,1,0,0,1017,334,0,3,15,78,1,0,0,0,0,18,28,39,35,127,50,160,80,251,732,244,45,92,170,197,142,42,55,22,4,2,1,0,1,1,33.0,25.0,32.0,31.0,34.0,27.0,27.0,26.0,39.0,28.0,34.0,33.0,21.0,25.0,31.0,19.0,27.0,20.0,28.0,24.0,27.0,35.0,29.0,27.0,28.0,37.0,36.0,36.0,37.0,17.0,20.0,25.0,32.0,27.0,29.0,30.0,17.0,25.0,22.0,25.0,20.0,22.0,19.0,22.0,25.0,31.0,17.0,15.0,19.0,25.0,22.0,19.0,18.0,21.0,22.0,19.0,18.0,14.0,17.0,16.0,16.0,8.0,18.0,8.0,13.0,8.0,12.0,12.0,9.0,10.0,8.0,6.0,12.0,8.0,10.0,4.0,4.0,5.0,8.0,2.0,4.0,2.0,4.0,4.0,8.0,5.0,1.0,3.0,2.0,4.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,446,1143,161,0,155,147,144,118,146,163,133,119,108,107,102,84,63,51,44,23,22,15,5,1,0,0,1726,9,9,6,0,1728,16,0,6,0,573,10,59,186,52,5,420,445,0,896,845,9,0,2,67,6,0,0,0,2,1,0,26,1646,0,32,97,128,4,5,1,92,1391,0,269,344,39,4,5,1089,0,2.035961272475795,0.0,2.795228628230616,0.0,7.323428571428572,7,32,52,1,3,1,42,436,0,13,28,17,38,81,102,88,40,85,45,19,9,4,3,1,1,568,6,518,56,491,83,74,500,460,114,63,511,279,295,34,540,521,53,495,79,231,264,118,456,301,273,178,396,216,358,219,355,12,562,119,327,120,8,0,383,191,0,0,14,1,0,0,0,0,0,0,6,553,0,1.538327526132404,1.5104529616724738,1.3333333333333333,1.105263157894737,1.105263157894737,49.05574912891986 +,130714,Panamá Oeste,La Chorrera,Mendoza,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,205,35,427,34,0,0,0,34,1,463,10,1,8,2,1,10,0,1,220,25,232,0,16,0,3,471,8,0,0,0,17,496,0,83,31,1,50,12,0,1,13,428,51,3,0,482,2,1,11,0,0,0,487,0,9,0,0,0,0,117,368,0,11,0,0,9,433,21,12,9,6,0,0,0,2,4,0,0,673,6.853131749460043,21.300215982721383,6.861771058315335,21.360691144708422,1.0120967741935485,3.169354838709677,2.024193548387097,502,275,514,61,88,10,13,13,2,11,4,4,20,0,26,9,3,12,11,2,15,1137,285,0,211,1211,0,739,683,0,1308,114,0,358,1064,0,320,38,1018,46,0,49,14,25,11,28,39,44,31,57,473,0,0,2,33,62,135,50,60,181,0,2,22,22,16,29,18,12,2,1,4,0,0,0,0,0,559,90,615,0,1,31,17,68,206,268,25,48,242,31,94,39,57,3,165,3,0,788,729,52,305,41,182,24,0,30,0,1,57,6,553,9,0,0,953,237,2,2,14,50,2,4,0,0,0,13,16,18,22,76,107,90,54,253,875,125,59,68,122,110,73,35,23,10,5,2,1,0,0,9,23.0,18.0,28.0,26.0,29.0,22.0,29.0,20.0,33.0,25.0,22.0,26.0,31.0,19.0,19.0,22.0,18.0,22.0,26.0,17.0,18.0,30.0,24.0,25.0,37.0,24.0,28.0,18.0,19.0,24.0,19.0,17.0,21.0,20.0,18.0,20.0,23.0,17.0,18.0,22.0,21.0,15.0,19.0,23.0,18.0,22.0,18.0,25.0,18.0,21.0,16.0,17.0,24.0,22.0,16.0,17.0,17.0,12.0,20.0,6.0,22.0,15.0,9.0,13.0,15.0,9.0,10.0,8.0,9.0,6.0,11.0,12.0,3.0,7.0,4.0,7.0,6.0,6.0,5.0,4.0,8.0,4.0,3.0,5.0,7.0,3.0,2.0,4.0,3.0,2.0,3.0,1.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,370,988,159,0,124,129,117,105,134,113,95,100,96,104,95,72,74,42,37,28,27,14,7,3,1,0,1481,28,5,3,0,1481,29,4,3,0,444,17,137,182,41,4,322,370,0,872,626,19,0,13,44,2,1,1,1,10,0,3,47,1395,0,44,166,158,6,8,6,469,660,0,169,249,66,10,3,1020,0,2.2895622895622894,0.0,3.090692124105012,0.0,7.094264996704021,14,50,60,5,7,1,189,176,0,75,25,30,42,87,69,47,48,42,19,9,4,3,1,0,1,482,20,407,95,382,120,63,439,386,116,31,471,201,301,4,498,458,44,399,103,127,272,80,422,307,195,133,369,201,301,167,335,4,498,107,283,95,17,0,366,136,0,2,15,1,1,0,1,3,0,0,18,461,0,1.5697211155378483,1.452191235059761,2.0,1.0,1.0,50.95816733067729 +,130715,Panamá Oeste,La Chorrera,Obaldía,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,125,4,235,20,0,0,0,4,0,231,0,2,13,3,0,10,0,0,54,6,198,0,1,0,0,244,13,0,0,0,2,259,0,104,27,3,17,7,0,2,6,226,25,0,0,242,12,0,3,1,1,0,253,0,3,0,0,3,0,36,210,0,13,0,0,1,197,38,3,0,19,0,0,0,1,0,0,0,417,6.919491525423729,20.029661016949152,6.936440677966102,20.572033898305083,1.0077220077220077,2.841698841698842,1.7297297297297298,261,150,273,10,38,1,4,5,3,10,4,1,7,0,10,5,5,5,7,0,3,576,140,0,83,633,0,535,181,0,649,67,0,184,532,0,163,21,507,25,0,29,8,14,0,28,24,46,33,29,186,0,0,0,24,38,59,8,29,102,1,0,8,7,12,16,10,5,0,0,0,0,0,0,0,0,339,15,278,0,0,5,3,15,91,158,8,6,129,45,44,16,21,2,97,0,0,385,382,30,169,18,122,2,0,13,0,5,63,1,58,1,0,0,471,129,0,1,4,27,0,0,0,0,0,5,11,9,12,49,47,64,25,132,284,118,56,73,104,50,33,24,18,3,1,1,0,1,0,1,12.0,15.0,14.0,10.0,13.0,7.0,16.0,14.0,18.0,16.0,9.0,18.0,9.0,11.0,10.0,7.0,9.0,9.0,12.0,9.0,15.0,5.0,10.0,12.0,11.0,17.0,8.0,16.0,14.0,11.0,17.0,6.0,15.0,15.0,14.0,13.0,10.0,10.0,8.0,11.0,6.0,10.0,13.0,12.0,10.0,8.0,6.0,8.0,10.0,11.0,7.0,3.0,5.0,8.0,7.0,4.0,5.0,6.0,8.0,7.0,8.0,7.0,8.0,10.0,6.0,4.0,5.0,1.0,6.0,7.0,6.0,6.0,5.0,8.0,5.0,8.0,7.0,1.0,3.0,4.0,1.0,7.0,1.0,0.0,2.0,1.0,2.0,2.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,192,477,98,0,64,71,57,46,53,66,67,52,51,43,30,30,39,23,30,23,11,8,3,0,0,0,759,8,0,0,0,759,8,0,0,0,263,6,66,75,23,2,140,192,0,339,424,4,0,4,33,0,0,0,0,8,0,0,5,717,0,3,11,61,2,0,0,166,524,0,82,117,13,4,0,551,0,2.315286624203821,0.0,3.2816901408450705,0.0,6.70664928292047,2,5,20,1,0,0,64,169,0,4,16,13,20,48,57,34,15,29,16,4,3,0,1,1,0,256,5,202,59,190,71,40,221,172,89,16,245,140,121,2,259,224,37,202,59,68,134,24,237,189,72,50,211,127,134,121,140,2,259,60,154,41,6,0,187,74,0,0,9,0,0,0,0,1,0,0,1,250,0,1.475095785440613,1.4636015325670495,0.0,1.125,1.125,51.71264367816092 +,130716,Panamá Oeste,La Chorrera,Playa Leona,16534,41,97,9,2,2,0,0,1,0,0,0,13,0,0,8045,2429,545,44,10763,256,3,0,0,38,3,10924,82,10,15,1,9,9,0,13,9767,456,751,25,25,0,39,10894,38,62,1,1,67,11063,13,1196,2479,714,1057,159,0,7349,996,2529,163,25,1,10913,25,0,106,0,18,1,6001,1350,3708,2,1,0,1,9382,1617,1,56,3,4,10216,745,53,8,2,4,1,0,0,29,4,1,16284,415,6.924913746141275,22.101961140366807,6.935718176865807,22.31051389141093,1.0072313115791376,3.550031636988159,2.347012564403869,11156,6881,12746,1526,1033,549,510,341,182,284,226,172,486,24,358,119,55,229,179,124,107,30593,2868,3,15252,18209,3,28573,4888,3,30981,2481,2,11593,21868,3,9466,2127,20643,1225,0,1274,373,770,82,834,880,987,868,900,2551,2,8,97,1047,1395,2729,1031,1715,8531,26,174,737,1041,1126,1600,1312,779,201,56,321,0,3,1,10,3,15858,1712,11325,3,57,671,152,743,6214,3767,279,322,13102,689,1565,353,1279,48,71,201,21,17558,18558,3321,9703,403,3668,137,13,53,31,34,279,49,10453,159,2,2,12828,11395,106,276,631,3153,189,306,11,3,34,912,1792,2108,1455,4361,284,2594,1726,2304,16967,1641,836,949,1332,2218,5042,2784,2606,938,369,110,89,32,44,159,613.0,611.0,736.0,692.0,771.0,756.0,766.0,796.0,773.0,704.0,769.0,747.0,676.0,633.0,607.0,556.0,538.0,500.0,513.0,443.0,481.0,522.0,522.0,555.0,643.0,743.0,727.0,731.0,772.0,773.0,879.0,855.0,902.0,894.0,789.0,755.0,674.0,720.0,654.0,587.0,568.0,507.0,516.0,405.0,428.0,423.0,369.0,307.0,367.0,314.0,330.0,269.0,277.0,280.0,277.0,242.0,237.0,210.0,224.0,191.0,174.0,165.0,135.0,147.0,111.0,119.0,100.0,87.0,84.0,91.0,76.0,64.0,66.0,64.0,45.0,60.0,49.0,40.0,44.0,33.0,39.0,37.0,27.0,24.0,18.0,15.0,22.0,13.0,7.0,8.0,7.0,5.0,7.0,3.0,1.0,0.0,5.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10650,24201,1265,0,3423,3795,3432,2550,2723,3746,4319,3390,2424,1780,1433,1104,732,481,315,226,145,65,23,7,3,0,34600,1052,396,67,1,34611,1108,329,67,1,10564,423,1864,4812,471,254,7080,10648,0,5979,29747,388,2,1510,818,53,15,10,1,218,24,6,436,33022,3,2127,1520,2340,498,342,190,8753,20343,3,10946,10391,732,85,19,13940,3,1.6032518158192843,0.0001332711401346,2.4227165070538565,0.0002059520131809,8.908240115184405,632,492,854,225,127,65,3018,5742,1,352,174,127,246,489,725,1590,1296,2514,1672,895,469,368,108,96,22,11051,105,10703,453,10222,934,1160,9996,10425,731,3283,7873,6094,5062,2485,8671,10885,271,10438,718,7491,2947,5078,6078,9117,2039,5963,5193,567,10589,341,10815,83,11073,1664,7191,1962,339,5,6978,4178,0,270,262,8,7,3,1,58,7,2,146,10391,1,1.5731565271929038,1.6627542334916223,1.3428571428571427,1.020408163265306,1.020408163265306,40.97696306920043 +,130717,Panamá Oeste,La Chorrera,Puerto Caimito,17579,274,165,45,1,0,0,0,0,0,0,0,25,0,0,10048,2995,1325,124,14043,325,10,0,3,98,13,14372,72,2,9,2,12,11,0,12,11995,1289,1139,21,36,3,9,14248,37,142,0,0,65,14492,43,1156,644,522,1057,149,0,8177,1294,4797,174,28,22,13811,115,0,545,1,20,0,9872,1375,3155,87,1,0,2,11205,2934,4,313,29,7,14193,177,0,0,0,0,0,0,31,74,11,6,17664,425,6.783020180932498,20.42296450939457,6.807794015309673,20.53437717466945,1.0099365166988683,3.694176097157052,2.460736958321833,14661,8979,17443,1148,1521,691,484,396,301,396,223,206,417,57,517,169,94,233,175,141,140,39720,4163,9,24304,19579,9,37444,6439,9,40983,2900,9,15410,28477,5,9953,5457,27006,1467,4,1607,577,882,88,1093,1111,1287,1121,1101,3473,3,5,70,1326,1734,3167,1308,1858,8860,19,305,775,1191,1394,2865,2787,1684,445,95,1572,2,4,4,70,9,20262,1930,15980,9,68,751,251,1418,8494,5264,357,447,16458,1089,1980,397,1248,104,47,433,38,22774,24149,4476,11540,471,4795,371,14,53,74,41,287,71,14495,1050,4,4,15972,12242,81,347,767,6777,419,1498,69,9,84,2153,3970,3173,1581,4141,539,2560,1505,2486,21516,1736,895,1247,1611,2539,4270,2640,3875,2132,1263,587,721,269,572,1050,675.0,697.0,812.0,847.0,904.0,936.0,963.0,998.0,976.0,934.0,984.0,894.0,885.0,836.0,779.0,791.0,752.0,689.0,673.0,649.0,603.0,630.0,688.0,621.0,609.0,673.0,659.0,643.0,683.0,756.0,850.0,893.0,985.0,1071.0,967.0,992.0,915.0,916.0,914.0,899.0,916.0,822.0,813.0,807.0,673.0,627.0,574.0,581.0,547.0,482.0,508.0,522.0,469.0,435.0,390.0,406.0,386.0,357.0,346.0,314.0,287.0,255.0,258.0,232.0,191.0,210.0,163.0,165.0,148.0,136.0,123.0,106.0,102.0,96.0,106.0,100.0,73.0,85.0,63.0,57.0,33.0,40.0,39.0,48.0,22.0,35.0,24.0,14.0,21.0,26.0,11.0,8.0,5.0,5.0,7.0,4.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,13120,31719,2084,0,3935,4807,4378,3554,3151,3414,4766,4636,4031,2811,2324,1809,1223,822,533,378,182,120,36,9,4,0,43394,1868,1557,98,6,43442,2410,967,98,6,11053,495,850,9070,691,442,11201,13119,2,10790,34998,1126,9,1184,1087,66,5,9,6,377,42,4,424,43710,9,2925,2294,2578,672,150,203,8323,29769,9,13640,11961,1411,136,83,19683,9,1.578664118297958,0.0002011870033195,2.413125294025404,0.0003136270973812,9.576071436182682,1006,748,964,297,57,110,2889,8587,3,603,267,193,373,609,981,1516,1109,2326,1724,1351,907,1079,562,898,138,14551,110,13899,762,13632,1029,1753,12908,13572,1089,7251,7410,8191,6470,4446,10215,14245,416,13771,890,10413,3358,8430,6231,12569,2092,9204,5457,527,14134,337,14324,119,14542,2285,9397,2597,382,1,9073,5588,0,238,308,17,2,3,1,88,14,1,141,13845,3,1.5532669485745465,1.647046787614241,1.2701149425287357,1.0428211586901763,1.0428211586901763,43.718368460541576 +,130718,Panamá Oeste,La Chorrera,Santa Rita,1025,4,0,0,0,0,0,0,1,0,0,0,1,0,0,29,597,169,12,746,49,0,0,0,11,1,784,0,2,13,0,2,6,0,0,462,68,248,7,21,0,1,783,18,1,0,0,5,807,0,91,41,17,55,18,0,25,31,670,79,2,0,785,0,0,15,0,7,0,790,3,11,2,0,0,1,310,486,0,10,0,1,4,670,101,4,1,12,0,0,6,4,4,1,0,1031,6.814193548387097,17.941935483870967,6.832258064516129,18.40258064516129,1.0223048327137547,3.138785625774473,1.9987608426270136,826,477,849,66,114,17,17,8,8,33,8,8,14,0,56,25,7,12,18,7,5,2071,233,0,389,1915,0,1722,582,0,2174,130,0,644,1660,0,569,75,1571,89,0,91,15,46,6,55,66,84,70,88,414,0,0,5,66,116,212,69,117,424,0,8,27,55,38,80,99,35,3,0,13,0,0,0,2,0,1013,64,969,0,3,32,11,78,372,461,40,18,599,41,170,51,114,2,96,2,0,1260,1185,177,497,52,328,17,0,4,0,5,80,7,422,10,0,0,1255,553,6,12,28,175,2,13,2,0,0,38,80,90,60,152,46,190,153,268,989,291,100,131,191,229,215,113,106,40,13,7,6,3,1,10,35.0,32.0,45.0,29.0,47.0,26.0,48.0,44.0,49.0,44.0,39.0,53.0,37.0,26.0,38.0,39.0,37.0,34.0,31.0,37.0,46.0,37.0,43.0,43.0,31.0,34.0,33.0,40.0,33.0,36.0,44.0,46.0,32.0,48.0,47.0,43.0,41.0,33.0,45.0,40.0,24.0,35.0,35.0,26.0,33.0,33.0,23.0,30.0,18.0,28.0,27.0,38.0,34.0,33.0,24.0,16.0,21.0,28.0,30.0,26.0,19.0,20.0,17.0,12.0,24.0,15.0,14.0,15.0,10.0,14.0,15.0,14.0,17.0,10.0,17.0,4.0,3.0,6.0,7.0,12.0,8.0,5.0,5.0,4.0,5.0,9.0,3.0,1.0,4.0,1.0,2.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,592,1627,226,0,188,211,193,178,200,176,217,202,153,132,156,121,92,68,73,32,27,18,5,3,0,0,2404,25,12,4,0,2404,25,12,4,0,726,13,143,363,72,21,515,592,0,1119,1296,30,0,9,92,6,0,0,0,3,0,0,10,2325,0,40,47,172,5,2,1,458,1720,0,432,461,76,13,2,1461,0,1.9617706237424548,0.0,2.74633431085044,0.0,8.101431492842536,14,17,78,3,1,0,156,557,0,20,43,22,54,90,139,109,70,124,63,38,16,23,6,6,2,811,15,749,77,721,105,83,743,703,123,94,732,473,353,50,776,765,61,718,108,463,255,160,666,464,362,353,473,278,548,225,601,13,813,178,486,149,13,1,578,248,0,2,23,2,0,0,0,0,0,0,2,797,0,1.5235792019347036,1.4328899637243049,1.0,1.0344827586206895,1.0344827586206895,49.21065375302664 +,130901,Panamá Oeste,San Carlos,San Carlos,2640,13,759,3,0,0,0,0,0,0,0,0,2,0,0,190,989,119,31,1263,35,0,0,0,31,0,1292,6,0,8,1,4,7,0,11,890,78,331,6,23,0,1,1268,13,27,0,0,21,1329,3,1611,105,223,101,43,0,35,128,1053,106,6,1,1308,3,2,14,0,2,0,1033,76,118,99,3,0,0,712,603,4,8,2,0,454,691,133,2,0,1,0,0,0,38,10,0,1802,1615,6.958528951486698,19.964788732394368,6.970266040688576,20.42410015649452,1.0293453724604966,3.799849510910459,2.4424379232505644,1370,741,1300,64,256,26,37,35,13,66,8,8,47,9,75,17,9,26,20,22,37,3400,389,0,1329,2460,0,3256,533,0,3575,214,0,973,2816,0,798,175,2739,77,0,79,42,68,3,66,86,102,71,95,595,0,2,29,103,173,349,115,158,907,0,27,36,69,105,193,143,86,17,1,58,0,0,0,11,0,1603,217,1631,0,7,93,61,447,561,539,68,16,905,91,367,220,90,7,11,103,0,2059,1921,222,683,230,571,72,3,10,3,3,68,14,913,124,0,0,1763,1061,32,40,78,399,14,53,11,0,3,111,119,158,87,360,136,308,95,443,1573,287,167,216,336,336,351,166,183,84,45,27,26,20,39,124,47.0,46.0,57.0,41.0,46.0,56.0,58.0,57.0,69.0,52.0,56.0,60.0,67.0,56.0,66.0,53.0,52.0,45.0,54.0,53.0,51.0,49.0,52.0,52.0,68.0,50.0,63.0,56.0,50.0,52.0,52.0,53.0,51.0,50.0,55.0,48.0,53.0,41.0,57.0,33.0,56.0,50.0,59.0,48.0,56.0,61.0,43.0,52.0,61.0,64.0,65.0,54.0,55.0,44.0,53.0,42.0,49.0,41.0,40.0,49.0,46.0,42.0,39.0,56.0,40.0,44.0,41.0,31.0,29.0,38.0,35.0,34.0,28.0,31.0,32.0,25.0,28.0,22.0,20.0,8.0,15.0,16.0,12.0,14.0,15.0,15.0,11.0,10.0,4.0,9.0,1.0,4.0,3.0,2.0,3.0,2.0,3.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,834,2558,588,0,237,292,305,257,272,271,261,232,269,281,271,221,223,183,160,103,72,49,13,6,2,0,3584,248,145,3,0,3594,304,79,3,0,966,42,400,781,144,64,749,834,0,1729,2054,197,0,15,19,6,0,0,0,4,0,1,46,3889,0,154,134,149,22,5,15,637,2864,0,669,855,367,7,115,1967,0,2.073809523809524,0.0,2.8286919831223627,0.0,9.137185929648242,64,50,61,11,1,5,242,936,0,66,44,28,53,141,156,177,134,193,115,69,36,45,20,55,36,1326,44,1277,93,1159,211,230,1140,1230,140,503,867,723,647,260,1110,1322,48,1252,118,1010,242,557,813,1179,191,611,759,301,1069,233,1137,11,1359,320,713,293,44,0,860,510,0,5,6,5,0,0,0,2,0,0,10,1342,0,1.5029197080291972,1.4021897810218975,1.0909090909090908,1.03125,1.03125,54.15547445255474 +,130902,Panamá Oeste,San Carlos,El Espino,1107,2,3,0,0,0,0,0,1,0,0,0,1,0,0,1,444,143,23,571,17,1,0,0,22,0,583,4,1,6,5,1,8,0,3,113,7,412,6,62,0,11,566,31,1,0,0,13,611,0,363,76,13,37,12,0,0,16,561,33,1,0,582,3,12,13,0,1,0,606,0,5,0,0,0,0,191,411,0,9,0,0,2,550,33,3,0,0,0,0,0,10,13,0,0,1114,5.541880341880342,12.998290598290598,6.049572649572649,15.770940170940172,1.0490998363338788,3.299509001636661,2.176759410801964,642,332,726,39,142,15,41,27,7,32,7,5,14,3,82,21,1,11,20,7,22,1613,313,0,392,1534,0,1235,691,0,1808,118,0,466,1460,0,421,45,1420,40,0,44,25,22,14,41,30,75,44,39,490,0,0,0,67,108,214,56,97,347,5,11,27,35,34,42,25,29,2,0,3,0,0,0,0,0,749,63,955,0,2,36,10,116,287,469,51,32,351,97,201,79,42,8,23,0,3,1076,956,57,310,95,290,20,0,29,3,8,79,9,702,9,0,0,1206,438,1,10,24,84,1,3,0,0,4,30,30,37,24,135,81,182,56,233,1071,177,96,139,146,147,116,61,35,20,3,5,5,0,2,9,26.0,23.0,28.0,29.0,32.0,24.0,25.0,28.0,25.0,25.0,20.0,24.0,25.0,37.0,27.0,34.0,27.0,35.0,43.0,36.0,35.0,38.0,34.0,33.0,30.0,33.0,36.0,37.0,25.0,21.0,30.0,24.0,21.0,22.0,14.0,30.0,27.0,25.0,22.0,33.0,36.0,23.0,16.0,25.0,17.0,32.0,26.0,26.0,23.0,22.0,34.0,22.0,29.0,26.0,29.0,27.0,26.0,32.0,19.0,27.0,28.0,17.0,27.0,20.0,25.0,16.0,15.0,16.0,15.0,14.0,15.0,10.0,13.0,7.0,10.0,12.0,8.0,10.0,10.0,7.0,4.0,3.0,7.0,9.0,6.0,7.0,7.0,4.0,4.0,5.0,5.0,6.0,3.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,398,1379,255,0,138,127,133,175,170,152,111,137,117,129,140,131,117,76,55,47,29,27,18,3,0,0,1986,19,23,4,0,1986,19,23,4,0,567,19,132,254,69,11,582,398,0,1177,831,24,0,1,9,1,0,0,0,0,0,3,16,2002,0,37,56,40,2,0,7,167,1723,0,249,365,105,11,10,1292,0,2.2607142857142857,0.0,3.1655052264808363,0.0,7.861220472440944,13,18,18,0,0,2,74,517,0,75,46,25,56,92,85,75,51,66,34,16,6,7,3,3,1,621,21,570,72,514,128,102,540,486,156,78,564,336,306,42,600,599,43,585,57,310,275,165,477,439,203,207,435,207,435,223,419,16,626,131,340,161,10,1,403,239,0,0,2,1,0,0,0,0,0,0,6,633,0,1.6734059097978229,1.4867807153965786,1.0,1.05,1.05,54.58255451713396 +,130903,Panamá Oeste,San Carlos,El Higo,1628,9,449,0,0,0,0,0,20,0,0,0,0,0,0,63,683,204,39,914,36,0,0,0,39,0,932,1,2,17,1,4,17,0,15,426,15,460,1,80,0,7,924,27,26,0,0,12,989,0,879,77,34,60,47,0,44,37,837,66,5,0,953,3,13,13,0,7,0,934,1,32,22,0,0,0,373,603,1,11,1,0,2,854,97,1,0,0,0,1,0,29,5,0,0,2106,6.886673662119622,17.575026232948584,6.958027282266527,19.19202518363064,1.031344792719919,3.4600606673407484,2.2790697674418605,1020,533,1132,61,308,26,84,44,5,64,8,9,78,1,59,22,11,26,19,14,11,2764,444,0,815,2393,0,2291,917,0,3045,163,0,791,2417,0,698,93,2355,62,0,67,44,41,7,46,60,80,70,81,870,1,1,19,73,116,284,93,131,697,1,13,32,53,58,101,77,54,8,0,29,0,0,1,0,0,1287,175,1467,0,9,91,29,223,487,601,75,81,785,80,322,133,76,1,21,18,1,1730,1643,153,664,137,443,22,1,14,3,6,141,19,981,28,0,0,1783,809,21,24,46,215,4,27,0,0,4,59,72,106,69,290,88,181,99,494,1645,299,118,147,256,302,283,109,100,34,19,11,12,0,10,28,36.0,37.0,44.0,48.0,42.0,50.0,47.0,41.0,47.0,52.0,54.0,48.0,55.0,46.0,44.0,50.0,57.0,48.0,40.0,45.0,54.0,45.0,59.0,45.0,66.0,55.0,51.0,59.0,53.0,50.0,53.0,53.0,50.0,43.0,45.0,38.0,53.0,37.0,43.0,46.0,43.0,42.0,48.0,48.0,36.0,47.0,35.0,40.0,35.0,54.0,56.0,47.0,44.0,42.0,39.0,42.0,51.0,36.0,37.0,33.0,27.0,32.0,46.0,24.0,38.0,26.0,15.0,21.0,28.0,35.0,18.0,17.0,21.0,16.0,20.0,21.0,13.0,18.0,15.0,11.0,17.0,11.0,15.0,9.0,14.0,9.0,15.0,5.0,8.0,6.0,5.0,4.0,2.0,0.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,691,2260,422,0,207,237,247,240,269,268,244,217,217,211,228,199,167,125,92,78,66,43,14,3,1,0,3282,48,41,2,0,3284,52,35,2,0,972,18,52,414,102,19,1105,691,0,1771,1552,50,0,20,51,3,0,0,1,0,0,0,53,3245,0,82,147,191,18,7,15,1346,1567,0,645,830,213,19,19,1647,0,2.026685393258427,0.0,2.8880829015544043,0.0,8.330862733471687,18,43,59,5,4,7,435,449,0,71,62,26,53,106,133,156,84,152,69,41,20,19,10,13,5,999,21,905,115,813,207,153,867,841,179,196,824,572,448,82,938,977,43,907,113,703,204,322,698,706,314,370,650,333,687,374,646,11,1009,192,508,279,41,20,629,391,0,5,14,1,0,0,1,0,0,0,15,984,0,1.6634615384615383,1.5798076923076922,1.0,1.068181818181818,1.068181818181818,53.97156862745098 +,130904,Panamá Oeste,San Carlos,Guayabito,366,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,53,10,174,8,0,0,0,10,0,159,0,5,12,3,0,13,0,0,17,3,131,5,34,0,2,183,4,2,0,0,3,192,0,118,31,7,21,5,0,3,3,164,22,0,0,181,0,8,3,0,0,0,181,3,8,0,0,0,0,43,144,0,5,0,0,0,150,34,0,0,1,0,0,0,4,3,0,0,374,6.570652173913044,21.58695652173913,6.880434782608695,23.483695652173918,1.0052083333333333,3.078125,1.9427083333333333,193,99,213,9,53,6,7,5,2,15,1,0,2,0,13,0,3,4,0,2,3,484,95,0,87,492,0,423,156,0,537,42,0,141,438,0,126,15,414,24,0,25,5,8,1,13,17,26,20,21,146,0,0,5,23,25,41,17,34,116,0,0,1,1,4,7,13,7,0,0,3,0,0,0,0,0,242,25,256,0,0,13,11,44,90,95,13,14,84,14,35,57,44,0,24,0,0,321,284,15,88,58,93,0,0,4,0,5,21,0,188,0,0,0,365,122,5,1,2,25,0,3,0,0,0,9,6,11,5,33,42,30,17,114,312,57,29,46,53,41,43,14,4,2,1,0,0,0,3,0,6.0,6.0,10.0,4.0,8.0,8.0,10.0,7.0,15.0,8.0,12.0,12.0,5.0,11.0,10.0,13.0,10.0,11.0,13.0,11.0,3.0,6.0,12.0,7.0,11.0,10.0,6.0,12.0,12.0,8.0,6.0,10.0,14.0,9.0,8.0,6.0,5.0,1.0,6.0,4.0,4.0,7.0,11.0,6.0,6.0,9.0,5.0,14.0,3.0,6.0,7.0,9.0,11.0,5.0,13.0,6.0,6.0,9.0,11.0,6.0,4.0,5.0,3.0,6.0,3.0,6.0,1.0,5.0,6.0,6.0,5.0,4.0,3.0,2.0,5.0,6.0,4.0,1.0,0.0,0.0,2.0,2.0,5.0,2.0,2.0,2.0,4.0,0.0,4.0,2.0,1.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,132,389,84,0,34,48,50,58,39,48,47,22,34,37,45,38,21,24,19,11,13,12,4,1,0,0,584,10,8,3,0,584,11,7,3,0,193,5,87,56,30,3,99,132,0,307,287,11,0,0,0,0,0,0,0,0,0,0,4,601,0,3,3,3,0,0,0,14,582,0,88,127,38,3,4,345,0,2.156378600823045,0.0,3.20125786163522,0.0,7.44297520661157,1,1,2,0,0,0,10,179,0,11,15,13,15,33,31,31,10,19,5,3,2,2,0,3,0,188,5,152,41,136,57,36,157,134,59,21,172,101,92,5,188,182,11,162,31,61,101,34,159,144,49,59,134,68,125,67,126,2,191,54,84,53,2,0,126,67,0,0,0,0,0,0,0,0,0,0,1,192,0,1.6632124352331603,1.471502590673575,0.0,1.1111111111111112,1.1111111111111112,55.21243523316062 +,130905,Panamá Oeste,San Carlos,La Ermita,815,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,479,50,9,518,12,0,0,0,9,0,515,1,0,5,5,0,11,0,2,180,2,292,0,65,0,0,523,3,2,0,0,11,539,0,177,57,14,21,9,0,4,28,490,17,0,0,523,4,2,9,1,0,0,533,3,2,1,0,0,0,207,321,0,11,0,0,0,520,13,0,0,0,0,0,0,6,0,0,0,817,6.656660412757974,17.75422138836773,6.769230769230769,18.574108818011258,1.007421150278293,3.434137291280148,2.3413729128014844,543,300,640,69,148,6,17,20,5,42,4,3,22,1,27,4,3,16,2,0,2,1348,380,0,258,1470,0,1266,462,0,1624,104,0,470,1258,0,419,51,1215,43,0,46,18,28,9,33,36,54,44,44,391,0,1,8,65,76,164,38,85,379,0,28,12,17,30,47,31,27,6,0,11,0,0,0,0,0,625,92,836,0,3,31,17,143,290,319,70,14,285,70,193,63,66,7,2,4,3,927,893,90,201,69,297,26,0,7,3,1,63,7,631,0,0,0,957,434,8,27,7,104,6,10,0,0,3,28,48,34,25,126,110,101,57,185,1014,127,53,76,141,132,125,46,64,21,13,3,1,3,1,0,18.0,18.0,26.0,30.0,23.0,24.0,35.0,23.0,38.0,32.0,38.0,23.0,31.0,37.0,25.0,22.0,33.0,26.0,36.0,29.0,30.0,31.0,24.0,26.0,27.0,26.0,28.0,26.0,16.0,30.0,27.0,24.0,24.0,23.0,14.0,23.0,26.0,28.0,23.0,30.0,23.0,15.0,30.0,31.0,21.0,25.0,23.0,26.0,17.0,19.0,18.0,18.0,25.0,22.0,20.0,24.0,15.0,12.0,13.0,16.0,16.0,19.0,17.0,16.0,14.0,14.0,14.0,13.0,21.0,14.0,13.0,17.0,11.0,9.0,5.0,12.0,8.0,12.0,10.0,3.0,13.0,7.0,3.0,5.0,3.0,8.0,7.0,3.0,2.0,4.0,4.0,3.0,1.0,4.0,3.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,421,1147,252,0,115,152,154,146,138,126,112,130,120,110,103,80,82,76,55,45,31,24,15,5,1,0,1756,37,27,0,0,1757,43,20,0,0,502,6,133,252,70,3,434,420,0,992,798,30,0,12,5,3,1,0,0,4,0,0,65,1730,0,88,62,114,6,4,9,1080,457,0,246,392,132,13,5,1032,0,2.2342105263157896,0.0,3.1332046332046333,0.0,8.146153846153846,30,18,39,2,2,2,316,134,0,57,26,16,28,75,93,52,40,76,23,25,16,9,4,3,0,529,14,478,65,422,121,80,463,439,104,86,457,254,289,4,539,511,32,470,73,203,267,147,396,470,73,186,357,195,348,218,325,31,512,105,283,138,17,0,370,173,0,2,1,1,1,0,0,0,0,0,28,510,0,1.707182320441989,1.6445672191528544,1.0,1.0,1.0,55.20257826887661 +,130906,Panamá Oeste,San Carlos,La Laguna,962,16,0,0,0,0,0,0,1,0,0,0,0,0,0,1,307,133,12,425,16,0,0,0,12,0,373,4,8,30,6,0,26,0,6,84,57,259,2,45,2,4,428,20,5,0,0,0,453,0,395,59,11,33,27,0,1,19,392,41,0,0,388,11,10,21,0,23,0,397,17,38,1,0,0,0,145,280,0,26,1,1,0,238,183,6,4,8,0,2,0,8,3,1,259,720,6.767220902612826,22.91448931116389,6.9691211401425175,23.78147268408551,1.033112582781457,3.5496688741721854,2.3443708609271523,468,269,436,19,80,12,12,2,1,21,4,5,27,3,14,13,3,2,3,5,26,1086,198,0,277,1007,0,712,572,0,1211,73,0,267,1017,0,240,27,971,46,0,46,11,12,1,28,39,41,30,30,350,0,1,1,37,52,142,30,48,207,0,4,10,28,21,20,26,44,5,1,14,0,0,0,5,0,552,29,591,0,2,16,5,90,163,252,28,58,165,42,78,79,38,5,168,0,3,722,637,44,185,89,215,21,5,15,4,2,61,7,433,10,0,0,786,257,1,6,19,85,3,11,4,0,4,14,24,22,14,67,173,61,25,177,684,124,61,82,133,74,63,30,27,26,16,7,5,2,15,10,16.0,20.0,18.0,21.0,18.0,21.0,18.0,23.0,18.0,14.0,16.0,21.0,14.0,19.0,18.0,24.0,15.0,15.0,22.0,19.0,19.0,31.0,9.0,16.0,20.0,25.0,22.0,19.0,13.0,22.0,17.0,18.0,10.0,24.0,11.0,18.0,21.0,10.0,21.0,22.0,23.0,12.0,24.0,17.0,15.0,14.0,15.0,17.0,12.0,14.0,15.0,19.0,13.0,17.0,18.0,17.0,19.0,19.0,23.0,12.0,18.0,18.0,15.0,12.0,18.0,15.0,13.0,11.0,9.0,12.0,8.0,21.0,10.0,16.0,10.0,7.0,7.0,10.0,3.0,7.0,5.0,5.0,5.0,4.0,2.0,3.0,4.0,4.0,2.0,4.0,1.0,0.0,1.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,275,879,205,0,93,94,88,95,95,101,80,92,91,72,82,90,81,60,65,34,21,17,5,3,0,0,1286,18,51,4,0,1286,33,36,4,0,416,13,130,228,47,11,240,274,0,710,585,64,0,0,9,7,4,0,0,0,0,0,18,1321,0,17,65,66,1,11,1,242,956,0,152,196,53,0,47,911,0,2.295955882352941,0.0,3.1952506596306067,0.0,7.970566593083149,6,18,27,1,5,1,74,336,0,53,38,21,39,68,58,52,26,33,25,10,8,12,6,16,3,458,10,379,89,338,130,111,357,214,254,42,426,251,217,12,456,425,43,379,89,323,56,126,342,309,159,153,315,231,237,185,283,36,432,121,235,95,17,1,331,137,0,0,3,4,2,0,0,0,0,0,3,456,0,1.5394456289978675,1.3582089552238803,1.0,1.0416666666666667,1.0416666666666667,55.17094017094017 +,130907,Panamá Oeste,San Carlos,Las Uvas,1046,1,165,0,0,0,0,0,0,0,0,0,0,0,0,9,474,120,14,580,23,0,0,0,14,0,599,0,1,5,3,4,4,0,1,200,7,397,1,9,0,3,599,13,1,0,0,4,617,0,503,43,5,32,12,0,0,33,536,46,2,0,605,0,3,9,0,0,0,604,3,10,0,0,0,0,245,366,1,5,0,0,0,543,69,1,0,0,0,0,0,1,3,0,0,1212,6.080065359477124,12.967320261437909,6.328431372549019,13.898692810457517,1.0162074554294975,3.2512155591572123,1.9303079416531608,627,338,625,46,179,8,21,14,6,41,4,3,27,3,16,7,7,21,6,12,9,1548,301,0,345,1504,0,1159,690,0,1740,109,0,445,1404,0,399,46,1372,32,0,33,27,24,17,40,43,60,56,43,444,0,0,7,58,101,191,49,78,349,0,4,17,39,41,38,46,27,2,0,13,0,0,0,2,0,623,142,910,0,0,23,72,155,273,421,53,8,264,51,247,84,75,3,9,20,0,968,974,60,277,85,308,15,0,8,0,0,87,9,720,3,0,0,1090,443,7,8,22,92,1,10,2,0,0,52,28,36,26,123,38,151,47,264,1096,150,48,102,117,188,108,52,29,18,9,3,5,4,10,3,20.0,16.0,31.0,26.0,32.0,23.0,22.0,31.0,32.0,34.0,21.0,32.0,25.0,25.0,28.0,31.0,34.0,25.0,26.0,19.0,42.0,23.0,25.0,26.0,30.0,39.0,33.0,22.0,23.0,20.0,26.0,23.0,24.0,22.0,20.0,29.0,30.0,29.0,33.0,29.0,30.0,28.0,24.0,31.0,23.0,21.0,20.0,20.0,28.0,23.0,24.0,37.0,25.0,22.0,24.0,27.0,16.0,21.0,28.0,23.0,17.0,14.0,12.0,19.0,19.0,14.0,22.0,11.0,12.0,19.0,21.0,9.0,15.0,14.0,15.0,13.0,13.0,8.0,13.0,10.0,6.0,6.0,9.0,9.0,7.0,8.0,3.0,3.0,3.0,4.0,1.0,1.0,3.0,3.0,4.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,398,1259,285,0,125,142,131,135,146,137,115,150,136,112,132,115,81,78,74,57,37,21,12,4,2,0,1850,47,43,2,0,1850,52,38,2,0,563,19,63,265,70,6,559,397,0,1099,810,33,0,2,1,1,0,0,0,0,0,0,7,1931,0,34,54,42,2,19,4,431,1356,0,195,326,130,7,21,1263,0,2.150537634408602,0.0,2.993091537132988,0.0,8.031410916580844,14,26,23,0,5,2,163,394,0,79,35,27,43,73,122,66,38,73,26,18,4,5,6,11,1,617,10,572,55,505,122,105,522,536,91,108,519,361,266,76,551,591,36,566,61,275,291,151,476,456,171,229,398,112,515,80,547,0,627,143,328,134,22,0,397,230,0,1,1,0,0,0,0,0,0,0,2,623,0,1.543859649122807,1.5534290271132376,1.0,1.0,1.0,54.81499202551834 +,130908,Panamá Oeste,San Carlos,Los Llanitos,1484,27,0,0,0,0,0,0,2,0,0,0,0,0,0,1,547,443,49,908,83,0,0,0,46,3,919,4,8,20,7,13,63,0,6,76,7,809,7,127,3,11,946,64,3,0,0,27,1040,0,295,108,3,34,31,0,1,9,981,49,0,0,933,7,41,52,1,5,1,1021,0,19,0,0,0,0,207,766,2,64,0,1,0,795,179,7,3,36,1,3,0,3,9,4,0,1513,6.412731006160164,21.082135523613964,6.820328542094456,22.857289527720734,1.0317307692307691,3.173076923076923,1.8086538461538464,1073,612,1436,78,333,25,48,25,7,91,13,12,38,0,52,15,8,18,7,15,15,2808,757,0,563,3002,0,1523,2042,0,3348,217,0,848,2717,0,781,67,2607,110,0,113,24,60,12,80,109,131,107,117,1124,0,0,3,111,130,358,87,129,593,15,4,29,29,43,44,20,72,3,0,15,0,0,0,3,0,1457,88,1665,0,3,41,21,83,526,940,80,36,459,62,214,334,94,13,339,3,1,2033,1758,94,512,361,456,45,2,46,3,15,189,11,1365,61,0,0,2336,703,3,5,37,109,2,12,3,0,4,29,56,43,32,170,346,158,85,622,2296,373,141,177,234,251,121,57,46,21,4,2,2,1,4,61,55.0,59.0,59.0,53.0,62.0,49.0,56.0,63.0,64.0,61.0,59.0,55.0,52.0,54.0,70.0,68.0,60.0,59.0,78.0,63.0,67.0,53.0,67.0,66.0,58.0,57.0,78.0,58.0,54.0,52.0,43.0,63.0,49.0,51.0,44.0,56.0,41.0,56.0,46.0,54.0,43.0,39.0,48.0,53.0,52.0,49.0,42.0,46.0,51.0,48.0,53.0,44.0,47.0,46.0,45.0,43.0,39.0,34.0,50.0,32.0,43.0,31.0,38.0,31.0,30.0,30.0,27.0,19.0,24.0,22.0,19.0,26.0,14.0,25.0,20.0,18.0,16.0,10.0,6.0,12.0,13.0,10.0,12.0,13.0,10.0,8.0,8.0,6.0,5.0,8.0,6.0,3.0,4.0,4.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,871,2518,402,0,288,293,290,328,311,299,250,253,235,236,235,198,173,122,104,62,58,35,17,4,0,0,3754,12,21,4,0,3754,12,21,4,0,1153,28,378,388,110,9,854,871,0,2393,1376,22,0,4,20,5,1,0,2,0,0,0,23,3736,0,52,156,139,4,3,3,715,2719,0,416,614,76,10,12,2663,0,2.3840482573726542,0.0,3.3887240356083086,0.0,7.217356897916117,10,56,46,4,0,0,247,710,0,136,100,83,104,160,159,99,51,97,22,15,12,11,2,3,19,1021,52,817,256,669,404,151,922,325,748,23,1050,441,632,24,1049,949,124,836,237,223,613,166,907,495,578,180,893,444,629,348,725,87,986,208,515,329,21,2,760,313,0,1,4,3,1,0,1,0,0,0,7,1056,0,1.8911627906976745,1.6353488372093024,1.0,1.0425531914893618,1.0425531914893618,53.17054986020504 +,130909,Panamá Oeste,San Carlos,San José,1830,15,255,16,0,0,0,0,0,0,0,0,5,0,0,12,937,88,24,1013,24,0,0,0,24,0,1041,2,0,9,0,2,5,0,2,566,100,373,2,17,0,3,1017,10,14,0,0,20,1061,0,736,115,88,98,18,0,14,85,818,141,2,1,1034,3,5,16,0,3,0,975,5,52,29,0,0,0,570,478,4,7,2,0,50,796,196,0,0,0,0,1,0,13,5,0,0,2121,6.9884836852207295,21.914587332053745,6.993282149712092,22.705374280230327,1.0292177191328935,3.352497643732328,2.130065975494816,1097,612,1068,111,212,32,30,29,8,52,6,9,23,10,47,12,6,32,11,14,9,2790,354,0,953,2191,0,2573,571,0,2953,191,0,866,2278,0,762,104,2176,102,0,103,35,49,11,59,89,95,87,89,570,2,4,15,105,145,315,107,157,647,1,17,24,55,66,74,54,107,11,2,43,0,0,0,6,0,1383,116,1319,0,4,45,37,216,522,509,45,27,588,62,307,344,131,0,29,11,2,1681,1618,118,513,352,449,22,2,13,5,0,76,8,909,19,0,0,1693,763,16,24,54,210,10,42,6,0,6,58,85,82,38,251,64,270,91,554,1516,192,131,173,261,333,318,123,125,38,22,12,16,3,17,19,39.0,37.0,39.0,40.0,52.0,51.0,52.0,60.0,64.0,47.0,55.0,55.0,52.0,53.0,45.0,58.0,53.0,58.0,48.0,47.0,35.0,51.0,37.0,64.0,48.0,48.0,52.0,51.0,44.0,42.0,49.0,47.0,51.0,62.0,43.0,52.0,47.0,45.0,59.0,59.0,38.0,44.0,44.0,41.0,52.0,34.0,46.0,44.0,44.0,33.0,45.0,44.0,44.0,41.0,44.0,36.0,41.0,35.0,30.0,36.0,27.0,32.0,23.0,21.0,28.0,26.0,20.0,21.0,20.0,26.0,27.0,14.0,9.0,22.0,18.0,15.0,24.0,18.0,14.0,13.0,8.0,5.0,8.0,6.0,13.0,5.0,3.0,4.0,3.0,1.0,5.0,4.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,741,2197,361,0,207,274,260,264,235,237,252,262,219,201,218,178,131,113,90,84,40,16,14,4,0,0,3074,150,70,5,0,3078,156,60,5,0,946,42,382,511,104,33,541,740,0,1413,1761,125,0,3,31,1,0,0,0,0,0,1,55,3208,0,114,53,173,13,3,6,707,2230,0,555,675,179,11,44,1835,0,2.046863734679164,0.0,2.902439024390244,0.0,8.425886632312823,42,24,72,8,1,3,255,692,0,49,36,30,58,121,151,171,98,163,86,43,19,18,10,25,14,1068,29,1013,84,894,203,182,915,970,127,308,789,580,517,159,938,1041,56,973,124,732,241,400,697,921,176,421,676,197,900,184,913,12,1085,243,586,243,25,0,732,365,0,2,9,1,0,0,0,0,0,1,12,1072,0,1.5323609845031905,1.4749316317228809,1.125,1.0303030303030305,1.0303030303030305,50.81221513217867 +,130304,Panamá Oeste,Capira,Cermeño,925,8,0,0,0,0,0,1,0,0,1,0,3,0,0,6,505,166,24,652,25,2,0,0,20,2,667,3,1,7,1,4,17,0,1,34,270,392,2,3,0,0,660,29,1,0,0,11,701,0,139,23,2,37,31,0,1,8,630,60,2,0,654,27,0,18,2,0,0,689,7,3,0,2,0,0,277,384,0,37,2,1,289,305,38,30,1,10,1,0,0,17,4,6,0,938,5.694620253164557,13.356012658227847,5.82120253164557,13.998417721518988,1.0128388017118402,3.3238231098430813,2.115549215406562,713,380,807,36,132,26,45,23,7,37,8,4,50,6,36,4,9,25,18,3,7,1676,461,0,501,1636,0,1391,746,0,1956,181,0,546,1591,0,508,38,1487,104,0,107,23,29,1,46,87,82,82,88,382,0,0,4,89,102,225,71,107,375,0,5,19,38,39,28,23,58,3,1,23,0,0,0,0,0,781,37,1113,0,0,19,10,106,350,520,31,106,351,35,138,63,31,3,140,43,0,1213,1061,133,350,72,232,14,0,3,0,5,89,16,831,16,0,0,1315,474,4,8,12,92,3,23,0,0,0,28,51,38,30,101,100,118,71,281,1316,180,71,110,134,137,166,51,57,15,12,4,3,1,1,16,36.0,24.0,31.0,46.0,34.0,32.0,32.0,33.0,41.0,34.0,42.0,37.0,38.0,36.0,30.0,37.0,29.0,29.0,43.0,35.0,45.0,32.0,42.0,37.0,29.0,41.0,31.0,37.0,36.0,35.0,27.0,28.0,30.0,30.0,26.0,27.0,27.0,30.0,35.0,36.0,40.0,34.0,31.0,24.0,21.0,22.0,30.0,29.0,34.0,25.0,19.0,29.0,28.0,23.0,25.0,22.0,26.0,25.0,23.0,22.0,23.0,17.0,25.0,22.0,18.0,17.0,21.0,15.0,12.0,25.0,10.0,15.0,13.0,12.0,12.0,11.0,9.0,17.0,9.0,9.0,8.0,9.0,12.0,7.0,2.0,7.0,3.0,5.0,0.0,4.0,3.0,0.0,5.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,526,1471,277,0,171,172,183,173,185,180,141,155,150,140,124,118,105,90,62,55,38,19,11,2,0,0,2223,23,16,12,0,2223,24,15,12,0,616,7,253,297,62,3,510,526,0,1350,895,29,0,1,107,6,0,0,0,0,1,0,10,2149,0,35,39,241,7,0,0,771,1181,0,311,383,98,7,9,1466,0,2.2232044198895027,0.0,3.2479201331114806,0.0,7.592788038698329,14,18,97,3,0,0,250,331,0,64,65,42,76,86,77,105,50,69,24,12,9,14,3,4,10,690,23,609,104,586,127,104,609,534,179,66,647,375,338,65,648,589,124,597,116,459,138,151,562,431,282,165,548,202,511,205,508,10,703,157,353,176,27,2,491,222,0,0,22,1,0,0,0,0,1,0,5,684,0,1.6965034965034964,1.483916083916084,1.0,1.0476190476190477,1.0476190476190477,52.5960729312763 +PA120401,80814,Panamá,Panamá,Ancón,8553,39,7794,12,9,28,19,11,0,0,0,1,9,0,0,8011,1631,1385,207,10810,217,17,22,0,154,14,11034,107,12,22,1,23,19,0,16,8112,2185,875,21,16,14,11,10704,44,441,0,2,43,11234,2298,802,217,538,1141,89,79,3387,2335,4580,114,19,799,9852,1224,2,134,0,20,2,4677,2100,277,4057,106,1,16,8563,1620,1,661,376,13,10699,191,10,11,11,8,0,4,25,180,90,5,13660,2815,6.083577981651376,21.639908256880734,6.095688073394496,21.659633027522936,1.0226989496172334,4.196902260993413,2.6040591062844936,11500,6778,13121,520,1193,665,605,386,226,335,168,208,1118,401,368,97,68,129,96,53,84,31618,3515,27,23526,11607,27,29604,5529,27,33210,1928,22,11171,23972,17,4649,6522,22930,1036,6,1133,447,543,31,692,784,814,786,828,2079,9,3,60,1076,1265,1991,879,1275,5114,58,371,515,726,1051,2682,2541,2768,538,188,3494,5,28,25,339,22,16490,1144,14010,23,88,448,195,2215,6743,4044,210,798,13509,1162,1204,535,872,44,45,28,51,18038,19186,2827,9446,573,3421,946,14,126,97,27,104,39,13224,2791,11,11,11052,7678,66,375,413,7891,503,3325,342,22,201,3513,4591,2261,816,2802,109,935,454,1952,16500,554,396,547,923,1650,2178,1715,2277,1738,1430,817,1351,719,1638,2791,484.0,513.0,502.0,565.0,578.0,600.0,585.0,573.0,602.0,555.0,654.0,567.0,566.0,626.0,613.0,593.0,596.0,560.0,598.0,553.0,528.0,567.0,620.0,599.0,613.0,584.0,576.0,563.0,614.0,535.0,578.0,540.0,553.0,557.0,575.0,533.0,595.0,571.0,556.0,543.0,551.0,516.0,544.0,526.0,511.0,566.0,537.0,588.0,502.0,547.0,550.0,568.0,516.0,462.0,439.0,437.0,398.0,378.0,367.0,360.0,342.0,317.0,292.0,269.0,241.0,235.0,216.0,224.0,204.0,169.0,153.0,158.0,131.0,183.0,137.0,162.0,97.0,122.0,109.0,95.0,77.0,59.0,58.0,60.0,46.0,50.0,47.0,32.0,40.0,33.0,27.0,18.0,17.0,13.0,8.0,9.0,6.0,3.0,7.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,4,8583,25624,3013,4,2642,2915,3026,2900,2927,2872,2803,2798,2648,2740,2535,1940,1461,1048,762,585,300,202,83,29,4,4,28555,4850,3570,225,24,28718,5738,2519,225,24,5370,321,539,10338,867,763,10438,8578,10,6896,26345,3957,26,2040,818,39,48,27,27,2904,310,17,473,30494,27,1567,1932,972,380,90,183,2734,29339,27,9620,6234,2177,85,373,18709,26,1.467868812779862,0.0006656178143531,2.406937823308652,0.0011157318186428,11.058940468514937,586,613,325,144,37,95,922,8774,4,649,115,118,161,324,483,692,558,1005,845,789,556,1027,771,2368,1028,11386,114,10964,536,10654,846,1864,9636,10217,1283,8258,3242,5994,5506,5641,5859,11183,317,10714,786,8480,2234,8389,3111,10276,1224,8276,3224,800,10700,477,11023,131,11369,1944,6530,2141,885,66,7035,4465,0,356,199,8,14,12,8,656,75,7,165,9996,4,1.559571156839011,1.6588275981324572,1.3592592592592592,1.0586510263929618,1.0586510263929618,47.63426086956522 +PA050111,50308,Darién,Santa Fe,Río Iglesias,906,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,412,177,43,577,12,19,3,0,20,1,477,0,3,90,8,9,45,0,0,122,4,485,3,16,0,2,607,22,0,0,0,3,632,0,184,38,1,8,44,0,0,9,547,75,1,0,240,374,0,8,0,10,0,616,0,2,0,0,14,0,50,426,0,75,81,0,115,331,84,18,4,9,1,35,1,29,3,2,0,908,5.50188679245283,19.743396226415094,6.464150943396226,22.71320754716981,1.0031645569620251,3.199367088607595,2.1550632911392404,634,340,718,78,132,7,10,20,2,24,2,2,17,0,18,12,3,6,12,6,5,1317,517,0,166,1668,0,1039,795,0,1629,205,0,579,1255,0,534,45,1120,135,0,143,38,36,1,57,94,93,75,87,400,0,0,0,71,105,131,76,65,220,0,2,25,24,26,29,21,12,1,0,2,0,0,0,0,0,744,47,777,0,5,24,8,9,314,379,21,54,191,40,55,11,81,0,396,12,1,1074,912,75,293,8,313,63,4,29,2,50,101,5,728,7,0,0,1205,305,1,1,11,42,1,2,0,0,2,51,20,21,33,60,204,61,43,296,1217,222,95,120,98,87,58,29,29,9,7,4,2,0,2,7,34.0,40.0,42.0,36.0,41.0,41.0,46.0,44.0,45.0,49.0,44.0,43.0,36.0,25.0,33.0,36.0,43.0,37.0,28.0,38.0,36.0,32.0,42.0,24.0,29.0,30.0,41.0,38.0,33.0,20.0,25.0,32.0,34.0,29.0,28.0,31.0,25.0,17.0,21.0,18.0,16.0,21.0,14.0,24.0,23.0,18.0,19.0,15.0,26.0,19.0,24.0,17.0,24.0,25.0,21.0,14.0,22.0,13.0,13.0,11.0,15.0,9.0,18.0,10.0,13.0,11.0,8.0,17.0,11.0,7.0,18.0,8.0,11.0,11.0,15.0,6.0,8.0,9.0,4.0,5.0,7.0,2.0,1.0,3.0,2.0,1.0,1.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,599,1211,176,0,193,225,181,182,163,162,148,112,98,97,111,73,65,54,63,32,15,5,7,0,0,0,1967,9,2,8,0,1967,10,1,8,0,545,12,65,235,42,5,483,599,0,854,1129,3,0,2,69,7,7,1,2,109,35,0,25,1729,0,31,137,204,79,1,2,473,1059,0,121,224,10,1,0,1630,0,2.737134909596662,0.0,3.754491017964072,0.0,6.27643504531722,11,37,75,32,1,2,146,330,0,83,76,71,81,93,69,47,34,38,14,14,4,7,0,2,1,619,15,394,240,432,202,93,541,417,217,21,613,265,369,8,626,520,114,350,284,320,30,68,566,284,350,130,504,315,319,417,217,6,628,162,369,95,8,1,480,154,0,0,24,2,1,1,2,13,7,0,15,569,0,1.6913385826771654,1.4362204724409449,0.0,1.0,1.0,49.19558359621451 +PA050102,50102,Darién,Chepigana,Camogantí,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,8,22,73,1,17,1,0,3,1,63,0,1,12,3,4,13,0,0,0,0,67,28,1,0,0,81,11,0,0,0,4,96,0,23,21,1,5,12,0,0,1,82,13,0,0,11,73,0,3,2,3,4,89,0,1,0,0,6,0,2,26,0,1,67,0,0,80,0,0,0,0,0,16,0,0,0,0,0,158,5.1875,19.675,2.95,8.225,1.0,3.083333333333333,2.020833333333333,96,52,138,17,41,3,4,11,2,8,2,2,1,0,6,5,3,1,3,0,4,120,200,0,13,307,0,102,218,0,231,89,0,125,195,0,124,1,144,51,0,53,9,9,0,15,19,20,26,12,53,0,0,0,9,9,35,11,10,22,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,0,96,32,127,0,1,6,25,1,50,57,14,5,24,5,7,0,0,1,70,5,0,193,184,21,4,0,47,32,1,7,0,1,0,1,228,7,0,0,225,24,0,0,0,6,0,0,0,0,1,2,5,2,2,9,71,9,1,26,300,16,5,19,6,4,8,3,1,4,3,0,1,0,0,7,17.0,14.0,18.0,8.0,10.0,14.0,9.0,10.0,11.0,11.0,11.0,12.0,6.0,7.0,4.0,6.0,4.0,5.0,4.0,5.0,9.0,9.0,2.0,10.0,1.0,6.0,4.0,3.0,7.0,1.0,5.0,6.0,1.0,4.0,4.0,5.0,3.0,5.0,3.0,3.0,2.0,6.0,2.0,1.0,3.0,2.0,5.0,1.0,2.0,3.0,2.0,2.0,0.0,2.0,2.0,5.0,2.0,5.0,2.0,2.0,4.0,4.0,4.0,2.0,0.0,2.0,1.0,5.0,2.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,3.0,3.0,2.0,3.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,162,180,35,0,67,55,40,24,31,21,20,19,14,13,8,16,14,11,5,11,2,3,2,1,0,0,346,3,2,26,0,346,3,2,26,0,115,2,1,19,7,0,71,162,0,201,171,5,0,0,1,0,0,0,0,195,61,0,1,119,0,15,2,21,51,6,0,36,246,0,12,20,3,0,0,342,0,4.173913043478261,0.0,4.625,0.0,4.381962864721485,5,2,4,17,3,0,9,56,0,43,6,4,13,6,5,7,3,1,1,1,2,2,1,0,1,84,12,38,58,51,45,7,89,37,59,2,94,26,70,0,96,32,64,39,57,35,4,2,94,32,64,3,93,57,39,54,42,3,93,23,46,26,1,0,79,17,0,0,0,0,0,0,0,39,13,0,1,43,0,2.0104166666666665,1.9166666666666667,1.0,1.1666666666666667,1.1666666666666667,49.53125 +PA130604,91205,Veraguas,Mariato,Tebario,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,110,9,219,9,2,0,0,7,0,193,0,1,21,1,2,19,0,0,0,10,186,14,27,0,0,198,34,0,0,0,5,237,0,71,6,0,16,13,0,0,5,225,7,0,0,186,22,0,3,2,24,0,229,0,0,0,0,8,0,29,186,0,21,1,0,0,193,10,0,0,16,0,6,0,9,2,1,0,343,5.295566502463054,15.532019704433498,6.059113300492611,18.80788177339901,1.0084388185654007,3.2489451476793247,2.092827004219409,239,121,201,22,34,8,6,1,0,6,1,0,3,0,15,0,2,4,2,0,3,429,173,0,65,537,0,343,259,0,500,102,0,146,456,0,135,11,364,92,0,93,2,4,0,13,32,29,26,34,130,0,0,0,28,27,37,18,13,76,0,0,5,7,4,12,6,3,1,0,2,0,0,0,0,0,233,13,292,0,1,6,2,9,104,137,4,38,64,5,22,3,12,0,122,17,1,361,281,27,144,4,65,4,0,1,1,19,57,3,171,0,0,0,422,91,0,0,3,19,1,2,0,0,1,7,7,5,8,24,28,25,14,127,363,92,31,42,45,31,16,9,9,2,1,0,0,0,1,0,11.0,9.0,5.0,15.0,13.0,14.0,10.0,9.0,10.0,8.0,15.0,13.0,12.0,16.0,6.0,12.0,12.0,9.0,8.0,6.0,10.0,5.0,9.0,11.0,4.0,5.0,7.0,7.0,11.0,6.0,14.0,5.0,7.0,6.0,5.0,6.0,8.0,7.0,11.0,8.0,10.0,7.0,7.0,7.0,12.0,8.0,4.0,10.0,7.0,8.0,7.0,10.0,4.0,6.0,4.0,14.0,5.0,11.0,6.0,7.0,6.0,10.0,6.0,7.0,6.0,7.0,4.0,5.0,4.0,2.0,4.0,4.0,2.0,6.0,1.0,3.0,7.0,3.0,2.0,2.0,5.0,4.0,2.0,4.0,4.0,0.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,166,388,88,0,53,51,62,47,39,36,37,40,43,37,31,43,35,22,17,17,19,8,4,1,0,0,640,1,1,0,0,640,1,1,0,0,190,4,84,82,20,2,94,166,0,403,238,1,0,0,9,0,0,0,0,0,0,0,2,631,0,2,4,77,5,0,0,289,265,0,52,121,10,0,0,459,0,2.871369294605809,0.0,3.575418994413408,0.0,5.962616822429907,1,0,35,4,0,0,108,91,0,29,34,24,41,35,34,13,11,8,5,2,0,1,0,2,0,222,17,168,71,162,77,27,212,162,77,6,233,114,125,5,234,193,46,125,114,91,34,18,221,134,105,40,199,157,82,165,74,0,239,75,119,42,3,0,186,53,0,0,1,0,0,0,0,0,0,0,0,238,0,1.5104602510460252,1.1757322175732217,1.0,1.0,1.0,54.43096234309623 +PA040207,30107,Colón,Colón,Escobal,887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,418,240,29,601,66,1,0,0,27,1,570,0,5,93,7,6,15,0,0,543,0,152,0,1,0,0,670,11,0,0,0,15,696,0,97,48,6,31,9,0,0,24,623,49,0,0,594,87,0,14,1,0,0,684,1,6,1,1,3,0,234,383,0,50,29,0,542,31,6,36,3,23,0,33,0,8,14,0,0,887,6.433506044905009,17.934369602763386,6.645941278065631,18.61139896373057,1.0100574712643675,3.1149425287356323,1.9310344827586208,703,365,839,61,187,18,29,20,6,44,4,7,8,2,49,18,7,8,11,7,3,1812,342,0,314,1840,0,1649,505,0,1997,157,0,694,1460,0,665,29,1376,84,0,84,32,40,1,60,62,77,64,99,358,1,0,15,62,108,179,64,108,461,1,4,26,42,45,93,23,32,6,0,7,0,0,0,0,0,765,56,1057,0,1,37,11,90,413,513,16,25,446,45,82,31,66,2,136,7,0,1138,1155,165,332,32,260,6,0,20,0,4,92,12,567,4,0,0,1123,573,15,6,25,128,1,7,0,0,0,31,57,45,37,151,105,107,75,213,1208,276,103,94,115,116,195,64,60,37,15,1,1,2,2,4,40.0,25.0,39.0,35.0,50.0,40.0,44.0,49.0,43.0,50.0,46.0,58.0,36.0,35.0,34.0,38.0,32.0,34.0,32.0,41.0,37.0,29.0,38.0,47.0,41.0,54.0,42.0,37.0,25.0,32.0,44.0,31.0,33.0,34.0,29.0,22.0,26.0,31.0,26.0,35.0,20.0,20.0,27.0,20.0,28.0,29.0,22.0,28.0,32.0,37.0,27.0,20.0,30.0,22.0,22.0,21.0,17.0,21.0,23.0,14.0,17.0,24.0,16.0,17.0,14.0,19.0,19.0,17.0,13.0,9.0,11.0,12.0,5.0,8.0,11.0,9.0,15.0,7.0,4.0,16.0,6.0,7.0,4.0,1.0,7.0,6.0,2.0,5.0,5.0,3.0,1.0,0.0,1.0,1.0,3.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,624,1438,231,0,189,226,209,177,192,190,171,140,115,148,121,96,88,77,47,51,25,21,6,3,1,0,2255,16,11,11,0,2258,17,7,11,0,544,21,283,330,66,6,419,624,0,1573,700,20,0,1,16,1,0,1,0,0,0,0,22,2252,0,51,113,145,15,0,1,275,1693,0,342,497,88,6,3,1357,0,2.3925531914893616,0.0,3.3271317829457363,0.0,7.895333624073267,19,31,60,9,0,1,91,492,0,60,43,45,63,87,70,83,63,82,49,22,15,10,8,3,0,677,26,526,177,510,193,89,614,558,145,117,586,389,314,41,662,621,82,542,161,282,260,172,531,453,250,199,504,271,432,149,554,4,699,143,360,193,7,0,456,247,0,0,7,1,0,0,0,0,0,0,9,686,0,1.6187766714082503,1.642958748221906,0.0,1.0,1.0,50.29587482219061 +,10223,Bocas del Toro,Changuinola,La Mesa,547,0,0,0,0,0,0,0,0,0,0,2,0,0,0,138,81,57,110,263,13,11,52,0,46,1,222,0,1,61,0,12,89,0,1,0,171,182,4,26,1,2,298,84,0,0,0,4,386,0,59,46,2,35,19,0,0,11,362,11,1,1,175,195,1,6,8,1,0,346,0,0,0,0,40,0,21,171,0,39,153,2,0,262,3,3,15,18,12,63,0,1,9,0,0,549,4.022641509433963,6.8830188679245285,6.418867924528302,14.426415094339625,1.0129533678756475,3.4559585492227978,2.435233160621762,393,276,882,37,460,8,23,30,8,88,11,11,10,0,14,13,1,4,10,5,3,987,1005,0,134,1858,0,832,1160,0,1621,371,0,664,1328,0,644,20,1006,322,0,323,15,56,0,83,96,90,90,83,229,0,0,0,81,107,150,60,75,326,1,8,8,17,21,15,13,42,0,0,3,0,0,0,0,0,422,145,1043,0,1,130,11,87,385,479,10,82,308,12,6,0,5,0,120,0,0,1124,1113,68,270,0,98,13,0,2,0,34,16,5,1118,0,0,0,1156,379,0,8,3,63,0,1,0,0,0,16,25,11,23,31,105,17,10,329,1772,43,28,42,70,148,77,26,15,12,4,0,0,0,0,0,59.0,61.0,70.0,55.0,67.0,66.0,76.0,57.0,68.0,48.0,57.0,49.0,52.0,42.0,48.0,39.0,36.0,45.0,38.0,44.0,41.0,41.0,45.0,40.0,49.0,39.0,43.0,40.0,33.0,30.0,29.0,34.0,25.0,25.0,23.0,29.0,25.0,27.0,29.0,30.0,31.0,14.0,20.0,21.0,26.0,16.0,20.0,10.0,16.0,19.0,20.0,17.0,12.0,11.0,9.0,18.0,18.0,15.0,12.0,13.0,6.0,13.0,7.0,6.0,7.0,4.0,8.0,7.0,9.0,8.0,5.0,2.0,3.0,8.0,10.0,6.0,6.0,4.0,6.0,6.0,3.0,4.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,875,1256,106,0,312,315,248,202,216,185,136,140,112,81,69,76,39,36,28,28,10,3,0,0,1,0,2168,10,1,58,0,2168,10,1,58,0,672,5,67,200,24,3,392,874,0,1569,659,9,0,6,1924,12,25,15,0,0,0,4,3,248,0,8,26,3,3,1,1,61,2134,0,268,635,80,8,0,1246,0,2.4875311720698257,0.0,3.6666666666666665,0.0,5.750111756817166,0,12,3,0,1,1,18,358,0,50,16,27,25,43,78,46,35,34,22,8,4,2,0,1,0,324,69,192,201,181,212,37,356,169,224,15,378,115,278,12,381,237,156,180,213,96,84,49,344,103,290,43,350,82,311,34,359,3,390,36,185,167,5,0,301,92,0,3,303,4,9,4,0,0,0,1,1,68,0,2.8600508905852418,2.83206106870229,1.0,1.1578947368421053,1.1578947368421053,48.10178117048346 +,10214,Bocas del Toro,Changuinola,El Silencio,1392,7,0,0,0,0,0,0,0,0,0,0,0,0,0,16,756,183,54,934,21,14,5,0,35,0,839,0,2,73,1,24,59,0,11,59,489,422,3,28,0,8,928,65,1,0,0,15,1009,0,110,125,27,71,57,0,207,55,657,64,26,0,658,327,0,5,2,15,2,1002,4,2,1,0,0,0,421,354,0,38,195,1,886,0,14,3,4,17,7,15,0,23,31,9,0,1399,6.712222222222223,21.40333333333333,6.756666666666667,21.75888888888889,1.0109018830525272,3.450941526263627,2.1932606541129838,1020,581,1570,83,285,32,38,65,17,64,16,22,44,2,56,22,6,33,19,15,31,2695,808,0,1131,2372,0,2481,1022,0,3178,325,0,1473,2030,0,1285,188,1780,250,0,258,32,95,11,113,132,133,119,138,377,0,0,0,141,163,240,115,139,594,1,10,70,65,79,52,72,248,35,1,67,0,0,0,3,0,1458,148,1398,0,4,61,19,100,811,389,51,47,946,114,148,60,104,4,193,4,1,1910,1929,562,460,69,376,49,0,57,1,38,66,21,1026,4,0,0,1707,793,0,15,66,332,23,65,3,0,1,64,263,132,73,290,142,202,110,329,2152,199,151,147,186,177,213,155,203,155,47,18,17,6,9,4,90.0,77.0,85.0,84.0,82.0,72.0,91.0,86.0,94.0,74.0,90.0,92.0,70.0,69.0,105.0,72.0,84.0,72.0,88.0,73.0,57.0,63.0,65.0,60.0,43.0,60.0,50.0,56.0,47.0,49.0,50.0,48.0,55.0,59.0,63.0,53.0,62.0,75.0,45.0,53.0,47.0,59.0,45.0,53.0,45.0,34.0,48.0,35.0,31.0,37.0,41.0,38.0,32.0,36.0,33.0,27.0,30.0,24.0,28.0,24.0,26.0,26.0,29.0,27.0,21.0,19.0,16.0,18.0,7.0,11.0,9.0,12.0,13.0,7.0,15.0,8.0,8.0,4.0,4.0,6.0,8.0,2.0,4.0,3.0,7.0,1.0,3.0,2.0,1.0,2.0,5.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1261,2378,200,0,418,417,426,389,288,262,275,288,249,185,180,133,129,71,56,30,24,9,8,2,0,0,3771,12,29,27,0,3774,16,22,27,0,962,26,147,484,55,17,888,1260,0,1455,2363,21,0,14,1307,16,618,12,0,2,0,12,49,1809,0,272,114,118,61,22,14,581,2657,0,813,1166,106,15,1,1738,0,2.174227481919789,0.0,3.1673306772908365,0.0,7.874446470435009,102,31,50,18,14,5,190,610,0,45,25,31,60,93,113,96,79,137,108,81,59,55,18,20,0,961,59,756,264,757,263,144,876,723,297,197,823,487,533,162,858,900,120,729,291,478,251,417,603,687,333,396,624,314,706,288,732,28,992,172,561,249,38,0,588,432,0,2,253,2,163,6,0,0,0,5,20,569,0,1.8725490196078431,1.8911764705882352,1.0,1.0,1.0,46.76078431372549 +,10216,Bocas del Toro,Changuinola,Finca 30,2113,83,52,16,0,0,0,0,0,0,0,0,7,0,0,283,1130,267,91,1605,75,8,4,0,72,7,1585,0,4,39,0,65,68,0,10,548,655,533,3,28,1,3,1674,58,1,0,0,38,1771,0,152,125,80,86,50,0,7,130,1529,103,1,1,1361,337,0,10,47,15,1,1753,0,1,3,0,6,8,273,1230,0,132,136,0,1654,0,0,0,1,0,13,2,0,4,91,6,0,2271,5.937122128174123,17.444377267230955,5.903869407496977,17.409915356711004,1.020892151326934,3.249576510446076,1.9678147939017503,1815,1118,3719,254,1076,45,164,180,11,236,59,28,96,0,78,35,11,58,43,18,35,4879,2923,0,2803,4999,0,4733,3069,0,6549,1253,0,3002,4800,0,2815,187,3768,1032,0,1039,52,183,9,320,343,396,373,383,903,0,1,1,421,429,522,306,369,1163,8,17,59,78,93,71,169,59,8,1,26,0,0,0,0,0,2143,462,3806,0,7,235,56,257,1827,1524,86,112,1913,86,148,73,165,0,64,1,4,4435,4366,384,1624,82,329,22,2,7,4,68,31,42,3036,2,0,0,4657,1384,1,15,60,266,5,23,0,0,2,74,162,71,90,316,56,188,120,1526,5940,265,234,199,470,805,409,186,179,71,26,4,3,4,4,2,241.0,241.0,246.0,271.0,227.0,255.0,219.0,211.0,262.0,217.0,243.0,225.0,185.0,196.0,215.0,199.0,209.0,179.0,186.0,182.0,193.0,164.0,184.0,179.0,127.0,156.0,145.0,128.0,129.0,116.0,118.0,119.0,110.0,109.0,113.0,84.0,91.0,101.0,106.0,86.0,87.0,108.0,95.0,67.0,69.0,89.0,81.0,65.0,85.0,83.0,74.0,63.0,64.0,52.0,60.0,62.0,52.0,36.0,35.0,44.0,31.0,31.0,23.0,38.0,28.0,25.0,19.0,18.0,25.0,25.0,11.0,13.0,14.0,23.0,28.0,12.0,9.0,16.0,18.0,15.0,11.0,5.0,3.0,4.0,3.0,3.0,0.0,3.0,6.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3454,5035,312,0,1226,1164,1064,955,847,674,569,468,426,403,313,229,151,112,89,70,26,12,3,0,0,0,8613,14,30,144,0,8613,17,27,144,0,2542,62,512,583,86,14,1552,3450,0,4218,4555,28,0,20,6975,25,131,73,0,3,1,8,93,1472,0,89,89,126,59,1,13,353,8071,0,1596,2865,234,39,1,4066,0,2.4168773704171933,0.0,3.7013574660633486,0.0,5.970457902511078,32,30,35,23,0,6,101,1588,0,75,31,47,90,182,334,313,171,268,139,72,36,29,10,10,1,1739,76,1164,651,1139,676,282,1533,1193,622,146,1669,753,1062,85,1730,1383,432,1217,598,640,577,419,1396,938,877,228,1587,307,1508,370,1445,18,1797,245,920,589,61,0,1175,640,0,5,1234,3,38,15,0,2,0,0,19,499,0,2.443526170798898,2.4055096418732784,1.0,1.1375,1.1375,45.15261707988981 +,10213,Bocas del Toro,Changuinola,Barriada 4 de Abril,2758,75,5,11,0,0,0,0,0,0,0,0,8,0,0,147,963,846,243,1843,113,12,86,0,144,1,1394,0,13,340,3,281,166,0,2,253,643,1177,9,111,0,6,2103,50,1,1,0,44,2199,6,311,178,21,75,59,0,9,46,1997,83,0,64,1031,934,0,94,55,80,5,2195,0,0,0,0,3,1,139,1272,0,397,391,0,1414,0,2,19,5,0,73,0,356,29,295,6,2619,238,6.303672316384181,16.78319209039548,6.285310734463277,16.66454802259887,1.0159163256025463,2.778080945884493,1.7171441564347432,2242,1363,4641,494,874,83,200,207,37,188,79,30,117,2,104,56,15,45,43,28,44,5159,4185,0,971,8373,0,3901,5443,0,7685,1659,0,3709,5635,0,3510,199,4269,1366,0,1368,62,215,21,396,459,483,440,426,1288,0,0,1,495,512,573,344,402,1130,10,22,110,121,124,130,162,28,8,3,11,0,0,0,0,0,2543,364,4516,0,18,185,63,201,2228,1649,84,354,1865,171,444,86,172,1,61,4,0,5275,5282,368,1676,114,620,17,1,8,0,159,49,49,4754,12,0,0,5563,1506,1,25,53,259,5,11,0,0,0,75,157,91,103,493,51,382,133,1422,7517,330,255,329,665,819,293,127,114,62,19,4,6,4,1,12,281.0,330.0,283.0,319.0,335.0,302.0,351.0,310.0,343.0,280.0,305.0,300.0,278.0,231.0,248.0,249.0,250.0,229.0,220.0,214.0,170.0,193.0,193.0,184.0,149.0,156.0,152.0,148.0,167.0,146.0,114.0,140.0,154.0,159.0,130.0,137.0,142.0,148.0,128.0,116.0,121.0,87.0,101.0,94.0,84.0,86.0,80.0,75.0,92.0,91.0,89.0,78.0,64.0,62.0,53.0,44.0,36.0,49.0,38.0,33.0,46.0,23.0,32.0,33.0,31.0,26.0,27.0,19.0,9.0,9.0,14.0,13.0,16.0,16.0,18.0,9.0,8.0,10.0,11.0,15.0,5.0,6.0,7.0,2.0,1.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4496,5810,251,0,1548,1586,1362,1162,889,769,697,671,487,424,346,200,165,90,77,53,21,6,3,1,0,0,10342,42,38,135,0,10347,48,27,135,0,2865,55,347,669,80,13,2040,4488,0,3766,6742,49,0,61,8263,58,100,46,4,3,5,4,108,1905,0,147,257,142,71,2,7,1064,8867,0,1546,3464,173,36,7,5331,0,2.4670896114195084,0.0,3.7434599156118153,0.0,5.656815383158095,61,69,51,22,1,5,305,1728,0,129,76,111,153,359,518,302,167,245,88,39,18,19,2,6,2,2171,71,1040,1202,1025,1217,285,1957,1112,1130,107,2135,681,1561,87,2155,1701,541,1136,1106,453,683,361,1881,1024,1218,256,1986,215,2027,188,2054,11,2231,250,1299,626,67,0,1573,669,0,10,1544,15,33,6,1,1,1,1,31,599,0,2.3528099910793934,2.3559322033898304,1.5,1.05,1.05,42.40722569134701 +PA010202,10201,Bocas del Toro,Changuinola,Changuinola,2234,9,53,0,0,0,0,0,0,0,0,3,0,2,0,47,1290,312,63,1585,64,7,0,0,49,7,1320,0,8,246,2,75,61,0,0,437,819,422,5,24,1,4,1657,26,3,0,0,26,1712,12,119,110,76,250,17,0,210,272,1183,40,0,7,1193,468,0,30,10,11,0,1706,0,4,0,0,0,2,734,603,0,220,155,0,1468,0,0,0,1,0,1,0,0,217,24,1,2301,0,6.566757493188011,19.685967302452315,6.624659400544959,20.17643051771117,1.012266355140187,3.2908878504672896,1.9188084112149533,1736,851,2375,146,524,71,83,116,15,119,31,31,36,2,77,41,17,31,31,18,29,4262,1374,0,2279,3357,0,3821,1815,0,5048,588,0,2126,3510,0,1720,406,3104,406,0,412,48,122,13,179,175,216,210,215,491,0,2,1,224,285,382,184,256,1013,3,34,77,122,163,123,299,231,35,6,107,0,3,0,5,0,2096,203,2533,0,6,95,37,252,1249,962,39,31,1700,93,221,82,139,2,11,0,0,2949,3187,768,878,86,427,70,0,19,0,51,60,21,2215,14,0,0,2606,1345,1,41,139,572,21,99,8,0,0,174,408,193,175,455,18,248,127,501,3502,214,145,220,327,361,380,218,302,204,119,41,38,19,32,14,145.0,109.0,107.0,139.0,130.0,131.0,135.0,121.0,149.0,138.0,146.0,133.0,132.0,118.0,118.0,127.0,123.0,125.0,105.0,98.0,102.0,90.0,108.0,93.0,99.0,90.0,122.0,89.0,64.0,85.0,95.0,83.0,86.0,81.0,90.0,78.0,84.0,81.0,88.0,87.0,67.0,76.0,69.0,75.0,49.0,72.0,67.0,69.0,76.0,79.0,64.0,66.0,57.0,56.0,64.0,44.0,40.0,50.0,43.0,41.0,62.0,38.0,37.0,46.0,29.0,37.0,39.0,31.0,17.0,23.0,20.0,23.0,15.0,24.0,18.0,14.0,15.0,14.0,14.0,11.0,7.0,6.0,4.0,7.0,8.0,2.0,2.0,5.0,4.0,4.0,4.0,1.0,4.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1951,3809,376,0,630,674,647,578,492,450,435,418,336,363,307,218,212,147,100,68,32,17,10,2,0,0,5926,71,88,51,0,5932,76,77,51,0,1514,26,107,722,109,32,1677,1949,0,1694,4311,131,0,17,2835,20,67,67,0,2,4,7,101,3016,0,562,208,161,100,22,25,622,4436,0,1376,1759,249,31,4,2717,0,2.08905750798722,0.0,3.0879657910812464,0.0,8.169491525423728,196,68,52,40,12,8,227,1133,0,145,42,54,83,157,213,167,128,184,152,138,73,91,47,58,1,1702,34,1171,565,1192,544,249,1487,1214,522,561,1175,779,957,296,1440,1577,159,1248,488,844,404,763,973,1264,472,642,1094,156,1580,145,1591,21,1715,349,908,453,26,2,925,811,0,4,622,3,22,24,0,2,1,3,32,1023,0,1.6967779056386652,1.833716915995397,1.2857142857142858,1.0862068965517242,1.0862068965517242,47.154377880184335 +,10206,Bocas del Toro,Changuinola,El Empalme,2942,7,316,9,0,0,0,0,0,0,0,2,3,0,0,138,2454,64,59,2587,69,3,1,0,49,6,2638,0,0,10,1,13,27,0,26,548,1838,283,21,18,1,6,2624,19,3,2,0,67,2715,0,203,40,43,236,37,0,84,351,2077,193,9,1,2392,312,0,3,2,6,0,2704,0,9,2,0,0,0,869,1677,0,56,113,0,2592,52,0,0,2,0,1,1,0,34,31,2,3254,25,6.633888048411498,18.103630862329805,6.635400907715582,17.911497730711044,1.021731123388582,3.5646408839779005,2.2732965009208104,2779,1406,4424,257,1631,87,180,203,28,286,38,42,100,1,152,66,23,108,47,43,21,7913,2596,0,3345,7164,0,6724,3785,0,9452,1057,0,4160,6349,0,3647,513,5518,831,0,836,49,219,31,308,373,406,338,418,1178,0,0,1,503,531,772,349,501,1561,2,9,223,308,336,329,479,200,49,14,176,0,1,3,6,0,3496,536,4997,0,11,272,99,609,2603,1507,104,174,2796,162,301,125,427,3,56,4,5,5755,5707,1079,1700,136,869,63,1,26,5,81,122,41,3874,6,0,0,5328,2472,1,26,172,811,41,171,7,0,4,193,579,240,246,712,79,505,318,1156,6837,407,314,410,726,800,676,406,427,242,105,42,42,13,9,6,235.0,221.0,272.0,225.0,266.0,231.0,239.0,247.0,260.0,237.0,254.0,297.0,247.0,256.0,228.0,249.0,215.0,239.0,216.0,220.0,220.0,213.0,225.0,230.0,185.0,204.0,150.0,169.0,150.0,134.0,151.0,143.0,142.0,151.0,133.0,126.0,119.0,150.0,151.0,133.0,158.0,120.0,112.0,134.0,111.0,107.0,88.0,110.0,119.0,106.0,139.0,94.0,105.0,99.0,97.0,89.0,95.0,103.0,72.0,89.0,78.0,71.0,70.0,68.0,76.0,73.0,76.0,58.0,56.0,50.0,47.0,36.0,38.0,45.0,55.0,38.0,19.0,17.0,29.0,29.0,14.0,22.0,18.0,9.0,9.0,9.0,8.0,12.0,7.0,14.0,4.0,6.0,9.0,2.0,4.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3715,6928,819,0,1219,1214,1282,1139,1073,807,720,679,635,530,534,448,363,313,221,132,72,50,25,4,2,0,11249,70,78,65,0,11252,77,68,65,0,2616,95,1117,1267,246,71,2340,3710,0,5436,5917,109,0,85,5226,34,190,98,1,9,0,15,87,5717,0,731,661,246,222,7,24,936,8635,0,2128,3622,567,96,5,5044,0,2.279771076381246,0.0,3.3766101694915256,0.0,7.815651718722736,225,204,81,109,5,13,259,1883,0,122,63,82,133,259,377,341,279,402,258,166,94,112,45,41,0,2698,81,2317,462,2291,488,448,2331,2348,431,532,2247,1405,1374,413,2366,2554,225,2320,459,1605,715,1177,1602,1960,819,822,1957,260,2519,245,2534,33,2746,483,1278,949,69,0,1580,1199,0,14,923,12,48,33,1,3,0,6,31,1708,0,2.0708888089240736,2.0536164087801367,1.0,1.0846153846153843,1.0846153846153843,50.04030226700252 +,10220,Bocas del Toro,Changuinola,Finca 12,852,0,49,0,0,1,0,0,0,0,0,0,0,0,0,83,636,12,6,721,10,0,0,0,5,1,732,0,0,0,0,4,1,0,0,140,582,13,2,0,0,0,726,1,2,0,0,8,737,2,15,6,65,63,13,0,13,145,517,61,1,0,705,30,0,0,0,2,0,732,0,2,3,0,0,0,357,367,0,11,2,0,669,0,0,0,0,0,0,0,0,68,0,0,902,0,6.80119581464873,22.10014947683109,6.738415545590433,21.985052316890883,1.0325644504748983,3.4084124830393487,2.238805970149253,761,434,1141,109,501,27,69,49,5,97,16,10,43,2,28,15,5,28,27,5,7,2376,584,0,1001,1959,0,1938,1022,0,2643,317,0,1134,1826,0,922,212,1624,202,0,232,12,52,16,101,89,111,98,93,305,0,0,0,139,140,236,100,152,431,2,16,45,76,104,103,178,49,15,5,54,0,3,1,2,0,1093,181,1285,0,10,56,28,179,617,449,24,16,951,46,83,63,88,0,20,0,0,1670,1594,301,642,63,203,32,1,9,0,21,25,15,1197,16,0,0,1475,657,0,20,45,287,15,56,4,0,0,112,170,108,79,218,16,128,64,379,1872,105,77,138,178,278,195,102,144,75,37,17,15,5,10,16,81.0,70.0,73.0,80.0,60.0,59.0,65.0,82.0,63.0,72.0,87.0,63.0,55.0,54.0,60.0,60.0,56.0,63.0,65.0,50.0,61.0,48.0,70.0,59.0,45.0,48.0,60.0,46.0,42.0,42.0,66.0,55.0,30.0,45.0,38.0,61.0,48.0,48.0,38.0,51.0,34.0,34.0,35.0,36.0,39.0,27.0,22.0,24.0,37.0,24.0,26.0,31.0,27.0,30.0,29.0,28.0,40.0,34.0,29.0,27.0,20.0,23.0,22.0,13.0,23.0,25.0,11.0,10.0,25.0,17.0,14.0,11.0,18.0,16.0,14.0,11.0,11.0,6.0,8.0,13.0,1.0,4.0,2.0,2.0,1.0,2.0,0.0,1.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1024,2009,231,0,364,341,319,294,283,238,234,246,178,134,143,158,101,88,73,49,10,7,3,1,0,0,3129,33,81,21,0,3134,41,68,21,0,734,31,64,465,65,16,865,1024,0,1299,1905,60,0,93,1849,1,14,29,0,0,0,2,24,1252,0,235,51,40,30,2,12,217,2677,0,705,1099,172,32,1,1255,0,2.1390205371248023,0.0,3.064935064935065,0.0,7.953431372549019,84,15,14,11,1,5,50,581,0,20,9,16,21,54,111,80,68,126,93,51,31,41,14,21,5,746,15,646,115,622,139,132,629,636,125,180,581,342,419,124,637,702,59,653,108,423,230,339,422,525,236,255,506,72,689,76,685,4,757,126,360,253,22,1,516,245,0,17,309,1,4,5,0,0,0,1,6,418,0,2.1916010498687664,2.0918635170603674,2.25,1.125,1.125,50.369250985545335 +,10222,Bocas del Toro,Changuinola,Finca 66,805,0,7,3,0,0,0,0,0,0,0,1,0,0,0,229,389,4,8,609,13,0,0,0,8,0,623,0,0,0,0,0,4,0,3,173,445,9,0,1,0,2,602,1,11,0,0,16,630,13,31,12,50,64,15,0,22,163,387,58,0,0,598,30,0,0,0,2,0,629,0,1,0,0,0,0,272,350,0,4,4,0,502,0,0,0,0,0,0,0,0,126,1,1,816,0,6.948207171314741,23.51394422310757,6.946215139442231,23.55577689243028,1.042857142857143,3.596825396825397,2.2857142857142856,657,270,724,41,285,16,35,41,6,59,7,12,28,3,25,11,7,23,10,6,6,1798,251,0,765,1284,0,1752,297,0,1860,189,0,722,1327,0,558,164,1201,126,0,131,21,33,9,60,58,67,61,61,200,0,0,1,74,87,167,63,89,307,1,1,46,82,87,134,98,36,7,2,57,0,0,1,8,0,870,104,840,0,2,32,9,168,396,244,21,11,722,67,52,31,72,0,15,0,0,1108,1076,299,399,35,164,37,0,24,1,5,11,13,622,25,0,0,946,495,1,15,58,229,7,55,8,0,1,56,172,73,71,225,20,66,57,233,1059,65,64,89,143,189,178,86,121,56,32,16,27,12,22,25,40.0,24.0,33.0,38.0,43.0,29.0,36.0,42.0,45.0,40.0,40.0,40.0,33.0,34.0,38.0,35.0,35.0,40.0,45.0,28.0,39.0,50.0,31.0,38.0,27.0,34.0,41.0,23.0,27.0,27.0,41.0,25.0,39.0,25.0,36.0,26.0,31.0,26.0,24.0,28.0,35.0,22.0,29.0,33.0,17.0,18.0,26.0,28.0,30.0,27.0,25.0,19.0,22.0,21.0,28.0,22.0,27.0,21.0,30.0,19.0,25.0,16.0,14.0,16.0,12.0,9.0,17.0,8.0,18.0,14.0,11.0,15.0,17.0,19.0,18.0,4.0,9.0,9.0,10.0,11.0,6.0,3.0,4.0,6.0,3.0,2.0,3.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,555,1403,226,0,178,192,185,183,185,152,166,135,136,129,115,119,83,66,80,43,22,8,4,3,0,0,2077,62,34,11,0,2079,64,30,11,0,448,30,57,323,59,23,689,555,0,831,1316,37,0,38,861,18,12,6,0,1,0,1,12,1235,0,157,38,57,32,2,7,202,1689,0,548,636,183,18,1,798,0,2.160815402038505,0.0,3.0364842454394694,0.0,8.78617216117216,74,16,21,13,1,3,68,461,0,23,10,12,21,56,72,71,59,112,60,42,34,34,17,29,5,634,23,576,81,564,93,107,550,578,79,211,446,356,301,113,544,632,25,563,94,401,162,314,343,573,84,218,439,78,579,68,589,4,653,178,274,189,16,1,384,273,0,11,185,1,4,1,0,1,0,1,3,450,0,1.6838905775075987,1.635258358662614,1.1666666666666667,1.0588235294117647,1.0588235294117647,52.17047184170472 +,10219,Bocas del Toro,Changuinola,Finca 4,1444,25,16,0,0,0,0,0,0,0,0,0,1,0,0,337,595,216,40,1132,16,0,11,0,26,3,1003,0,3,80,1,55,37,0,9,119,600,409,41,19,0,0,1102,69,0,0,0,17,1188,0,135,42,31,47,42,0,46,57,1015,69,0,1,834,332,0,4,10,7,1,1178,0,8,0,0,1,1,238,683,0,127,139,1,701,245,0,92,13,3,44,15,17,55,3,0,0,1486,4.297040169133193,8.673361522198732,4.739957716701903,10.912262156448202,1.0328282828282829,3.4444444444444446,2.3324915824915826,1228,686,2444,107,839,40,73,103,18,167,25,12,39,0,38,27,12,17,18,9,14,3284,1927,0,932,4279,0,2752,2459,0,4529,682,0,1962,3249,0,1852,110,2643,606,0,608,53,114,1,198,204,231,210,264,617,0,0,1,304,316,419,175,245,728,1,2,56,62,82,83,157,31,18,4,27,0,0,0,0,0,1297,213,2822,0,9,82,61,256,1234,1227,31,74,1003,58,116,22,123,2,115,5,6,2834,2947,325,718,25,332,24,0,20,6,34,35,22,2324,29,0,0,3062,981,1,4,30,212,16,26,0,0,6,45,125,43,62,258,99,156,98,618,4029,151,125,208,306,462,175,102,102,47,25,8,6,3,3,29,130.0,149.0,149.0,142.0,149.0,148.0,155.0,148.0,140.0,139.0,125.0,161.0,135.0,134.0,131.0,149.0,117.0,132.0,106.0,122.0,104.0,126.0,97.0,99.0,85.0,104.0,85.0,83.0,73.0,77.0,78.0,79.0,68.0,62.0,70.0,53.0,62.0,77.0,59.0,75.0,65.0,64.0,72.0,57.0,48.0,53.0,40.0,52.0,45.0,45.0,47.0,36.0,41.0,42.0,45.0,37.0,47.0,31.0,39.0,33.0,35.0,22.0,35.0,31.0,25.0,25.0,30.0,14.0,19.0,15.0,25.0,13.0,19.0,30.0,23.0,16.0,8.0,6.0,10.0,16.0,3.0,4.0,10.0,5.0,10.0,3.0,5.0,0.0,2.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2135,3329,317,0,719,730,686,626,511,422,357,326,306,235,211,187,148,103,110,56,32,12,3,1,0,0,5694,9,20,58,0,5695,10,18,58,0,1535,22,423,440,110,12,1105,2134,0,3592,2161,28,0,3,4118,14,14,15,0,0,0,7,10,1600,0,257,560,60,44,9,16,137,4698,0,858,1814,248,29,1,2831,0,2.385752688172043,0.0,3.638810198300283,0.0,6.427607680332122,85,162,16,20,4,5,48,888,0,114,31,44,90,162,199,160,102,142,84,38,19,24,11,3,4,1146,82,804,424,813,415,166,1062,777,451,115,1113,509,719,97,1131,953,275,788,440,549,239,352,876,652,576,212,1016,213,1015,130,1098,17,1211,163,576,467,22,0,708,520,0,0,758,5,4,4,0,0,0,0,6,451,0,2.307817589576547,2.3998371335504887,1.0,1.0384615384615383,1.0384615384615383,48.3542345276873 +,10215,Bocas del Toro,Changuinola,Finca 6,2600,360,0,0,0,0,0,0,0,0,0,0,10,0,0,76,1305,635,112,1913,103,18,1,0,74,19,1239,0,18,456,2,259,143,0,11,412,864,730,14,104,4,0,2001,94,5,0,0,28,2128,4,332,166,147,120,63,0,102,160,1813,48,5,0,1274,611,0,73,147,20,3,2113,0,3,0,0,7,5,530,974,0,452,172,0,1848,0,1,1,0,0,7,0,37,8,226,0,2686,284,6.262844780962682,12.466197944835049,6.084369929691725,11.94862087614927,1.0244360902255638,2.829887218045113,1.6912593984962403,2190,1251,3737,305,822,79,144,154,30,160,48,12,46,4,119,96,22,32,52,44,32,5096,2888,0,1664,6320,0,4347,3637,0,6751,1233,0,2842,5142,0,2573,269,4084,1058,0,1066,68,178,6,289,341,340,308,330,941,1,0,0,348,445,577,254,307,1198,4,28,100,126,117,162,228,96,23,12,84,0,0,3,4,0,2477,290,3808,0,7,118,52,331,1691,1439,65,282,1969,147,242,53,260,0,24,1,1,4491,4491,597,1427,58,579,29,2,3,2,106,41,23,3754,91,0,0,4389,1573,0,36,35,437,19,83,3,0,3,115,292,137,154,421,27,329,153,1136,5941,218,162,272,709,637,339,172,209,111,56,22,24,9,10,91,253.0,232.0,242.0,271.0,273.0,240.0,257.0,211.0,230.0,198.0,216.0,214.0,174.0,177.0,190.0,177.0,168.0,172.0,173.0,168.0,168.0,165.0,149.0,188.0,121.0,166.0,131.0,141.0,137.0,128.0,134.0,109.0,123.0,112.0,111.0,78.0,103.0,114.0,113.0,98.0,105.0,106.0,100.0,96.0,79.0,81.0,79.0,96.0,85.0,78.0,95.0,72.0,64.0,55.0,66.0,55.0,55.0,61.0,46.0,61.0,56.0,49.0,50.0,43.0,38.0,32.0,27.0,31.0,23.0,35.0,28.0,21.0,11.0,19.0,22.0,17.0,9.0,18.0,18.0,13.0,14.0,8.0,2.0,4.0,11.0,3.0,5.0,2.0,4.0,1.0,2.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3378,5218,386,0,1271,1136,971,858,791,703,589,506,486,419,352,278,236,148,101,75,39,15,5,3,0,0,8744,44,49,145,0,8747,48,42,145,0,2438,52,458,761,121,32,1747,3373,0,3376,5538,68,0,81,5542,50,37,19,0,2,3,9,53,3186,0,426,260,152,141,13,2,418,7570,0,1691,2841,316,25,7,4102,0,2.3812104787714543,0.0,3.4213636363636364,0.0,6.453239812959252,143,96,57,61,8,2,135,1688,0,167,65,73,121,362,419,267,169,211,114,74,39,53,18,26,2,2085,105,1137,1053,1127,1063,242,1948,1165,1025,341,1849,737,1453,198,1992,1623,567,1170,1020,751,419,571,1619,1198,992,485,1705,160,2030,115,2075,17,2173,338,1207,606,39,0,1489,701,0,15,1103,8,13,8,0,1,1,4,15,1022,0,2.0506849315068494,2.0506849315068494,1.0,1.0266666666666666,1.0266666666666666,45.28949771689498 +,10404,Bocas del Toro,Almirante,Nance de Riscó,566,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,96,121,46,206,15,6,25,0,12,3,107,0,0,83,1,10,64,0,2,28,0,219,5,13,1,1,99,168,0,0,0,0,267,0,196,28,0,42,34,0,0,0,265,1,1,0,55,208,0,1,1,1,1,256,1,0,0,0,10,0,9,99,1,128,30,0,0,164,44,3,3,4,4,42,0,0,3,0,0,567,5.307692307692308,13.23076923076923,5.870192307692308,18.115384615384617,1.0,3.842696629213483,2.617977528089888,267,189,809,33,269,6,12,14,1,46,3,0,1,0,10,13,2,2,5,5,2,523,921,0,18,1426,0,59,1385,0,1168,276,0,627,817,0,620,7,611,206,0,209,25,57,1,93,75,100,74,73,228,0,1,0,59,71,96,33,49,180,1,1,1,2,3,2,1,9,0,0,0,0,0,0,0,0,541,6,576,0,0,0,0,9,360,168,17,22,41,67,6,0,23,3,403,4,0,817,833,18,31,1,271,10,0,216,0,92,22,4,769,0,0,0,919,191,0,0,2,11,0,0,0,0,0,6,3,5,6,39,412,42,8,26,1536,46,13,14,15,11,11,3,0,0,1,0,0,0,0,0,47.0,61.0,50.0,48.0,50.0,57.0,58.0,57.0,56.0,43.0,53.0,48.0,47.0,41.0,50.0,54.0,35.0,41.0,29.0,35.0,31.0,26.0,27.0,31.0,36.0,24.0,22.0,16.0,20.0,21.0,24.0,22.0,18.0,12.0,11.0,13.0,14.0,8.0,15.0,18.0,10.0,13.0,11.0,16.0,16.0,13.0,15.0,7.0,14.0,15.0,12.0,8.0,11.0,9.0,7.0,6.0,10.0,9.0,4.0,5.0,7.0,7.0,4.0,6.0,2.0,4.0,2.0,2.0,3.0,2.0,1.0,1.0,2.0,2.0,1.0,1.0,3.0,2.0,0.0,3.0,2.0,4.0,1.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,766,840,44,0,256,271,239,194,151,103,87,68,66,64,47,34,26,13,7,9,11,3,1,0,0,0,1632,0,0,18,0,1632,0,0,18,0,497,5,53,68,20,4,239,764,0,1260,390,0,0,0,1614,2,3,4,0,0,0,0,1,26,0,0,1,2,0,0,0,11,1636,0,41,87,11,0,0,1511,0,2.860068259385665,0.0,4.317934782608695,0.0,4.713939393939394,0,1,0,0,0,0,2,264,0,85,30,38,41,41,14,8,2,5,2,1,0,0,0,0,0,171,96,54,213,38,229,42,225,30,237,1,266,30,237,2,265,152,115,35,232,14,21,8,259,6,261,2,265,152,115,123,144,6,261,13,134,119,1,0,146,121,0,0,260,0,0,0,0,0,0,0,0,7,0,3.059925093632959,3.119850187265917,1.0,1.2142857142857142,1.2142857142857142,45.0374531835206 +,10403,Bocas del Toro,Almirante,Barriada Guaymí,1384,3,2,0,0,0,0,0,0,0,0,0,0,0,0,27,604,184,187,736,79,10,28,69,80,0,672,0,2,197,4,70,54,0,3,472,6,512,0,9,2,1,932,60,1,1,0,8,1002,3,174,71,38,52,49,0,1,42,940,19,0,0,368,618,0,6,0,10,0,999,0,1,0,0,1,1,135,323,0,28,513,3,644,165,20,41,11,3,54,15,2,13,32,2,673,716,6.523522316043426,10.965018094089263,6.750301568154403,13.463208685162847,1.0089820359281436,3.4441117764471056,2.333333333333333,1011,550,2018,176,660,18,64,75,8,89,25,9,51,0,25,13,5,13,16,7,13,2575,1626,0,480,3721,0,2264,1937,0,3628,573,0,1661,2540,0,1551,110,2060,480,0,483,51,100,12,168,180,198,167,172,570,0,0,1,182,178,301,143,187,707,2,3,48,61,86,72,112,14,0,0,3,0,0,0,0,0,1015,227,2170,0,28,122,27,108,989,951,52,70,691,64,153,53,58,0,139,12,0,2368,2386,221,605,63,238,14,0,29,0,29,47,15,2193,1,0,0,2303,893,1,4,38,170,0,3,0,0,0,36,85,35,84,222,91,214,70,405,3516,165,78,159,185,181,157,98,139,51,8,8,5,2,1,1,142.0,132.0,127.0,152.0,145.0,143.0,135.0,140.0,112.0,114.0,108.0,124.0,128.0,108.0,99.0,109.0,99.0,107.0,82.0,82.0,83.0,93.0,81.0,103.0,78.0,60.0,66.0,59.0,64.0,64.0,67.0,53.0,67.0,54.0,53.0,51.0,55.0,48.0,58.0,57.0,45.0,50.0,40.0,44.0,37.0,47.0,41.0,43.0,33.0,49.0,27.0,39.0,26.0,31.0,25.0,22.0,27.0,29.0,30.0,26.0,25.0,24.0,21.0,26.0,13.0,14.0,14.0,16.0,13.0,10.0,11.0,12.0,13.0,12.0,15.0,7.0,9.0,11.0,10.0,2.0,11.0,9.0,8.0,9.0,2.0,5.0,7.0,2.0,4.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1909,2613,232,0,698,644,567,479,438,313,294,269,216,213,148,134,109,67,63,39,39,18,5,0,1,0,4661,4,8,81,0,4662,4,7,81,0,1130,10,316,366,78,8,938,1908,0,3138,1590,26,0,1,3669,6,2,7,0,2,0,0,13,1054,0,140,254,85,25,12,7,218,4013,0,495,1049,107,13,2,3088,0,2.8292263610315187,0.0,4.127753303964758,0.0,6.239167017248633,33,72,29,11,3,4,63,796,0,157,51,45,70,141,124,96,66,121,54,33,16,26,5,5,1,968,43,515,496,535,476,132,879,530,481,73,938,352,659,49,962,692,319,531,480,338,193,199,812,325,686,120,891,212,799,242,769,34,977,150,497,336,28,0,553,458,0,0,705,3,0,0,0,1,0,0,4,298,0,2.3422354104846685,2.360039564787339,2.0,1.1363636363636365,1.1363636363636365,47.2809099901088 +PA010105,10105,Bocas del Toro,Bocas del Toro,Tierra Oscura,535,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,63,243,87,16,9,36,194,3,1,0,0,23,249,2,19,52,0,1,0,3,318,6,8,4,7,249,91,1,0,0,5,346,0,83,49,6,37,15,0,0,0,327,19,0,0,9,336,0,0,0,1,0,339,1,1,0,1,3,1,1,7,0,1,336,1,0,65,4,14,11,4,215,26,0,7,0,0,0,536,3.420289855072464,7.681159420289855,6.898550724637682,23.405797101449277,1.0115606936416186,3.1705202312138727,2.115606936416185,350,241,795,44,246,9,11,7,6,44,5,0,13,0,10,7,2,6,5,9,3,859,707,0,141,1425,0,532,1034,0,1264,302,0,647,919,0,643,4,714,205,0,207,17,66,0,71,81,94,89,79,303,0,0,0,65,79,147,55,59,104,0,1,4,1,5,16,15,3,2,0,1,0,0,0,2,0,712,8,513,0,0,1,3,31,234,198,18,32,109,79,31,66,21,1,336,77,0,909,862,20,107,68,357,3,0,165,0,93,44,6,606,8,0,0,1079,119,0,1,3,27,1,1,2,0,0,3,9,3,4,78,369,97,12,145,1320,103,69,51,76,54,26,16,19,19,7,1,0,2,0,8,50.0,57.0,51.0,47.0,59.0,43.0,68.0,57.0,53.0,53.0,43.0,51.0,54.0,44.0,55.0,50.0,39.0,45.0,36.0,25.0,30.0,19.0,19.0,30.0,18.0,30.0,28.0,21.0,22.0,17.0,26.0,19.0,10.0,16.0,25.0,17.0,19.0,18.0,14.0,19.0,13.0,9.0,17.0,22.0,8.0,13.0,20.0,13.0,12.0,8.0,14.0,8.0,8.0,12.0,12.0,11.0,6.0,13.0,9.0,10.0,9.0,6.0,9.0,8.0,5.0,6.0,5.0,10.0,7.0,3.0,9.0,4.0,8.0,4.0,7.0,2.0,5.0,0.0,4.0,5.0,2.0,1.0,5.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,785,887,99,0,264,274,247,195,116,118,96,87,69,66,54,49,37,31,32,16,14,2,2,1,1,0,1650,11,37,73,0,1652,13,33,73,0,554,2,68,91,37,3,231,785,0,1127,601,43,0,1,1443,6,0,0,0,0,1,3,0,317,0,17,73,48,11,2,1,41,1578,0,77,161,8,2,25,1498,0,3.24283305227656,0.0,4.859838274932614,0.0,4.9480519480519485,4,14,15,5,2,0,21,289,0,50,14,24,39,48,56,38,18,28,9,11,5,6,3,0,1,306,44,67,283,80,270,38,312,41,309,2,348,159,191,0,350,241,109,63,287,19,44,38,312,88,262,3,347,242,108,213,137,6,344,53,193,95,9,0,260,90,0,1,264,3,0,0,0,0,0,0,0,82,0,2.597142857142857,2.462857142857143,1.0,1.0555555555555556,1.0555555555555556,47.58285714285714 +,10107,Bocas del Toro,Bocas del Toro,San Cristóbal,530,6,0,0,0,0,0,0,1,0,0,1,0,0,0,0,40,54,264,89,5,13,73,167,10,1,0,0,52,258,3,20,25,0,0,0,3,331,2,11,1,10,317,41,0,0,0,0,358,1,106,33,2,30,6,0,0,1,349,8,0,0,6,348,0,0,0,4,0,347,0,0,0,6,4,1,2,9,0,1,345,1,0,126,1,2,72,24,112,16,0,1,4,0,0,538,4.937007874015748,13.559055118110235,6.181102362204724,19.04724409448819,1.0027932960893855,3.399441340782123,2.1675977653631286,360,235,772,47,195,3,8,13,1,48,2,1,24,0,10,6,6,8,3,1,7,878,626,0,187,1317,0,732,772,0,1277,227,0,537,967,0,521,16,786,181,0,182,26,39,0,48,81,85,79,89,296,0,0,0,64,95,89,40,47,170,0,3,6,4,8,18,7,27,0,0,0,0,0,0,1,0,601,4,603,0,0,1,2,35,281,270,7,10,181,88,58,50,25,1,155,46,0,863,846,26,197,56,260,8,2,55,0,73,22,5,585,5,0,0,964,183,0,4,6,50,0,0,1,0,0,18,16,14,6,86,137,111,25,192,1162,94,37,82,98,117,38,18,28,6,14,3,2,3,2,5,56.0,47.0,54.0,48.0,53.0,52.0,46.0,49.0,49.0,47.0,42.0,57.0,45.0,41.0,46.0,31.0,35.0,40.0,31.0,38.0,23.0,35.0,30.0,37.0,23.0,32.0,20.0,28.0,26.0,18.0,19.0,21.0,17.0,20.0,19.0,21.0,24.0,18.0,17.0,19.0,19.0,15.0,14.0,9.0,15.0,12.0,14.0,13.0,13.0,12.0,11.0,11.0,9.0,9.0,6.0,5.0,9.0,19.0,7.0,7.0,10.0,11.0,8.0,6.0,5.0,2.0,8.0,4.0,2.0,4.0,3.0,4.0,1.0,1.0,8.0,2.0,6.0,3.0,2.0,1.0,1.0,3.0,4.0,2.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,732,911,66,0,258,243,231,175,148,124,96,99,72,64,46,47,40,20,17,14,10,4,1,0,0,0,1576,48,14,71,0,1576,54,8,71,0,498,4,51,135,9,3,278,731,0,1177,476,56,0,3,1554,10,0,0,0,0,0,0,3,139,0,6,427,23,7,0,2,34,1210,0,108,118,8,7,22,1446,0,3.067911714770798,0.0,4.349614395886889,0.0,5.370977179637214,1,78,6,1,0,0,9,265,0,26,16,14,31,46,73,50,27,36,10,11,4,0,6,6,3,337,23,75,285,67,293,30,330,61,299,12,348,85,275,0,360,262,98,100,260,44,56,54,306,188,172,2,358,116,244,125,235,4,356,41,207,103,9,1,213,147,0,0,300,2,0,0,0,0,0,0,3,55,0,2.390581717451524,2.343490304709141,1.0,1.0,1.0,45.32222222222222 +PA010201,10401,Bocas del Toro,Almirante,Almirante,1869,1,47,11,0,0,0,0,0,0,0,0,4,0,0,314,893,70,111,1236,41,2,19,70,13,7,1312,0,0,18,3,15,8,0,32,1138,75,158,5,4,1,7,1343,20,6,0,0,19,1388,9,104,109,69,158,91,0,19,173,1093,100,2,1,899,452,0,24,0,13,0,1374,4,1,2,5,1,1,463,500,2,9,414,0,1226,23,0,4,0,0,14,0,2,64,29,26,1525,407,6.796637309847879,13.4595676541233,6.813450760608487,13.800640512409927,1.0230547550432276,3.612391930835735,2.2672910662824206,1424,654,1784,134,565,56,54,60,13,73,10,20,37,2,64,33,7,23,32,54,47,3752,774,0,1705,2821,0,3164,1362,0,4144,382,0,1595,2931,0,1344,251,2638,293,0,301,26,58,21,125,131,140,133,156,450,0,1,7,169,251,352,175,260,974,1,6,73,121,133,100,198,91,19,1,52,0,1,0,0,0,1489,172,2283,0,9,87,39,255,989,797,80,162,1115,114,165,27,160,4,24,5,6,2362,2524,470,628,35,409,50,0,19,9,22,66,19,1821,53,0,0,2154,1221,8,22,136,342,12,49,0,0,7,72,247,100,122,378,31,274,131,299,2911,232,118,211,252,280,248,204,173,111,47,12,12,11,11,53,82.0,98.0,86.0,94.0,101.0,92.0,105.0,99.0,95.0,90.0,87.0,120.0,118.0,92.0,112.0,105.0,96.0,76.0,83.0,89.0,75.0,99.0,84.0,73.0,78.0,78.0,86.0,66.0,48.0,67.0,61.0,50.0,57.0,62.0,58.0,70.0,69.0,54.0,52.0,47.0,58.0,50.0,53.0,56.0,49.0,50.0,53.0,57.0,46.0,43.0,47.0,51.0,47.0,38.0,50.0,50.0,58.0,47.0,54.0,43.0,54.0,33.0,49.0,35.0,39.0,30.0,34.0,30.0,38.0,15.0,28.0,22.0,16.0,25.0,17.0,16.0,21.0,10.0,15.0,21.0,11.0,5.0,8.0,8.0,7.0,9.0,4.0,3.0,4.0,10.0,5.0,2.0,0.0,1.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1471,2993,422,0,461,481,529,449,409,345,288,292,266,249,233,252,210,147,108,83,39,30,10,5,0,0,4789,41,41,15,0,4791,47,33,15,0,1117,37,156,594,137,29,1348,1468,0,2459,2374,53,0,16,1441,21,11,18,5,0,4,5,192,3173,0,653,194,219,377,12,24,1180,2227,0,837,1316,266,21,5,2441,0,2.3022915650902,0.0,3.3026124818577647,0.0,8.253376995497339,237,67,69,158,6,13,301,573,0,175,58,40,77,129,199,157,129,171,95,67,37,37,16,22,11,1395,29,1174,250,1191,233,184,1240,1210,214,275,1149,770,654,242,1182,1264,160,1177,247,748,429,522,902,879,545,351,1073,139,1285,114,1310,21,1403,284,703,407,30,0,716,708,0,5,336,7,3,7,3,0,2,1,69,991,0,1.6587078651685394,1.7724719101123596,1.6,1.0298507462686568,1.0298507462686568,49.95786516853933 +PA010102,10101,Bocas del Toro,Bocas del Toro,Bocas del Toro,2093,4,567,68,0,0,0,1,0,0,1,3,24,0,0,1179,456,145,160,1596,184,14,1,110,30,5,1748,0,4,108,0,34,43,1,2,950,737,239,7,3,0,4,1893,10,12,1,1,23,1940,0,143,87,397,126,39,0,4,520,1322,90,3,1,701,1216,0,10,0,13,0,1815,4,33,17,67,0,4,627,149,0,6,1157,1,423,1,3,12,2,3,143,12,0,1336,2,3,2107,654,6.07728337236534,3.836065573770492,6.180327868852459,3.990632318501171,1.035051546391753,3.2984536082474225,2.0525773195876287,2035,943,2461,217,429,56,118,112,11,94,47,38,143,4,81,20,12,42,40,2,19,4979,1176,0,1905,4250,0,4729,1426,0,5636,519,0,2071,4084,0,1768,303,3741,343,0,351,114,131,5,174,179,215,182,210,680,1,2,2,271,315,522,200,256,1357,2,70,65,82,124,210,269,81,14,4,55,0,0,0,12,0,2970,108,2190,0,3,52,24,321,1107,590,54,118,1927,273,450,68,195,2,19,107,1,3415,3293,415,1573,76,847,111,1,15,4,26,53,16,1793,13,0,0,2918,1575,2,74,87,537,9,54,12,0,5,246,221,199,172,785,39,532,153,726,3187,194,130,239,458,679,733,318,329,162,112,35,56,17,46,13,150.0,126.0,126.0,151.0,140.0,171.0,136.0,162.0,144.0,134.0,141.0,127.0,152.0,150.0,132.0,164.0,122.0,107.0,119.0,109.0,102.0,115.0,116.0,129.0,106.0,122.0,115.0,115.0,102.0,90.0,95.0,79.0,109.0,110.0,95.0,94.0,114.0,88.0,108.0,90.0,85.0,91.0,75.0,65.0,76.0,62.0,71.0,70.0,52.0,52.0,57.0,55.0,60.0,40.0,60.0,56.0,46.0,52.0,54.0,47.0,47.0,40.0,53.0,53.0,32.0,31.0,26.0,30.0,33.0,25.0,25.0,18.0,21.0,22.0,17.0,15.0,20.0,11.0,15.0,13.0,5.0,8.0,9.0,13.0,8.0,7.0,4.0,4.0,6.0,1.0,1.0,4.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2142,4166,400,0,693,747,702,621,568,544,488,494,392,307,272,255,225,145,103,74,43,22,13,0,0,0,6123,309,191,85,0,6131,318,174,85,0,1711,44,318,773,106,60,1556,2140,0,3798,2344,566,0,27,3469,36,5,12,0,2,3,0,194,2960,0,1108,425,214,226,9,43,1347,3336,0,1320,1266,231,13,121,3757,0,2.1263969171483623,0.0,3.1985602879424118,0.0,7.93783542039356,367,121,69,104,7,23,356,988,0,32,22,20,54,136,260,311,209,375,193,132,76,78,39,70,1,2000,35,1485,550,1445,590,250,1785,1723,312,526,1509,925,1110,235,1800,1869,166,1435,600,1087,348,828,1207,1705,330,315,1720,145,1890,114,1921,21,2014,533,966,445,91,2,1205,830,0,10,801,14,2,5,0,1,3,0,83,1116,0,1.676485027000491,1.616593028964163,1.1428571428571428,1.0704225352112675,1.0704225352112675,45.48992628992629 +,10106,Bocas del Toro,Bocas del Toro,Bocas del Drago,1341,0,102,67,0,0,0,0,2,0,0,0,3,0,0,289,268,67,128,525,99,6,6,83,33,0,645,0,4,69,1,9,22,0,2,111,436,180,4,7,0,14,696,7,16,0,0,33,752,0,89,154,502,10,3,0,6,206,462,78,0,0,187,527,0,3,0,35,0,721,4,11,3,8,1,4,113,135,0,4,499,1,185,1,1,5,6,6,246,4,0,295,3,0,494,1021,6.422459893048129,6.764705882352941,6.903743315508021,8.411764705882353,1.0159574468085106,2.7566489361702127,1.648936170212766,767,397,917,87,166,10,22,32,2,42,17,13,46,0,20,11,5,17,7,4,7,1859,436,0,820,1475,0,1682,613,0,2044,251,0,827,1468,0,678,149,1352,116,0,125,28,72,7,79,80,84,61,79,263,0,0,0,97,120,175,68,121,461,3,25,27,30,60,82,88,22,9,0,24,0,0,0,5,0,1192,32,717,0,1,9,4,56,381,239,17,24,732,101,145,94,76,2,36,35,0,1294,1224,131,579,96,330,52,0,33,0,8,15,9,635,24,0,0,1105,564,0,29,27,180,7,24,5,0,0,106,67,53,51,280,39,228,80,320,1182,117,73,122,177,232,213,123,126,49,34,11,12,7,16,24,48.0,54.0,62.0,59.0,64.0,44.0,67.0,52.0,70.0,57.0,44.0,54.0,56.0,48.0,44.0,52.0,58.0,46.0,42.0,43.0,47.0,48.0,45.0,44.0,43.0,44.0,38.0,38.0,34.0,34.0,41.0,33.0,46.0,37.0,38.0,47.0,31.0,51.0,42.0,35.0,25.0,31.0,33.0,34.0,25.0,27.0,41.0,25.0,33.0,29.0,26.0,17.0,27.0,16.0,25.0,19.0,14.0,10.0,11.0,15.0,17.0,6.0,9.0,8.0,8.0,11.0,10.0,9.0,9.0,3.0,4.0,11.0,4.0,4.0,6.0,3.0,2.0,4.0,1.0,4.0,2.0,2.0,3.0,2.0,4.0,0.0,2.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,823,1588,107,0,287,290,246,241,227,188,195,206,148,155,111,69,48,42,29,14,13,7,1,0,1,0,2263,118,95,42,0,2267,126,83,42,0,704,18,192,293,35,10,444,822,0,1195,1181,142,0,7,1277,38,4,10,9,1,0,0,19,1153,0,244,265,124,100,4,20,457,1304,0,422,452,39,7,27,1571,0,2.1246040126715946,0.0,3.1166936790923825,0.0,7.740270055599682,82,82,38,36,1,12,141,375,0,11,14,12,29,57,97,114,85,128,74,41,26,26,14,23,13,733,34,533,234,504,263,81,686,621,146,166,601,293,474,43,724,717,50,463,304,340,123,323,444,606,161,155,612,152,615,146,621,14,753,199,403,137,28,2,469,298,0,2,325,9,1,4,3,1,0,0,14,408,0,1.682704811443433,1.5916775032509751,1.3333333333333333,1.0476190476190477,1.0476190476190477,43.05867014341591 +,10410,Bocas del Toro,Almirante,Miraflores,580,1,4,0,0,0,0,0,0,0,0,0,0,0,0,17,93,194,12,286,18,2,0,0,8,2,108,0,5,146,1,34,21,0,1,70,28,206,1,9,2,0,254,61,0,0,0,1,316,0,104,24,7,108,26,0,16,6,279,15,0,0,94,212,0,0,0,10,0,313,0,0,0,0,2,1,64,60,0,55,137,0,0,110,27,78,27,14,21,21,16,1,1,0,0,585,6.613138686131387,22.32116788321168,6.656934306569343,22.313868613138688,1.0063291139240509,3.79746835443038,2.6582278481012658,318,184,563,16,149,7,10,12,0,33,0,1,9,1,2,0,2,6,3,0,1,743,442,0,194,991,0,514,671,0,996,189,0,441,744,0,409,32,587,157,0,157,10,16,0,47,66,67,53,50,161,0,0,0,46,66,86,42,36,160,4,2,9,13,17,23,16,31,2,0,5,0,0,0,0,0,295,77,600,0,1,31,38,33,249,291,3,24,165,20,26,7,18,0,89,1,0,667,636,66,121,9,82,7,0,41,0,13,23,0,573,5,0,0,690,202,0,2,17,55,3,3,0,0,0,14,41,15,14,43,73,30,26,116,996,46,23,40,53,40,33,17,15,16,6,5,2,0,6,5,23.0,27.0,37.0,31.0,36.0,34.0,30.0,37.0,40.0,36.0,38.0,27.0,36.0,33.0,28.0,27.0,31.0,17.0,30.0,27.0,19.0,16.0,20.0,27.0,19.0,19.0,13.0,16.0,19.0,16.0,19.0,7.0,11.0,19.0,15.0,13.0,19.0,19.0,18.0,17.0,13.0,13.0,8.0,18.0,10.0,13.0,9.0,14.0,12.0,18.0,11.0,9.0,5.0,14.0,6.0,13.0,10.0,8.0,5.0,6.0,6.0,5.0,4.0,11.0,8.0,4.0,8.0,5.0,5.0,5.0,6.0,7.0,3.0,6.0,1.0,6.0,1.0,3.0,2.0,3.0,4.0,2.0,3.0,3.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,493,722,88,0,154,177,162,132,101,83,71,86,62,66,45,42,34,27,23,15,13,6,4,0,0,0,1277,6,3,17,0,1277,7,2,17,0,377,13,61,140,21,6,192,493,0,879,414,10,0,0,1017,1,0,1,1,0,0,0,2,281,0,33,35,6,6,0,0,7,1216,0,138,306,34,2,1,822,0,2.8529411764705883,0.0,4.079113924050633,0.0,6.2455871066769,12,11,1,1,0,0,4,289,0,69,23,26,35,30,31,29,17,20,10,7,4,5,3,7,2,278,40,103,215,108,210,36,282,95,223,29,289,145,173,14,304,202,116,119,199,78,41,61,257,106,212,59,259,114,204,63,255,4,314,63,161,89,5,0,200,118,0,0,221,1,0,0,1,0,0,0,0,95,0,2.09748427672956,2.0,0.0,1.0,1.0,48.86163522012578 +,10406,Bocas del Toro,Almirante,Valle de Riscó,1398,9,0,0,0,0,0,0,1,0,0,0,1,0,0,3,213,375,197,567,24,13,155,0,27,2,315,0,2,191,2,100,160,0,18,382,0,351,37,18,0,0,333,455,0,0,0,0,788,0,374,138,7,76,24,0,0,1,783,4,0,0,93,678,0,2,14,1,0,686,0,0,21,0,81,0,6,246,0,183,349,4,0,530,61,11,35,72,6,69,0,1,2,1,0,1409,5.722504230118443,17.4585448392555,6.147208121827411,20.02876480541455,1.001269035532995,3.974619289340101,2.795685279187817,790,443,2028,49,815,21,39,37,4,130,7,10,13,0,34,25,2,12,18,5,17,1004,2830,0,112,3722,0,91,3743,0,3078,756,0,1617,2217,0,1597,20,1625,592,0,600,50,124,3,136,194,193,203,177,577,0,1,0,184,231,282,109,116,564,4,9,7,14,17,12,13,12,0,0,2,0,0,0,0,0,890,16,2152,0,1,2,3,37,1012,1001,31,71,163,30,5,4,10,1,685,1,0,2167,2219,97,72,4,429,6,1,290,0,276,70,17,2023,4,0,0,2403,606,0,3,10,35,0,1,0,0,1,6,29,17,18,54,682,31,18,50,4040,105,27,29,41,36,44,24,16,13,4,1,0,1,1,4,146.0,132.0,142.0,132.0,131.0,141.0,126.0,130.0,133.0,115.0,146.0,143.0,115.0,108.0,122.0,125.0,132.0,103.0,107.0,74.0,80.0,67.0,77.0,66.0,59.0,63.0,55.0,45.0,57.0,37.0,55.0,42.0,48.0,36.0,45.0,45.0,43.0,49.0,46.0,35.0,49.0,43.0,38.0,27.0,32.0,32.0,25.0,33.0,35.0,35.0,28.0,30.0,32.0,31.0,24.0,23.0,22.0,16.0,23.0,23.0,26.0,13.0,8.0,24.0,7.0,16.0,11.0,4.0,13.0,5.0,7.0,2.0,5.0,8.0,7.0,5.0,4.0,5.0,5.0,8.0,13.0,2.0,8.0,6.0,6.0,4.0,5.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1962,2270,154,0,683,645,634,541,349,257,226,218,189,160,145,107,78,49,29,27,35,12,0,2,0,0,4298,0,1,87,0,4299,0,0,87,0,1266,43,115,198,86,13,706,1959,0,3723,663,0,0,4,4368,7,0,0,0,0,1,0,3,3,0,1,2,1,0,0,0,9,4373,0,98,471,35,3,0,3779,0,3.060063897763578,0.0,4.527123848515865,0.0,5.122435020519836,0,1,0,0,0,0,2,787,0,252,84,102,112,80,45,37,23,30,9,8,2,1,1,2,1,471,319,130,660,154,636,86,704,122,668,3,787,113,677,6,784,242,548,131,659,35,96,38,752,26,764,10,780,439,351,174,616,13,777,76,365,344,5,1,377,413,0,1,782,3,0,0,0,0,0,0,2,2,0,2.739570164348925,2.8053097345132745,0.0,1.0689655172413792,1.0689655172413792,46.063291139240505 +,10221,Bocas del Toro,Changuinola,Finca 51,1269,8,0,0,0,0,15,0,0,0,0,0,1,0,0,7,635,221,115,839,24,23,8,1,61,22,730,0,4,75,1,89,75,0,4,62,222,608,23,57,1,5,879,93,0,0,0,6,978,0,146,48,7,86,12,0,0,11,903,49,0,15,532,404,0,5,17,16,4,963,0,2,0,0,10,3,70,584,0,224,99,1,107,0,0,43,13,0,305,5,474,31,0,0,35,1258,5.046728971962617,8.14018691588785,2.850467289719626,4.345794392523365,1.0224948875255624,3.418200408997955,2.3047034764826178,1001,618,2302,168,705,31,69,94,2,115,17,11,599,0,39,25,11,21,10,22,10,2638,2446,0,423,4661,0,1595,3489,0,4225,859,0,1995,3089,0,1906,89,2372,717,0,718,43,105,5,214,242,261,235,243,616,0,0,1,285,326,411,259,233,668,2,5,15,36,36,35,42,32,2,0,14,0,0,0,0,0,1224,161,2802,0,11,89,41,125,1291,980,28,378,913,100,107,14,51,2,146,4,9,3154,2578,173,772,16,305,14,1,56,9,102,30,14,2051,37,0,0,3299,745,1,7,28,95,2,10,0,0,9,22,59,45,61,184,129,169,57,650,4321,179,115,165,338,283,153,55,47,27,11,1,0,0,0,37,172.0,163.0,153.0,160.0,142.0,159.0,135.0,156.0,164.0,141.0,144.0,159.0,125.0,118.0,125.0,111.0,123.0,102.0,121.0,114.0,116.0,109.0,114.0,119.0,102.0,98.0,92.0,100.0,108.0,93.0,76.0,102.0,101.0,66.0,88.0,66.0,86.0,76.0,65.0,57.0,56.0,50.0,59.0,60.0,46.0,48.0,51.0,41.0,44.0,50.0,37.0,44.0,40.0,32.0,34.0,22.0,28.0,33.0,25.0,24.0,25.0,20.0,17.0,26.0,17.0,10.0,15.0,17.0,12.0,9.0,11.0,5.0,9.0,14.0,12.0,11.0,2.0,6.0,11.0,12.0,7.0,2.0,2.0,3.0,4.0,1.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2216,3334,182,0,790,755,671,571,560,491,433,350,271,234,187,132,105,63,51,42,18,7,1,0,0,0,5504,61,34,133,0,5506,61,32,133,0,1597,15,479,298,63,8,1056,2216,0,3122,2442,168,0,6,4591,16,70,20,2,0,0,4,136,887,0,134,57,125,54,0,12,340,5010,0,699,1568,120,14,2,3329,0,2.625813449023861,0.0,3.8623005877413936,0.0,5.63764829030007,23,6,20,9,0,0,83,860,0,69,44,42,74,149,227,115,79,110,46,23,11,3,6,0,2,959,42,492,509,470,531,167,834,504,497,33,968,365,636,32,969,786,215,545,456,235,310,155,846,524,477,85,916,368,633,386,615,6,995,100,506,370,25,15,602,399,0,2,743,5,14,4,2,0,0,1,33,197,0,3.104330708661417,2.537401574803149,1.0,1.0,1.0,45.28671328671329 +,10405,Bocas del Toro,Almirante,Valle de Agua Arriba,1129,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,519,105,586,23,31,39,4,29,2,16,0,25,445,5,43,165,0,15,9,0,662,12,30,1,0,372,333,0,0,0,9,714,0,258,76,0,46,48,0,0,1,677,36,0,0,20,689,0,3,2,0,0,670,1,3,0,0,40,0,6,89,0,107,511,1,0,152,226,14,28,195,64,23,0,4,7,1,0,1142,5.896825396825397,19.09523809523809,6.529100529100529,20.94973544973545,1.0084033613445378,3.4705882352941178,2.316526610644258,720,434,1763,77,766,13,16,23,3,109,6,2,7,0,41,20,0,6,13,11,11,1006,2454,0,67,3393,0,354,3106,0,2756,704,0,1251,2209,0,1246,5,1582,627,0,634,19,84,2,155,187,204,181,175,611,1,1,0,144,145,262,85,140,368,0,1,4,6,8,10,23,7,0,0,3,0,0,0,0,0,830,107,1775,0,0,3,102,41,762,883,48,41,165,38,19,8,24,0,571,8,0,1936,2003,53,117,8,549,17,2,87,0,56,75,17,1581,235,0,0,2282,382,0,1,9,35,0,3,0,0,0,13,20,10,9,68,586,59,12,160,3232,171,38,54,56,68,29,25,20,5,2,1,0,0,3,235,120.0,129.0,109.0,121.0,137.0,115.0,138.0,122.0,119.0,117.0,139.0,105.0,112.0,104.0,102.0,102.0,87.0,98.0,83.0,69.0,80.0,65.0,69.0,61.0,44.0,58.0,47.0,61.0,47.0,38.0,48.0,34.0,42.0,22.0,40.0,35.0,42.0,35.0,37.0,27.0,41.0,37.0,28.0,35.0,35.0,27.0,21.0,27.0,26.0,23.0,30.0,28.0,31.0,19.0,19.0,19.0,25.0,17.0,20.0,16.0,21.0,17.0,9.0,14.0,11.0,16.0,9.0,14.0,7.0,7.0,6.0,12.0,9.0,21.0,12.0,6.0,8.0,7.0,6.0,4.0,5.0,5.0,7.0,6.0,1.0,2.0,6.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1789,1967,183,0,616,611,562,439,319,251,186,176,176,124,127,97,72,53,60,31,24,11,2,2,0,0,3708,13,3,215,0,3708,13,3,215,0,1061,16,81,236,38,0,718,1789,0,2914,1008,17,0,2,3775,5,0,0,0,0,0,0,1,156,0,23,28,54,11,0,0,45,3778,0,128,339,37,3,1,3431,0,3.252155172413793,0.0,4.75,0.0,4.762630109164762,9,11,17,1,0,0,7,675,0,170,78,102,110,79,76,37,20,24,11,5,4,0,0,3,1,498,222,36,684,45,675,100,620,28,692,6,714,184,536,17,703,359,361,89,631,19,70,29,691,40,680,15,705,548,172,470,250,13,707,84,337,293,6,0,415,305,0,1,670,0,0,0,0,0,0,0,0,49,0,2.688888888888889,2.781944444444445,1.0,1.03125,1.03125,47.543055555555554 +PA020204,40201,Chiriquí,Barú,Puerto Armuelles,4832,55,133,15,1,0,0,1,0,0,0,0,1,0,0,2287,1309,370,46,3901,65,7,4,0,31,4,3896,4,3,41,2,17,41,0,8,2153,777,778,61,219,11,13,3875,66,12,0,0,59,4012,17,365,64,122,289,166,0,30,451,3289,226,13,3,3393,575,1,30,10,3,0,3984,7,3,0,9,9,0,1289,2450,0,152,117,4,2787,59,11,175,8,6,0,42,31,859,30,4,4054,984,6.0203010150507525,15.975498774938748,6.07910395519776,16.207210360518026,1.0109670987038883,3.713110667996012,2.3477068793619145,4057,1944,3719,289,1235,136,219,161,50,193,39,34,168,5,270,154,38,101,115,139,127,9963,1646,0,3299,8310,0,8801,2808,0,10845,764,0,3264,8345,0,2696,568,7873,472,0,497,98,134,36,271,299,404,309,316,1665,5,4,27,360,511,818,417,486,2204,7,52,244,360,363,267,592,522,95,10,208,2,6,3,17,0,3786,530,6361,0,20,223,147,1322,2187,2351,361,140,2399,302,590,102,436,10,216,132,19,6062,6187,1159,1423,126,1351,73,1,41,32,8,444,120,3602,185,0,0,5687,3116,31,81,231,1240,82,188,21,0,29,172,593,349,201,896,243,647,280,906,5720,1018,568,749,1010,845,718,444,459,296,94,48,51,20,24,185,145.0,158.0,164.0,173.0,161.0,138.0,152.0,161.0,165.0,155.0,194.0,194.0,166.0,181.0,184.0,172.0,218.0,189.0,196.0,211.0,201.0,153.0,205.0,175.0,157.0,191.0,160.0,132.0,129.0,131.0,130.0,130.0,134.0,142.0,127.0,114.0,116.0,124.0,122.0,124.0,110.0,114.0,137.0,135.0,123.0,136.0,147.0,146.0,137.0,124.0,157.0,143.0,177.0,166.0,160.0,166.0,165.0,187.0,170.0,156.0,171.0,185.0,168.0,163.0,166.0,139.0,151.0,149.0,145.0,106.0,115.0,99.0,99.0,110.0,94.0,96.0,74.0,65.0,56.0,60.0,46.0,47.0,44.0,59.0,38.0,44.0,37.0,35.0,24.0,19.0,25.0,22.0,21.0,13.0,9.0,6.0,7.0,5.0,1.0,1.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2491,7692,2066,0,801,771,919,986,891,743,663,600,619,690,803,844,853,690,517,351,234,159,90,20,5,0,12001,99,128,21,0,12003,115,110,21,0,2681,153,1142,2113,572,123,2974,2491,0,6100,5978,171,0,32,576,7,1,3,1,9,1,3,0,11616,0,517,373,675,88,20,24,1186,9366,0,1936,3431,1291,144,27,5420,0,2.316394658753709,0.0,3.093888166449935,0.0,8.987590823740714,213,144,275,50,5,14,461,2895,0,293,202,144,321,514,552,410,332,454,284,187,93,106,58,52,54,3950,107,3681,376,3583,474,670,3387,3701,356,933,3124,2883,1174,696,3361,3703,354,3654,403,1727,1927,1330,2727,2855,1202,1353,2704,788,3269,704,3353,29,4028,910,1818,1204,125,2,2530,1527,0,9,208,3,1,1,0,2,0,0,0,3833,0,1.4934712983493472,1.5242670608524267,1.1428571428571428,1.069672131147541,1.069672131147541,57.18831649001726 +,40207,Chiriquí,Barú,Manaca,2740,84,0,9,0,0,0,0,0,0,0,0,3,0,0,454,1605,308,55,2304,63,5,0,0,48,2,2335,1,5,21,2,21,28,0,9,199,1007,788,109,312,0,7,2326,63,7,0,0,26,2422,0,204,30,6,95,76,0,177,78,1888,275,1,3,1948,406,2,11,49,5,1,2400,1,1,1,5,13,1,274,2012,1,127,8,0,2288,6,16,49,11,4,1,0,0,15,29,3,0,2836,6.067099567099567,18.29264069264069,6.2536796536796535,19.107792207792208,1.0082576383154418,3.330305532617672,2.234516928158546,2445,1262,3006,244,735,72,89,67,21,143,13,11,95,0,241,98,26,60,54,89,58,5687,1878,0,1124,6441,0,4133,3432,0,6758,807,0,2461,5104,0,2301,160,4574,530,0,539,87,164,11,250,285,321,264,288,1459,3,1,2,284,393,612,247,293,1308,24,32,66,79,112,99,156,128,18,4,36,0,0,0,0,0,2264,337,4007,0,23,141,103,637,1543,1598,124,105,1369,195,206,55,202,6,479,4,8,4160,4043,348,1345,60,597,68,2,96,8,21,170,62,3151,15,0,0,4544,1575,2,29,64,343,18,33,0,0,9,61,150,105,79,489,175,223,151,1159,4850,531,327,587,649,588,303,143,153,42,10,1,4,0,0,15,165.0,155.0,189.0,129.0,143.0,188.0,158.0,164.0,153.0,151.0,191.0,179.0,153.0,153.0,152.0,141.0,163.0,154.0,159.0,132.0,140.0,129.0,142.0,116.0,112.0,95.0,112.0,129.0,113.0,87.0,115.0,108.0,117.0,98.0,123.0,91.0,90.0,82.0,101.0,91.0,82.0,81.0,88.0,79.0,81.0,61.0,85.0,62.0,75.0,62.0,88.0,87.0,63.0,88.0,98.0,85.0,97.0,89.0,89.0,88.0,102.0,67.0,78.0,80.0,89.0,61.0,70.0,72.0,67.0,43.0,43.0,38.0,45.0,35.0,36.0,29.0,28.0,17.0,22.0,19.0,25.0,13.0,13.0,15.0,11.0,16.0,10.0,11.0,7.0,10.0,11.0,4.0,6.0,6.0,2.0,6.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2423,4984,796,0,781,814,828,749,639,536,561,455,411,345,424,448,416,313,197,115,77,54,29,9,2,0,8116,29,36,22,0,8119,31,31,22,0,1954,70,318,1173,217,28,2022,2421,0,3565,4598,40,0,10,2294,17,0,1,0,3,0,1,0,5877,0,251,228,705,43,0,12,1620,5344,0,1050,2256,570,124,1,4202,0,2.3893832463945994,0.0,3.4512867647058822,0.0,6.971961477508229,75,72,276,18,0,2,510,1492,0,215,137,138,249,436,437,273,157,243,87,38,13,15,2,0,2,2388,57,2057,388,2015,430,381,2064,2143,302,280,2165,1645,800,46,2399,2289,156,2080,365,973,1107,449,1996,1602,843,569,1876,925,1520,510,1935,22,2423,554,1248,580,63,0,1661,784,0,4,554,6,0,0,0,0,0,0,0,1881,0,1.7014314928425358,1.6535787321063395,1.1,1.0545454545454545,1.0545454545454545,51.40081799591002 +,20614,Coclé,Penonomé,Las Minas,1015,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,233,470,28,631,74,0,0,0,28,0,409,0,8,229,0,1,86,0,0,83,5,608,8,29,0,0,520,211,0,0,0,2,733,0,182,63,1,20,17,0,0,2,718,13,0,0,523,52,77,15,9,57,0,719,4,1,0,0,9,0,58,592,0,80,3,0,0,539,157,8,1,14,0,4,0,1,8,1,0,1016,5.775862068965517,15.369252873563218,6.048850574712644,18.80603448275862,1.0081855388813097,3.319236016371078,2.130968622100955,739,461,1110,43,179,16,28,28,6,39,2,3,8,0,40,24,8,7,11,11,9,1603,914,0,189,2328,0,842,1675,0,2326,191,0,653,1864,0,637,16,1778,86,0,91,27,38,6,58,71,141,107,97,841,3,2,2,85,97,244,62,96,359,0,0,3,21,22,15,17,10,0,0,2,0,0,0,0,0,1651,35,587,0,0,23,5,18,224,247,78,20,214,801,107,59,41,2,445,0,0,1435,1227,61,298,121,943,5,0,241,0,99,239,15,230,4,0,0,1821,391,2,2,20,35,0,2,0,0,1,6,11,13,15,108,367,726,26,413,1457,222,296,248,179,110,98,26,17,3,1,0,1,0,0,4,42.0,28.0,36.0,39.0,46.0,43.0,40.0,34.0,46.0,35.0,57.0,45.0,53.0,51.0,59.0,49.0,51.0,59.0,45.0,49.0,57.0,50.0,55.0,41.0,47.0,35.0,52.0,34.0,38.0,38.0,37.0,31.0,29.0,34.0,21.0,25.0,24.0,34.0,30.0,30.0,36.0,42.0,23.0,30.0,28.0,27.0,32.0,24.0,24.0,39.0,35.0,23.0,25.0,40.0,27.0,19.0,21.0,26.0,27.0,35.0,24.0,18.0,16.0,18.0,22.0,22.0,13.0,17.0,23.0,12.0,17.0,17.0,17.0,15.0,11.0,18.0,13.0,17.0,10.0,18.0,7.0,11.0,7.0,12.0,9.0,8.0,6.0,6.0,6.0,5.0,4.0,1.0,3.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,654,1676,332,0,191,198,265,253,250,197,152,143,159,146,150,128,98,87,77,76,46,31,12,3,0,0,2653,0,4,5,0,2653,1,3,5,0,790,9,62,291,94,4,758,654,0,1799,860,3,0,1,15,0,0,0,0,0,0,0,128,2518,0,10,165,526,9,35,2,1560,355,0,184,394,30,2,1,2051,0,2.6193236714975847,0.0,3.737226277372263,0.0,6.6115702479338845,4,36,162,3,2,1,450,81,0,32,30,67,84,144,129,87,72,62,22,9,0,1,0,0,0,670,69,341,398,323,416,62,677,222,517,7,732,372,367,3,736,533,206,402,337,274,128,58,681,190,549,56,683,542,197,479,260,8,731,115,446,172,6,0,593,146,0,0,2,0,0,0,0,0,0,0,32,705,0,1.9418132611637349,1.6603518267929636,1.0,1.0526315789473684,1.0526315789473684,54.27740189445196 +,20611,Coclé,Penonomé,Boca de Tucué,773,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,419,18,459,41,0,0,0,18,0,9,0,9,353,3,5,138,0,1,1,1,453,7,55,0,1,241,275,0,0,0,2,518,0,161,13,2,58,22,0,0,1,495,22,0,0,170,328,2,1,3,14,0,482,0,0,0,1,35,0,8,290,3,197,20,0,0,365,51,17,3,67,0,9,0,0,6,0,0,774,6.127403846153846,20.596153846153847,6.908653846153846,23.641826923076923,1.001930501930502,3.063706563706564,1.9092664092664091,519,361,932,58,146,6,13,10,3,33,1,1,6,1,18,13,8,3,9,7,9,896,1055,0,41,1910,0,324,1627,0,1761,190,0,602,1349,0,593,9,1251,98,0,99,37,35,5,56,74,121,93,82,658,0,0,0,67,90,209,44,62,189,0,1,7,3,6,7,3,2,1,0,0,0,0,0,0,0,923,13,757,0,0,3,3,13,346,335,30,33,80,106,27,19,10,1,684,1,0,1131,959,26,162,18,505,2,0,215,0,85,104,11,547,16,0,0,1474,206,0,0,3,9,1,0,0,0,0,1,6,6,6,44,604,92,8,169,1639,169,68,96,46,26,18,7,3,2,0,0,0,0,0,16,32.0,25.0,48.0,34.0,41.0,42.0,42.0,37.0,53.0,43.0,46.0,49.0,47.0,43.0,58.0,49.0,58.0,46.0,28.0,35.0,30.0,34.0,33.0,44.0,23.0,34.0,21.0,23.0,32.0,24.0,20.0,22.0,18.0,21.0,27.0,27.0,20.0,25.0,26.0,24.0,28.0,21.0,25.0,22.0,14.0,28.0,21.0,25.0,26.0,27.0,22.0,24.0,11.0,21.0,21.0,18.0,15.0,16.0,29.0,17.0,16.0,15.0,13.0,18.0,17.0,8.0,11.0,9.0,12.0,12.0,11.0,15.0,6.0,11.0,9.0,11.0,12.0,4.0,8.0,9.0,6.0,8.0,3.0,4.0,4.0,4.0,2.0,8.0,4.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,640,1254,196,0,180,217,243,216,164,134,108,122,110,127,99,95,79,52,52,44,25,18,5,0,0,0,2078,0,0,12,0,2078,0,0,12,0,593,4,61,230,54,2,506,640,0,1323,767,0,0,10,5,0,0,0,0,0,1,0,10,2064,0,6,37,104,3,1,0,264,1675,0,52,167,14,1,0,1856,0,3.0249343832021,0.0,4.5711340206185564,0.0,5.843062200956938,0,8,43,0,1,0,85,382,0,73,45,88,107,109,46,25,8,14,2,2,0,0,0,0,0,401,118,24,495,63,456,62,457,14,505,3,516,171,348,2,517,279,240,124,395,69,55,7,512,7,512,10,509,418,101,352,167,9,510,78,326,111,4,0,452,67,0,1,0,0,0,0,0,0,0,0,3,515,0,2.179190751445087,1.8477842003853564,1.0,1.125,1.125,53.70327552986512 +,20615,Coclé,Penonomé,Riecito,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,270,6,255,20,0,0,0,6,0,0,0,5,192,2,4,74,0,4,0,0,239,16,23,3,0,30,250,1,0,0,0,281,0,59,6,0,18,3,0,0,0,275,6,0,0,4,277,0,0,0,0,0,245,0,0,0,1,35,0,3,42,0,151,85,0,0,110,94,3,23,36,1,9,0,0,5,0,0,367,6.480392156862745,19.70098039215686,6.96078431372549,23.485294117647054,1.00711743772242,3.580071174377224,2.3558718861209966,283,200,638,24,90,15,13,19,3,14,6,4,6,0,6,8,2,5,5,0,5,555,649,0,18,1186,0,227,977,0,1077,127,0,379,825,0,378,1,742,83,0,83,14,21,2,43,49,71,60,44,418,0,0,1,44,44,206,23,26,50,0,0,1,1,0,2,0,1,0,0,0,0,0,0,0,0,633,4,384,0,0,0,0,0,158,184,10,32,27,10,6,4,6,2,582,0,0,693,622,14,110,6,289,2,0,216,0,83,49,6,380,36,0,0,965,53,1,0,0,2,0,0,0,0,0,2,3,4,3,12,490,5,3,115,1090,77,41,29,16,13,6,5,2,0,0,0,0,0,0,36,29.0,28.0,28.0,26.0,32.0,30.0,27.0,28.0,29.0,37.0,44.0,28.0,40.0,35.0,38.0,28.0,37.0,32.0,36.0,25.0,23.0,19.0,19.0,23.0,11.0,14.0,17.0,19.0,16.0,12.0,9.0,18.0,14.0,12.0,12.0,15.0,14.0,16.0,16.0,18.0,18.0,9.0,15.0,6.0,11.0,11.0,9.0,13.0,11.0,10.0,13.0,13.0,11.0,11.0,7.0,10.0,12.0,10.0,6.0,9.0,8.0,6.0,12.0,7.0,12.0,7.0,7.0,12.0,4.0,7.0,7.0,10.0,4.0,4.0,3.0,1.0,4.0,4.0,4.0,3.0,4.0,4.0,2.0,0.0,2.0,2.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,479,735,101,0,143,151,185,158,95,78,65,79,59,54,55,47,45,37,28,16,12,7,1,0,0,0,1302,0,0,13,0,1302,0,0,13,0,370,4,39,89,39,1,297,476,0,911,404,0,0,1,0,0,0,0,0,0,0,0,12,1302,0,5,34,25,2,0,0,389,860,0,5,29,1,0,0,1280,0,2.896265560165975,0.0,4.8088235294117645,0.0,5.352091254752851,0,9,6,1,0,0,88,179,0,58,24,42,47,62,29,8,4,7,0,1,0,0,0,0,1,83,200,9,274,5,278,29,254,2,281,1,282,123,160,1,282,138,145,45,238,10,35,2,281,5,278,2,281,257,26,235,48,3,280,34,155,89,5,0,247,36,0,0,0,0,0,0,0,0,0,0,3,280,0,2.4487632508833923,2.197879858657244,0.0,1.0,1.0,50.3356890459364 +,20616,Coclé,Penonomé,San Miguel,650,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,63,395,14,445,16,0,1,0,13,0,0,0,4,374,1,0,94,0,2,0,1,398,19,57,0,0,186,288,0,1,0,0,475,0,99,8,2,39,29,0,0,2,463,10,0,0,215,246,4,2,2,6,0,431,0,2,0,0,42,0,10,291,0,170,4,0,0,281,68,3,0,117,0,5,0,0,1,0,0,652,6.527220630372493,22.011461318051577,7.0,24.0,1.0063157894736845,3.4021052631578947,2.0610526315789475,478,336,979,18,144,4,19,14,5,32,4,1,4,0,39,43,12,3,20,2,1,751,1125,0,41,1835,0,173,1703,0,1681,195,0,533,1343,0,530,3,1244,99,0,102,28,42,4,67,83,149,81,89,619,0,0,0,58,57,243,40,54,137,1,0,3,3,4,5,2,3,0,0,2,0,0,0,0,0,1166,2,454,0,0,0,1,6,104,222,27,95,56,20,14,28,6,1,1040,2,1,1129,909,15,135,26,418,0,0,573,1,115,119,20,550,8,0,0,1462,146,0,0,2,10,0,2,0,0,1,4,7,6,4,31,965,12,7,131,1479,199,94,149,58,26,13,5,3,2,1,0,1,0,0,8,36.0,46.0,45.0,35.0,49.0,45.0,30.0,58.0,41.0,31.0,44.0,49.0,49.0,42.0,52.0,32.0,53.0,46.0,42.0,34.0,41.0,37.0,34.0,30.0,26.0,31.0,23.0,34.0,22.0,30.0,20.0,30.0,20.0,21.0,24.0,22.0,18.0,13.0,15.0,14.0,17.0,21.0,16.0,21.0,23.0,20.0,18.0,14.0,22.0,24.0,18.0,14.0,17.0,22.0,13.0,17.0,14.0,23.0,21.0,15.0,14.0,16.0,16.0,13.0,16.0,12.0,15.0,10.0,14.0,14.0,10.0,7.0,12.0,12.0,7.0,11.0,8.0,9.0,9.0,7.0,8.0,7.0,5.0,5.0,6.0,9.0,8.0,5.0,8.0,1.0,1.0,2.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,652,1157,229,0,211,205,236,207,168,140,115,82,98,98,84,90,75,65,48,44,31,31,7,3,0,0,2031,0,0,7,0,2031,0,0,7,0,532,4,56,237,61,2,494,652,0,1391,647,0,0,0,0,0,0,0,0,0,0,0,8,2030,0,7,158,38,0,2,0,273,1560,0,32,85,7,2,0,1912,0,3.1410437235543016,0.0,4.741150442477876,0.0,5.5014720314033365,1,47,13,0,0,0,79,338,0,63,37,51,87,122,63,18,15,15,3,2,1,1,0,0,0,325,153,9,469,33,445,84,394,6,472,1,477,178,300,8,470,259,219,97,381,24,73,10,468,24,454,9,469,409,69,337,141,21,457,60,298,117,3,0,428,50,0,0,0,0,0,0,0,0,0,0,1,477,0,2.3619246861924688,1.901673640167364,0.0,1.0416666666666667,1.0416666666666667,54.94769874476987 +,20612,Coclé,Penonomé,Candelario Ovalle,936,2,0,0,0,0,0,0,2,0,0,0,1,0,0,0,84,629,45,625,88,0,1,0,44,0,6,0,46,531,19,15,135,0,6,51,0,607,15,77,0,8,332,403,0,1,0,22,758,1,122,21,1,27,8,0,1,1,738,16,2,0,238,497,5,0,1,17,0,731,0,0,0,0,26,1,16,444,1,288,9,0,0,257,319,30,3,132,0,5,0,0,10,2,0,941,6.873263888888889,23.40798611111111,6.994791666666667,23.93402777777778,1.0065963060686016,3.558047493403694,2.4683377308707124,764,547,1791,28,299,20,31,16,8,81,8,4,18,0,22,22,5,8,21,6,17,1628,1737,0,133,3232,0,755,2610,0,3094,271,0,1115,2250,0,1108,7,2156,94,0,95,55,81,9,90,99,182,144,164,1175,1,0,0,89,130,477,94,86,330,4,3,8,8,11,13,9,7,0,1,0,0,0,0,0,0,1453,27,1422,0,0,10,10,3,597,699,61,62,105,99,42,98,42,2,1076,4,1,1925,1690,30,231,92,501,10,1,603,1,154,161,12,1361,74,0,0,2508,369,0,1,4,20,0,0,0,0,1,9,11,5,22,68,912,78,22,352,2804,208,142,106,128,80,48,12,6,2,2,2,1,0,0,74,69.0,56.0,68.0,57.0,70.0,80.0,73.0,82.0,79.0,79.0,81.0,87.0,87.0,81.0,100.0,94.0,86.0,103.0,91.0,87.0,82.0,96.0,60.0,59.0,66.0,41.0,45.0,62.0,40.0,44.0,42.0,38.0,37.0,36.0,31.0,32.0,35.0,34.0,45.0,38.0,39.0,37.0,38.0,41.0,24.0,36.0,29.0,40.0,33.0,40.0,39.0,35.0,28.0,22.0,25.0,30.0,25.0,33.0,27.0,23.0,24.0,24.0,22.0,21.0,18.0,24.0,20.0,23.0,17.0,19.0,10.0,13.0,14.0,13.0,14.0,9.0,9.0,7.0,8.0,6.0,11.0,13.0,5.0,6.0,3.0,10.0,8.0,5.0,7.0,5.0,1.0,2.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1149,2177,289,0,320,393,436,461,363,232,184,184,179,178,149,138,109,103,64,39,38,35,5,4,1,0,3585,4,2,24,0,3585,4,2,24,0,1063,6,74,315,81,6,921,1149,0,2499,1113,3,0,4,10,0,0,0,0,0,0,1,78,3522,0,3,89,146,1,0,0,721,2655,0,61,200,5,2,0,3347,0,2.865727002967359,0.0,4.563432835820896,0.0,6.105117565698478,1,18,32,1,0,0,182,530,0,179,56,86,93,138,86,50,29,31,11,1,0,2,0,1,0,581,183,25,739,50,714,160,604,16,748,2,762,445,319,4,760,508,256,208,556,147,61,34,730,168,596,23,741,598,166,520,244,6,758,91,440,226,7,2,640,124,0,1,3,0,0,0,0,0,0,1,18,741,0,2.5130548302872064,2.206266318537859,1.0,1.0196078431372548,1.0196078431372548,52.04319371727749 +PA030605,20606,Coclé,Penonomé,Pajonal,2456,7,2,0,0,0,0,0,0,0,0,3,0,0,0,1,815,1032,87,1757,91,1,0,0,86,0,1276,0,37,288,17,23,293,0,1,190,10,1411,14,301,1,8,1396,481,1,2,0,55,1935,1,404,65,4,29,27,0,2,11,1857,52,13,0,1684,35,82,60,30,44,0,1902,1,11,0,2,19,0,229,1505,0,201,0,0,0,1666,128,37,3,65,0,4,0,8,18,6,0,2468,6.59866220735786,20.911371237458194,6.8595317725752505,23.023411371237454,1.013953488372093,3.2196382428940566,2.096124031007752,1965,1131,3122,110,881,34,99,90,13,185,14,13,21,0,116,90,33,48,46,224,70,4905,2307,0,670,6542,0,2879,4333,0,6762,450,0,1976,5236,0,1918,58,4993,243,0,246,66,136,17,161,198,261,247,247,2422,0,1,3,206,260,721,147,247,1164,2,8,58,59,72,115,89,30,11,5,13,0,0,0,0,0,2884,375,3156,0,5,228,31,140,1208,1487,198,123,860,511,585,284,182,11,646,23,4,3975,3703,171,1036,287,1311,6,3,288,4,112,455,37,2312,6,0,0,4785,1336,3,9,48,211,10,13,0,0,4,22,94,65,72,462,720,514,116,1190,4989,689,356,384,424,313,334,82,61,25,12,1,2,0,0,6,134.0,114.0,106.0,112.0,135.0,136.0,124.0,130.0,137.0,135.0,129.0,158.0,126.0,155.0,151.0,134.0,148.0,125.0,160.0,125.0,121.0,126.0,138.0,133.0,129.0,135.0,126.0,120.0,132.0,118.0,136.0,124.0,111.0,87.0,115.0,106.0,100.0,99.0,113.0,114.0,105.0,104.0,63.0,87.0,55.0,94.0,76.0,91.0,66.0,75.0,67.0,72.0,89.0,74.0,78.0,67.0,82.0,62.0,68.0,61.0,77.0,60.0,59.0,53.0,54.0,50.0,51.0,41.0,46.0,44.0,40.0,32.0,34.0,29.0,43.0,31.0,30.0,36.0,38.0,20.0,23.0,24.0,28.0,17.0,17.0,18.0,9.0,20.0,15.0,9.0,9.0,6.0,5.0,4.0,3.0,3.0,3.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1982,4914,782,0,601,662,719,692,647,631,573,532,414,402,380,340,303,232,178,155,109,71,27,6,4,0,7650,7,5,16,0,7650,9,3,16,0,2241,22,433,757,255,7,1981,1982,0,5729,1942,7,0,9,14,1,0,1,9,2,6,2,30,7604,0,50,136,232,3,1,6,1872,5378,0,657,1254,170,21,1,5575,0,2.4705501618122976,0.0,3.63560157790927,0.0,6.974602761135713,9,39,67,1,1,3,521,1324,0,220,135,159,214,327,294,213,131,155,57,30,10,11,3,2,1,1788,177,1044,921,844,1121,166,1799,639,1326,22,1943,917,1048,19,1946,1693,272,1116,849,540,576,253,1712,837,1128,188,1777,1094,871,868,1097,34,1931,278,1050,622,15,0,1293,672,0,2,1,0,0,0,2,0,1,0,8,1951,0,2.0229007633587788,1.8844783715012725,1.0,1.0526315789473684,1.0526315789473684,53.15368956743003 +,130106,Panamá Oeste,Arraiján,Vista Alegre,7387,158,608,148,0,0,0,7,0,0,0,0,8,0,0,3314,2775,426,79,6126,389,0,2,0,59,18,6418,138,3,13,0,10,11,0,1,5459,476,576,34,13,7,29,6400,34,77,0,0,83,6594,23,493,285,332,497,77,0,1020,1058,4210,167,22,117,6432,22,1,132,0,7,0,5741,271,561,21,0,0,0,4652,1819,7,113,1,2,6398,148,4,0,0,0,0,0,0,21,16,7,8060,256,6.610381679389313,19.317099236641223,6.650687022900764,19.42580152671756,1.0203215043979377,3.778283287837428,2.3742796481649986,6736,3530,6879,390,1832,368,349,311,107,411,116,105,262,21,346,133,81,118,115,63,99,18240,2148,0,8980,11408,0,17384,3004,0,19291,1097,0,5724,14664,0,3911,1813,14038,626,0,659,154,278,64,402,388,449,402,434,1650,4,9,266,629,775,1735,642,1053,4687,28,118,404,563,788,990,1192,884,140,47,528,0,1,1,24,0,8447,1147,8930,0,26,356,267,2239,3383,2840,226,242,6945,478,987,232,601,60,18,26,19,10468,10949,1875,4865,259,2208,98,3,26,32,50,277,54,5833,367,0,0,7792,6589,283,128,379,2712,121,499,21,0,39,656,1452,1138,805,1841,75,1495,683,1410,8845,1102,480,703,1221,1500,2418,1564,1500,773,413,187,194,69,81,367,230.0,272.0,252.0,275.0,309.0,305.0,303.0,339.0,305.0,303.0,317.0,323.0,299.0,314.0,293.0,275.0,310.0,275.0,330.0,280.0,320.0,347.0,365.0,351.0,341.0,398.0,367.0,352.0,341.0,314.0,322.0,292.0,315.0,311.0,322.0,273.0,307.0,306.0,266.0,288.0,260.0,242.0,256.0,264.0,239.0,259.0,227.0,232.0,227.0,234.0,261.0,268.0,242.0,246.0,269.0,269.0,257.0,241.0,278.0,268.0,310.0,278.0,312.0,282.0,241.0,230.0,232.0,189.0,205.0,183.0,177.0,128.0,126.0,125.0,108.0,120.0,73.0,71.0,61.0,64.0,54.0,60.0,35.0,46.0,32.0,44.0,28.0,21.0,29.0,18.0,16.0,15.0,14.0,8.0,12.0,5.0,5.0,2.0,2.0,5.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4439,14430,2548,0,1338,1555,1546,1470,1724,1772,1562,1440,1261,1179,1286,1313,1423,1039,664,389,227,140,65,19,5,0,19993,917,462,45,0,20001,1005,366,45,0,4455,305,1602,4290,735,300,5292,4438,0,6903,13973,541,0,1923,452,24,1,0,0,81,3,1,310,18622,0,1651,816,985,252,93,70,4240,13310,0,5351,4668,2352,106,64,8876,0,1.815742208135235,0.0,2.6128625472887768,0.0,9.937432880422094,567,315,357,123,42,36,1394,3902,0,300,141,103,203,369,529,710,644,1074,752,538,389,446,184,258,88,6615,121,6313,423,5840,896,1149,5587,6261,475,2700,4036,3525,3211,2018,4718,6477,259,6203,533,4640,1563,3211,3525,5786,950,3398,3338,702,6034,241,6495,73,6663,1242,3286,2004,204,7,3806,2930,0,285,151,12,0,0,0,25,0,1,124,6138,0,1.5524247367640516,1.623757971229423,1.2644628099173554,1.0610328638497653,1.0610328638497653,51.976840855106886 +,50317,Darién,Santa Fe,Zapallal,1708,7,74,1,0,0,0,0,1,0,0,0,0,0,0,1,381,711,73,1053,40,9,3,0,59,2,768,297,4,37,1,10,41,0,8,289,43,805,16,12,1,0,1123,27,1,0,0,15,1166,0,309,135,24,104,52,0,5,45,1042,74,0,0,520,602,0,27,1,15,1,1120,1,7,1,0,37,0,141,646,0,236,142,1,624,385,20,16,2,0,19,31,4,21,17,27,0,1791,4.4917395529640425,14.289601554907676,5.521865889212828,17.118561710398446,1.0111492281303602,2.978559176672384,1.7950257289879932,1179,679,1632,129,237,29,45,33,10,51,15,13,62,1,29,9,7,22,27,3,13,2810,929,0,550,3189,0,1299,2440,0,3210,529,0,1379,2360,0,1309,70,2000,360,0,365,79,72,9,162,195,197,170,176,524,0,0,3,157,194,246,119,172,508,12,18,42,48,70,42,61,59,5,6,26,0,1,0,1,0,1414,94,1661,0,10,36,23,14,754,704,86,103,551,97,128,21,103,7,561,21,0,2104,2011,219,419,21,724,68,1,36,1,102,155,29,1407,8,0,0,2267,696,3,7,32,134,6,23,1,0,1,45,73,76,74,164,490,183,97,305,2675,334,102,163,206,248,154,61,91,34,16,7,6,2,8,8,91.0,117.0,91.0,77.0,96.0,95.0,87.0,110.0,97.0,85.0,100.0,92.0,68.0,88.0,71.0,67.0,78.0,86.0,96.0,75.0,83.0,75.0,65.0,76.0,57.0,70.0,66.0,60.0,68.0,58.0,61.0,69.0,66.0,59.0,55.0,65.0,54.0,56.0,54.0,49.0,42.0,41.0,46.0,41.0,40.0,45.0,37.0,37.0,28.0,36.0,43.0,25.0,32.0,31.0,29.0,34.0,26.0,32.0,19.0,24.0,30.0,21.0,17.0,32.0,20.0,14.0,16.0,17.0,21.0,19.0,8.0,10.0,20.0,21.0,16.0,13.0,8.0,12.0,6.0,8.0,14.0,7.0,6.0,5.0,11.0,5.0,4.0,4.0,5.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1365,2476,274,0,472,474,419,402,356,322,310,278,210,183,160,135,120,87,75,47,43,18,3,1,0,0,3991,35,44,45,0,3992,41,37,45,0,1223,40,159,389,47,8,884,1365,0,1758,2293,64,0,5,141,2,0,0,0,295,459,0,100,3113,0,90,96,234,49,38,5,703,2900,0,368,436,19,2,0,3290,0,2.5497076023391814,0.0,3.6728155339805824,0.0,6.351154313487242,27,30,72,30,11,3,215,791,0,169,82,69,115,163,165,117,67,120,45,20,16,13,4,12,2,1148,31,809,370,879,300,127,1052,913,266,100,1079,485,694,14,1165,1049,130,671,508,522,149,193,986,694,485,252,927,448,731,360,819,22,1157,245,673,230,31,1,865,314,0,1,36,1,0,0,0,65,98,0,13,965,0,1.7830508474576272,1.7042372881355932,2.0,1.0,1.0,46.20101781170484 +PA050204,50208,Darién,Pinogana,Metetí,4057,25,453,103,0,0,0,0,4,0,0,3,0,1,0,0,2007,942,115,2789,160,46,1,0,66,2,2744,0,9,169,15,13,107,0,7,1992,54,924,37,41,3,13,2925,55,13,0,0,71,3064,3,849,222,167,223,110,0,11,328,2453,267,4,1,1884,1115,2,15,3,44,1,2982,4,11,12,0,53,2,756,1709,1,212,386,0,1489,1167,14,6,7,6,70,93,1,157,50,4,1222,3424,5.489513108614232,21.60749063670412,6.1243445692883896,22.58576779026217,1.0068537859007831,3.140013054830287,1.9761749347258488,3088,1720,3482,396,446,56,94,67,20,142,24,20,135,1,101,47,16,65,31,15,23,7649,1329,1,2081,6897,1,6823,2155,1,7998,980,1,3041,5937,1,2692,349,5365,572,0,589,130,187,14,274,322,396,282,345,1387,1,1,4,368,477,631,309,342,1479,4,25,209,225,199,280,216,153,29,10,87,0,0,0,3,1,4184,196,3482,1,20,70,48,63,1651,1475,184,109,2106,215,331,56,376,5,1232,25,0,5075,4616,901,1488,50,1640,119,1,143,4,123,331,58,2337,26,1,1,4936,2110,4,36,123,558,22,70,3,1,4,211,353,239,193,798,848,429,348,957,4900,695,429,558,652,780,561,279,442,167,94,30,32,16,30,26,180.0,185.0,167.0,180.0,172.0,193.0,190.0,193.0,198.0,170.0,174.0,188.0,164.0,165.0,165.0,201.0,195.0,195.0,179.0,164.0,163.0,165.0,168.0,162.0,171.0,176.0,185.0,177.0,148.0,158.0,161.0,125.0,169.0,131.0,140.0,119.0,150.0,129.0,138.0,130.0,129.0,106.0,134.0,103.0,103.0,119.0,108.0,96.0,96.0,88.0,125.0,103.0,92.0,85.0,102.0,87.0,94.0,75.0,88.0,78.0,76.0,71.0,62.0,70.0,47.0,53.0,52.0,52.0,41.0,44.0,37.0,32.0,30.0,33.0,28.0,36.0,34.0,25.0,30.0,17.0,11.0,15.0,19.0,9.0,11.0,16.0,7.0,7.0,6.0,2.0,7.0,4.0,4.0,2.0,1.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2684,6336,671,0,884,944,856,934,829,844,726,666,575,507,507,422,326,242,160,142,65,38,18,6,0,0,9419,117,109,45,1,9429,121,95,45,1,2918,74,844,1128,148,35,1860,2683,1,3586,5989,115,1,17,317,6,0,1,1,881,161,0,64,8242,1,230,123,401,98,11,7,1558,7262,1,1280,1383,67,3,8,6949,1,2.2685683530678147,0.0002691065662002,3.2757382282521945,0.0003990422984836,7.5028376844494895,88,41,151,46,4,3,542,2212,1,115,159,127,241,394,443,369,245,416,208,130,67,84,44,41,2,3010,78,2450,638,2452,636,471,2617,2489,599,432,2656,1335,1753,122,2966,2798,290,1955,1133,1789,166,904,2184,2074,1014,1038,2050,1323,1765,1516,1572,57,3031,734,1718,548,88,5,2275,813,0,5,82,3,0,0,0,174,31,0,18,2774,1,1.640801810539929,1.492402198512771,1.3636363636363635,1.0138888888888888,1.0138888888888888,47.24773316062176 +PA050107,50101,Darién,Chepigana,La Palma,1566,1,2,0,0,0,1,0,0,0,0,0,1,0,0,315,153,267,347,691,44,57,4,251,31,4,793,0,90,110,9,27,43,0,10,627,3,396,42,8,6,0,1021,42,0,0,1,18,1082,0,214,65,12,138,58,0,0,121,894,65,1,1,549,511,0,8,6,1,7,1008,1,0,3,0,70,0,213,558,0,29,281,1,745,87,10,15,73,16,11,58,0,60,6,1,625,946,3.9168646080760094,9.34916864608076,4.364608076009501,10.11520190023753,1.0083179297597042,3.234750462107209,2.074861367837338,1092,598,1376,162,297,23,46,48,12,48,19,13,59,0,38,33,6,15,24,4,21,2586,899,0,659,2826,0,2228,1257,0,3049,436,0,1144,2341,0,1091,53,2074,267,0,278,50,78,10,122,146,146,164,190,408,0,0,2,157,222,229,115,152,697,5,12,31,34,35,43,59,70,6,0,23,0,0,0,1,0,1525,73,1397,0,1,47,17,91,678,497,76,55,689,91,94,9,98,3,282,294,0,2002,1791,462,227,9,790,28,1,43,0,101,118,32,945,2,0,0,1976,821,2,3,13,157,4,18,1,0,0,51,103,91,103,288,520,110,79,253,2091,228,199,241,271,148,257,119,114,68,17,7,16,3,12,2,87.0,74.0,74.0,73.0,87.0,82.0,82.0,94.0,71.0,74.0,93.0,75.0,74.0,75.0,65.0,76.0,71.0,98.0,82.0,81.0,62.0,65.0,76.0,53.0,52.0,57.0,47.0,44.0,48.0,41.0,60.0,36.0,44.0,45.0,44.0,36.0,40.0,47.0,44.0,47.0,41.0,53.0,45.0,41.0,45.0,39.0,43.0,35.0,26.0,49.0,53.0,40.0,47.0,26.0,34.0,30.0,43.0,22.0,29.0,26.0,38.0,33.0,19.0,32.0,22.0,22.0,22.0,21.0,24.0,20.0,15.0,16.0,18.0,17.0,22.0,6.0,7.0,7.0,17.0,9.0,2.0,11.0,10.0,7.0,7.0,3.0,2.0,5.0,2.0,2.0,5.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1180,2307,306,0,395,403,382,408,308,237,229,214,225,192,200,150,144,109,88,46,37,14,9,1,2,0,3670,41,54,28,0,3673,43,49,28,0,1081,13,126,362,66,15,950,1180,0,1965,1766,62,0,1,11,0,0,0,0,1037,146,0,14,2584,0,269,191,666,355,11,4,1062,1235,0,467,586,102,3,1,2634,0,2.613540197461213,0.0,3.6505652620760536,0.0,6.915370419193251,107,62,208,170,6,1,268,270,0,47,38,49,94,179,135,120,99,118,91,43,29,24,7,18,0,1041,51,735,357,768,324,106,986,763,329,120,972,455,637,90,1002,891,201,678,414,635,43,193,899,663,429,98,994,298,794,231,861,7,1085,248,557,257,30,1,753,339,0,1,5,0,0,0,0,199,37,0,2,848,0,1.8316559926806952,1.6386093321134492,1.0,1.1,1.1,49.80128205128205 +PA050105,50104,Darién,Chepigana,Garachiné,761,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,268,213,82,463,18,39,0,4,36,3,499,0,3,32,7,4,17,0,1,0,202,351,6,3,1,0,506,46,0,0,0,11,563,0,108,28,3,50,11,0,0,42,494,27,0,0,268,274,0,1,19,0,1,550,0,3,0,0,10,0,62,373,0,16,112,0,453,80,0,3,0,1,0,19,0,2,4,1,0,763,6.643527204502814,22.75234521575985,6.846153846153846,23.463414634146343,1.0035523978685612,3.3410301953818826,2.177619893428064,565,337,678,81,193,10,14,13,4,24,2,1,31,0,35,12,5,11,10,0,4,1129,654,0,210,1573,0,613,1170,0,1547,236,0,577,1206,0,562,15,1053,153,0,153,33,38,1,61,85,91,94,106,324,0,0,0,111,95,122,55,55,263,0,0,4,4,14,19,10,39,0,0,6,0,0,0,0,0,771,29,729,0,4,9,9,18,332,297,45,37,127,85,30,2,64,4,278,202,3,1039,914,98,45,0,569,31,1,48,3,81,74,16,540,34,0,0,1168,278,0,0,12,65,0,6,0,0,4,19,36,18,16,80,448,79,9,91,1295,219,87,88,66,35,41,14,27,20,13,1,8,1,4,34,50.0,45.0,39.0,36.0,55.0,42.0,36.0,44.0,46.0,31.0,41.0,48.0,47.0,41.0,52.0,49.0,32.0,39.0,25.0,31.0,23.0,28.0,22.0,27.0,29.0,22.0,17.0,26.0,23.0,25.0,27.0,19.0,17.0,18.0,28.0,36.0,18.0,22.0,17.0,16.0,19.0,18.0,15.0,22.0,22.0,23.0,16.0,21.0,19.0,20.0,31.0,19.0,18.0,17.0,22.0,21.0,14.0,14.0,22.0,13.0,12.0,11.0,15.0,14.0,20.0,18.0,13.0,12.0,17.0,12.0,18.0,6.0,12.0,13.0,11.0,7.0,6.0,9.0,5.0,3.0,7.0,2.0,5.0,6.0,4.0,6.0,1.0,3.0,1.0,1.0,1.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,653,1094,206,0,225,199,229,176,129,113,109,109,96,99,107,84,72,72,60,30,24,12,5,1,2,0,1890,31,23,9,0,1890,33,21,9,0,589,11,189,201,37,5,270,651,0,1006,910,37,0,1,23,2,0,0,0,795,9,2,5,1116,0,175,161,252,97,56,3,419,790,0,98,229,27,2,0,1597,0,3.0943396226415096,0.0,4.015968063872256,0.0,6.100358422939068,48,54,80,53,21,2,123,184,0,108,46,58,62,108,43,37,20,34,12,12,4,13,4,4,0,526,39,394,171,398,167,65,500,421,144,38,527,225,340,7,558,447,118,344,221,330,14,58,507,122,443,46,519,261,304,237,328,3,562,131,274,138,22,0,458,107,0,1,6,2,0,0,0,161,1,0,2,392,0,1.8389380530973447,1.6176991150442477,1.0,1.0526315789473684,1.0526315789473684,51.4141592920354 +PA040405,30401,Colón,Portobelo,Portobelo,2026,3,0,0,0,0,0,1,0,0,0,0,20,0,0,0,1292,84,31,1321,55,2,0,0,28,1,1358,0,2,17,4,5,20,0,1,986,0,404,1,13,1,2,1358,18,8,1,0,22,1407,1,405,74,46,42,54,0,0,126,1135,145,1,0,1341,42,0,19,0,5,0,1065,3,324,10,3,2,0,663,697,3,31,13,0,6,1179,148,13,0,19,0,11,0,28,1,2,0,2050,5.975993998499625,21.054013503375845,5.840210052513128,20.859714928732185,1.0142146410803128,3.434968017057569,2.181236673773987,1447,805,1765,198,344,35,54,48,15,92,15,11,79,2,47,23,6,22,16,19,5,3746,833,0,957,3622,0,3355,1224,0,4127,452,0,1417,3162,0,1311,106,2969,193,0,198,85,97,5,150,141,157,136,176,646,1,1,4,167,201,341,164,226,1112,1,2,53,69,84,118,59,148,9,5,20,0,0,0,3,0,2009,187,1796,0,2,122,20,157,794,708,50,87,1250,111,267,76,193,4,108,109,6,2499,2411,436,900,75,660,38,0,9,6,4,122,12,1379,6,0,0,2304,1318,4,6,53,277,8,19,3,0,6,86,104,132,141,405,101,338,242,641,2479,283,174,263,332,355,577,187,157,48,24,5,11,3,6,6,80.0,81.0,87.0,83.0,95.0,103.0,107.0,112.0,87.0,83.0,98.0,120.0,71.0,92.0,85.0,71.0,81.0,78.0,71.0,88.0,69.0,78.0,79.0,95.0,75.0,99.0,103.0,78.0,64.0,71.0,72.0,69.0,68.0,61.0,73.0,63.0,53.0,66.0,67.0,73.0,61.0,69.0,62.0,71.0,48.0,53.0,71.0,48.0,71.0,58.0,45.0,40.0,45.0,49.0,39.0,41.0,51.0,37.0,44.0,42.0,45.0,40.0,35.0,41.0,47.0,27.0,40.0,22.0,22.0,23.0,23.0,23.0,25.0,20.0,20.0,18.0,13.0,21.0,13.0,14.0,8.0,9.0,8.0,11.0,10.0,6.0,3.0,3.0,8.0,2.0,1.0,3.0,1.0,2.0,1.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,1384,3118,407,1,426,492,466,389,396,415,343,322,311,301,218,215,208,134,111,79,46,22,8,6,1,1,4720,102,76,12,0,4724,116,58,12,0,1414,37,424,567,134,13,937,1384,0,2399,2394,117,0,52,132,10,1,1,0,102,5,0,68,4539,0,540,413,274,168,15,6,1536,1958,0,829,933,161,9,21,2957,0,2.1611909650924024,0.0,3.0966514459665144,0.0,7.904887983706721,177,114,82,69,5,4,427,569,0,45,35,37,92,154,196,211,151,244,126,62,27,31,6,7,3,1403,44,1271,176,1194,253,167,1280,1292,155,331,1116,502,945,143,1304,1328,119,1137,310,997,140,356,1091,982,465,455,992,315,1132,270,1177,7,1440,290,761,343,53,1,970,477,1,10,26,4,1,0,0,25,2,0,27,1352,0,1.725828729281768,1.6650552486187846,1.0,1.0377358490566038,1.0377358490566038,49.479944674965424 +,10210,Bocas del Toro,Changuinola,Las Delicias,549,5,0,0,0,0,0,0,5,0,0,0,0,0,0,1,81,233,38,291,24,3,10,0,17,8,72,0,1,96,18,48,118,0,0,0,0,275,18,60,0,0,178,172,0,0,0,3,353,0,119,27,0,22,33,0,1,5,297,50,0,0,25,290,0,3,22,13,0,282,0,0,0,0,70,1,7,53,0,11,259,23,0,119,58,6,2,33,5,127,0,0,3,0,0,559,6.548022598870056,20.610169491525426,6.88135593220339,22.44632768361582,1.0056657223796035,3.3342776203966005,2.1643059490084986,355,220,838,20,206,10,13,20,2,46,7,1,35,0,13,15,1,1,2,1,9,552,1010,0,43,1519,0,271,1291,0,1191,371,0,420,1142,0,415,5,792,350,0,354,9,22,2,84,79,84,87,88,369,2,1,0,60,70,91,49,42,56,0,3,0,0,0,1,0,9,0,0,0,0,0,0,0,0,462,21,780,0,0,10,6,4,238,510,10,18,29,21,4,0,4,0,414,1,1,937,836,12,165,0,191,48,0,55,3,32,31,5,959,39,0,0,1194,59,0,2,1,7,0,0,0,0,3,17,1,6,5,12,292,14,7,126,1406,75,59,58,72,29,10,6,10,3,1,0,0,1,4,39,37.0,69.0,52.0,53.0,48.0,54.0,56.0,56.0,57.0,28.0,43.0,48.0,43.0,33.0,37.0,47.0,39.0,37.0,40.0,33.0,36.0,31.0,37.0,32.0,33.0,30.0,18.0,33.0,31.0,23.0,16.0,20.0,26.0,21.0,23.0,12.0,18.0,17.0,21.0,17.0,12.0,12.0,12.0,19.0,17.0,12.0,17.0,11.0,12.0,14.0,18.0,12.0,14.0,15.0,7.0,12.0,10.0,11.0,11.0,12.0,3.0,6.0,12.0,10.0,9.0,4.0,0.0,8.0,2.0,3.0,3.0,2.0,5.0,9.0,6.0,2.0,1.0,0.0,4.0,4.0,3.0,2.0,3.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,714,991,68,0,259,251,204,196,169,135,106,85,72,66,66,56,40,17,25,11,9,5,1,0,0,0,1478,163,2,130,0,1478,164,1,130,0,523,6,16,141,18,0,355,714,0,1230,456,87,0,1,1291,5,1,0,0,0,1,216,5,253,0,4,72,40,1,0,0,31,1625,0,28,74,4,0,0,1667,0,2.960616438356164,0.0,4.363395225464191,0.0,4.038917089678511,1,29,12,0,0,0,12,301,0,90,29,39,48,57,40,15,11,8,8,1,1,1,1,2,4,198,157,65,290,55,300,34,321,62,293,2,353,108,247,1,354,158,197,57,298,47,10,15,340,35,320,30,325,177,178,168,187,3,352,64,163,116,12,5,287,68,0,0,213,1,0,0,0,0,1,58,3,79,0,2.602777777777778,2.3222222222222224,1.5,1.0666666666666669,1.0666666666666669,46.44225352112676 +PA020802,40802,Chiriquí,Gualaca,Hornito,617,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,57,16,376,3,6,0,0,10,0,329,0,2,24,1,0,37,0,2,109,23,191,9,58,0,5,342,45,1,0,0,7,395,0,156,18,2,20,30,0,1,5,348,41,0,0,278,85,0,7,0,25,0,389,1,0,0,5,0,0,63,268,0,24,40,0,0,215,157,0,0,18,0,3,0,0,2,0,0,621,6.779569892473118,23.77956989247312,6.806451612903226,23.80913978494624,1.0025316455696205,3.356962025316456,1.9949367088607597,396,185,393,37,94,13,12,5,3,11,1,4,21,0,25,36,6,4,6,4,9,832,273,0,197,908,0,628,477,0,960,145,0,285,820,0,271,14,715,105,0,106,8,15,1,45,42,66,44,40,266,0,2,0,22,54,67,26,44,158,4,5,13,12,16,15,15,12,4,0,3,0,0,0,0,0,475,42,486,0,4,21,6,20,179,206,28,53,164,99,41,15,66,1,126,0,1,656,519,30,208,17,216,11,0,28,3,7,82,10,274,3,0,0,746,190,0,11,9,40,4,3,0,0,3,9,19,14,10,77,139,74,21,151,648,131,58,74,77,71,52,25,27,3,4,0,2,0,0,3,14.0,18.0,22.0,16.0,20.0,15.0,13.0,21.0,18.0,15.0,27.0,19.0,21.0,17.0,23.0,14.0,27.0,21.0,18.0,15.0,17.0,18.0,18.0,11.0,21.0,13.0,14.0,11.0,11.0,25.0,14.0,13.0,11.0,14.0,14.0,12.0,16.0,12.0,14.0,10.0,21.0,16.0,16.0,19.0,13.0,15.0,9.0,12.0,10.0,11.0,17.0,12.0,19.0,13.0,17.0,18.0,15.0,10.0,15.0,14.0,14.0,12.0,12.0,14.0,8.0,8.0,9.0,6.0,7.0,6.0,8.0,9.0,9.0,16.0,5.0,10.0,10.0,8.0,7.0,3.0,5.0,1.0,4.0,2.0,6.0,1.0,5.0,3.0,0.0,1.0,2.0,4.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,279,736,160,0,90,82,107,95,85,74,66,64,85,57,78,72,60,36,47,38,18,10,7,4,0,0,1143,7,4,21,0,1145,8,1,21,0,249,17,91,208,38,16,277,279,0,580,587,8,0,1,89,14,3,0,0,0,0,0,0,1068,0,21,14,60,1,17,0,26,1036,0,123,207,20,4,3,818,0,2.596846846846846,0.0,3.652317880794702,0.0,6.54468085106383,6,4,21,1,9,0,11,344,0,37,55,32,41,62,52,32,22,35,8,12,3,3,0,2,0,372,24,273,123,271,125,78,318,116,280,5,391,207,189,15,381,323,73,289,107,138,151,76,320,207,189,91,305,247,149,210,186,15,381,129,175,75,17,0,317,79,0,1,15,4,1,0,0,0,0,0,0,375,0,1.6565656565656566,1.3106060606060606,1.0,1.0555555555555556,1.0555555555555556,55.26262626262626 +PA050203,50209,Darién,Pinogana,Comarca Kuna de Wargandi,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,382,16,2,12,370,0,0,0,0,0,4,349,2,3,42,0,0,0,0,134,233,12,21,0,149,249,0,0,0,2,400,0,23,9,8,9,2,0,0,0,397,3,0,0,7,372,0,4,16,1,0,314,0,0,0,0,86,0,2,28,1,260,109,0,0,52,1,1,0,1,2,343,0,0,0,0,0,451,7.0,24.0,7.0,24.0,1.0025,1.9275,0.9125,401,324,1214,13,482,13,24,63,37,145,29,10,26,0,4,4,1,1,0,0,0,416,1989,0,24,2381,0,134,2271,0,1593,812,0,1015,1390,0,1002,13,699,691,0,695,43,62,1,94,134,165,151,167,226,0,0,0,112,112,196,80,61,70,3,0,11,14,2,1,5,0,0,0,0,0,0,0,0,0,1152,1,736,0,0,0,1,0,402,293,2,39,23,94,4,2,3,0,1023,3,0,1385,1396,19,25,0,709,8,0,391,0,241,35,4,1059,2,0,0,1783,102,0,0,0,4,0,0,0,0,0,4,3,7,3,26,998,78,3,31,2143,129,119,134,128,61,19,15,14,5,9,0,3,0,0,2,87.0,99.0,93.0,97.0,81.0,95.0,78.0,94.0,84.0,84.0,60.0,82.0,79.0,67.0,64.0,76.0,62.0,58.0,48.0,70.0,56.0,50.0,45.0,52.0,50.0,23.0,41.0,35.0,31.0,39.0,27.0,36.0,38.0,38.0,30.0,20.0,26.0,27.0,23.0,12.0,16.0,19.0,39.0,36.0,18.0,20.0,18.0,13.0,27.0,24.0,23.0,17.0,25.0,16.0,15.0,8.0,8.0,5.0,16.0,7.0,12.0,25.0,20.0,12.0,13.0,10.0,7.0,2.0,5.0,5.0,3.0,5.0,9.0,0.0,4.0,2.0,2.0,3.0,0.0,1.0,3.0,0.0,3.0,1.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1244,1465,72,0,457,435,352,314,253,169,169,108,128,102,96,44,82,29,21,8,9,3,1,1,0,0,2664,3,0,114,0,2664,3,0,114,0,954,6,178,59,32,0,310,1242,0,2690,88,3,0,2684,1,0,0,0,0,26,0,0,0,70,0,3,0,2,0,0,0,1,2775,0,10,2,2,0,0,2767,0,2.7048832271762207,0.0,3.7185534591194966,0.0,3.565623876303488,0,0,1,0,0,0,0,400,0,14,8,33,49,90,78,31,42,25,15,9,1,5,0,1,0,228,173,49,352,5,396,17,384,16,385,2,399,84,317,0,401,94,307,27,374,13,14,10,391,22,379,7,394,386,15,32,369,2,399,13,154,212,22,0,349,52,0,369,1,0,0,0,0,4,0,0,0,27,0,3.453865336658354,3.481296758104738,0.0,1.0,1.0,46.20199501246883 +PA050101,50313,Darién,Santa Fe,Agua Fría,1228,0,8,7,0,0,0,0,5,0,0,0,1,0,0,0,249,649,51,813,85,16,1,0,34,0,671,1,18,148,7,4,95,0,5,325,22,578,8,16,0,0,907,29,0,0,0,13,949,0,120,48,33,28,65,0,0,38,831,80,0,0,366,572,2,2,1,2,4,906,0,9,0,0,34,0,91,528,1,199,130,0,1,545,11,16,1,3,140,23,42,85,81,1,0,1249,3.1149012567324954,18.405745062836623,3.8043087971274687,18.926391382405747,1.0010537407797682,3.005268703898841,1.9146469968387776,951,594,1132,120,134,20,31,20,9,33,16,8,91,1,27,15,5,26,19,6,11,2245,706,0,424,2527,0,1674,1277,0,2580,371,0,924,2027,0,864,60,1800,227,0,229,43,62,0,106,129,169,127,146,605,1,0,3,120,132,216,71,112,401,1,2,46,47,49,46,52,13,7,3,12,0,1,0,0,0,1428,33,1123,0,0,8,14,15,501,521,30,56,440,88,53,20,176,4,675,2,1,1751,1409,128,545,13,644,42,4,81,2,42,123,12,965,2,0,0,1898,549,3,6,27,83,5,12,1,0,5,37,62,47,30,159,463,118,125,415,1759,255,102,180,228,262,165,77,66,27,20,1,6,2,8,2,47.0,57.0,52.0,53.0,62.0,64.0,64.0,49.0,56.0,72.0,59.0,74.0,50.0,52.0,65.0,51.0,60.0,60.0,68.0,62.0,45.0,52.0,49.0,51.0,52.0,53.0,43.0,61.0,45.0,57.0,46.0,44.0,44.0,53.0,45.0,58.0,47.0,47.0,47.0,40.0,45.0,41.0,30.0,43.0,48.0,27.0,32.0,37.0,25.0,25.0,37.0,24.0,34.0,29.0,32.0,22.0,32.0,34.0,28.0,25.0,32.0,20.0,25.0,27.0,15.0,11.0,9.0,19.0,21.0,8.0,13.0,17.0,17.0,16.0,16.0,11.0,8.0,10.0,10.0,4.0,12.0,4.0,7.0,3.0,3.0,1.0,3.0,3.0,2.0,2.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,876,2049,235,0,271,305,300,301,249,259,232,239,207,146,156,141,119,68,79,43,29,11,5,0,0,0,3101,15,19,25,0,3101,15,19,25,0,1093,18,237,289,59,10,578,876,0,1326,1811,23,0,18,129,7,0,0,1,386,23,1,25,2570,0,14,32,85,20,2,0,254,2753,0,335,346,15,3,0,2461,0,2.535650623885918,0.0,3.4687100893997447,0.0,6.551582278481012,8,7,22,8,1,0,72,833,0,44,69,44,90,158,156,110,87,88,42,28,8,14,1,10,1,928,23,595,356,669,282,99,852,594,357,51,900,320,631,28,923,816,135,511,440,388,123,183,768,550,401,304,647,552,399,471,480,8,943,205,550,174,22,5,762,189,0,2,21,3,0,0,0,68,4,0,9,844,0,1.831589958158996,1.4738493723849373,0.0,1.096774193548387,1.096774193548387,48.05573080967402 +PA120208,80508,Panamá,Chepo,Tortí,4519,3,69,31,0,0,0,0,8,0,0,1,12,0,0,5,1938,1149,179,2940,152,98,4,0,70,7,2570,13,19,369,23,31,241,1,4,1328,116,1673,77,28,4,45,3022,224,3,0,0,22,3271,16,628,163,89,309,146,0,7,193,2828,240,2,1,1801,1444,3,8,3,5,7,3149,9,21,2,12,77,1,498,2087,2,398,286,0,61,2535,170,49,11,109,31,167,3,85,42,8,0,4643,5.600144613159798,20.49819233550253,5.7588575560376,21.183297180043382,1.0122286762457964,3.114949556710486,1.9672882910424947,3324,2011,3621,355,564,78,76,70,27,107,34,20,99,1,169,67,22,55,43,26,23,7208,2455,0,1193,8470,0,4982,4681,0,8408,1255,0,2903,6760,0,2658,245,5922,838,0,856,113,177,15,332,429,516,442,427,2078,1,1,6,378,439,621,259,374,1266,16,33,150,146,135,142,141,101,22,7,40,0,0,0,0,0,4130,195,4149,0,12,100,32,47,1590,2087,208,217,1300,358,290,61,340,7,1861,56,3,5509,4878,322,1321,57,2146,142,2,280,6,93,595,63,2670,100,0,0,6266,1776,6,31,48,297,14,36,0,0,6,138,127,141,118,575,1487,467,336,930,5975,1105,461,585,621,652,382,189,176,65,28,7,20,6,15,100,173.0,196.0,184.0,171.0,186.0,204.0,184.0,216.0,221.0,178.0,210.0,183.0,166.0,197.0,179.0,171.0,171.0,206.0,151.0,190.0,183.0,161.0,182.0,165.0,165.0,174.0,183.0,145.0,164.0,138.0,138.0,126.0,160.0,145.0,127.0,123.0,115.0,135.0,125.0,152.0,135.0,128.0,132.0,139.0,138.0,128.0,117.0,111.0,143.0,113.0,112.0,109.0,106.0,110.0,91.0,94.0,89.0,98.0,108.0,91.0,94.0,69.0,71.0,66.0,71.0,72.0,70.0,65.0,61.0,46.0,67.0,53.0,43.0,50.0,52.0,40.0,34.0,44.0,40.0,25.0,32.0,35.0,29.0,14.0,22.0,18.0,12.0,10.0,11.0,3.0,7.0,9.0,4.0,6.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2848,6558,981,0,910,1003,935,889,856,804,696,650,672,612,528,480,371,314,265,183,132,54,29,4,0,0,10177,93,36,81,0,10177,104,25,81,0,3182,97,560,1314,248,32,2109,2845,0,4351,5956,80,0,66,188,7,2,0,0,1975,18,0,89,8042,0,58,175,450,31,17,3,892,8761,0,651,1172,54,6,4,8500,0,2.5061821852132224,0.0,3.4100358422939068,0.0,6.483874073360932,20,67,189,16,8,2,333,2689,0,298,324,243,407,536,487,313,201,254,118,50,18,25,10,21,6,3186,138,2235,1089,2337,987,470,2854,2235,1089,291,3033,1031,2293,39,3285,2820,504,1880,1444,1614,266,555,2769,2104,1220,866,2458,1637,1687,1744,1580,44,3280,732,1939,584,69,8,2556,768,0,13,50,2,2,0,0,458,4,0,30,2765,0,1.653361344537815,1.4639855942376951,1.0,1.024390243902439,1.024390243902439,49.22653429602888 +,100101,Comarca Kuna Yala,Comarca Kuna Yala,Narganá,2867,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,55,1941,52,3,8,65,1849,10,9,246,74,61,1286,10,5,308,1,5,0,48,174,351,54,1366,3,998,991,0,0,0,7,1996,36,129,130,19,531,26,0,0,24,1910,62,0,0,286,125,0,19,1559,6,1,862,10,95,0,39,963,27,30,386,14,1518,46,2,0,899,0,9,4,0,4,1047,3,3,27,0,0,2871,6.480533926585094,21.050055617352616,6.389321468298109,21.95884315906563,1.0075150300601203,1.654308617234469,0.6217434869739479,2014,1406,4437,193,2419,159,261,651,266,480,340,201,127,0,37,32,21,19,18,2,21,7254,4423,0,733,10944,0,6241,5436,0,8313,3364,0,3762,7915,0,3749,13,5183,2732,0,2746,150,295,9,450,485,752,625,618,1914,3,2,2,524,544,1113,233,334,570,1,5,58,64,71,20,20,54,5,1,9,0,0,0,0,0,5372,19,4276,0,1,7,6,127,2077,1806,68,198,1047,1999,177,36,119,7,1318,687,0,6191,6763,246,799,33,4029,89,2,192,0,352,489,25,2883,49,0,0,8786,765,2,1,22,80,5,6,0,0,0,108,125,125,151,605,1849,1806,238,384,9686,951,708,564,421,194,153,79,67,38,24,6,9,1,4,49,316.0,330.0,294.0,337.0,308.0,364.0,319.0,352.0,335.0,332.0,359.0,362.0,316.0,323.0,285.0,250.0,259.0,237.0,214.0,187.0,200.0,178.0,195.0,150.0,144.0,178.0,148.0,155.0,160.0,131.0,165.0,162.0,154.0,171.0,122.0,125.0,134.0,144.0,163.0,118.0,131.0,117.0,112.0,150.0,126.0,128.0,95.0,119.0,113.0,109.0,103.0,109.0,107.0,89.0,97.0,100.0,99.0,102.0,97.0,90.0,89.0,85.0,95.0,106.0,86.0,90.0,67.0,72.0,57.0,59.0,56.0,47.0,63.0,72.0,70.0,62.0,55.0,49.0,45.0,30.0,43.0,28.0,32.0,12.0,21.0,18.0,11.0,13.0,17.0,7.0,2.0,4.0,7.0,4.0,0.0,3.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4932,6898,1124,0,1585,1702,1645,1147,867,772,774,684,636,564,505,488,461,345,308,241,136,66,17,8,3,0,12661,4,2,287,0,12661,6,0,287,0,4103,24,724,530,679,5,1972,4917,0,10596,2354,4,0,12893,0,0,0,0,0,1,0,0,1,59,0,15,8,7,1,1,0,47,12875,0,169,369,188,6,5,12217,0,2.503307392996109,0.0,3.586404833836858,0.0,4.354639493592713,3,4,0,1,1,0,6,1999,0,97,59,139,240,446,389,210,134,141,56,40,25,15,11,8,1,1428,586,518,1496,130,1884,202,1812,371,1643,18,1996,488,1526,30,1984,1268,746,405,1609,216,189,125,1889,746,1268,11,2003,1342,672,256,1758,59,1955,104,521,1309,80,1,1534,480,0,2002,0,0,0,0,0,0,0,0,0,12,0,3.072456575682382,3.356327543424318,1.0,1.140096618357488,1.140096618357488,52.78103277060576 +,130104,Panamá Oeste,Arraiján,Santa Clara,954,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,664,139,8,753,53,0,0,0,8,0,794,0,1,2,2,5,10,0,0,182,0,608,0,20,0,4,780,28,0,0,0,6,814,3,25,24,8,71,10,0,0,16,777,20,1,0,798,3,0,8,0,5,0,810,2,2,0,0,0,0,276,528,0,10,0,0,635,169,4,3,0,1,0,1,0,1,0,0,0,955,6.711633663366337,20.564356435643564,6.792079207920792,21.532178217821784,1.022113022113022,3.37960687960688,2.151105651105651,832,490,980,63,136,22,22,10,5,41,10,8,11,0,29,15,5,21,6,3,14,2039,443,0,571,1911,0,1295,1187,0,2287,195,0,690,1792,0,575,115,1702,90,0,91,38,41,0,61,55,82,56,62,562,0,2,20,85,106,247,75,97,509,4,13,33,46,58,64,34,24,2,2,10,0,0,1,2,0,799,234,1170,0,19,74,36,169,404,528,23,46,620,26,199,47,81,3,3,1,1,1315,1315,151,470,52,288,7,6,5,2,3,68,12,835,7,0,0,1378,649,22,13,31,97,2,9,2,0,2,24,54,71,60,172,73,226,79,272,1311,372,57,116,134,148,248,118,87,13,9,4,5,0,1,7,33.0,28.0,44.0,43.0,45.0,51.0,43.0,53.0,40.0,47.0,30.0,48.0,43.0,40.0,33.0,42.0,40.0,32.0,42.0,39.0,44.0,44.0,43.0,39.0,47.0,43.0,53.0,45.0,52.0,40.0,52.0,24.0,46.0,31.0,46.0,44.0,25.0,26.0,38.0,29.0,35.0,38.0,37.0,27.0,40.0,31.0,31.0,36.0,37.0,21.0,28.0,36.0,27.0,31.0,23.0,28.0,24.0,33.0,31.0,28.0,28.0,23.0,26.0,22.0,20.0,15.0,19.0,10.0,19.0,14.0,15.0,15.0,13.0,15.0,18.0,13.0,6.0,13.0,12.0,7.0,8.0,6.0,9.0,2.0,5.0,6.0,0.0,1.0,4.0,0.0,1.0,4.0,2.0,0.0,2.0,2.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,621,1747,262,0,193,234,194,195,217,233,199,162,177,156,145,144,119,77,76,51,30,11,9,7,1,0,2589,18,16,7,0,2589,23,11,7,0,768,18,153,353,68,11,638,621,0,1720,879,31,0,3,35,3,0,0,0,4,0,1,2,2582,0,67,114,99,9,2,2,566,1771,0,475,527,162,10,2,1454,0,2.013550135501355,0.0,2.9196787148594376,0.0,7.856273764258555,28,44,41,5,2,0,193,519,0,50,69,28,63,97,93,114,100,110,58,18,13,12,3,2,2,814,18,743,89,678,154,118,714,719,113,100,732,390,442,98,734,770,62,737,95,391,346,208,624,458,374,234,598,172,660,104,728,11,821,135,518,169,10,0,533,299,0,2,6,2,0,0,0,2,0,1,1,818,0,1.5805288461538465,1.5805288461538465,1.0,1.0,1.0,50.21033653846154 +PA020203,40203,Chiriquí,Barú,Progreso,3966,14,345,10,0,0,0,0,0,0,0,0,4,0,0,97,2992,285,98,3323,51,6,0,0,83,9,3380,34,3,4,1,16,14,0,20,1040,929,1146,42,301,0,14,3356,44,19,0,0,53,3472,1,137,134,202,259,130,0,5,376,2945,141,4,1,3228,152,0,20,60,12,0,3450,7,2,1,9,3,0,1055,2278,2,130,7,0,2346,1026,4,27,12,42,1,2,0,5,5,2,1329,3010,6.000888625592417,20.42120853080569,6.029028436018957,20.801836492890995,1.0244815668202765,3.357430875576037,2.190092165898617,3561,1858,4294,330,983,89,128,104,35,172,39,24,71,2,184,109,30,57,68,39,78,8775,2209,0,1591,9393,0,6457,4527,0,10134,850,0,3207,7777,0,2862,345,7247,530,0,550,125,204,16,295,373,466,423,373,1734,2,3,4,401,602,985,394,592,2353,15,30,118,181,156,200,134,182,23,3,42,0,0,3,2,0,3292,543,5986,0,22,299,119,731,2056,2740,302,157,2105,284,365,63,539,16,235,3,76,5768,5922,522,1735,82,1099,129,1,31,87,13,311,60,5084,108,0,0,6373,2797,5,42,103,441,19,39,2,0,85,123,199,184,149,1243,236,476,265,875,6907,781,417,703,854,802,557,237,183,90,27,11,6,2,5,108,167.0,189.0,166.0,184.0,158.0,222.0,187.0,192.0,203.0,201.0,225.0,226.0,204.0,177.0,216.0,204.0,206.0,230.0,187.0,210.0,216.0,201.0,218.0,205.0,177.0,182.0,156.0,199.0,163.0,156.0,142.0,157.0,173.0,155.0,143.0,132.0,124.0,153.0,161.0,126.0,146.0,152.0,144.0,137.0,112.0,162.0,111.0,130.0,133.0,139.0,136.0,132.0,137.0,135.0,140.0,122.0,130.0,143.0,130.0,124.0,108.0,101.0,104.0,117.0,82.0,77.0,72.0,61.0,66.0,64.0,68.0,53.0,71.0,43.0,55.0,54.0,50.0,51.0,42.0,49.0,36.0,27.0,24.0,32.0,23.0,29.0,18.0,18.0,18.0,14.0,16.0,17.0,10.0,3.0,10.0,7.0,4.0,5.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2917,7583,1190,0,864,1005,1048,1037,1017,856,770,696,691,675,680,649,512,340,290,246,142,97,56,17,2,0,11234,315,96,45,0,11239,325,81,45,0,2772,69,84,1701,321,52,3775,2916,0,6188,5149,353,0,5,914,59,2,1,0,10,0,7,0,10692,0,336,164,677,41,4,1,679,9788,0,1603,2781,649,108,4,6545,0,2.3016446048937023,0.0,3.261989342806394,0.0,7.602053036783576,107,56,269,15,3,1,246,2864,0,454,226,157,354,543,544,422,251,325,124,73,34,19,8,10,13,3481,80,3207,354,3138,423,490,3071,3245,316,496,3065,2084,1477,183,3378,3222,339,3141,420,1364,1777,803,2758,2000,1561,968,2593,635,2926,607,2954,36,3525,643,1973,892,53,0,2142,1419,0,1,258,12,0,0,0,0,0,1,0,3289,0,1.6197697276046057,1.66301600673968,1.0869565217391304,1.031055900621118,1.031055900621118,51.6694748666105 +PA021005,41001,Chiriquí,Renacimiento,Río Sereno,1961,53,55,1,0,0,0,0,77,0,0,146,6,0,0,6,1115,255,57,1273,103,9,5,0,42,1,1218,0,4,86,1,27,85,0,12,703,13,544,12,155,2,4,1309,94,7,0,0,23,1433,0,208,78,67,192,92,0,14,108,1061,250,0,0,1005,355,1,31,27,14,0,1420,0,0,1,6,1,5,365,841,0,123,103,1,8,1223,68,77,12,16,0,12,0,2,9,6,0,2299,6.21401077752117,20.1401077752117,6.413394919168591,21.29176289453426,1.0146545708304258,3.3405443126308443,2.05582693649686,1631,881,2122,223,380,33,52,56,12,65,27,12,615,0,83,47,12,20,27,5,18,3771,1768,0,834,4705,0,3036,2503,0,4555,984,0,1780,3759,0,1718,62,3032,727,0,741,56,115,11,207,242,299,253,259,858,1,2,2,190,271,420,166,231,662,1,12,57,52,82,83,112,98,20,2,31,1,0,0,2,0,2219,133,2436,0,30,59,14,73,1034,1120,114,95,1020,122,122,34,180,6,858,1,4,3170,2939,216,1318,43,561,86,4,108,11,21,218,30,2302,45,0,0,3567,856,2,28,46,239,15,33,2,0,11,59,112,53,69,254,419,175,98,1102,3562,402,240,389,657,305,199,97,106,60,17,9,8,7,6,45,148.0,154.0,150.0,118.0,132.0,144.0,127.0,124.0,113.0,111.0,146.0,128.0,124.0,103.0,119.0,117.0,140.0,140.0,126.0,122.0,111.0,126.0,108.0,124.0,98.0,94.0,79.0,92.0,84.0,89.0,82.0,78.0,73.0,58.0,71.0,77.0,60.0,65.0,70.0,75.0,49.0,65.0,81.0,66.0,64.0,64.0,43.0,61.0,46.0,58.0,76.0,44.0,61.0,55.0,55.0,50.0,52.0,56.0,54.0,48.0,48.0,42.0,41.0,38.0,27.0,34.0,30.0,36.0,23.0,27.0,23.0,28.0,22.0,28.0,25.0,32.0,15.0,18.0,15.0,11.0,11.0,11.0,8.0,8.0,14.0,10.0,5.0,4.0,5.0,5.0,1.0,0.0,6.0,2.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1941,3703,465,0,702,619,620,645,567,438,362,347,325,272,291,260,196,150,126,91,52,29,9,5,3,0,5484,185,145,295,0,5495,187,132,295,0,1708,52,335,655,128,27,1265,1939,0,2533,3366,210,0,8,2368,57,0,0,0,2,3,1,0,3670,0,82,82,373,19,8,4,360,5181,0,495,767,82,10,5,4750,0,2.639351446099913,0.0,3.728047182175623,0.0,6.135865117040432,36,30,141,9,2,2,139,1272,0,128,111,75,131,253,223,163,103,114,55,27,23,17,10,11,10,1489,142,1057,574,1077,554,366,1265,409,1222,23,1608,920,711,54,1577,1439,192,1093,538,393,700,369,1262,837,794,451,1180,594,1037,576,1055,21,1610,368,903,328,32,52,1189,442,0,1,379,13,0,0,0,0,2,0,0,1236,0,1.883541295306001,1.7462863933452168,1.5238095238095235,1.0694444444444444,1.0694444444444444,49.589209074187615 +PA021001,41002,Chiriquí,Renacimiento,Breñón,315,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,44,4,206,0,3,0,0,1,0,191,0,0,5,0,9,4,0,1,1,6,168,3,32,0,0,199,10,0,0,0,1,210,2,48,9,5,27,16,0,0,8,182,19,0,1,186,15,0,0,1,8,0,209,0,0,0,0,0,1,65,135,0,6,4,0,0,158,37,4,1,4,0,2,0,0,3,1,0,317,6.230769230769231,20.53846153846154,6.917948717948718,23.8,1.0047619047619047,3.3380952380952382,2.223809523809524,211,126,235,16,18,8,11,1,2,4,0,3,9,1,19,11,3,0,6,1,4,476,141,0,108,509,0,371,246,0,558,59,0,150,467,0,141,9,418,49,0,49,5,2,1,19,18,26,21,34,174,0,0,0,23,31,44,17,22,90,1,0,4,3,6,9,8,4,3,1,2,0,0,0,0,0,230,14,320,0,3,3,3,14,101,154,37,14,99,15,8,5,14,0,100,0,1,347,298,46,118,5,53,5,1,12,2,3,40,4,234,2,0,0,432,102,0,3,3,20,2,2,0,0,2,3,9,10,4,30,48,20,12,106,367,57,27,33,50,47,25,19,12,3,0,0,2,1,0,2,8.0,9.0,7.0,4.0,8.0,6.0,10.0,7.0,13.0,9.0,10.0,16.0,15.0,11.0,11.0,15.0,11.0,13.0,11.0,10.0,17.0,8.0,10.0,10.0,12.0,9.0,6.0,8.0,9.0,6.0,7.0,5.0,11.0,3.0,4.0,9.0,6.0,5.0,8.0,10.0,11.0,4.0,11.0,9.0,6.0,6.0,5.0,7.0,11.0,9.0,6.0,11.0,8.0,9.0,7.0,9.0,6.0,8.0,10.0,8.0,5.0,6.0,7.0,7.0,8.0,5.0,3.0,9.0,2.0,5.0,6.0,3.0,3.0,3.0,7.0,4.0,3.0,1.0,1.0,2.0,1.0,4.0,7.0,2.0,2.0,0.0,2.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,144,417,84,0,36,45,63,60,57,38,30,38,41,38,41,41,33,24,22,11,16,7,2,2,0,0,608,14,17,6,0,610,14,15,6,0,162,12,30,114,14,4,165,144,0,322,277,46,0,0,37,13,0,0,0,0,0,0,0,595,0,3,4,14,2,0,0,45,577,0,77,140,18,1,0,409,0,2.556420233463035,0.0,3.744047619047619,0.0,6.810852713178295,3,3,8,1,0,0,21,175,0,30,16,5,22,29,30,28,18,20,7,2,0,0,1,2,1,203,8,171,40,175,36,45,166,95,116,8,203,147,64,2,209,195,16,162,49,34,128,45,166,159,52,67,144,112,99,139,72,3,208,51,113,42,5,0,176,35,0,0,7,3,0,0,0,0,0,0,0,201,0,1.6445497630331751,1.4123222748815163,1.5,1.0,1.0,52.99526066350711 +,10218,Bocas del Toro,Changuinola,Barranco Adentro,942,17,0,0,0,0,0,0,0,0,0,3,0,0,0,79,202,70,407,349,2,5,381,0,20,1,463,0,3,45,1,85,158,0,3,0,17,663,10,52,16,0,635,118,0,0,0,5,758,0,63,63,0,62,13,0,0,7,714,36,1,0,70,576,1,81,24,3,3,724,1,3,0,0,29,1,7,291,0,266,193,1,0,632,0,10,2,3,6,37,0,5,62,1,0,962,4.2515822784810124,10.212025316455696,5.5395569620253164,15.63132911392405,1.0131926121372032,3.2519788918205803,2.187335092348285,771,515,2241,115,814,15,57,101,7,186,29,10,10,0,46,41,18,31,33,32,16,1692,2505,0,126,4071,0,1133,3064,0,3321,876,0,1557,2640,0,1526,31,1881,759,0,759,43,62,0,182,222,245,248,232,627,0,1,0,255,251,260,158,129,446,4,5,7,9,14,3,2,32,1,0,0,0,0,0,0,0,976,144,2208,0,4,80,24,94,983,1003,18,110,554,68,26,8,19,0,361,0,6,2471,2400,63,613,10,242,61,0,47,6,193,27,16,2278,1,0,0,2805,488,0,2,2,30,1,0,0,0,6,8,17,9,29,56,337,78,7,573,3913,119,90,139,166,305,102,16,14,5,1,0,0,0,0,1,173.0,167.0,165.0,169.0,163.0,149.0,132.0,148.0,155.0,122.0,145.0,138.0,138.0,123.0,128.0,109.0,122.0,106.0,121.0,96.0,117.0,85.0,89.0,98.0,88.0,78.0,85.0,67.0,59.0,65.0,66.0,56.0,49.0,53.0,54.0,47.0,52.0,67.0,55.0,37.0,46.0,46.0,41.0,40.0,31.0,25.0,39.0,28.0,28.0,32.0,34.0,19.0,34.0,29.0,20.0,12.0,17.0,12.0,11.0,12.0,14.0,1.0,12.0,6.0,6.0,4.0,9.0,7.0,8.0,10.0,2.0,4.0,6.0,9.0,20.0,6.0,7.0,6.0,11.0,17.0,0.0,2.0,3.0,1.0,3.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2215,2516,140,0,837,706,672,554,477,354,278,258,204,152,136,64,39,38,41,47,9,4,1,0,0,0,4640,15,3,213,0,4641,15,2,213,0,1531,5,213,156,50,4,701,2211,0,3372,1453,46,0,2,4740,12,5,0,0,0,0,0,6,106,0,5,70,32,11,1,1,39,4712,0,476,1286,94,4,0,3011,0,2.784550392275196,0.0,4.203471552555448,0.0,4.720385957708889,1,13,6,4,1,1,10,735,0,65,35,34,71,103,180,133,55,57,23,8,4,0,0,0,0,694,77,244,527,201,570,91,680,134,637,8,763,177,594,6,765,316,455,236,535,181,55,32,739,127,644,22,749,250,521,164,607,20,751,41,363,358,9,0,501,270,0,0,739,1,2,0,0,0,0,0,3,26,0,3.204928664072633,3.11284046692607,1.0,1.0476190476190477,1.0476190476190477,44.509727626459146 +PA050208,50206,Darién,Pinogana,Yape,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,9,34,8,5,1,0,3,0,45,0,1,3,2,0,0,0,0,0,0,33,15,0,3,0,42,7,0,0,0,2,51,0,6,6,0,1,2,0,0,0,51,0,0,0,3,45,0,0,2,0,1,49,0,0,0,0,2,0,0,15,0,3,33,0,0,1,0,0,0,0,39,11,0,0,0,0,0,66,7.0,24.0,7.0,24.0,1.0,2.823529411764706,1.4901960784313726,51,38,126,10,25,2,2,1,2,6,1,0,2,0,0,0,0,0,1,0,0,143,88,0,11,220,0,9,222,0,186,45,0,103,128,0,98,5,98,30,0,31,4,10,0,10,13,11,13,12,37,0,0,0,10,6,13,13,6,32,0,0,4,2,3,1,0,0,0,0,0,0,0,0,0,0,97,3,92,0,0,1,2,0,54,32,0,6,7,3,1,0,1,0,86,0,0,141,125,5,3,0,68,0,0,22,0,31,18,0,74,1,0,0,150,40,0,0,1,1,0,0,0,0,0,0,1,1,0,4,86,4,1,3,230,12,12,4,1,0,2,1,2,1,0,0,0,0,0,1,10.0,9.0,6.0,10.0,7.0,5.0,10.0,6.0,8.0,3.0,10.0,8.0,9.0,8.0,0.0,5.0,9.0,6.0,6.0,4.0,8.0,3.0,4.0,5.0,4.0,3.0,4.0,2.0,3.0,2.0,2.0,3.0,5.0,1.0,1.0,4.0,3.0,2.0,1.0,3.0,2.0,3.0,2.0,4.0,4.0,1.0,4.0,3.0,2.0,1.0,3.0,1.0,0.0,3.0,1.0,2.0,2.0,2.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,3.0,2.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,109,138,19,0,42,32,35,30,24,14,12,13,15,11,8,7,4,4,4,6,4,1,0,0,0,0,258,0,1,7,0,258,0,1,7,0,92,0,5,6,6,0,48,109,0,203,61,2,0,0,1,0,0,0,0,56,205,0,0,4,0,1,1,0,1,0,0,1,262,0,7,10,0,0,0,249,0,3.2688172043010755,0.0,4.7,0.0,5.109022556390977,1,1,0,1,0,0,1,47,0,11,3,7,11,9,4,2,0,3,0,1,0,0,0,0,0,48,3,28,23,16,35,4,47,14,37,0,51,2,49,0,51,45,6,12,39,7,5,3,48,8,43,0,51,46,5,26,25,0,51,6,24,20,1,0,44,7,0,0,1,0,0,0,0,14,33,0,0,3,0,2.764705882352941,2.450980392156863,0.0,1.0,1.0,49.07843137254902 +PA040206,30106,Colón,Colón,Cristóbal,2788,55,321,5,0,0,61,0,1,0,0,0,13,0,150,1302,463,617,49,2170,212,0,0,0,44,5,2260,0,16,99,9,7,33,2,5,2022,0,395,0,13,1,0,2344,35,16,0,0,36,2431,3,324,212,53,91,55,0,164,367,1815,74,4,7,2091,278,0,48,7,6,1,2326,1,81,0,0,22,1,1404,771,0,106,150,0,1861,141,2,160,0,6,5,129,5,82,39,1,1874,1520,5.817864271457085,17.87375249500998,5.849301397205589,17.843812375249502,1.0086384204031262,3.082270670505965,1.958041958041958,2615,1291,2894,206,581,78,103,83,23,97,18,31,2442,4,181,71,28,42,44,20,43,6883,3087,0,2189,7781,0,6192,3778,0,9324,646,0,3161,6809,0,2816,345,6500,309,0,328,109,144,33,206,209,257,231,283,988,14,84,42,501,587,1001,378,585,2333,6,10,212,211,256,235,182,350,53,19,92,1,2,2,26,0,2927,455,5689,0,2,330,40,558,2086,1125,105,1815,2138,276,330,61,210,8,197,37,1,6251,4215,601,1610,67,947,22,0,10,1,18,164,22,3226,60,0,0,5028,3079,45,22,111,616,50,92,28,0,1,170,284,221,260,653,186,442,281,884,5639,1077,361,423,449,651,787,336,338,148,72,27,51,21,26,60,101.0,107.0,130.0,158.0,153.0,156.0,142.0,144.0,147.0,157.0,145.0,169.0,148.0,144.0,128.0,132.0,124.0,121.0,140.0,158.0,155.0,212.0,258.0,241.0,251.0,271.0,270.0,220.0,215.0,190.0,198.0,184.0,233.0,230.0,185.0,196.0,152.0,191.0,180.0,162.0,148.0,145.0,150.0,134.0,124.0,124.0,107.0,120.0,107.0,99.0,109.0,114.0,102.0,92.0,75.0,92.0,90.0,95.0,86.0,78.0,83.0,79.0,72.0,71.0,73.0,64.0,72.0,51.0,69.0,52.0,55.0,38.0,49.0,50.0,39.0,33.0,35.0,33.0,35.0,31.0,26.0,23.0,23.0,11.0,11.0,10.0,16.0,16.0,15.0,7.0,8.0,7.0,8.0,0.0,2.0,1.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,2129,7438,897,2,649,746,734,675,1117,1166,1030,881,701,557,492,441,378,308,231,167,94,64,25,6,2,2,9747,484,215,20,0,9755,504,187,20,0,2650,110,985,1486,284,79,2744,2128,0,3376,6688,402,0,249,61,7,3,0,0,127,88,0,67,9864,0,1422,1223,1157,734,46,77,2625,3182,0,1534,1593,500,37,56,6746,0,2.1311706629055007,0.0,2.9788907284768213,0.0,8.88935600993694,426,325,253,180,21,31,615,764,0,117,110,95,152,262,236,352,241,356,198,111,65,58,40,53,6,2551,64,2239,376,1945,670,305,2310,2222,393,876,1739,1463,1152,434,2181,2387,228,2201,414,1174,1027,750,1865,1782,833,828,1787,486,2129,360,2255,24,2591,579,1372,611,53,62,1556,1059,0,13,11,3,0,0,0,31,24,0,19,2514,0,2.3350765782592453,1.5745237205827418,1.0555555555555556,1.0333333333333334,1.0333333333333334,50.41759082217973 +,40206,Chiriquí,Barú,El Palmar,2371,14,3,0,0,0,0,0,0,0,0,0,0,0,0,63,1472,362,62,1866,31,8,0,0,48,6,1824,5,1,54,2,14,58,0,1,324,153,1052,64,359,2,5,1825,102,5,0,0,27,1959,8,114,25,26,156,100,0,7,65,1740,134,2,11,1630,262,0,11,54,1,1,1925,2,0,3,4,25,0,402,1350,1,179,27,0,1575,0,2,166,46,65,1,6,0,88,9,1,1758,630,4.657577679137603,10.188966391883325,4.746987951807229,10.61128725428028,1.0178662582950484,3.4150076569678407,2.196528841245533,1994,1055,2082,166,511,51,68,67,23,74,14,7,34,1,159,34,23,53,60,60,33,4411,1382,0,954,4839,0,3320,2473,0,5323,470,0,1753,4040,0,1659,94,3724,316,0,324,76,98,12,197,216,287,196,215,1058,0,0,0,246,306,405,200,246,914,6,12,76,109,97,74,191,156,20,3,47,0,1,1,4,0,1621,222,3318,0,17,76,51,505,1132,1377,128,176,1006,134,309,51,102,4,161,47,9,3076,3071,301,831,61,562,27,0,30,11,16,183,76,1748,58,0,0,3450,1146,0,26,90,381,18,46,4,0,13,45,154,89,51,386,126,274,122,583,3481,465,262,373,497,356,237,150,167,62,24,5,5,3,2,58,90.0,85.0,96.0,83.0,100.0,101.0,114.0,114.0,99.0,104.0,104.0,113.0,116.0,114.0,97.0,108.0,114.0,110.0,114.0,105.0,85.0,103.0,92.0,76.0,75.0,77.0,95.0,78.0,85.0,67.0,71.0,64.0,73.0,68.0,66.0,79.0,73.0,74.0,79.0,65.0,57.0,72.0,54.0,64.0,63.0,58.0,76.0,52.0,74.0,57.0,75.0,68.0,77.0,78.0,82.0,65.0,91.0,77.0,77.0,81.0,83.0,67.0,74.0,78.0,57.0,72.0,58.0,53.0,58.0,44.0,43.0,26.0,46.0,54.0,27.0,28.0,24.0,33.0,23.0,20.0,12.0,23.0,11.0,11.0,9.0,15.0,15.0,10.0,3.0,11.0,11.0,5.0,7.0,2.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1530,3853,764,0,454,532,544,551,431,402,342,370,310,317,380,391,359,285,196,128,66,54,28,3,4,0,6038,25,67,17,0,6038,26,66,17,0,1409,73,531,1002,203,42,1357,1530,0,3421,2634,92,0,6,387,5,1,0,0,0,8,0,0,5740,0,176,192,530,38,6,7,904,4294,0,723,1609,464,69,8,3274,0,2.403942790877464,0.0,3.348552338530067,0.0,7.507076622742801,67,70,196,18,3,4,298,1338,0,204,110,115,204,338,308,218,115,190,80,53,17,20,11,6,5,1909,85,1656,338,1628,366,260,1734,1709,285,277,1717,1333,661,57,1937,1744,250,1624,370,440,1184,464,1530,1166,828,586,1408,419,1575,391,1603,11,1983,444,1036,488,26,0,1346,648,0,3,115,2,0,0,0,0,4,0,0,1870,0,1.5426278836509528,1.5401203610832497,1.2857142857142858,1.0416666666666667,1.0416666666666667,53.81243731193581 +PA030101,20101,Coclé,Aguadulce,Aguadulce,3664,6,180,20,0,0,0,0,0,0,0,4,7,0,0,1984,1097,40,4,3069,52,0,0,0,4,0,3114,0,2,7,0,0,2,0,0,2829,219,67,2,4,0,4,3065,4,22,0,0,34,3125,10,237,86,145,183,84,0,938,531,1544,98,13,1,3108,2,2,9,0,4,0,2851,21,239,1,13,0,0,2413,706,0,3,1,2,2582,472,22,9,1,0,0,0,1,38,0,0,3783,98,6.855981794538361,20.111183355006503,6.90442132639792,20.91644993498049,1.0112,3.9856,2.63744,3171,1772,3090,204,651,130,99,86,47,141,32,49,73,31,146,41,24,47,63,35,57,8337,860,1,4751,4446,1,7254,1943,1,8812,385,1,2611,6587,0,1747,864,6415,171,1,176,99,135,41,150,170,221,177,176,723,2,6,68,200,304,616,237,339,1998,10,84,197,303,416,556,711,610,134,18,293,0,5,1,21,1,4147,348,3938,1,4,127,78,1055,1614,1032,121,116,3241,365,314,99,312,3,61,17,2,4609,4967,1323,1844,121,980,111,1,32,2,3,145,27,2463,117,0,0,3001,2822,69,99,310,1728,113,265,26,1,12,496,867,564,334,710,87,473,375,577,3820,371,270,337,574,762,1074,543,733,418,242,95,101,45,74,117,85.0,79.0,110.0,104.0,109.0,124.0,135.0,123.0,140.0,133.0,149.0,140.0,136.0,109.0,143.0,146.0,154.0,136.0,143.0,127.0,125.0,115.0,126.0,147.0,120.0,143.0,129.0,141.0,110.0,116.0,149.0,98.0,123.0,138.0,128.0,146.0,167.0,131.0,148.0,119.0,119.0,134.0,128.0,117.0,124.0,135.0,123.0,125.0,122.0,124.0,147.0,136.0,151.0,121.0,129.0,127.0,122.0,115.0,135.0,101.0,113.0,115.0,98.0,104.0,112.0,90.0,103.0,78.0,77.0,66.0,64.0,79.0,61.0,55.0,60.0,61.0,56.0,51.0,55.0,47.0,45.0,46.0,35.0,23.0,27.0,30.0,26.0,25.0,20.0,13.0,16.0,9.0,7.0,6.0,4.0,2.0,6.0,2.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1819,6402,1355,0,487,655,677,706,633,639,636,711,622,629,684,600,542,414,319,270,176,114,42,16,4,0,9027,239,303,6,1,9039,260,270,6,1,1932,111,272,2211,380,156,2694,1819,1,3186,6164,225,1,9,91,17,2,2,0,3,0,0,71,9380,1,308,362,471,38,22,17,938,7419,1,2832,2834,1138,94,21,2656,1,1.718303470174643,0.0,2.439469320066335,0.0,10.740079365079366,119,131,209,19,10,9,384,2289,1,112,42,47,83,177,261,344,252,539,378,260,163,213,108,155,26,3133,38,3072,99,2984,187,622,2549,3024,147,1804,1367,2119,1052,1063,2108,3026,145,3015,156,2422,593,1725,1446,2503,668,2036,1135,279,2892,242,2929,55,3116,562,1755,773,81,0,1962,1209,0,2,27,5,1,1,0,2,0,0,19,3113,1,1.4534847051403343,1.56638284452854,1.2352941176470589,1.059880239520958,1.059880239520958,53.97950173446862 +PA030405,20401,Coclé,Natá,Natá,2247,46,66,0,0,0,0,0,25,0,0,0,1,0,0,1493,303,104,17,1871,29,4,0,0,13,0,1843,0,1,27,0,7,39,0,0,1661,54,172,12,3,2,13,1872,24,4,0,0,17,1917,0,222,41,94,53,32,0,157,229,1453,75,2,1,1862,3,0,47,0,5,0,1914,0,1,2,0,0,0,1207,671,2,37,0,0,1847,0,1,7,0,1,1,22,0,4,32,2,2107,278,6.8273809523809526,22.842532467532468,6.737554112554113,22.879329004329005,1.0172143974960877,3.846113719353156,2.605112154407929,1951,1038,1992,121,623,62,107,105,20,135,26,18,114,5,105,35,17,25,42,27,23,4959,1072,0,1828,4203,0,3998,2033,0,5655,376,0,1559,4472,0,1330,229,4266,206,0,208,73,88,22,115,147,168,170,150,758,0,4,27,175,237,466,179,274,1368,1,43,80,149,248,307,327,137,33,5,65,0,0,0,7,0,2437,229,2861,0,11,94,50,642,1006,1079,75,59,1775,132,224,62,142,5,260,8,9,3101,3216,618,1202,75,642,44,4,20,12,5,215,42,1654,231,0,0,2728,1726,27,55,189,707,26,62,7,0,12,122,274,233,185,495,178,349,309,509,2786,413,168,336,447,475,638,335,277,111,62,14,13,3,8,231,52.0,70.0,78.0,86.0,77.0,82.0,84.0,85.0,81.0,95.0,95.0,94.0,87.0,93.0,74.0,86.0,96.0,105.0,84.0,94.0,86.0,81.0,88.0,120.0,97.0,116.0,85.0,83.0,89.0,93.0,100.0,77.0,85.0,80.0,85.0,70.0,69.0,80.0,73.0,76.0,70.0,62.0,70.0,66.0,72.0,69.0,59.0,76.0,70.0,86.0,93.0,103.0,105.0,92.0,85.0,83.0,83.0,90.0,83.0,72.0,79.0,58.0,70.0,51.0,70.0,70.0,46.0,57.0,53.0,47.0,60.0,49.0,59.0,32.0,36.0,49.0,45.0,43.0,35.0,38.0,36.0,24.0,28.0,15.0,26.0,22.0,19.0,9.0,20.0,9.0,2.0,9.0,5.0,5.0,3.0,2.0,7.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0,1233,4115,969,0,363,427,443,465,472,466,427,368,340,360,478,411,328,273,236,210,129,79,24,13,5,0,6238,36,43,0,0,6241,44,32,0,0,1453,41,55,1178,251,44,2064,1231,0,3362,2913,42,0,5,107,10,0,1,0,10,0,0,56,6128,0,302,420,839,65,77,10,1162,3442,0,1548,2035,667,42,3,2022,0,1.9488636363636365,0.0,2.7507739938080493,0.0,9.22510685451955,108,158,286,32,20,3,373,971,0,72,70,40,104,169,224,264,210,304,190,105,55,57,19,20,47,1917,34,1788,163,1773,178,355,1596,1778,173,699,1252,1285,666,502,1449,1762,189,1795,156,1071,724,775,1176,1330,621,882,1069,203,1748,195,1756,22,1929,351,957,601,42,25,1222,729,0,1,24,1,0,1,0,3,0,0,14,1907,0,1.569331983805668,1.6275303643724697,1.0,1.0403225806451613,1.0403225806451613,55.82880574064582 +PA030401,20402,Coclé,Natá,Capellanía,1126,10,0,0,0,0,0,0,22,0,0,0,2,0,0,6,722,129,24,841,16,0,0,0,24,0,859,0,1,9,1,0,8,0,3,607,19,226,4,10,0,15,839,10,0,0,0,32,881,0,139,60,7,31,18,0,38,37,780,26,0,0,869,0,0,9,0,3,0,877,2,2,0,0,0,0,204,673,0,4,0,0,841,3,6,3,0,1,0,0,0,0,26,1,0,1160,6.938823529411764,23.62,6.923529411764706,23.67058823529412,1.0102156640181612,3.4767309875141885,2.3677639046538026,892,467,971,40,294,22,30,32,10,72,5,9,119,4,47,17,14,18,21,7,13,2215,605,0,604,2216,0,1950,870,0,2615,205,0,760,2060,0,658,102,1972,88,0,89,51,44,1,64,93,122,111,90,460,0,2,5,96,175,232,83,106,511,4,11,51,84,86,110,82,33,6,0,18,0,0,0,0,0,1106,87,1344,0,0,29,24,225,444,601,44,30,789,73,118,40,80,0,78,0,3,1467,1500,176,652,49,285,11,0,5,3,1,97,18,696,3,0,0,1535,707,5,18,59,192,4,17,0,0,2,47,96,84,53,222,35,179,149,326,1286,235,166,144,244,244,309,127,119,48,27,5,3,2,5,3,37.0,34.0,34.0,42.0,40.0,51.0,44.0,45.0,47.0,56.0,57.0,46.0,31.0,43.0,40.0,51.0,44.0,36.0,36.0,43.0,46.0,48.0,43.0,45.0,53.0,60.0,60.0,47.0,36.0,41.0,46.0,49.0,45.0,39.0,36.0,34.0,42.0,43.0,33.0,26.0,34.0,28.0,39.0,36.0,30.0,37.0,31.0,24.0,34.0,41.0,36.0,44.0,35.0,44.0,47.0,41.0,40.0,45.0,29.0,34.0,26.0,28.0,28.0,36.0,29.0,21.0,21.0,15.0,22.0,23.0,18.0,16.0,17.0,16.0,18.0,18.0,11.0,13.0,15.0,15.0,14.0,13.0,9.0,7.0,7.0,11.0,10.0,4.0,6.0,9.0,0.0,4.0,0.0,4.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,647,1958,362,0,187,243,217,210,235,244,215,178,167,167,206,189,147,102,85,72,50,40,10,3,0,0,2944,12,6,5,0,2944,12,6,5,0,825,28,156,359,145,14,793,647,0,2142,813,12,0,8,63,0,0,0,0,6,0,0,30,2860,0,61,22,182,8,7,7,506,2174,0,701,903,198,38,1,1126,0,2.068376068376069,0.0,2.9016759776536314,0.0,8.14829794405123,17,7,69,0,2,2,164,631,0,30,33,26,58,87,103,137,86,133,76,53,20,26,12,9,1,857,35,789,103,785,107,107,785,812,80,211,681,486,406,54,838,755,137,789,103,426,363,218,674,489,403,364,528,94,798,118,774,9,883,175,453,236,28,22,467,425,0,3,10,0,0,0,0,0,0,0,8,871,0,1.6050328227571116,1.6411378555798688,1.0,1.064516129032258,1.064516129032258,54.37780269058296 diff --git a/backend/data/censo/censo_panama_2023_unificado.csv b/backend/data/censo/censo_panama_2023_unificado.csv new file mode 100644 index 0000000000000000000000000000000000000000..d626acef9302015789dbf95af987a1866c560723 --- /dev/null +++ b/backend/data/censo/censo_panama_2023_unificado.csv @@ -0,0 +1,700 @@ +cod_corr,nomb_prov,nomb_dist,nomb_corr,v1_tipo_vivienda__individual_permanente,v1_tipo_vivienda__individual_improvisada,v1_tipo_vivienda__apartamento,v1_tipo_vivienda__cuarto_en_casa_de_vecindad,v1_tipo_vivienda__centro_de_cuidado_de_personas_mayores_asilos,v1_tipo_vivienda__instituciones_de_protección_de_niñas_niños_y_adolescentes,v1_tipo_vivienda__cárceles_centros_de_custodia_o_cumplimiento_y_cuarteles,v1_tipo_vivienda__conventos_seminarios_o_viviendas_religiosas,v1_tipo_vivienda__trabajaderos,v1_tipo_vivienda__albergues_de_migrantes_o_refugiados,v1_tipo_vivienda__centros_de_apoyo_y_rehabilitación,v1_tipo_vivienda__otras,v1_tipo_vivienda__local_no_destinado_a_habitación_pero_usado_como_vivienda,v1_tipo_vivienda__indigente,v1_tipo_vivienda__damnificado,v11_servicio_sanitario_eliminacion_agua__conectado_a_alcantarillado,v11_servicio_sanitario_eliminacion_agua__conectado_a_tanque_séptico,v11_servicio_sanitario_eliminacion_agua__de_hueco_o_letrina,v11_servicio_sanitario_eliminacion_agua__no_tiene,v12_uso_sanitario_agua__exclusivo_de_la_vivienda,v12_uso_sanitario_agua__compartido_con_otras_viviendas,v13_lugar_depositar_excretas__monte,v13_lugar_depositar_excretas__río_o_quebrada,v13_lugar_depositar_excretas__mar,v13_lugar_depositar_excretas__usa_el_servicio_sanitario_del_vecino,v13_lugar_depositar_excretas__otro,v14_tipo_alumbrado__eléctrico_de_compañía_distribuidora,v14_tipo_alumbrado__eléctrico_de_la_comunidad,v14_tipo_alumbrado__eléctrico_propio_planta,v14_tipo_alumbrado__panel_solar_propio,v14_tipo_alumbrado__querosín_o_diésel,v14_tipo_alumbrado__vela,v14_tipo_alumbrado__linterna_o_lámpara_portátil,v14_tipo_alumbrado__gas,v14_tipo_alumbrado__otro,v15_eliminacion_basura__servicio_de_recolección_público,v15_eliminacion_basura__servicio_de_recolección_privado,v15_eliminacion_basura__incineración_o_quema,v15_eliminacion_basura__terreno_baldío,v15_eliminacion_basura__entierro,v15_eliminacion_basura__río_quebrada_lago_o_mar,v15_eliminacion_basura__otra_forma,v16_combustible_para_cocinar__gas,v16_combustible_para_cocinar__leña,v16_combustible_para_cocinar__electricidad,v16_combustible_para_cocinar__querosín,v16_combustible_para_cocinar__carbón,v16_combustible_para_cocinar__no_cocina,v2_condicion_vivienda__con_personas_presentes,v2_condicion_vivienda__con_personas_ausentes,v2_condicion_vivienda__de_veraneo_o_temporal,v2_condicion_vivienda__en_reparación_o_construcción,v2_condicion_vivienda__en_venta_o_alquiler,v2_condicion_vivienda__desocupada,v2_condicion_vivienda__deshabitada_o_abandonada,v2_condicion_vivienda__otro_motivo_de_desocupada_especifique,v3_tenencia_vivienda__hipotecada,v3_tenencia_vivienda__alquilada,v3_tenencia_vivienda__propia,v3_tenencia_vivienda__cedida,v3_tenencia_vivienda__sucesión_o_litigio,v3_tenencia_vivienda__invadida,v4_material_paredes__bloque_ladrillo_piedra_concreto,v4_material_paredes__madera_tablas_o_troza,v4_material_paredes__quincha_o_adobe,v4_material_paredes__metal_zinc_aluminio_otros,v4_material_paredes__palma_paja_penca_cañaza_bambú_o_palos,v4_material_paredes__otros_materiales,v4_material_paredes__sin_paredes,v5_material_techo__metal_zinc_aluminio_entre_otros,v5_material_techo__teja,v5_material_techo__otro_tipo_de_tejas_tejalit_panalit_techolit_entre_otras,v5_material_techo__losa_de_concreto,v5_material_techo__madera,v5_material_techo__palma_paja_o_penca,v5_material_techo__otros_materiales,v6_material_piso__mosaico_o_baldosa_mármol_o_parqué,v6_material_piso__pavimentado_concreto,v6_material_piso__ladrillo,v6_material_piso__tierra,v6_material_piso__madera,v6_material_piso__otros_materiales_caña_palos_desechos_entre_otros,v8_abastecimiento_de_agua__acueducto_público_del_idaan,v8_abastecimiento_de_agua__acueducto_público_de_la_comunidad,v8_abastecimiento_de_agua__acueducto_particular,v8_abastecimiento_de_agua__pozo_brocal_protegido,v8_abastecimiento_de_agua__pozo_brocal_no_protegido,v8_abastecimiento_de_agua__pozo_superficial_ojo_de_agua_o_manantial,v8_abastecimiento_de_agua__recogen_agua_de_lluvia,v8_abastecimiento_de_agua__río_quebrada_o_lago,v8_abastecimiento_de_agua__carro_cisterna,v8_abastecimiento_de_agua__agua_embotellada,v8_abastecimiento_de_agua__otra_vivienda_o_comunidad,v8_abastecimiento_de_agua__otra,v9_area__urbano,v9_area__rural,v10a_suministro_agua_días_semana_seca__promedio,v10b_suministro_agua_horas_dia_seca__promedio,v10c_suministro_agua_días_semana_lluviosa__promedio,v10d_suministro_agua_horas_dia_lluviosa__promedio,v17_numero_hogares_en_vivienda__promedio,v7a_cuartos__promedio,v7b_dormitorios__promedio,p1_relacion__jefe_a,p1_relacion__cónyuge_del_jefe_o_la_jefa,p1_relacion__hijo_a,p1_relacion__hijastro_a,p1_relacion__nieto_a_o_bisnieto_a,p1_relacion__padre_o_madre_del_jefe,p1_relacion__hermano_a,p1_relacion__sobrino_a,p1_relacion__suegro_a,p1_relacion__yerno_o_nuera,p1_relacion__cuñado_a,p1_relacion__otro_pariente,p1_relacion__no_pariente,p1_relacion__servicio_doméstico,p10_tipo_discapacidad__discapacidad_física,p10_tipo_discapacidad__discapacidad_visual,p10_tipo_discapacidad__discapacidad_auditiva,p10_tipo_discapacidad__discapacidad_intelectual,p10_tipo_discapacidad__discapacidad_mental,p10_tipo_discapacidad__discapacidad_visceral,p10_tipo_discapacidad__discapacidad_múltiple,p11_acceso_celular__sí,p11_acceso_celular__no,p11_acceso_celular__no_declarado,p12_acceso_computadora__sí,p12_acceso_computadora__no,p12_acceso_computadora__no_declarado,p13_acceso_internet__sí,p13_acceso_internet__no,p13_acceso_internet__no_declarado,p14_leer_y_escribir__sí,p14_leer_y_escribir__no,p14_leer_y_escribir__no_declarado,p15_estudios__sí,p15_estudios__no,p15_estudios__no_declarado,p15_estudios__pública_oficial,p15_estudios__privada_particular,p15_estudios__sí_alguna_vez,p15_estudios__nunca_ha_asistido,p15_estudios__no_declarado_2,p16_grado_estudios_mas_alto__ningún_grado,p16_grado_estudios_mas_alto__prekinder_o_prejardín,p16_grado_estudios_mas_alto__kinder_o_jardín,p16_grado_estudios_mas_alto__enseñanza_especial,p16_grado_estudios_mas_alto__primaria_1,p16_grado_estudios_mas_alto__primaria_2,p16_grado_estudios_mas_alto__primaria_3,p16_grado_estudios_mas_alto__primaria_4,p16_grado_estudios_mas_alto__primaria_5,p16_grado_estudios_mas_alto__primaria_6,p16_grado_estudios_mas_alto__vocacional_1,p16_grado_estudios_mas_alto__vocacional_2,p16_grado_estudios_mas_alto__vocacional_3,p16_grado_estudios_mas_alto__primer_ciclo_premedia_1,p16_grado_estudios_mas_alto__primer_ciclo_premedia_2,p16_grado_estudios_mas_alto__primer_ciclo_premedia_3,p16_grado_estudios_mas_alto__segundo_ciclo_media_4,p16_grado_estudios_mas_alto__segundo_ciclo_media_5,p16_grado_estudios_mas_alto__segundo_ciclo_media_6,p16_grado_estudios_mas_alto__superior_no_universitaria_1,p16_grado_estudios_mas_alto__superior_no_universitaria_2,p16_grado_estudios_mas_alto__superior_universitaria_1,p16_grado_estudios_mas_alto__superior_universitaria_2,p16_grado_estudios_mas_alto__superior_universitaria_3,p16_grado_estudios_mas_alto__superior_universitaria_4,p16_grado_estudios_mas_alto__superior_universitaria_5,p16_grado_estudios_mas_alto__superior_universitaria_6,p16_grado_estudios_mas_alto__especialidad_postgrado,p16_grado_estudios_mas_alto__maestría_1,p16_grado_estudios_mas_alto__maestría_2,p16_grado_estudios_mas_alto__doctorado_1,p16_grado_estudios_mas_alto__doctorado_2,p16_grado_estudios_mas_alto__doctorado_3,p16_grado_estudios_mas_alto__doctorado_4,p16_grado_estudios_mas_alto__no_declarado,p17_condición_laboral__ocupada,p17_condición_laboral__desocupada,p17_condición_laboral__no_económicamente_activa,p17_condición_laboral__no_declarado,p18_motivo_no_busca_trabajo__ya_consiguió_trabajo,p18_motivo_no_busca_trabajo__buscó_antes_y_espera_noticias,p18_motivo_no_busca_trabajo__se_cansó_de_buscar_trabajo,p18_motivo_no_busca_trabajo__jubilado_o_pensionado,p18_motivo_no_busca_trabajo__estudiante_solamente,p18_motivo_no_busca_trabajo__ama_de_casa_solamente_o_trabajador_del_hogar,p18_motivo_no_busca_trabajo__incapacitado_permanentemente_para_trabajar,p18_motivo_no_busca_trabajo__otro_motivo,p19_lugar_trabajo__empresa_o_institución_u_otro_lugar_de_trabajo,p19_lugar_trabajo__en_su_casa,p19_lugar_trabajo__casa_sitio_o_local_del_cliente,p19_lugar_trabajo__casa_de_familia_servicio_doméstico,p19_lugar_trabajo__en_la_calle_con_o_sin_sitio_fijo,p19_lugar_trabajo__puesto_en_mercado_artesanal_abasto_o_mariscos,p19_lugar_trabajo__en_finca_agropecuaria,p19_lugar_trabajo__en_el_mar_playa_río_o_lago,p19_lugar_trabajo__no_declarado,p2_sexo__hombre,p2_sexo__mujer,p20_categoria_de_ocupacion__empleado_del_gobierno,p20_categoria_de_ocupacion__empleado_de_una_empresa_privada,p20_categoria_de_ocupacion__empleado_del_servicio_doméstico,p20_categoria_de_ocupacion__por_cuenta_propia_o_independiente,p20_categoria_de_ocupacion__patrono_o_dueño,p20_categoria_de_ocupacion__miembro_de_cooperativa_de_producción,p20_categoria_de_ocupacion__trabajador_familiar,p20_categoria_de_ocupacion__no_declarado,p21_ingresos_programas_estado__red_de_oportunidades,p21_ingresos_programas_estado__120_a_los_65,p21_ingresos_programas_estado__angel_guardián,p21_ingresos_programas_estado__no_tiene_ingreso,p21_ingresos_programas_estado__no_declarado,p22_hijos_nacidos_vivos__no_declarado,p23_hijos_vivos_actualmente__no_declarado,p25_titulos_estudios_conseguidos__ningún_titulo,p25_titulos_estudios_conseguidos__títulos_de_secundaria,p25_titulos_estudios_conseguidos__títulos_de_vocacional,p25_titulos_estudios_conseguidos__títulos_no_universitarios,p25_titulos_estudios_conseguidos__carreras_técnicas,p25_titulos_estudios_conseguidos__títulos_de_licenciatura,p25_titulos_estudios_conseguidos__títulos_de_posgrado,p25_titulos_estudios_conseguidos__títulos_de_maestría,p25_titulos_estudios_conseguidos__títulos_de_doctorado,p25_titulos_estudios_conseguidos__no_declarado,p26_ocupacion_detallada__miembros_de_las_fuerzas_armadas_y_trabajadores_en_ocupaciones_no_identificables_o_no_declaradas,p26_ocupacion_detallada__directores_y_gerentes_de_los_sectores_publico_privado_y_de_organizaciones_de_interes_social,p26_ocupacion_detallada__profesionales_cientificos_e_intelectuales,p26_ocupacion_detallada__tecnicos_y_profesionales_de_nivel_medio,p26_ocupacion_detallada__empleados_de_oficina,p26_ocupacion_detallada__trabajadores_de_los_servicios_y_vendedores_de_comercios_y_mercados,p26_ocupacion_detallada__agricultores_y_trabajadores_agropecuarios_forestales_de_la_pesca_y_caza,p26_ocupacion_detallada__artesanos_y_trabajadores_de_la_mineria_la_construccion_la_industria_manufacturera_la_mecanica_y_ocupaciones_afines,p26_ocupacion_detallada__operadores_de_instalaciones_fijas_y_maquinas_ensambladores_conductores_y_operadores_de_maquinarias_moviles,p26_ocupacion_detallada__trabajadores_no_calificados_de_los_servicios_la_mineria_construccion_industria_manufacturera_transporte_y_otras_ocupaciones_elementales,p27_grupo_ingreso_persona__menos_de_100,p27_grupo_ingreso_persona__100_124,p27_grupo_ingreso_persona__125_174,p27_grupo_ingreso_persona__175_249,p27_grupo_ingreso_persona__250_399,p27_grupo_ingreso_persona__400_599,p27_grupo_ingreso_persona__600_799,p27_grupo_ingreso_persona__800_999,p27_grupo_ingreso_persona__1000_1499,p27_grupo_ingreso_persona__1500_1999,p27_grupo_ingreso_persona__2000_2499,p27_grupo_ingreso_persona__2500_2999,p27_grupo_ingreso_persona__3000_3999,p27_grupo_ingreso_persona__4000_4999,p27_grupo_ingreso_persona__5000_y_más,p27_grupo_ingreso_persona__no_declarado,p3_edad_digitos__0_0,p3_edad_digitos__1_0,p3_edad_digitos__2_0,p3_edad_digitos__3_0,p3_edad_digitos__4_0,p3_edad_digitos__5_0,p3_edad_digitos__6_0,p3_edad_digitos__7_0,p3_edad_digitos__8_0,p3_edad_digitos__9_0,p3_edad_digitos__10_0,p3_edad_digitos__11_0,p3_edad_digitos__12_0,p3_edad_digitos__13_0,p3_edad_digitos__14_0,p3_edad_digitos__15_0,p3_edad_digitos__16_0,p3_edad_digitos__17_0,p3_edad_digitos__18_0,p3_edad_digitos__19_0,p3_edad_digitos__20_0,p3_edad_digitos__21_0,p3_edad_digitos__22_0,p3_edad_digitos__23_0,p3_edad_digitos__24_0,p3_edad_digitos__25_0,p3_edad_digitos__26_0,p3_edad_digitos__27_0,p3_edad_digitos__28_0,p3_edad_digitos__29_0,p3_edad_digitos__30_0,p3_edad_digitos__31_0,p3_edad_digitos__32_0,p3_edad_digitos__33_0,p3_edad_digitos__34_0,p3_edad_digitos__35_0,p3_edad_digitos__36_0,p3_edad_digitos__37_0,p3_edad_digitos__38_0,p3_edad_digitos__39_0,p3_edad_digitos__40_0,p3_edad_digitos__41_0,p3_edad_digitos__42_0,p3_edad_digitos__43_0,p3_edad_digitos__44_0,p3_edad_digitos__45_0,p3_edad_digitos__46_0,p3_edad_digitos__47_0,p3_edad_digitos__48_0,p3_edad_digitos__49_0,p3_edad_digitos__50_0,p3_edad_digitos__51_0,p3_edad_digitos__52_0,p3_edad_digitos__53_0,p3_edad_digitos__54_0,p3_edad_digitos__55_0,p3_edad_digitos__56_0,p3_edad_digitos__57_0,p3_edad_digitos__58_0,p3_edad_digitos__59_0,p3_edad_digitos__60_0,p3_edad_digitos__61_0,p3_edad_digitos__62_0,p3_edad_digitos__63_0,p3_edad_digitos__64_0,p3_edad_digitos__65_0,p3_edad_digitos__66_0,p3_edad_digitos__67_0,p3_edad_digitos__68_0,p3_edad_digitos__69_0,p3_edad_digitos__70_0,p3_edad_digitos__71_0,p3_edad_digitos__72_0,p3_edad_digitos__73_0,p3_edad_digitos__74_0,p3_edad_digitos__75_0,p3_edad_digitos__76_0,p3_edad_digitos__77_0,p3_edad_digitos__78_0,p3_edad_digitos__79_0,p3_edad_digitos__80_0,p3_edad_digitos__81_0,p3_edad_digitos__82_0,p3_edad_digitos__83_0,p3_edad_digitos__84_0,p3_edad_digitos__85_0,p3_edad_digitos__86_0,p3_edad_digitos__87_0,p3_edad_digitos__88_0,p3_edad_digitos__89_0,p3_edad_digitos__90_0,p3_edad_digitos__91_0,p3_edad_digitos__92_0,p3_edad_digitos__93_0,p3_edad_digitos__94_0,p3_edad_digitos__95_0,p3_edad_digitos__96_0,p3_edad_digitos__97_0,p3_edad_digitos__98_0,p3_edad_digitos__99_0,p3_edad_digitos__100_0,p3_edad_digitos__101_0,p3_edad_digitos__102_0,p3_edad_digitos__103_0,p3_edad_digitos__104_0,p3_edad_digitos__105_0,p3_edad_digitos__106_0,p3_edad_digitos__107_0,p3_edad_digitos__108_0,p3_edad_digitos__109_0,p3_edad_digitos__110_0,p3_edad_digitos__111_0,p3_edad_digitos__112_0,p3_edad_digitos__113_0,p3_edad_digitos__115_0,p3_edad_digitos__116_0,p3_edad_digitos__124_0,p3_edad_digitos__no_declarada,p3a_grupos_edad__0_14,p3a_grupos_edad__15_64,p3a_grupos_edad__65_y_mas,p3a_grupos_edad__no_declarada,p3b_grupos_edad_quinquenal__0_4,p3b_grupos_edad_quinquenal__5_9,p3b_grupos_edad_quinquenal__10_14,p3b_grupos_edad_quinquenal__15_19,p3b_grupos_edad_quinquenal__20_24,p3b_grupos_edad_quinquenal__25_29,p3b_grupos_edad_quinquenal__30_34,p3b_grupos_edad_quinquenal__35_39,p3b_grupos_edad_quinquenal__40_44,p3b_grupos_edad_quinquenal__45_49,p3b_grupos_edad_quinquenal__50_54,p3b_grupos_edad_quinquenal__55_59,p3b_grupos_edad_quinquenal__60_64,p3b_grupos_edad_quinquenal__65_69,p3b_grupos_edad_quinquenal__70_74,p3b_grupos_edad_quinquenal__75_79,p3b_grupos_edad_quinquenal__80_84,p3b_grupos_edad_quinquenal__85_89,p3b_grupos_edad_quinquenal__90_94,p3b_grupos_edad_quinquenal__95_99,p3b_grupos_edad_quinquenal__100_y_más,p3b_grupos_edad_quinquenal__no_declarada,p4a_inscrito_registro_civil__en_el_registro_civil_de_panamá,p4a_inscrito_registro_civil__en_el_registro_civil_de_otro_país,p4a_inscrito_registro_civil__en_ambos,p4a_inscrito_registro_civil__no_está_registrado,p4a_inscrito_registro_civil__no_declarado,p4b_pais_ciudadania__de_este_país_panamá,p4b_pais_ciudadania__de_otro_país,p4b_pais_ciudadania__ambos,p4b_pais_ciudadania__no_tiene,p4b_pais_ciudadania__no_declarado,p5_estado_conyugal__unido_a,p5_estado_conyugal__separado_a_de_matrimonio,p5_estado_conyugal__separado_a_de_unión,p5_estado_conyugal__casado_a,p5_estado_conyugal__viudo_a,p5_estado_conyugal__divorciado_a,p5_estado_conyugal__soltero_a,p5_estado_conyugal__menor_de_15_años,p5_estado_conyugal__no_declarado,p6_donde_vivia_antes__en_este_mismo_lugar_poblado_barrio_o_barriada,p6_donde_vivia_antes__en_otro_lugar_poblado_barrio_o_barriada,p6_donde_vivia_antes__en_otro_país,p6_donde_vivia_antes__no_declarado,p7_grupo_indígena__kuna,p7_grupo_indígena__ngäbe,p7_grupo_indígena__buglé,p7_grupo_indígena__naso,p7_grupo_indígena__teribe,p7_grupo_indígena__bokota,p7_grupo_indígena__emberá,p7_grupo_indígena__wounaan,p7_grupo_indígena__bri_bri,p7_grupo_indígena__otro_grupo_indígena,p7_grupo_indígena__ninguno,p7_grupo_indígena__no_declarado,p8_grupo_afrodescendiente__afrodescendiente,p8_grupo_afrodescendiente__afropanameño_a,p8_grupo_afrodescendiente__moreno_a,p8_grupo_afrodescendiente__negro_a,p8_grupo_afrodescendiente__afrocolonial,p8_grupo_afrodescendiente__afroantillano_a,p8_grupo_afrodescendiente__otro_grupo_afrodescendiente_culiso_trigueño_mulato_canela_carabalí_costeño,p8_grupo_afrodescendiente__ninguno,p8_grupo_afrodescendiente__no_declarado,p9_seguro_social__asegurado_directo,p9_seguro_social__beneficiario,p9_seguro_social__jubilado_o_pensionado_por_vejez,p9_seguro_social__pensionado_por_enfermedad_o_accidente,p9_seguro_social__jubilado_o_pensionado_de_otro_país,p9_seguro_social__no_tiene,p9_seguro_social__no_declarado,p22_hijos_nacidos_vivos__promedio,p22_hijos_nacidos_vivos__pct_no_declarado,p23_hijos_vivos_actualmente__promedio,p23_hijos_vivos_actualmente__pct_no_declarado,p24_años_estudio_aprobados__promedio,h10_grupo_afrodescendiente_jefe_hogar__afrodescendiente,h10_grupo_afrodescendiente_jefe_hogar__afropanameño_a,h10_grupo_afrodescendiente_jefe_hogar__moreno_a,h10_grupo_afrodescendiente_jefe_hogar__negro_a,h10_grupo_afrodescendiente_jefe_hogar__afrocolonial,h10_grupo_afrodescendiente_jefe_hogar__afroantillano_a,h10_grupo_afrodescendiente_jefe_hogar__otro_grupo_afrodescendiente_culiso_trigueño_mulato_canela_carabalí_costeño,h10_grupo_afrodescendiente_jefe_hogar__ninguno,h10_grupo_afrodescendiente_jefe_hogar__no_declarado,h14_grupo_ingreso_hogar__menos_de_100,h14_grupo_ingreso_hogar__100_124,h14_grupo_ingreso_hogar__125_174,h14_grupo_ingreso_hogar__175_249,h14_grupo_ingreso_hogar__250_399,h14_grupo_ingreso_hogar__400_599,h14_grupo_ingreso_hogar__600_799,h14_grupo_ingreso_hogar__800_999,h14_grupo_ingreso_hogar__1000_1499,h14_grupo_ingreso_hogar__1500_1999,h14_grupo_ingreso_hogar__2000_2499,h14_grupo_ingreso_hogar__2500_2999,h14_grupo_ingreso_hogar__3000_3999,h14_grupo_ingreso_hogar__4000_4999,h14_grupo_ingreso_hogar__5000_y_más,h14_grupo_ingreso_hogar__no_declarado,h1a_bienes_estufa__sí,h1a_bienes_estufa__no,h1b_bienes_refrigeradora__sí,h1b_bienes_refrigeradora__no,h1c_bienes_lavadora__sí,h1c_bienes_lavadora__no,h1d_bienes_maquina_de_coser__sí,h1d_bienes_maquina_de_coser__no,h1e_bienes_abanico_electrico__sí,h1e_bienes_abanico_electrico__no,h1f_bienes_acondicionador_de_aire__sí,h1f_bienes_acondicionador_de_aire__no,h1g_bienes_radio__sí,h1g_bienes_radio__no,h1h_bienes_telefono_residencial__sí,h1h_bienes_telefono_residencial__no,h1i_bienes_telefono_celular_activo__sí,h1i_bienes_telefono_celular_activo__no,h1j_bienes_televisor__sí,h1j_bienes_televisor__no,h1k_bienes_conexion_tv_cable__sí,h1k_bienes_conexion_tv_cable__no,h1l_bienes_computadora_portatil_tableta__sí,h1l_bienes_computadora_portatil_tableta__no,h1m_bienes_acceso_internet__sí,h1m_bienes_acceso_internet__no,h1n_bienes_automovil__sí,h1n_bienes_automovil__no,h5a_actividad_cultivo_granos_basicos__sí,h5a_actividad_cultivo_granos_basicos__no,h5b_actividad_cria_ganado__sí,h5b_actividad_cria_ganado__no,h5c_actividad_silvicultura_apicultura_otras__sí,h5c_actividad_silvicultura_apicultura_otras__no,h6_tipo_hogar__unipersonal,h6_tipo_hogar__nuclear,h6_tipo_hogar__extenso,h6_tipo_hogar__compuesto,h6_tipo_hogar__colectivo,h7_sexo_jefe_hogar__hombre,h7_sexo_jefe_hogar__mujer,h8_edad_jefe_hogar__no_declarada,h9_grupo_indigena_jefe_hogar__kuna,h9_grupo_indigena_jefe_hogar__ngäbe,h9_grupo_indigena_jefe_hogar__buglé,h9_grupo_indigena_jefe_hogar__naso,h9_grupo_indigena_jefe_hogar__teribe,h9_grupo_indigena_jefe_hogar__bokota,h9_grupo_indigena_jefe_hogar__emberá,h9_grupo_indigena_jefe_hogar__wounaan,h9_grupo_indigena_jefe_hogar__bri_bri,h9_grupo_indigena_jefe_hogar__otro_grupo_indígena,h9_grupo_indigena_jefe_hogar__ninguno,h9_grupo_indigena_jefe_hogar__no_declarado,h12_num_hombres__promedio,h13_num_mujeres__promedio,h2_num_miembros_otro_pais__promedio,h3_num_miembros_diagnosticados_covid_19__promedio,h4_num_miembros_fallecer__promedio,h8_edad_jefe_hogar__promedio +10102,Bocas del Toro,Bocas del Toro,Bastimentos,1114,7,12,4,0,0,0,0,2,0,0,7,3,0,0,0,362,62,214,412,12,9,131,39,30,5,266,0,27,250,0,60,33,0,2,170,123,328,5,8,1,3,594,38,0,0,0,6,638,0,221,103,58,93,24,0,0,34,552,51,1,0,100,520,0,3,4,11,0,586,0,0,1,15,34,2,33,93,0,6,503,3,0,225,97,6,30,1,163,57,0,57,2,0,0,1149,5.350931677018633,8.559006211180124,6.25776397515528,16.75465838509317,1.0015673981191222,3.2962382445141065,2.188087774294671,649,382,1108,78,250,4,30,15,3,36,6,2,26,0,11,10,5,6,4,4,5,1402,913,0,375,1940,0,1020,1295,0,1998,317,0,792,1523,0,740,52,1324,199,0,200,36,51,5,94,92,107,105,113,343,0,0,0,127,145,170,90,124,314,0,14,21,30,19,66,21,18,2,0,8,0,0,0,0,0,769,135,1048,0,1,89,30,90,475,444,20,19,507,53,80,9,51,4,30,110,0,1356,1233,63,435,10,305,19,3,8,1,66,24,4,1050,7,0,0,1439,376,0,16,13,98,2,8,0,0,2,50,34,43,28,175,81,157,63,271,1693,89,63,102,119,206,149,42,54,17,24,12,6,1,5,7,66.0,65.0,79.0,64.0,63.0,65.0,52.0,59.0,60.0,64.0,69.0,56.0,74.0,54.0,62.0,58.0,58.0,71.0,48.0,49.0,45.0,39.0,44.0,38.0,25.0,50.0,40.0,30.0,34.0,42.0,38.0,40.0,26.0,40.0,26.0,38.0,37.0,33.0,32.0,26.0,26.0,23.0,19.0,26.0,30.0,29.0,15.0,25.0,24.0,17.0,24.0,17.0,27.0,18.0,17.0,17.0,14.0,12.0,24.0,20.0,25.0,12.0,13.0,16.0,11.0,11.0,12.0,12.0,8.0,7.0,11.0,1.0,14.0,6.0,4.0,6.0,5.0,5.0,1.0,6.0,4.0,0.0,4.0,1.0,0.0,3.0,1.0,1.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,952,1508,129,0,337,300,315,284,191,196,170,166,124,110,103,87,77,50,36,23,9,6,3,2,0,0,2324,74,75,116,0,2324,85,64,116,0,736,13,178,249,40,6,415,952,0,1815,632,142,0,1,1560,15,2,0,1,0,0,0,2,1008,0,315,69,51,156,2,7,152,1837,0,310,426,76,1,21,1755,0,2.611353711790393,0.0,3.882352941176471,0.0,6.31981460023175,114,26,15,41,0,2,43,408,0,56,20,19,50,67,111,89,54,83,28,28,14,7,2,9,2,617,32,312,337,318,331,51,598,318,331,28,621,325,324,11,638,483,166,333,316,159,174,174,475,245,404,6,643,226,423,161,488,67,582,123,359,150,17,2,409,240,0,0,321,5,0,0,0,0,0,0,2,321,0,2.08294930875576,1.8940092165898617,1.6,1.1,1.1,46.28197226502312 +10408,Bocas del Toro,Almirante,Cauchero,870,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,59,167,251,198,28,28,196,12,15,0,0,0,4,281,4,9,173,0,6,0,0,413,15,46,3,0,147,330,0,0,0,0,477,44,160,56,0,43,92,0,0,0,465,12,0,0,8,466,0,2,0,1,0,439,0,0,0,0,38,0,2,23,0,36,415,1,0,110,95,1,134,25,29,77,0,1,4,1,0,872,5.482926829268293,15.795121951219512,6.502439024390244,20.336585365853654,1.0041928721174005,3.6960167714884697,2.5220125786163523,479,331,1390,37,542,11,17,42,6,72,6,0,1,0,43,20,11,4,5,9,8,307,2287,0,26,2568,0,34,2560,0,1915,679,0,1049,1545,0,1041,8,994,551,0,570,36,44,4,150,126,169,168,163,473,0,1,0,90,121,178,62,96,123,0,1,3,1,2,5,6,2,0,0,0,0,0,0,0,0,653,29,1340,0,1,7,15,38,615,588,76,23,78,44,12,1,26,0,498,3,0,1431,1503,20,62,1,313,63,0,203,0,94,77,2,1112,106,0,0,1878,131,0,0,2,11,0,0,0,0,0,3,7,3,4,29,518,48,3,67,2455,116,64,66,50,33,25,10,9,0,0,0,0,0,0,106,75.0,75.0,111.0,79.0,94.0,93.0,99.0,107.0,89.0,90.0,84.0,106.0,94.0,74.0,86.0,78.0,78.0,79.0,61.0,61.0,51.0,38.0,46.0,34.0,27.0,30.0,27.0,26.0,33.0,33.0,36.0,22.0,32.0,29.0,39.0,24.0,33.0,27.0,29.0,34.0,20.0,19.0,21.0,22.0,12.0,26.0,29.0,19.0,25.0,13.0,19.0,14.0,14.0,26.0,19.0,11.0,15.0,12.0,14.0,13.0,18.0,7.0,14.0,8.0,7.0,8.0,5.0,11.0,13.0,3.0,8.0,10.0,8.0,6.0,12.0,6.0,9.0,8.0,3.0,9.0,9.0,5.0,3.0,1.0,7.0,1.0,0.0,2.0,0.0,0.0,1.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1356,1424,154,0,434,478,444,357,196,149,158,147,94,112,92,65,54,40,44,35,25,3,6,1,0,0,2761,4,0,169,0,2761,4,0,169,0,835,13,112,135,53,1,429,1356,0,2173,756,5,0,0,2792,11,0,0,0,0,0,0,0,131,0,0,23,23,2,0,0,53,2833,0,47,138,39,3,0,2707,0,3.353623188405797,0.0,5.293046357615894,0.0,4.058963871847308,0,7,8,1,0,0,9,454,0,79,35,62,76,102,57,24,24,13,3,1,0,0,1,0,2,239,240,13,466,22,457,83,396,9,470,4,475,75,404,4,475,107,372,21,458,8,13,6,473,14,465,3,476,382,97,326,153,6,473,35,228,215,1,0,327,152,0,0,448,0,0,0,0,0,0,0,0,31,0,2.987473903966597,3.137787056367432,0.0,1.0731707317073171,1.0731707317073171,49.954070981210855 +10104,Bocas del Toro,Bocas del Toro,Punta Laurel,573,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,23,34,318,52,5,15,95,199,6,3,0,0,32,219,1,29,88,0,6,0,2,349,2,12,7,3,275,100,0,0,0,0,375,1,85,69,3,26,16,0,0,1,355,19,0,0,5,368,0,2,0,0,0,343,0,0,0,2,30,0,0,11,0,5,359,0,0,28,17,41,85,3,156,24,0,8,0,13,0,576,7.0,16.711111111111112,7.0,21.511111111111116,1.0,3.0933333333333333,2.045333333333333,376,250,939,72,237,6,10,18,3,34,6,5,23,0,9,8,0,4,4,1,2,645,1081,0,49,1677,0,273,1453,0,1378,348,0,718,1008,0,709,9,763,245,0,248,34,54,0,78,90,138,95,97,303,0,0,0,87,87,156,44,60,119,0,2,3,1,4,2,10,10,4,0,0,0,0,0,0,0,620,11,701,0,0,5,5,24,349,289,15,24,73,103,37,33,23,0,165,194,0,998,981,17,75,36,420,7,0,73,0,132,32,9,566,4,0,0,1177,128,0,1,1,21,4,0,0,0,0,3,3,8,3,61,269,189,15,80,1637,94,57,65,44,35,16,5,7,4,8,0,2,0,1,4,66.0,66.0,65.0,56.0,73.0,57.0,77.0,60.0,69.0,58.0,61.0,62.0,54.0,59.0,49.0,56.0,58.0,45.0,50.0,36.0,27.0,27.0,31.0,23.0,20.0,31.0,18.0,25.0,17.0,26.0,16.0,19.0,23.0,17.0,24.0,17.0,27.0,24.0,18.0,23.0,19.0,14.0,20.0,13.0,18.0,11.0,19.0,9.0,11.0,11.0,11.0,5.0,9.0,16.0,14.0,6.0,8.0,6.0,7.0,7.0,9.0,9.0,5.0,10.0,8.0,9.0,3.0,7.0,6.0,1.0,6.0,7.0,6.0,6.0,1.0,4.0,2.0,4.0,1.0,2.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,932,973,74,0,326,321,285,245,128,117,99,109,84,61,55,34,41,26,26,13,4,4,0,1,0,0,1885,14,10,70,0,1885,14,10,70,0,578,4,69,104,15,1,278,930,0,1424,523,32,0,1,1851,17,0,1,0,0,0,1,0,108,0,70,519,28,2,1,1,17,1341,0,46,99,8,3,15,1808,0,3.303353658536585,0.0,4.600467289719626,0.0,4.6442647801920165,24,81,8,2,1,1,9,250,0,60,17,35,61,75,53,36,14,10,2,6,0,1,2,2,1,322,54,49,327,50,326,41,335,23,353,6,370,110,266,0,376,163,213,57,319,18,39,21,355,46,330,3,373,207,169,166,210,6,370,39,208,119,10,0,240,136,0,1,324,6,0,0,0,0,0,1,0,44,0,2.654255319148936,2.609042553191489,0.0,1.0,1.0,44.76329787234042 +10217,Bocas del Toro,Changuinola,Finca 60,1100,18,29,0,0,0,0,0,1,0,0,0,2,0,0,134,727,46,74,871,36,2,6,0,58,8,900,0,3,29,0,8,28,0,13,62,760,123,7,24,1,4,930,19,0,0,0,32,981,0,52,33,50,23,8,0,0,91,837,51,1,1,765,204,0,1,10,1,0,976,0,2,0,0,3,0,78,818,0,30,55,0,904,0,0,3,0,0,3,11,2,9,45,4,0,1150,6.991150442477876,23.10508849557522,6.981194690265487,23.06858407079646,1.0509683995922527,3.110091743119266,2.0774719673802244,1033,609,2092,126,873,31,101,148,8,205,30,21,51,1,48,46,8,12,39,47,24,3272,1509,0,1947,2834,0,3428,1353,0,4129,652,0,1747,3034,0,1666,81,2457,577,0,583,62,105,16,147,185,217,210,181,537,0,0,1,261,289,372,210,227,728,6,11,74,54,64,69,120,23,7,3,17,1,0,0,1,0,1434,312,2259,0,0,80,67,208,1070,894,46,41,1297,44,89,55,94,0,61,9,4,2779,2550,242,1098,58,232,15,0,4,4,51,27,33,1638,1,0,0,2826,935,1,12,33,175,6,16,1,0,4,29,98,58,45,265,61,97,68,1021,3287,146,99,149,275,615,428,157,111,42,15,2,1,0,1,1,136.0,129.0,153.0,130.0,136.0,124.0,139.0,137.0,119.0,121.0,114.0,128.0,123.0,125.0,108.0,113.0,112.0,121.0,109.0,125.0,109.0,125.0,88.0,122.0,99.0,98.0,97.0,85.0,79.0,80.0,74.0,65.0,83.0,62.0,60.0,65.0,58.0,63.0,55.0,57.0,49.0,65.0,70.0,45.0,43.0,42.0,41.0,51.0,56.0,49.0,49.0,41.0,47.0,38.0,33.0,29.0,30.0,27.0,29.0,27.0,23.0,27.0,29.0,27.0,16.0,18.0,8.0,15.0,12.0,14.0,7.0,11.0,11.0,19.0,19.0,9.0,7.0,6.0,9.0,18.0,9.0,7.0,1.0,1.0,7.0,0.0,2.0,2.0,5.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1922,3187,220,0,684,640,598,580,543,439,344,298,272,239,208,142,122,67,67,49,25,9,3,0,0,0,5252,11,7,59,0,5253,12,5,59,0,1491,9,470,402,71,5,961,1920,0,3925,1380,24,0,23,4413,14,20,9,0,0,0,0,23,827,0,25,43,126,10,0,1,85,5039,0,1035,2020,184,39,4,2047,0,2.3384694401643555,0.0,3.5430194805194803,0.0,6.380746856821167,10,9,26,7,0,1,22,958,0,21,6,14,24,64,150,164,119,197,113,75,46,29,6,3,0,976,57,759,274,733,300,145,888,773,260,63,970,495,538,56,977,888,145,742,291,387,355,244,789,509,524,121,912,182,851,163,870,120,913,144,440,425,24,1,670,363,0,10,761,4,4,2,0,0,0,0,8,244,0,2.6876208897485494,2.4661508704061896,1.3333333333333333,1.0638297872340423,1.0638297872340423,47.26331074540174 +10203,Bocas del Toro,Changuinola,Guabito,2012,20,2,3,0,0,0,0,0,0,0,0,0,0,0,25,961,399,59,1341,44,5,7,0,43,4,959,0,3,199,4,179,94,0,6,113,445,795,12,72,6,1,1301,122,1,0,0,20,1444,6,203,79,71,198,36,0,9,58,1318,56,0,3,768,610,0,7,23,27,9,1421,0,1,0,0,19,3,148,741,0,132,420,3,919,0,2,64,9,1,197,12,11,217,12,0,1202,835,4.411509229098805,11.545059717698154,3.434310532030402,9.326818675352875,1.028393351800554,3.234764542936288,2.0810249307479225,1485,876,2901,168,719,33,94,77,8,138,13,18,43,0,45,36,11,27,11,15,7,3601,2249,0,1060,4790,0,3050,2800,0,4885,965,0,2163,3687,0,2056,107,2899,788,0,798,59,111,1,222,243,298,277,270,711,0,0,0,294,305,434,243,279,835,1,23,49,50,71,77,138,29,8,1,23,0,0,0,0,0,1709,164,2868,0,7,63,47,182,1313,1240,44,89,1133,129,160,41,129,2,207,2,1,3267,3306,363,891,46,435,19,2,47,1,130,71,17,2518,33,0,0,3435,1013,0,22,34,210,7,20,0,0,2,68,133,61,74,373,111,206,90,755,4600,229,147,238,347,362,253,129,128,51,32,8,8,5,3,33,165.0,188.0,183.0,187.0,186.0,196.0,200.0,179.0,180.0,168.0,166.0,153.0,158.0,154.0,153.0,141.0,147.0,153.0,120.0,126.0,104.0,128.0,118.0,125.0,83.0,130.0,101.0,103.0,83.0,76.0,79.0,77.0,76.0,70.0,81.0,70.0,82.0,72.0,78.0,57.0,78.0,62.0,57.0,39.0,45.0,58.0,61.0,52.0,50.0,53.0,63.0,49.0,64.0,59.0,50.0,37.0,37.0,34.0,48.0,47.0,27.0,28.0,25.0,30.0,22.0,20.0,24.0,23.0,21.0,16.0,21.0,18.0,16.0,19.0,15.0,8.0,11.0,15.0,11.0,8.0,9.0,6.0,6.0,5.0,2.0,5.0,5.0,5.0,2.0,3.0,2.0,1.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2616,3655,302,0,909,923,784,687,558,493,383,359,281,274,285,203,132,104,89,53,28,20,5,3,0,0,6174,125,112,162,0,6180,128,103,162,0,1823,44,410,509,85,15,1073,2614,0,2942,3198,433,0,4,4113,15,526,51,0,1,1,52,81,1729,0,171,113,199,89,4,13,488,5496,0,839,1551,170,18,4,3991,0,2.543117744610282,0.0,3.765044814340589,0.0,6.042446371519854,69,31,72,45,2,8,143,1115,0,111,68,74,138,208,246,184,112,150,76,57,17,24,8,11,1,1374,111,776,709,816,669,204,1281,777,708,143,1342,671,814,125,1360,1167,318,832,653,577,255,338,1147,929,556,250,1235,415,1070,331,1154,27,1458,209,820,431,25,0,829,656,0,2,712,5,146,19,0,1,1,18,18,563,0,2.2,2.2262626262626264,1.0769230769230769,1.0307692307692309,1.0307692307692309,46.01481481481481 +10207,Bocas del Toro,Changuinola,Las Tablas,1223,11,0,0,0,0,0,0,0,0,0,7,0,0,0,275,400,93,153,724,44,8,100,0,43,2,697,0,10,68,4,78,62,0,2,0,435,406,32,48,0,0,854,61,1,0,0,5,921,3,153,38,67,30,22,0,0,61,796,58,0,6,566,332,0,7,15,0,1,899,0,1,0,0,19,2,76,626,0,76,142,1,0,820,0,25,10,18,2,34,0,2,10,0,762,479,6.741463414634146,22.26219512195122,6.646341463414634,21.353658536585368,1.017372421281216,3.554831704668838,2.526601520086862,944,548,2114,138,884,10,46,71,7,161,25,12,42,0,19,19,13,16,22,24,11,2634,1814,0,485,3963,0,2024,2424,0,3683,765,0,1774,2674,0,1705,69,2067,607,0,609,40,128,10,230,217,237,191,186,559,0,0,5,214,241,310,161,188,653,2,22,29,29,41,21,25,90,6,0,4,0,0,0,0,0,1124,272,2137,0,0,161,77,178,1045,859,32,23,800,69,59,22,60,0,250,0,13,2483,2519,139,808,27,217,27,0,42,13,104,39,15,2097,1,0,0,2605,774,6,25,15,102,2,4,0,0,13,46,49,25,49,149,165,86,51,763,3716,124,114,167,255,341,133,73,51,20,5,0,1,0,1,1,133.0,134.0,139.0,148.0,145.0,146.0,169.0,174.0,154.0,127.0,120.0,133.0,123.0,108.0,130.0,108.0,122.0,108.0,97.0,112.0,87.0,99.0,90.0,89.0,63.0,82.0,83.0,63.0,75.0,60.0,58.0,67.0,58.0,45.0,65.0,53.0,55.0,43.0,63.0,49.0,37.0,41.0,57.0,47.0,39.0,29.0,34.0,42.0,41.0,39.0,40.0,34.0,29.0,36.0,30.0,24.0,30.0,18.0,33.0,18.0,22.0,20.0,17.0,20.0,29.0,16.0,19.0,15.0,21.0,5.0,10.0,9.0,7.0,23.0,13.0,6.0,8.0,8.0,9.0,15.0,10.0,5.0,3.0,6.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2083,2700,219,0,699,770,614,547,428,363,293,263,221,185,169,123,108,76,62,46,25,5,4,1,0,0,4852,15,9,126,0,4853,15,8,126,0,1389,21,286,316,86,6,815,2083,0,3707,1260,35,0,16,3902,6,39,30,11,2,0,36,48,912,0,42,74,82,7,4,3,114,4676,0,670,1564,173,10,1,2584,0,2.6416152551878858,0.0,4.052205220522052,0.0,5.6987205117952815,12,19,23,3,1,2,35,849,0,72,31,52,71,139,187,119,86,93,48,20,11,5,1,2,0,895,49,570,374,572,372,165,779,460,484,42,902,370,574,31,913,726,218,527,417,406,121,184,760,435,509,152,792,125,819,137,807,4,940,121,428,371,24,0,646,298,0,5,605,4,10,4,5,1,0,11,11,288,0,2.630296610169492,2.6684322033898304,1.0,1.0727272727272728,1.0727272727272728,49.083686440677965 +10208,Bocas del Toro,Changuinola,Cochigró,694,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,221,117,251,37,12,89,0,15,1,0,0,6,288,6,12,59,0,34,0,0,359,7,39,0,0,190,215,0,0,0,0,405,0,186,57,1,8,38,0,0,1,387,17,0,0,30,360,0,1,3,1,10,362,0,0,0,0,43,0,1,94,0,8,296,6,0,155,0,5,7,47,0,188,0,0,1,2,0,695,6.877419354838709,19.283870967741937,6.967741935483871,23.69032258064516,1.019753086419753,3.577777777777778,2.4617283950617286,413,243,972,42,308,11,13,15,2,57,4,2,3,0,14,16,2,8,19,3,4,828,1013,0,35,1806,0,213,1628,0,1438,403,0,716,1125,0,713,3,798,327,0,330,26,50,7,110,96,123,102,106,331,0,0,0,67,98,169,60,53,92,0,0,1,4,2,2,2,8,0,0,1,0,0,0,1,0,1105,6,353,0,0,4,0,12,242,56,15,28,75,65,37,13,47,0,864,9,0,1101,984,30,156,14,459,6,0,445,0,75,49,16,398,0,0,0,1351,98,0,0,3,10,0,1,1,0,0,5,13,4,4,34,810,54,20,167,1577,96,98,110,85,61,31,14,6,2,1,2,1,0,1,0,59.0,55.0,67.0,63.0,65.0,49.0,60.0,79.0,62.0,62.0,60.0,61.0,58.0,43.0,65.0,61.0,48.0,55.0,48.0,39.0,29.0,35.0,33.0,27.0,27.0,29.0,23.0,26.0,33.0,18.0,26.0,16.0,24.0,15.0,17.0,13.0,16.0,28.0,17.0,18.0,20.0,10.0,22.0,17.0,17.0,17.0,12.0,11.0,19.0,19.0,19.0,10.0,15.0,11.0,8.0,15.0,7.0,10.0,11.0,10.0,8.0,9.0,5.0,7.0,11.0,9.0,8.0,7.0,9.0,6.0,8.0,5.0,9.0,8.0,9.0,6.0,6.0,6.0,4.0,9.0,5.0,1.0,2.0,1.0,1.0,1.0,2.0,3.0,1.0,1.0,1.0,0.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,908,1041,136,0,309,312,287,251,151,129,98,92,86,78,63,53,40,39,39,31,10,8,6,1,2,0,2043,1,3,38,0,2043,1,3,38,0,631,5,63,101,38,4,336,907,0,1305,775,5,0,0,1597,3,197,16,0,1,0,9,1,261,0,7,13,25,4,0,0,20,2016,0,61,155,49,10,0,1810,0,3.3608247422680413,0.0,4.7722095671981775,0.0,4.319904076738609,4,3,13,3,0,0,12,378,0,22,17,31,59,96,66,48,38,21,5,5,3,1,0,1,0,262,151,19,394,36,377,59,354,21,392,1,412,131,282,0,413,215,198,56,357,16,40,8,405,99,314,17,396,374,39,245,168,12,401,66,205,139,3,0,277,136,0,0,277,0,54,8,0,1,0,0,0,73,0,2.665859564164649,2.3825665859564165,1.0,1.1176470588235294,1.1176470588235294,49.57142857142857 +10209,Bocas del Toro,Changuinola,La Gloria,987,1,0,0,0,0,0,0,2,0,0,0,0,0,0,4,51,506,53,483,78,19,5,0,22,7,96,0,12,316,9,70,106,0,5,8,0,562,11,31,0,2,404,209,0,0,0,1,614,0,157,64,0,79,74,0,0,1,585,28,0,0,45,554,0,1,8,6,0,595,0,4,0,0,12,3,13,95,0,240,263,3,0,180,6,137,97,49,42,31,62,5,5,0,0,990,6.268817204301075,13.779569892473118,6.354838709677419,17.112903225806452,1.001628664495114,3.6498371335504887,2.623778501628665,615,371,1402,77,581,14,24,28,8,87,8,1,16,0,37,24,7,15,14,11,9,1226,1639,0,82,2783,0,860,2005,0,2316,549,0,1085,1780,0,1080,5,1366,414,0,415,28,92,9,130,139,175,161,132,487,0,0,0,141,168,249,117,128,225,2,5,7,9,11,5,7,19,1,0,3,0,0,0,0,0,662,90,1569,0,2,41,43,70,644,803,32,20,212,25,27,20,20,1,394,0,0,1585,1647,69,184,20,240,7,0,179,0,83,62,18,1559,0,0,0,2026,264,0,0,2,25,1,3,0,0,0,6,23,8,10,69,360,41,8,227,2719,108,45,90,117,74,47,11,11,8,1,0,0,0,1,0,97.0,96.0,84.0,90.0,91.0,85.0,92.0,98.0,88.0,90.0,101.0,104.0,93.0,65.0,104.0,68.0,84.0,60.0,70.0,69.0,56.0,66.0,53.0,50.0,51.0,40.0,38.0,41.0,32.0,49.0,38.0,39.0,26.0,34.0,35.0,37.0,27.0,32.0,44.0,20.0,21.0,17.0,34.0,20.0,23.0,23.0,21.0,27.0,19.0,25.0,32.0,16.0,33.0,18.0,21.0,17.0,18.0,22.0,16.0,18.0,16.0,9.0,16.0,19.0,15.0,6.0,14.0,12.0,9.0,3.0,6.0,11.0,6.0,20.0,15.0,6.0,8.0,4.0,9.0,14.0,7.0,2.0,4.0,3.0,3.0,7.0,1.0,2.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1378,1675,179,0,458,453,467,351,276,200,172,160,115,115,120,91,75,44,58,41,19,10,4,3,0,0,3139,2,5,86,0,3139,2,5,86,0,918,14,141,225,62,6,489,1377,0,2381,843,8,0,2,3089,2,21,2,0,0,1,4,4,107,0,5,4,21,2,0,0,17,3183,0,182,623,78,5,0,2344,0,3.1469353484466835,0.0,4.537760416666667,0.0,4.983601485148514,3,2,7,0,0,0,6,597,0,123,53,57,77,115,86,49,16,19,13,4,1,1,0,1,0,495,120,67,548,60,555,38,577,59,556,4,611,128,487,2,613,285,330,77,538,15,62,14,601,135,480,15,600,385,230,288,327,18,597,59,286,266,4,2,337,278,0,0,573,0,7,1,0,0,0,1,3,30,0,2.5688816855753647,2.6693679092382494,0.0,1.0588235294117647,1.0588235294117647,49.03577235772358 +10501,Bocas del Toro,Comarca Naso Tjër Di,Área de la Comarca Naso Tjër Di,982,4,0,0,0,0,0,0,0,0,0,2,0,0,0,2,116,502,28,567,53,1,1,0,25,1,0,0,15,455,9,22,146,0,1,0,0,485,8,154,0,1,295,351,0,0,0,2,648,0,202,54,1,18,63,0,0,1,629,17,1,0,34,607,0,1,1,3,2,581,0,5,0,0,62,0,5,120,0,5,513,5,0,492,0,6,0,29,6,110,0,5,0,0,0,988,5.774390243902439,18.49390243902439,6.817073170731708,22.90650406504065,1.0092592592592593,3.2685185185185186,2.058641975308642,656,495,1580,74,318,14,12,10,8,68,4,5,7,0,28,11,5,25,11,2,9,1062,1790,0,99,2753,0,462,2390,0,2508,344,0,1123,1729,0,1090,33,1497,232,0,239,82,74,2,117,141,167,129,143,792,3,10,0,101,164,256,84,101,187,2,2,10,11,10,8,8,8,0,1,0,0,0,0,0,0,1308,36,956,0,4,17,5,19,534,363,29,11,125,84,72,8,23,0,1019,7,0,1652,1599,60,112,9,693,1,0,463,0,136,91,9,950,1,0,0,2053,225,0,0,4,18,0,0,0,0,0,8,20,13,11,64,1043,85,12,88,2658,181,154,63,65,43,43,22,17,2,2,0,0,0,0,1,101.0,97.0,97.0,104.0,85.0,101.0,97.0,100.0,97.0,72.0,77.0,96.0,104.0,69.0,72.0,95.0,72.0,70.0,68.0,51.0,67.0,46.0,56.0,58.0,50.0,64.0,40.0,46.0,54.0,39.0,41.0,48.0,37.0,38.0,38.0,29.0,32.0,40.0,30.0,32.0,29.0,31.0,29.0,36.0,19.0,15.0,33.0,25.0,29.0,15.0,27.0,16.0,22.0,17.0,12.0,18.0,9.0,10.0,18.0,14.0,17.0,13.0,19.0,15.0,15.0,8.0,19.0,10.0,9.0,7.0,10.0,7.0,11.0,10.0,8.0,4.0,8.0,4.0,2.0,3.0,1.0,0.0,2.0,1.0,7.0,0.0,2.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1369,1744,138,0,484,467,418,356,277,243,202,163,144,117,94,69,79,53,46,21,11,3,3,1,0,0,3176,1,3,71,0,3177,2,1,71,0,947,10,40,252,26,0,607,1369,0,2495,750,6,0,1,435,17,2749,1,0,0,0,1,0,47,0,2,27,10,2,0,0,45,3165,0,95,228,22,1,0,2905,0,2.905777777777778,0.0,4.344262295081967,0.0,5.049830821285759,0,7,2,0,0,0,11,636,0,118,52,82,80,123,69,53,29,34,7,5,1,1,0,0,0,467,189,51,605,68,588,92,564,13,643,4,652,97,559,0,656,241,415,86,570,35,51,25,631,72,584,18,638,521,135,482,174,7,649,63,431,157,5,0,482,174,0,0,61,1,583,1,0,0,0,1,0,9,0,2.518292682926829,2.4375,0.0,1.0,1.0,45.019817073170735 +10301,Bocas del Toro,Chiriquí Grande,Chiriquí Grande,1377,1,3,0,0,0,0,0,0,0,0,0,2,0,0,134,342,164,233,590,50,5,200,12,15,1,586,0,12,82,3,43,146,0,1,578,2,268,9,11,5,0,797,70,0,0,0,6,873,16,227,117,4,106,38,0,1,115,748,9,0,0,273,595,0,5,0,0,0,859,2,0,0,0,11,1,80,235,0,19,539,0,0,749,11,1,0,10,41,53,0,6,2,0,603,780,4.522368421052631,8.576315789473684,4.3881578947368425,8.067105263157895,1.013745704467354,3.04581901489118,1.990836197021764,887,450,1647,59,552,19,69,71,1,99,14,13,10,0,24,19,8,6,8,3,2,1838,1599,0,346,3091,0,1190,2247,0,2929,508,0,1424,2013,0,1355,69,1571,442,0,460,30,75,0,135,129,157,137,177,420,2,1,0,133,152,243,118,177,446,1,2,57,47,68,59,58,131,4,1,17,0,0,0,0,0,830,264,1738,0,26,58,145,47,890,725,35,41,562,52,96,12,102,4,111,17,0,1896,1995,262,306,16,335,24,1,11,1,61,39,5,1759,10,0,0,1940,642,0,3,36,192,2,17,0,0,1,40,122,45,63,230,89,154,55,295,2934,111,46,101,139,130,137,82,92,65,28,5,6,0,5,10,111.0,121.0,118.0,104.0,115.0,95.0,105.0,113.0,87.0,90.0,100.0,121.0,100.0,65.0,90.0,81.0,91.0,95.0,95.0,81.0,98.0,71.0,73.0,68.0,66.0,73.0,76.0,50.0,66.0,49.0,54.0,43.0,42.0,46.0,48.0,47.0,39.0,40.0,51.0,30.0,43.0,27.0,34.0,29.0,40.0,32.0,27.0,23.0,26.0,35.0,35.0,27.0,26.0,20.0,22.0,13.0,18.0,20.0,19.0,19.0,26.0,14.0,21.0,18.0,13.0,17.0,13.0,14.0,20.0,6.0,4.0,3.0,4.0,8.0,7.0,8.0,5.0,11.0,6.0,3.0,8.0,3.0,4.0,1.0,3.0,0.0,1.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1535,2200,156,0,569,490,476,443,376,314,233,207,173,143,130,89,92,70,26,33,19,5,2,0,1,0,3762,40,4,85,0,3764,41,1,85,0,1183,7,186,251,50,14,668,1532,0,2678,1191,22,0,2,2906,11,3,1,0,0,0,0,5,963,0,51,110,107,25,1,8,238,3351,0,340,351,44,8,0,3148,0,2.4301075268817205,0.0,3.5423901940755878,0.0,6.382677974813673,13,31,42,11,0,5,78,707,0,175,55,45,69,82,79,90,62,78,65,29,19,20,9,7,1,819,68,437,450,428,459,85,802,473,414,61,826,218,669,23,864,644,243,417,470,279,138,181,706,336,551,115,772,73,814,28,859,4,883,149,430,299,9,0,461,426,0,0,564,4,1,0,0,0,0,0,4,314,0,2.137542277339346,2.2491544532130776,1.0,1.1111111111111112,1.1111111111111112,44.59188275084555 +10302,Bocas del Toro,Chiriquí Grande,Miramar,311,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,126,23,24,147,2,2,9,6,7,0,128,0,0,17,0,10,14,0,4,56,4,105,1,6,1,0,136,33,2,0,0,2,173,40,60,25,3,9,7,0,0,5,158,10,0,0,54,118,1,0,0,0,0,163,0,0,0,0,10,0,21,45,0,4,103,0,0,157,6,3,0,0,1,6,0,0,0,0,0,317,6.92638036809816,23.8159509202454,6.938650306748467,23.79754601226994,1.0,3.1907514450867054,1.9595375722543356,173,100,314,21,87,5,10,7,1,11,0,0,0,0,9,3,0,0,5,1,0,338,324,0,68,594,0,221,441,0,525,137,0,226,436,0,217,9,314,122,0,125,6,11,1,23,19,46,33,32,130,0,0,0,24,21,43,13,13,75,0,1,1,7,4,3,3,24,1,0,3,0,0,0,0,0,178,25,345,0,2,7,11,10,147,160,12,16,62,27,22,3,12,0,59,8,2,360,369,31,39,3,106,2,0,12,2,6,14,0,367,1,0,0,426,92,0,0,5,22,1,2,0,0,1,4,10,8,9,25,75,22,10,39,532,55,22,17,24,21,22,14,11,5,2,0,2,0,1,1,19.0,15.0,17.0,16.0,22.0,18.0,30.0,12.0,17.0,15.0,24.0,21.0,13.0,20.0,15.0,18.0,21.0,16.0,16.0,14.0,10.0,16.0,7.0,15.0,6.0,11.0,9.0,10.0,7.0,6.0,7.0,4.0,10.0,6.0,12.0,7.0,6.0,3.0,9.0,6.0,9.0,7.0,11.0,5.0,6.0,11.0,7.0,5.0,7.0,6.0,8.0,6.0,8.0,3.0,10.0,7.0,6.0,2.0,8.0,7.0,7.0,5.0,4.0,6.0,5.0,2.0,4.0,3.0,2.0,2.0,1.0,2.0,2.0,2.0,1.0,3.0,1.0,1.0,1.0,4.0,0.0,0.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,274,418,37,0,89,92,93,85,54,43,39,31,38,36,35,30,27,13,8,10,3,2,1,0,0,0,702,4,1,22,0,702,4,1,22,0,225,2,8,68,14,3,135,274,0,494,231,4,0,1,440,19,0,0,0,0,0,0,2,267,0,16,36,27,6,0,2,20,622,0,58,77,10,1,0,583,0,2.8947368421052637,0.0,4.129729729729729,0.0,5.4348422496570645,5,10,9,3,0,1,5,140,0,35,14,7,17,24,21,9,15,11,7,6,2,3,0,1,1,151,22,94,79,93,80,39,134,93,80,10,163,40,133,5,168,117,56,66,107,47,19,29,144,66,107,39,134,23,150,24,149,2,171,30,91,52,0,0,99,74,0,1,78,6,0,0,0,0,0,0,2,86,0,2.0809248554913293,2.132947976878613,0.0,1.0,1.0,49.21965317919075 +10303,Bocas del Toro,Chiriquí Grande,Punta Peña,1178,2,21,0,0,0,0,0,0,0,1,0,1,0,0,7,623,60,72,663,27,6,24,0,40,2,646,0,1,44,2,12,30,0,27,494,2,245,7,12,0,2,699,38,2,0,0,23,762,10,132,54,94,134,15,0,1,86,656,18,0,1,484,263,0,1,1,13,0,749,1,0,1,0,10,1,115,437,0,5,205,0,0,641,27,0,1,6,1,3,0,72,11,0,0,1203,5.758982035928144,14.54940119760479,6.366766467065868,18.33233532934132,1.0196850393700787,3.309711286089239,2.2230971128608923,778,396,1260,91,332,29,42,28,2,61,3,10,25,3,44,15,6,13,8,4,13,2014,755,0,680,2089,0,1746,1023,0,2341,428,0,1110,1659,0,1050,60,1347,312,0,315,54,72,4,109,110,120,99,91,359,0,0,3,111,108,176,78,96,472,1,5,36,56,65,49,79,72,5,3,20,0,0,0,1,0,920,103,1264,0,5,60,25,57,597,507,52,51,492,89,82,29,90,3,207,5,3,1487,1573,273,251,30,315,10,1,117,3,50,61,13,1142,5,0,0,1420,614,3,5,39,182,4,19,1,0,3,43,118,48,54,180,170,135,89,183,2065,165,69,93,137,113,130,96,89,66,18,6,7,0,1,5,73.0,79.0,66.0,73.0,98.0,70.0,78.0,88.0,82.0,66.0,63.0,67.0,69.0,71.0,66.0,73.0,59.0,69.0,47.0,66.0,60.0,52.0,52.0,70.0,37.0,55.0,57.0,43.0,46.0,35.0,39.0,36.0,45.0,45.0,33.0,46.0,36.0,42.0,42.0,34.0,32.0,34.0,32.0,26.0,33.0,20.0,27.0,22.0,26.0,21.0,28.0,22.0,29.0,18.0,26.0,25.0,24.0,13.0,14.0,24.0,16.0,12.0,13.0,14.0,15.0,13.0,15.0,19.0,8.0,10.0,7.0,8.0,8.0,7.0,6.0,11.0,4.0,4.0,2.0,3.0,7.0,4.0,8.0,1.0,2.0,5.0,1.0,2.0,7.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1109,1785,166,0,389,384,336,314,271,236,198,200,157,116,123,100,70,65,36,24,22,16,3,0,0,0,2987,14,4,55,0,2988,15,2,55,0,794,18,40,289,55,2,754,1108,0,2020,1008,32,0,1,1641,19,0,2,0,2,0,0,15,1380,0,87,30,75,19,3,0,190,2656,0,372,567,52,11,4,2054,0,2.500414937759336,0.0,3.684478371501272,0.0,6.78202614379085,38,13,25,10,1,0,71,620,0,104,40,35,59,90,74,81,67,87,66,28,13,21,6,4,2,739,39,523,255,517,261,185,593,545,233,82,696,254,524,30,748,707,71,443,335,302,141,233,545,556,222,173,605,148,630,187,591,10,768,139,409,215,15,1,438,340,0,0,323,3,0,2,0,0,0,0,6,444,0,1.908857509627728,2.019255455712452,1.0,1.0303030303030305,1.0303030303030305,45.95629820051414 +10304,Bocas del Toro,Chiriquí Grande,Punta Róbalo,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,261,26,7,307,8,1,3,0,3,0,231,1,0,12,1,8,67,0,2,62,18,238,0,4,0,0,290,30,0,0,0,2,322,5,62,12,3,32,26,0,0,4,289,29,0,0,182,139,0,0,0,1,0,285,4,0,0,0,33,0,1,206,3,32,78,2,0,273,35,7,0,2,4,0,0,0,1,0,0,462,5.805194805194805,17.75974025974026,6.009740259740259,19.25,1.015527950310559,3.8260869565217392,2.170807453416149,327,186,734,40,218,10,16,16,1,32,6,2,9,0,4,4,0,2,3,2,3,611,796,0,93,1314,0,186,1221,0,1169,238,0,540,867,0,531,9,648,219,0,229,25,43,0,61,75,56,74,86,254,0,0,0,63,73,105,40,49,121,0,0,2,5,3,10,25,7,0,0,1,0,0,0,0,0,288,13,825,0,1,1,7,8,311,464,24,18,70,15,24,1,17,1,162,3,0,818,779,38,48,8,155,19,1,24,0,52,27,5,644,155,0,0,952,136,0,0,4,34,0,0,0,0,0,10,19,3,7,26,162,42,9,23,1141,76,49,40,40,28,28,12,9,15,3,0,0,0,1,155,41.0,44.0,45.0,60.0,32.0,59.0,54.0,47.0,55.0,34.0,52.0,44.0,32.0,39.0,40.0,49.0,36.0,40.0,32.0,17.0,30.0,27.0,19.0,24.0,18.0,28.0,26.0,27.0,18.0,20.0,26.0,19.0,18.0,17.0,11.0,15.0,12.0,13.0,16.0,13.0,25.0,10.0,16.0,14.0,12.0,9.0,8.0,10.0,19.0,13.0,17.0,13.0,9.0,12.0,7.0,8.0,16.0,8.0,6.0,7.0,8.0,6.0,5.0,10.0,6.0,9.0,4.0,7.0,4.0,6.0,3.0,5.0,2.0,2.0,4.0,6.0,1.0,2.0,2.0,6.0,4.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,678,845,74,0,222,249,207,174,118,119,91,69,77,59,58,45,35,30,16,17,7,2,2,0,0,0,1505,13,1,78,0,1506,13,0,78,0,482,1,63,56,26,9,282,678,0,1232,352,13,0,1,1183,3,1,0,0,0,0,0,63,346,0,1,3,9,6,1,0,97,1480,0,63,137,9,1,1,1386,0,2.803163444639719,0.0,4.2398921832884096,0.0,4.922980588603632,1,0,5,1,1,0,22,297,0,80,32,36,36,47,24,16,18,16,6,3,1,2,3,2,5,311,16,141,186,143,184,81,246,151,176,20,307,118,209,20,307,168,159,115,212,64,51,29,298,32,295,36,291,195,132,133,194,7,320,36,168,117,6,0,190,137,0,0,212,1,0,0,0,0,0,0,16,98,0,2.5015290519877675,2.382262996941896,0.0,1.0769230769230769,1.0769230769230769,47.53211009174312 +10305,Bocas del Toro,Chiriquí Grande,Rambala,639,3,42,0,1,0,0,0,0,0,0,0,0,0,0,9,332,37,21,376,2,2,7,0,7,5,356,0,2,7,0,16,15,0,3,271,1,121,0,6,0,0,359,36,0,0,0,4,399,2,106,44,51,66,16,0,0,32,353,14,0,0,236,150,0,2,0,11,0,394,1,0,1,0,3,0,75,215,0,3,105,1,0,368,3,6,1,0,2,6,0,10,1,2,0,685,6.660377358490566,22.92183288409704,6.690026954177897,23.07277628032345,1.005012531328321,3.3659147869674184,2.298245614035088,401,198,585,22,60,16,18,16,1,14,4,5,25,0,21,7,2,4,8,2,8,759,513,0,287,985,0,631,641,0,1031,241,0,474,798,0,440,34,613,185,0,187,15,25,0,43,38,67,51,41,171,0,0,1,44,56,92,24,52,190,2,4,13,17,18,19,8,62,8,0,24,0,0,0,0,0,329,88,646,0,2,26,53,13,278,287,31,37,232,29,34,11,31,3,32,11,3,656,709,111,135,13,88,26,0,10,3,6,40,2,673,1,0,0,697,246,1,4,15,76,6,18,0,0,3,21,44,20,24,85,60,41,33,86,891,98,32,36,53,62,43,42,54,28,10,8,4,2,1,1,9.0,26.0,29.0,29.0,37.0,37.0,30.0,39.0,31.0,35.0,21.0,39.0,24.0,37.0,25.0,29.0,26.0,30.0,19.0,24.0,24.0,22.0,27.0,21.0,17.0,22.0,30.0,17.0,12.0,29.0,14.0,15.0,22.0,18.0,19.0,19.0,5.0,20.0,14.0,15.0,16.0,14.0,17.0,13.0,11.0,13.0,14.0,11.0,22.0,17.0,17.0,17.0,14.0,10.0,17.0,9.0,9.0,9.0,6.0,7.0,14.0,12.0,3.0,13.0,5.0,6.0,10.0,3.0,7.0,5.0,7.0,0.0,4.0,3.0,2.0,6.0,8.0,3.0,4.0,5.0,3.0,2.0,0.0,3.0,1.0,1.0,3.0,4.0,0.0,3.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,448,820,97,0,130,172,146,128,111,110,88,73,71,77,75,40,47,31,16,26,9,11,3,1,0,0,1335,11,3,16,0,1335,12,2,16,0,359,9,22,161,14,6,346,448,0,909,443,13,0,2,498,2,6,0,0,4,0,0,7,846,0,8,19,79,13,0,1,107,1138,0,169,218,13,3,0,962,0,2.3374777975133214,0.0,3.5571030640668524,0.0,6.876923076923077,3,5,28,7,0,0,38,320,0,96,26,14,24,47,33,27,24,40,18,20,7,16,4,4,1,371,30,280,121,277,124,76,325,262,139,64,337,147,254,32,369,294,107,226,175,169,57,109,292,178,223,107,294,47,354,56,345,6,395,82,225,92,2,1,220,181,0,1,118,1,1,0,0,0,0,0,1,279,0,1.6318407960199004,1.763681592039801,0.0,1.0,1.0,46.12219451371571 +10306,Bocas del Toro,Chiriquí Grande,Bajo Cedro,464,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,151,71,106,205,17,5,65,0,36,0,136,0,23,87,0,37,43,0,2,15,0,277,19,14,3,0,275,53,0,0,0,0,328,2,76,35,6,5,16,0,0,1,313,14,0,0,48,279,0,0,1,0,0,321,0,0,0,0,7,0,2,84,0,8,234,0,0,197,74,2,12,9,12,18,0,1,2,1,0,468,4.619926199261992,13.649446494464945,6.18819188191882,20.210332103321036,1.0030487804878048,3.6310975609756095,2.356707317073171,329,223,851,35,305,7,7,13,2,61,0,2,18,0,17,11,1,7,11,4,6,436,1187,0,26,1597,0,44,1579,0,1262,361,0,696,927,0,694,2,666,261,0,262,28,55,10,67,89,82,65,89,252,3,3,0,72,87,134,49,68,177,0,2,1,6,9,5,6,2,0,0,0,0,0,0,0,0,398,67,836,0,1,39,23,23,410,348,47,8,62,9,13,1,15,3,316,8,0,937,916,41,53,1,277,2,1,52,0,86,47,8,761,9,0,0,1093,191,0,0,4,13,0,0,0,0,0,3,9,9,10,26,301,20,9,78,1521,102,43,45,50,40,18,6,14,2,2,0,1,0,0,9,69.0,53.0,58.0,50.0,46.0,66.0,54.0,61.0,53.0,42.0,59.0,60.0,51.0,46.0,54.0,41.0,50.0,47.0,51.0,41.0,32.0,31.0,28.0,35.0,19.0,23.0,24.0,15.0,20.0,21.0,15.0,14.0,22.0,16.0,18.0,14.0,18.0,21.0,20.0,13.0,25.0,18.0,13.0,26.0,16.0,20.0,18.0,13.0,12.0,13.0,17.0,11.0,12.0,4.0,7.0,4.0,8.0,9.0,10.0,7.0,4.0,3.0,10.0,9.0,3.0,5.0,6.0,3.0,3.0,4.0,2.0,2.0,3.0,9.0,9.0,3.0,6.0,5.0,8.0,8.0,3.0,3.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,822,941,90,0,276,276,270,230,145,103,85,86,98,76,51,38,29,21,25,30,9,3,1,0,1,0,1759,2,0,92,0,1759,2,0,92,0,570,1,57,71,35,7,290,822,0,1291,560,2,0,1,1493,30,1,0,0,1,0,0,0,327,0,0,35,30,1,0,0,238,1549,0,55,156,23,3,0,1616,0,3.264,0.0,4.615384615384615,0.0,4.856449001618996,0,14,15,0,0,0,56,244,0,51,32,32,43,62,38,22,17,17,7,3,3,2,0,0,0,312,17,93,236,98,231,54,275,67,262,2,327,91,238,10,319,148,181,93,236,17,76,7,322,8,321,16,313,202,127,187,142,1,328,30,165,124,10,0,203,126,0,1,235,3,1,0,0,0,0,0,0,89,0,2.8480243161094223,2.78419452887538,0.0,1.0869565217391304,1.0869565217391304,48.328267477203646 +10402,Bocas del Toro,Almirante,Barrio Francés,787,0,18,6,0,0,0,0,0,0,0,1,1,0,0,55,453,31,117,527,12,1,4,87,23,2,614,0,0,17,1,18,2,0,4,476,14,160,3,1,1,1,616,12,2,0,1,25,656,4,58,27,2,21,43,0,0,75,542,37,2,0,336,267,0,1,0,52,0,654,0,1,0,0,0,1,263,172,0,4,216,1,539,0,0,1,1,1,17,0,0,63,33,1,803,10,6.4063079777365495,8.218923933209647,6.450834879406308,8.34508348794063,1.0396341463414631,3.614329268292683,2.068597560975609,684,275,838,53,200,23,29,28,0,35,3,15,9,0,30,20,3,30,6,17,24,1567,466,0,421,1612,0,1330,703,0,1876,157,0,735,1298,0,631,104,1195,103,0,105,36,35,5,66,49,75,77,85,185,0,1,0,94,118,179,89,136,420,1,4,38,49,46,34,57,24,4,2,17,0,1,1,0,0,667,79,1020,0,4,12,42,105,468,371,36,40,495,55,77,19,59,1,7,28,2,1044,1148,172,318,21,209,14,0,6,3,5,41,10,698,2,0,0,1068,538,0,5,23,110,4,17,1,0,3,28,81,34,54,152,29,150,39,176,1229,209,119,104,117,122,144,58,49,22,10,1,3,2,1,2,40.0,42.0,50.0,27.0,40.0,50.0,38.0,54.0,40.0,45.0,49.0,53.0,47.0,43.0,57.0,35.0,45.0,61.0,34.0,37.0,28.0,38.0,32.0,33.0,28.0,30.0,36.0,33.0,23.0,26.0,19.0,32.0,28.0,30.0,28.0,33.0,31.0,36.0,33.0,29.0,25.0,21.0,19.0,18.0,23.0,21.0,16.0,11.0,27.0,21.0,19.0,24.0,19.0,17.0,17.0,15.0,17.0,22.0,25.0,21.0,28.0,18.0,16.0,27.0,17.0,13.0,17.0,20.0,17.0,11.0,11.0,11.0,11.0,9.0,8.0,4.0,7.0,6.0,7.0,4.0,4.0,3.0,3.0,3.0,3.0,8.0,3.0,4.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,675,1322,195,0,199,227,249,212,159,148,137,162,106,96,96,100,106,78,50,28,16,18,4,1,0,0,2150,9,5,28,0,2150,10,4,28,0,513,34,41,198,58,9,665,674,0,1201,974,17,0,3,504,2,7,2,1,0,0,4,28,1641,0,534,138,218,319,0,17,467,499,0,342,604,115,5,7,1119,0,2.366883116883117,0.0,3.32695374800638,0.0,7.873175182481752,164,56,77,129,0,10,127,121,0,86,44,36,55,90,77,88,66,68,21,23,8,12,3,3,2,649,35,559,125,542,142,61,623,592,92,110,574,433,251,84,600,588,96,584,100,328,256,152,532,376,308,100,584,79,605,50,634,3,681,177,323,175,9,0,351,333,0,2,102,1,2,2,1,0,0,4,11,559,0,1.5263157894736843,1.6783625730994152,1.0,1.1,1.1,50.15350877192982 +10407,Bocas del Toro,Almirante,Bajo Culubre,215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,143,11,5,0,142,0,1,0,0,0,7,60,2,2,84,0,4,0,0,45,105,8,1,0,3,156,0,0,0,0,159,1,48,0,0,2,5,0,0,0,158,1,0,0,0,104,0,2,27,5,21,70,0,0,0,0,88,1,0,1,2,82,71,3,0,57,0,4,4,47,1,46,0,0,0,0,0,215,6.0,14.456140350877194,6.912280701754386,23.614035087719294,1.0,2.106918238993711,1.0628930817610065,159,77,519,15,136,6,15,21,0,12,3,0,0,0,9,15,3,2,1,0,1,133,688,0,2,819,0,2,819,0,390,431,0,330,491,0,330,0,175,316,0,316,13,36,0,68,64,50,51,37,52,0,0,0,22,24,27,12,11,36,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,310,0,294,0,0,0,0,1,153,102,6,32,11,3,0,1,0,0,295,0,0,457,506,7,7,1,153,1,0,141,0,25,9,0,473,0,0,0,566,37,0,0,0,1,0,0,0,0,0,4,2,0,3,5,289,0,0,7,921,16,3,8,6,2,5,2,0,0,0,0,0,0,0,0,29.0,33.0,46.0,34.0,27.0,38.0,31.0,45.0,40.0,36.0,31.0,38.0,32.0,35.0,28.0,27.0,30.0,22.0,18.0,13.0,18.0,16.0,11.0,17.0,20.0,12.0,12.0,8.0,8.0,10.0,8.0,7.0,1.0,6.0,8.0,6.0,9.0,4.0,11.0,9.0,8.0,7.0,7.0,4.0,4.0,5.0,0.0,5.0,3.0,4.0,7.0,4.0,2.0,1.0,4.0,3.0,5.0,4.0,3.0,4.0,9.0,3.0,2.0,3.0,5.0,3.0,1.0,3.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,4.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,523,417,23,0,169,190,164,110,82,50,30,39,30,17,18,19,22,10,1,9,2,0,1,0,0,0,854,0,0,109,0,854,0,0,109,0,236,2,23,13,21,8,137,523,0,654,309,0,0,1,949,10,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,961,0,2,1,1,0,0,959,0,3.305993690851735,0.0,5.502857142857143,0.0,2.4299065420560746,0,1,0,0,0,0,0,158,0,73,21,14,16,19,7,4,4,1,0,0,0,0,0,0,0,12,147,1,158,3,156,77,82,0,159,0,159,38,121,0,159,10,149,0,159,0,0,1,158,0,159,0,159,143,16,129,30,4,155,22,78,59,0,0,96,63,0,0,157,1,0,0,0,0,0,0,0,1,0,2.8742138364779874,3.1823899371069184,0.0,1.0,1.0,43.880503144654085 +10409,Bocas del Toro,Almirante,Ceiba,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,37,220,34,6,28,117,0,22,53,1,0,4,94,3,1,133,0,24,0,0,92,137,17,14,0,6,254,0,0,0,0,260,21,61,4,0,45,21,0,0,0,259,1,0,0,0,244,0,1,8,1,6,104,1,0,0,0,147,8,0,0,1,140,118,1,0,123,7,25,22,17,0,65,0,0,0,1,0,412,6.630769230769231,23.384615384615383,6.653846153846154,23.87692307692308,1.0,2.011538461538461,0.9576923076923076,260,152,762,14,88,7,30,20,1,15,4,2,6,0,2,8,4,1,1,0,6,157,1010,0,4,1163,0,6,1161,0,768,399,0,485,682,0,483,2,358,324,0,324,15,35,4,94,49,77,75,76,204,0,0,0,62,39,31,23,17,32,0,0,3,4,0,0,2,1,0,0,0,0,0,0,0,0,636,1,242,0,0,0,0,0,181,51,8,2,16,10,3,0,1,1,597,9,0,720,641,6,39,0,287,0,0,305,0,38,16,2,566,5,0,0,837,39,0,0,0,3,0,0,0,0,0,1,4,0,2,5,584,10,0,31,1238,35,18,18,28,10,4,2,2,1,0,0,0,0,0,5,42.0,44.0,54.0,54.0,48.0,41.0,53.0,57.0,47.0,42.0,38.0,55.0,42.0,36.0,44.0,36.0,39.0,28.0,32.0,39.0,29.0,24.0,24.0,17.0,23.0,15.0,19.0,14.0,14.0,13.0,9.0,13.0,16.0,10.0,14.0,17.0,13.0,8.0,21.0,7.0,15.0,6.0,11.0,12.0,6.0,8.0,3.0,9.0,8.0,8.0,11.0,5.0,6.0,7.0,3.0,3.0,5.0,2.0,2.0,4.0,5.0,2.0,1.0,2.0,2.0,2.0,1.0,1.0,3.0,2.0,0.0,0.0,3.0,1.0,0.0,1.0,1.0,2.0,2.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,697,640,24,0,242,240,215,174,117,75,62,66,50,36,32,16,12,9,4,6,5,0,0,0,0,0,1211,0,0,150,0,1211,0,0,150,0,412,2,43,18,16,11,165,694,0,1133,228,0,0,1,1336,13,3,0,0,0,0,0,0,8,0,0,204,5,0,0,0,1,1151,0,3,14,0,0,0,1344,0,3.0,0.0,4.961538461538462,0.0,3.159441587068332,0,39,1,0,0,0,0,220,0,91,25,39,32,36,24,2,3,5,2,0,0,0,0,0,1,12,248,2,258,4,256,125,135,4,256,1,259,47,213,2,258,35,225,3,257,0,3,1,259,1,259,0,260,244,16,110,150,2,258,35,143,77,5,0,191,69,0,0,254,3,1,0,0,0,0,0,0,2,0,2.769230769230769,2.4653846153846155,1.0,1.0833333333333333,1.0833333333333333,39.45384615384615 +20102,Coclé,Aguadulce,El Cristo,1159,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,785,148,20,924,14,0,0,0,20,0,946,0,1,0,0,0,9,0,2,742,3,152,50,8,0,3,931,10,0,0,0,17,958,3,88,13,4,61,33,0,32,37,860,21,8,0,935,1,3,16,1,2,0,956,0,2,0,0,0,0,468,472,1,17,0,0,503,415,39,0,0,0,0,0,0,1,0,0,0,1160,6.554858934169279,18.07941483803553,6.689655172413793,20.6478578892372,1.0083507306889352,3.640918580375783,2.049060542797495,966,569,999,47,287,36,32,22,3,86,12,13,8,5,51,15,5,10,19,1,18,2370,564,1,796,2138,1,1302,1632,1,2775,159,1,746,2189,0,620,126,2106,82,1,86,48,40,11,61,64,108,82,74,577,0,2,14,83,87,193,60,105,665,3,15,22,59,67,152,149,48,22,4,32,0,0,0,1,1,1024,127,1519,1,3,13,86,287,454,666,68,44,730,47,112,30,127,0,88,1,6,1558,1527,255,493,36,342,4,0,5,6,6,108,13,1205,9,0,0,1417,773,14,21,70,332,15,27,1,1,7,55,133,94,78,154,94,169,138,229,1606,160,55,136,236,261,282,118,127,40,19,10,13,4,9,9,39.0,37.0,45.0,29.0,43.0,45.0,54.0,32.0,42.0,48.0,33.0,45.0,34.0,36.0,41.0,41.0,46.0,39.0,44.0,34.0,43.0,42.0,31.0,49.0,39.0,54.0,54.0,40.0,47.0,45.0,40.0,44.0,45.0,41.0,33.0,36.0,37.0,33.0,45.0,41.0,30.0,40.0,41.0,25.0,30.0,38.0,40.0,46.0,42.0,35.0,47.0,46.0,50.0,43.0,52.0,35.0,45.0,38.0,41.0,38.0,35.0,39.0,35.0,32.0,31.0,23.0,31.0,29.0,21.0,25.0,26.0,23.0,20.0,14.0,21.0,21.0,18.0,29.0,18.0,16.0,12.0,11.0,18.0,10.0,10.0,8.0,13.0,12.0,7.0,5.0,8.0,4.0,4.0,3.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,603,2017,465,0,193,221,189,204,204,240,203,192,166,201,238,197,172,129,104,102,61,45,21,1,2,0,3050,24,9,1,1,3051,24,8,1,1,822,15,100,587,132,14,812,602,1,1755,1312,17,1,2,170,8,0,0,0,0,0,0,53,2851,1,26,10,337,9,2,2,445,2253,1,637,977,273,25,5,1167,1,1.96996996996997,0.0,2.6962025316455698,0.0,8.724473257698541,6,3,131,5,2,1,142,675,1,73,37,19,54,94,148,144,83,137,64,41,13,31,11,14,3,949,17,894,72,869,97,169,797,839,127,375,591,556,410,125,841,868,98,871,95,403,468,290,676,509,457,510,456,229,737,241,725,17,949,169,513,271,13,0,646,320,0,0,32,2,0,0,0,0,0,0,11,920,1,1.6128364389233951,1.5807453416149069,0.0,1.020408163265306,1.020408163265306,55.98447204968944 +20103,Coclé,Aguadulce,El Roble,1819,5,50,2,0,0,0,0,3,0,0,0,0,0,0,8,1381,89,16,1418,60,0,0,0,16,0,1474,0,0,13,1,2,4,0,0,475,555,373,57,14,0,20,1460,10,0,0,0,24,1494,0,160,48,41,111,22,0,50,101,1299,41,3,0,1472,4,1,4,0,13,0,1484,1,5,0,0,4,0,666,820,1,7,0,0,1346,130,10,0,0,0,0,0,3,1,2,2,0,1879,6.943472409152086,21.302826379542395,6.97442799461642,22.67765814266487,1.0167336010709505,3.7556894243641232,2.4370816599732263,1519,867,1525,114,398,48,64,51,14,86,11,13,119,1,105,31,18,13,24,17,24,3935,660,0,1248,3347,0,2745,1850,0,4277,318,0,1252,3343,0,1079,173,3178,165,0,170,62,84,11,90,114,160,129,137,778,1,1,14,146,206,376,124,176,1071,0,15,58,103,101,157,194,56,23,3,34,0,0,0,1,0,1745,167,2256,0,11,49,29,464,750,909,79,54,1426,95,154,49,116,1,32,1,1,2425,2405,312,1110,59,370,16,0,7,1,3,128,23,1525,33,0,0,2336,1263,15,29,123,355,16,30,1,0,1,99,166,137,106,238,57,397,264,447,2301,263,136,216,321,427,617,185,182,94,36,4,8,3,4,33,50.0,52.0,56.0,77.0,60.0,77.0,86.0,63.0,76.0,65.0,78.0,71.0,63.0,65.0,66.0,63.0,59.0,73.0,69.0,83.0,72.0,81.0,81.0,70.0,74.0,77.0,86.0,69.0,77.0,69.0,65.0,79.0,59.0,72.0,72.0,68.0,57.0,52.0,55.0,70.0,59.0,65.0,52.0,63.0,63.0,57.0,45.0,64.0,60.0,70.0,55.0,51.0,60.0,60.0,60.0,56.0,48.0,45.0,62.0,47.0,57.0,53.0,55.0,45.0,63.0,45.0,50.0,33.0,39.0,43.0,29.0,30.0,38.0,32.0,31.0,23.0,22.0,25.0,21.0,19.0,21.0,26.0,13.0,19.0,15.0,18.0,12.0,14.0,11.0,4.0,4.0,4.0,5.0,1.0,1.0,3.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1005,3167,658,0,295,367,343,347,378,378,347,302,302,296,286,258,273,210,160,110,94,59,15,8,2,0,4742,40,39,9,0,4742,45,34,9,0,1337,46,63,799,184,25,1371,1005,0,2837,1943,50,0,5,186,26,2,1,0,2,1,0,23,4584,0,120,137,597,65,4,6,381,3520,0,1203,1406,450,63,2,1706,0,2.0279652844744454,0.0,2.823569951757409,0.0,8.452380952380953,50,56,255,33,3,5,130,987,0,89,55,31,81,127,183,255,146,263,126,56,38,38,13,10,8,1491,28,1416,103,1380,139,255,1264,1398,121,529,990,970,549,315,1204,1403,116,1403,116,751,652,535,984,923,596,785,734,253,1266,241,1278,14,1505,271,811,401,36,3,958,561,0,0,29,9,1,0,0,1,1,0,2,1476,0,1.5932982917214191,1.5801576872536136,1.0,1.0140845070422535,1.0140845070422535,53.99736668861093 +20104,Coclé,Aguadulce,Pocrí,2939,6,142,13,1,0,6,0,0,0,0,0,3,0,0,221,2284,72,7,2542,35,0,0,0,7,0,2576,1,1,2,1,0,1,0,2,2487,35,38,6,9,0,9,2547,7,8,0,0,22,2584,0,165,82,127,97,45,0,728,343,1445,62,6,0,2564,2,1,16,0,1,0,2539,3,42,0,0,0,0,2009,567,1,6,1,0,2435,131,6,1,1,1,0,0,1,4,4,0,3110,0,6.721617418351477,19.57153965785381,6.857698289269052,21.77332814930016,1.0185758513931888,3.862229102167183,2.4678792569659445,2635,1445,2484,181,611,95,127,103,42,145,34,29,245,18,171,41,22,28,54,50,68,6818,1024,0,3549,4293,0,5999,1843,0,7556,286,0,2206,5636,0,1745,461,5480,156,0,162,89,103,10,126,147,188,141,180,828,0,1,22,196,251,580,213,312,1879,21,83,123,215,398,411,622,297,89,12,132,1,2,0,8,0,3376,348,3472,0,18,136,73,873,1362,928,129,180,2719,183,340,100,234,7,37,16,13,3972,4222,1079,1629,125,713,68,0,15,20,2,164,26,2362,158,0,0,2864,2424,26,111,321,1254,73,114,9,0,21,284,585,460,276,720,54,503,335,486,3348,433,259,348,572,653,878,482,544,278,119,40,32,19,31,158,81.0,81.0,106.0,84.0,99.0,97.0,98.0,115.0,122.0,115.0,105.0,139.0,100.0,103.0,98.0,124.0,104.0,105.0,96.0,124.0,137.0,120.0,124.0,118.0,142.0,129.0,117.0,125.0,107.0,103.0,114.0,118.0,131.0,125.0,114.0,118.0,116.0,123.0,109.0,122.0,119.0,117.0,111.0,117.0,94.0,98.0,118.0,84.0,119.0,100.0,116.0,111.0,110.0,113.0,116.0,104.0,100.0,87.0,97.0,94.0,85.0,91.0,94.0,79.0,62.0,69.0,75.0,59.0,71.0,53.0,46.0,61.0,68.0,61.0,59.0,60.0,49.0,48.0,44.0,35.0,41.0,35.0,32.0,17.0,15.0,25.0,17.0,29.0,11.0,9.0,13.0,20.0,10.0,2.0,5.0,3.0,3.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1543,5501,1150,0,451,547,545,553,641,581,602,588,558,519,566,482,411,327,295,236,140,91,50,9,2,0,8004,75,108,7,0,8008,97,82,7,0,1854,102,339,1701,292,127,2236,1543,0,3300,4798,96,0,21,76,2,0,0,0,2,0,1,216,7876,0,318,220,710,86,6,15,1691,5148,0,2331,2410,854,103,5,2491,0,1.7475675675675677,0.0,2.474941268598277,0.0,10.206980717598242,99,83,276,39,3,4,575,1556,0,102,70,37,100,201,232,312,243,468,310,197,118,115,44,60,23,2611,24,2539,96,2456,179,434,2201,2484,151,1314,1321,1556,1079,770,1865,2455,180,2508,127,2099,409,1271,1364,1986,649,1518,1117,244,2391,210,2425,33,2602,446,1422,699,68,7,1534,1101,0,7,24,1,0,0,0,0,0,1,70,2532,0,1.5034065102195306,1.5980317940953823,1.0,1.0336134453781514,1.0336134453781514,53.55825426944971 +20105,Coclé,Aguadulce,Barrios Unidos,3630,26,167,24,0,0,0,0,0,0,0,0,1,0,0,1369,1662,31,31,2963,99,3,0,1,27,0,3078,2,0,4,0,2,7,0,0,2554,340,175,7,6,3,8,3008,12,10,0,0,63,3093,0,231,247,71,152,53,0,550,409,1996,112,13,13,3020,4,3,53,0,13,0,3061,4,26,0,1,0,1,1796,1281,0,16,0,0,3051,4,3,0,0,1,0,0,9,20,1,4,3546,302,6.844996729888816,20.580117724002616,6.906474820143885,21.465990843688687,1.017135467183964,3.596184933721306,2.406078241189783,3147,1716,3179,238,919,117,155,123,41,199,23,33,95,6,147,51,33,55,74,22,43,8238,1290,0,3201,6327,0,7192,2336,0,9006,522,0,2654,6874,0,2194,460,6659,215,0,226,152,136,41,170,217,291,240,223,1119,2,5,73,335,455,853,255,392,2149,3,14,204,281,447,429,393,246,73,18,83,0,1,1,1,0,4071,410,4149,0,32,152,96,892,1573,1419,161,104,2896,256,510,146,401,6,29,123,1,4902,5089,957,1865,157,1306,69,0,13,1,8,254,57,2842,33,0,0,4207,2864,75,45,355,966,54,62,2,0,1,229,460,427,279,871,174,738,463,839,4417,610,335,539,765,850,1074,509,469,216,75,35,33,5,26,33,116.0,94.0,124.0,129.0,140.0,151.0,141.0,163.0,142.0,161.0,150.0,161.0,129.0,122.0,139.0,136.0,144.0,138.0,147.0,138.0,149.0,146.0,145.0,176.0,173.0,184.0,154.0,161.0,143.0,141.0,140.0,152.0,150.0,146.0,129.0,121.0,118.0,126.0,136.0,119.0,129.0,128.0,112.0,141.0,130.0,105.0,141.0,120.0,106.0,130.0,114.0,144.0,124.0,139.0,162.0,139.0,119.0,106.0,123.0,121.0,117.0,102.0,103.0,104.0,102.0,84.0,92.0,87.0,90.0,81.0,71.0,68.0,54.0,55.0,56.0,57.0,50.0,42.0,43.0,43.0,39.0,24.0,32.0,24.0,21.0,28.0,20.0,18.0,17.0,15.0,10.0,5.0,6.0,4.0,9.0,4.0,2.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2062,6673,1256,0,603,758,701,703,789,783,717,620,640,602,683,608,528,434,304,235,140,98,34,10,1,0,9773,107,105,6,0,9775,118,92,6,0,2527,141,231,1612,344,80,2994,2062,0,3664,6252,75,0,15,109,3,0,0,0,3,0,0,92,9769,0,292,371,1023,66,18,30,1854,6337,0,2373,2867,906,122,6,3717,0,1.919836956521739,0.0,2.674244884702825,0.0,9.232309078170353,108,134,396,34,9,8,617,1841,0,136,98,68,155,267,370,395,342,510,333,187,80,120,37,40,8,3085,62,2973,174,2908,239,494,2653,2958,189,1272,1875,2015,1132,739,2408,2955,192,2943,204,2090,853,1169,1978,2351,796,1544,1603,349,2798,302,2845,24,3123,555,1640,871,81,0,1932,1215,0,7,26,1,0,0,0,1,0,0,35,3077,0,1.55767397521449,1.617095646647601,1.1,1.0509554140127388,1.0509554140127388,53.00063552589768 +20106,Coclé,Aguadulce,Pueblos Unidos,1601,13,1,0,0,0,0,0,0,0,0,0,3,0,0,12,1061,170,19,1222,21,0,0,0,19,0,1211,0,11,19,2,0,19,0,0,499,145,370,191,35,1,21,1222,22,0,0,0,18,1262,1,147,51,38,82,34,0,39,42,1121,57,2,1,1215,4,1,34,1,7,0,1256,1,5,0,0,0,0,523,720,1,17,0,1,734,488,28,2,1,1,0,1,0,2,2,3,0,1618,6.9528,18.2904,6.9832,18.4952,1.0047543581616485,3.747226624405705,2.4865293185419968,1271,716,1412,74,297,38,69,32,9,78,11,11,30,7,76,22,11,29,13,17,36,3171,691,0,1021,2841,0,2214,1648,0,3601,261,0,1070,2792,0,888,182,2654,138,0,147,51,64,20,91,108,147,100,133,723,3,3,15,96,136,264,92,145,720,3,3,55,93,100,147,160,157,33,4,48,0,0,0,1,0,1331,154,2020,0,8,61,38,409,668,801,80,62,921,67,120,59,213,5,61,2,6,2083,1972,298,644,62,429,11,0,4,6,10,142,31,1366,8,0,0,1960,968,18,15,80,394,23,46,1,0,8,80,184,107,83,211,55,235,191,331,2010,257,165,198,311,296,333,142,167,88,44,11,9,7,9,8,36.0,48.0,55.0,54.0,55.0,63.0,60.0,65.0,56.0,58.0,71.0,61.0,56.0,57.0,47.0,65.0,66.0,55.0,64.0,53.0,54.0,47.0,58.0,65.0,56.0,60.0,63.0,52.0,51.0,56.0,57.0,43.0,54.0,57.0,41.0,41.0,44.0,50.0,37.0,61.0,61.0,44.0,48.0,51.0,51.0,48.0,38.0,47.0,43.0,57.0,55.0,49.0,55.0,49.0,56.0,54.0,45.0,46.0,45.0,51.0,48.0,47.0,37.0,45.0,36.0,49.0,42.0,41.0,37.0,36.0,34.0,33.0,35.0,35.0,21.0,30.0,22.0,34.0,21.0,27.0,18.0,18.0,26.0,10.0,16.0,6.0,11.0,10.0,8.0,4.0,10.0,5.0,3.0,6.0,0.0,0.0,2.0,0.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,842,2556,657,0,248,302,292,303,280,282,252,233,255,233,264,241,213,205,158,134,88,39,24,9,0,0,3995,34,23,3,0,3995,35,22,3,0,1031,31,71,680,154,31,1215,842,0,2495,1529,31,0,0,202,7,0,0,0,1,0,0,32,3813,0,48,90,255,22,1,5,472,3162,0,804,1136,378,53,5,1679,0,2.0712200817279625,0.0,2.867278797996661,0.0,8.582737361282367,22,34,93,9,1,2,160,950,0,97,50,49,82,117,141,177,125,165,94,68,35,37,9,21,1,1237,34,1164,107,1151,120,228,1043,1112,159,428,843,678,593,193,1078,1152,119,1120,151,670,450,442,829,864,407,613,658,239,1032,385,886,11,1260,229,679,332,31,0,841,430,0,0,33,2,0,0,0,0,0,0,10,1226,0,1.638867033831629,1.5515342250196695,1.4,1.0416666666666667,1.0416666666666667,56.17230527143981 +20107,Coclé,Aguadulce,Virgen del Carmen,2535,5,128,0,0,0,0,0,0,0,0,0,0,0,0,467,1694,78,4,2186,53,0,0,0,4,0,2231,0,2,1,0,0,8,0,1,2070,47,98,22,6,0,0,2199,7,1,0,0,36,2243,1,130,62,77,107,48,0,704,226,1260,49,4,0,2196,7,2,37,0,1,0,2224,5,13,1,0,0,0,1125,1097,1,19,1,0,1718,401,48,59,0,0,0,0,0,15,0,2,2110,558,6.539455468389479,16.359944623904013,6.750807568066452,18.988001845869867,1.0285332144449395,3.6888096299598754,2.384306732055283,2307,1349,3063,136,524,89,93,76,22,130,25,20,54,2,69,20,15,34,32,30,47,6040,1321,0,2034,5327,0,4632,2729,0,6837,524,0,2323,5038,0,2114,209,4715,323,0,329,90,137,35,163,208,261,202,236,931,0,0,3,259,362,678,262,375,1488,9,8,114,200,249,307,246,107,23,11,62,1,0,0,5,0,2724,360,3398,0,12,219,56,366,1438,1451,117,26,2123,179,358,104,173,2,17,10,2,3873,4017,554,1577,121,693,19,1,1,2,14,117,37,2893,77,0,0,3636,1889,3,34,231,604,21,59,5,0,4,147,292,252,192,646,69,558,291,633,4205,403,263,330,473,684,667,257,305,134,50,12,17,7,6,77,135.0,121.0,138.0,135.0,136.0,148.0,139.0,145.0,169.0,142.0,154.0,147.0,150.0,131.0,130.0,150.0,134.0,137.0,125.0,147.0,128.0,133.0,125.0,158.0,135.0,145.0,140.0,132.0,126.0,120.0,130.0,125.0,141.0,138.0,126.0,117.0,105.0,109.0,123.0,97.0,117.0,92.0,108.0,97.0,87.0,84.0,87.0,85.0,80.0,70.0,79.0,82.0,82.0,91.0,79.0,70.0,77.0,74.0,83.0,68.0,85.0,62.0,69.0,53.0,45.0,47.0,37.0,28.0,47.0,30.0,23.0,23.0,29.0,20.0,11.0,20.0,20.0,15.0,21.0,23.0,20.0,11.0,12.0,11.0,11.0,15.0,6.0,8.0,3.0,7.0,1.0,5.0,3.0,2.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2120,5252,518,0,665,743,712,693,679,663,660,551,501,406,413,372,314,189,106,99,65,39,13,5,2,0,7798,41,41,10,0,7799,52,29,10,0,2252,68,254,1002,146,58,1990,2120,0,3854,3997,39,0,1,365,20,0,0,1,2,0,0,97,7404,0,125,382,768,41,4,16,962,5592,0,1766,2357,326,70,4,3367,0,1.9663259170174383,0.0,2.878937893789379,0.0,8.321419518377693,45,103,274,24,2,7,279,1573,0,166,67,52,122,219,311,356,213,356,192,88,55,57,16,21,16,2276,31,2155,152,2103,204,321,1986,2129,178,787,1520,1397,910,428,1879,2125,182,2099,208,1294,805,784,1523,1344,963,1026,1281,286,2021,211,2096,46,2261,326,1403,539,39,0,1326,981,0,1,67,2,0,0,0,0,0,0,23,2214,0,1.6788036410923275,1.741222366710013,1.3076923076923077,1.0263157894736843,1.0263157894736843,47.22973558734287 +20108,Coclé,Aguadulce,El Hato de San Juan de Dios,551,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,200,192,18,368,25,0,0,0,18,0,400,0,0,3,0,0,2,0,6,3,30,322,16,35,0,5,357,43,1,0,0,10,411,1,47,26,0,24,44,0,2,5,387,17,0,0,386,0,1,9,0,15,0,411,0,0,0,0,0,0,61,340,0,10,0,0,0,399,9,0,0,0,0,0,0,0,2,1,0,553,6.887254901960785,17.605392156862745,6.946078431372549,17.975490196078432,1.0097323600973236,3.450121654501217,1.9464720194647205,415,244,468,21,137,10,20,13,4,40,1,5,6,0,20,7,4,12,7,3,7,864,436,0,84,1216,0,240,1060,0,1176,124,0,307,993,0,293,14,939,54,0,57,7,34,5,41,45,85,52,51,401,0,0,0,28,56,79,33,41,179,0,0,12,15,22,17,4,32,2,1,1,0,0,0,0,0,460,65,661,0,1,34,9,75,180,343,50,13,292,25,57,29,52,0,56,5,1,740,644,72,236,28,177,0,0,2,2,8,82,18,485,11,0,0,901,220,0,2,11,50,2,0,0,0,2,9,15,36,27,58,43,101,53,181,746,134,38,65,112,122,111,20,20,2,2,0,0,0,1,11,26.0,16.0,26.0,16.0,13.0,20.0,23.0,22.0,20.0,16.0,21.0,18.0,16.0,17.0,22.0,15.0,25.0,13.0,22.0,22.0,19.0,15.0,29.0,28.0,28.0,26.0,20.0,17.0,22.0,28.0,23.0,22.0,22.0,13.0,14.0,19.0,15.0,22.0,15.0,13.0,23.0,20.0,24.0,18.0,16.0,24.0,19.0,15.0,20.0,14.0,18.0,12.0,24.0,15.0,16.0,18.0,13.0,14.0,18.0,11.0,15.0,13.0,10.0,9.0,7.0,14.0,7.0,10.0,6.0,8.0,7.0,9.0,9.0,9.0,10.0,10.0,7.0,5.0,5.0,6.0,4.0,7.0,9.0,5.0,2.0,6.0,3.0,3.0,1.0,5.0,4.0,2.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,913,179,0,97,101,94,97,119,113,94,84,101,92,85,74,54,45,44,33,27,18,11,0,1,0,1376,2,2,4,0,1376,2,2,4,0,462,9,50,140,56,4,371,292,0,984,398,2,0,0,4,0,0,0,0,0,0,0,16,1364,0,6,11,36,0,0,0,16,1315,0,266,383,66,11,1,657,0,2.4166666666666665,0.0,3.274111675126904,0.0,6.667630057803469,3,3,20,0,0,0,4,385,0,32,39,19,37,50,62,57,38,45,16,14,2,1,0,1,2,397,18,351,64,349,66,37,378,354,61,41,374,262,153,10,405,346,69,347,68,79,268,53,362,89,326,129,286,180,235,157,258,6,409,77,208,124,6,0,299,116,0,0,0,0,0,0,0,0,0,0,5,410,0,1.783132530120482,1.5518072289156626,0.0,1.1333333333333333,1.1333333333333333,54.05542168674699 +20201,Coclé,Antón,Antón,4385,13,64,33,0,0,0,0,0,0,0,3,0,0,0,627,1922,480,62,2881,148,1,0,0,61,0,2925,0,10,66,4,15,71,0,0,2016,38,935,19,67,0,16,2915,112,7,0,0,57,3091,0,739,145,213,211,96,0,188,299,2447,142,15,0,2971,13,46,30,1,30,0,3043,4,39,4,0,0,1,1571,1457,0,58,1,4,2226,572,236,7,2,3,0,3,0,11,24,7,2965,1533,6.679960448253131,21.58866183256427,6.7719182597231375,22.324653922214896,1.045939825299256,3.846975088967972,2.591717890650275,3236,1692,3740,203,1009,115,163,125,30,223,19,43,99,14,245,37,23,80,57,63,40,8302,1871,0,3172,7001,0,6047,4126,0,9596,577,0,2887,7286,0,2567,320,7091,195,0,218,155,173,48,220,245,275,237,266,1572,2,2,48,304,494,889,329,482,2298,5,41,134,211,280,443,330,251,82,14,111,0,1,0,13,0,3574,497,5086,0,18,249,78,762,1762,2057,260,245,2318,212,685,155,307,12,157,103,11,5300,5411,815,1525,185,1321,84,0,19,11,13,319,41,3822,240,0,0,4883,2839,51,68,185,945,69,104,13,0,18,240,445,283,175,853,239,665,277,876,5703,637,332,457,669,730,797,402,402,176,96,24,21,11,14,240,123.0,136.0,134.0,145.0,146.0,175.0,169.0,207.0,168.0,151.0,181.0,196.0,188.0,157.0,174.0,174.0,169.0,169.0,162.0,170.0,161.0,167.0,175.0,166.0,129.0,158.0,161.0,159.0,135.0,133.0,133.0,144.0,150.0,161.0,129.0,130.0,141.0,118.0,145.0,139.0,150.0,124.0,158.0,126.0,133.0,126.0,122.0,137.0,125.0,138.0,120.0,121.0,142.0,136.0,145.0,116.0,107.0,113.0,124.0,104.0,123.0,114.0,123.0,93.0,86.0,83.0,79.0,78.0,77.0,73.0,75.0,75.0,60.0,64.0,71.0,61.0,71.0,58.0,39.0,49.0,51.0,43.0,33.0,24.0,26.0,27.0,33.0,21.0,22.0,12.0,20.0,8.0,8.0,3.0,7.0,5.0,6.0,7.0,2.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2450,6884,1377,0,684,870,896,844,798,746,717,673,691,648,664,564,539,390,345,278,177,115,46,22,4,0,10445,165,95,6,0,10451,190,64,6,0,2903,56,277,1455,341,76,3153,2450,0,6200,4333,178,0,29,62,12,0,0,0,2,7,0,185,10414,0,801,369,779,65,22,41,2746,5888,0,1824,2349,750,59,31,5698,0,2.1099283076254616,0.0,2.978980891719745,0.0,8.87470824386145,250,133,309,35,9,11,841,1648,0,351,167,97,180,309,377,385,270,435,243,130,76,85,34,29,65,3143,93,2826,410,2585,651,499,2737,2714,522,724,2512,1785,1451,551,2685,2950,286,2921,315,1527,1394,1137,2099,1917,1319,1140,2096,589,2647,561,2675,49,3187,624,1613,916,83,0,1876,1360,0,9,21,1,0,0,0,2,2,0,51,3150,0,1.637824474660074,1.6721260815822003,1.0,1.056818181818182,1.056818181818182,54.084363411619286 +20202,Coclé,Antón,Cabuya,915,8,6,0,0,0,0,0,0,0,0,0,0,0,0,0,448,168,25,582,34,0,0,0,25,0,324,0,29,144,34,11,99,0,0,1,3,526,1,54,0,56,487,128,0,6,0,20,641,0,216,42,0,26,4,0,1,1,632,6,1,0,581,2,47,7,0,4,0,639,0,1,0,0,1,0,83,520,0,38,0,0,0,548,49,9,0,18,0,2,0,0,10,5,3,926,6.698492462311558,22.97319932998325,6.929648241206031,23.678391959798997,1.015600624024961,3.223088923556942,2.145085803432137,651,336,738,28,194,18,40,14,3,34,1,5,29,1,48,37,17,23,17,21,32,1541,443,0,203,1781,0,1109,875,0,1879,105,0,403,1581,0,386,17,1531,50,0,50,20,23,3,48,49,78,78,62,723,0,0,0,46,60,158,32,63,324,4,9,20,32,19,29,31,19,1,0,3,0,0,0,0,0,1111,57,664,0,2,18,8,40,205,364,48,7,256,32,169,217,33,4,452,1,0,1118,974,59,228,214,528,0,0,135,0,16,168,14,387,4,0,0,1340,415,0,4,7,64,0,2,0,0,0,12,22,20,10,119,436,140,23,386,1115,192,154,143,147,141,109,47,34,4,1,0,1,0,0,4,30.0,24.0,27.0,27.0,22.0,27.0,21.0,28.0,22.0,32.0,27.0,26.0,26.0,31.0,18.0,22.0,25.0,38.0,36.0,30.0,36.0,38.0,35.0,46.0,39.0,43.0,28.0,33.0,35.0,35.0,30.0,26.0,32.0,27.0,20.0,26.0,19.0,20.0,30.0,33.0,25.0,29.0,27.0,24.0,22.0,26.0,19.0,28.0,25.0,22.0,22.0,24.0,23.0,29.0,23.0,24.0,22.0,29.0,13.0,23.0,22.0,18.0,21.0,28.0,19.0,18.0,21.0,17.0,14.0,16.0,16.0,26.0,15.0,10.0,17.0,17.0,15.0,13.0,15.0,8.0,8.0,9.0,10.0,6.0,11.0,6.0,5.0,9.0,6.0,6.0,7.0,2.0,4.0,0.0,2.0,0.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,388,1369,335,0,130,130,128,151,194,174,135,128,127,120,121,111,108,86,84,68,44,32,15,5,1,0,2079,1,8,4,0,2079,2,7,4,0,627,14,39,265,74,2,683,388,0,1342,745,5,0,2,3,0,0,0,0,0,0,0,58,2029,0,12,53,57,2,4,2,497,1465,0,229,337,83,4,2,1437,0,2.6500593119810203,0.0,3.6220338983050846,0.0,7.193116634799235,4,15,28,0,2,0,166,436,0,65,29,41,75,99,96,89,45,61,27,16,5,3,0,0,0,608,43,297,354,205,446,66,585,147,504,7,644,441,210,4,647,561,90,405,246,214,191,77,574,364,287,49,602,468,183,327,324,13,638,151,314,163,23,0,443,208,0,2,0,0,0,0,0,0,0,0,17,632,0,1.717357910906298,1.4961597542242704,0.0,1.0689655172413792,1.0689655172413792,56.94162826420891 +20203,Coclé,Antón,El Chirú,2095,2,474,15,0,0,0,0,0,0,1,0,0,0,0,79,785,265,59,1001,128,0,0,0,59,0,1117,0,3,17,1,14,35,0,1,51,90,966,20,53,0,8,1109,61,6,2,0,10,1188,0,1127,80,67,101,23,0,21,31,1031,101,4,0,1151,10,4,12,0,11,0,1090,18,53,25,1,0,1,408,768,0,11,1,0,0,1057,107,2,0,14,1,0,0,4,1,2,711,1876,6.792955326460481,12.574742268041238,6.800687285223368,12.721649484536082,1.0185185185185186,3.569023569023569,2.4006734006734005,1210,644,1373,67,342,30,60,46,5,65,6,15,23,3,67,35,9,21,28,22,15,2812,852,0,577,3087,0,2103,1561,0,3391,273,0,947,2717,0,876,71,2619,98,0,102,52,79,31,67,109,132,99,99,770,0,0,1,116,178,349,108,184,731,4,12,36,54,59,76,68,95,7,2,38,0,0,0,6,0,1261,241,1747,0,6,118,67,227,556,818,70,76,823,76,220,121,78,10,99,11,2,1970,1919,164,717,141,367,20,0,29,2,13,143,19,1314,94,0,0,2057,876,4,12,46,205,6,37,6,0,3,54,93,64,49,256,103,286,73,521,2201,251,135,181,233,305,243,84,82,28,23,4,9,4,12,94,62.0,56.0,51.0,56.0,70.0,84.0,59.0,59.0,76.0,67.0,77.0,55.0,49.0,50.0,58.0,56.0,60.0,64.0,68.0,63.0,67.0,59.0,72.0,51.0,56.0,58.0,73.0,61.0,50.0,57.0,58.0,55.0,45.0,53.0,45.0,47.0,46.0,47.0,51.0,51.0,36.0,49.0,56.0,49.0,42.0,37.0,34.0,44.0,48.0,49.0,48.0,49.0,59.0,62.0,45.0,50.0,47.0,48.0,34.0,35.0,36.0,28.0,37.0,32.0,33.0,34.0,30.0,25.0,20.0,16.0,30.0,23.0,19.0,19.0,21.0,22.0,16.0,15.0,25.0,18.0,19.0,10.0,11.0,8.0,16.0,7.0,12.0,10.0,4.0,12.0,5.0,1.0,4.0,0.0,1.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,929,2500,460,0,295,345,289,311,305,299,256,242,232,212,263,214,166,125,112,96,64,45,11,7,0,0,3756,63,66,4,0,3759,82,44,4,0,1085,20,76,515,149,11,1104,929,0,2287,1518,84,0,7,35,4,1,1,1,1,0,0,57,3782,0,231,336,637,87,11,16,1485,1086,0,631,834,213,22,17,2172,0,2.3308504034761017,0.0,3.1989389920424403,0.0,7.952687066083826,74,99,236,34,4,5,438,320,0,137,73,57,91,125,172,151,88,137,50,36,14,10,5,17,47,1173,37,1032,178,913,297,128,1082,982,228,188,1022,666,544,58,1152,1104,106,1080,130,392,688,243,967,698,512,341,869,483,727,410,800,17,1193,229,663,304,14,1,722,488,0,0,9,2,1,0,1,0,0,0,16,1181,0,1.6267547481420317,1.5846407927332782,1.5,1.0461538461538462,1.0461538461538462,52.44214876033058 +20204,Coclé,Antón,El Retiro,1395,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,707,181,39,872,17,1,0,0,38,0,782,0,13,48,18,6,50,0,11,2,2,865,12,46,0,1,814,100,3,0,0,11,928,0,349,94,3,10,17,0,0,5,873,49,1,0,893,0,15,13,0,7,0,911,0,16,0,0,0,1,135,774,0,19,0,0,0,886,19,1,2,0,0,1,0,1,17,1,0,1401,6.653038674033149,16.827624309392267,6.914917127071823,19.028729281767955,1.0172413793103448,3.3566810344827585,2.2607758620689653,944,504,1029,80,209,28,43,24,3,42,6,10,13,2,41,31,17,30,15,33,26,2196,595,0,338,2453,0,1574,1217,0,2609,182,0,716,2075,0,674,42,2004,71,0,73,40,55,11,55,68,96,96,77,875,1,3,4,94,110,242,61,102,485,9,6,29,34,45,67,28,10,4,2,9,0,0,0,0,0,1109,120,1286,0,0,53,7,142,426,582,81,55,412,151,243,158,88,0,150,2,0,1530,1407,81,418,144,476,6,0,79,0,11,183,11,876,54,0,0,1782,601,4,9,9,98,3,9,0,0,1,28,31,30,32,210,200,209,69,419,1660,294,113,154,186,209,138,58,47,13,8,0,3,0,0,54,33.0,42.0,32.0,39.0,48.0,46.0,54.0,49.0,41.0,38.0,38.0,55.0,50.0,49.0,45.0,51.0,40.0,42.0,43.0,30.0,45.0,51.0,46.0,52.0,36.0,58.0,51.0,48.0,40.0,45.0,31.0,41.0,51.0,32.0,36.0,40.0,19.0,35.0,45.0,35.0,41.0,33.0,29.0,35.0,28.0,31.0,32.0,39.0,37.0,31.0,37.0,35.0,35.0,34.0,35.0,29.0,35.0,36.0,37.0,34.0,21.0,35.0,28.0,32.0,23.0,26.0,25.0,18.0,20.0,16.0,27.0,14.0,18.0,19.0,18.0,17.0,12.0,12.0,19.0,12.0,12.0,13.0,11.0,13.0,10.0,11.0,10.0,11.0,4.0,9.0,9.0,6.0,3.0,4.0,3.0,4.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,659,1865,413,0,194,228,237,206,230,242,191,174,166,170,176,171,139,105,96,72,59,45,25,9,2,0,2907,21,3,6,0,2907,22,2,6,0,944,9,61,308,91,5,860,659,0,1906,1013,18,0,7,15,7,1,0,0,1,0,0,34,2872,0,98,133,268,23,3,4,1019,1389,0,372,570,155,10,4,1826,0,2.3903654485049834,0.0,3.309638554216868,0.0,7.348995573714675,22,44,89,9,2,2,356,420,0,92,76,59,93,161,152,100,62,72,34,13,8,7,1,1,13,921,23,708,236,608,336,94,850,573,371,50,894,435,509,9,935,866,78,757,187,147,610,135,809,404,540,217,727,596,348,503,441,26,918,217,497,217,13,0,652,292,0,1,2,2,1,0,0,1,0,0,11,926,0,1.6207627118644068,1.4904661016949152,0.0,1.0689655172413792,1.0689655172413792,54.58050847457627 +20205,Coclé,Antón,El Valle,3429,12,1,13,0,0,0,0,0,0,0,12,2,0,0,10,1825,142,76,1918,59,0,1,0,75,0,1939,0,1,31,6,29,47,0,0,1274,42,535,4,98,0,100,1885,122,10,2,0,34,2053,2,1063,109,89,96,43,0,11,88,1748,200,6,0,1997,9,3,33,2,9,0,1948,33,65,3,2,0,2,950,1044,1,56,1,1,984,865,168,6,0,18,0,1,0,6,4,1,3199,270,6.913237481408031,22.824987605354487,6.9871095686663365,23.898363906792262,1.046760837798344,3.713589868485144,2.451047247929859,2163,1140,2700,109,900,40,143,88,10,196,20,17,67,2,141,51,16,30,47,31,53,5888,1354,0,1510,5732,0,4729,2513,0,6831,411,0,1879,5363,0,1717,162,5180,183,0,188,95,121,38,111,179,248,220,202,1578,0,2,12,227,288,670,199,290,1700,4,15,77,116,116,173,137,169,13,1,44,0,1,0,8,0,3133,320,3115,0,12,136,27,349,1176,1354,166,70,1115,213,766,930,176,74,109,12,5,3871,3724,187,1077,945,1069,74,7,36,5,16,288,29,2166,174,0,0,3981,1985,13,34,81,416,10,41,7,0,4,134,123,102,120,612,306,598,130,1324,3946,677,312,464,669,637,314,151,121,55,33,13,15,5,9,174,86.0,93.0,96.0,78.0,119.0,122.0,117.0,100.0,122.0,94.0,139.0,109.0,112.0,123.0,124.0,112.0,136.0,128.0,102.0,138.0,120.0,135.0,134.0,141.0,127.0,142.0,147.0,136.0,80.0,100.0,89.0,96.0,99.0,103.0,110.0,105.0,103.0,111.0,93.0,92.0,105.0,86.0,104.0,100.0,88.0,86.0,92.0,93.0,91.0,79.0,96.0,88.0,95.0,84.0,88.0,94.0,90.0,92.0,84.0,87.0,77.0,65.0,76.0,69.0,67.0,70.0,56.0,60.0,55.0,51.0,55.0,44.0,55.0,45.0,40.0,39.0,43.0,24.0,39.0,21.0,15.0,27.0,21.0,15.0,16.0,25.0,9.0,19.0,10.0,10.0,5.0,7.0,6.0,6.0,7.0,1.0,3.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1634,5055,906,0,472,555,607,616,657,605,497,504,483,441,451,447,354,292,239,166,94,73,31,11,0,0,7335,114,140,6,0,7341,155,93,6,0,2097,37,1076,965,236,36,1517,1631,0,4755,2679,161,0,25,28,13,5,0,0,2,0,1,115,7406,0,109,217,183,17,7,6,1169,5887,0,1049,1166,358,11,44,4967,0,2.076590487955528,0.0,3.0521371535932365,0.0,8.203554970375247,40,77,60,5,4,1,414,1562,0,205,107,102,158,249,375,249,170,234,104,64,23,28,13,18,50,2062,101,1744,419,1374,789,372,1791,830,1333,115,2048,905,1258,246,1917,1974,189,1798,365,1029,769,574,1589,1406,757,433,1730,384,1779,363,1800,165,1998,395,931,782,55,0,1325,838,0,7,12,5,3,0,0,2,0,1,25,2108,0,1.7896440129449838,1.72168284789644,1.1,1.0588235294117647,1.0588235294117647,54.48173832639852 +20206,Coclé,Antón,Juan Díaz,1411,16,0,0,0,0,0,0,0,0,0,0,3,0,0,1,543,434,52,881,97,0,0,0,52,0,834,0,15,64,6,4,95,0,12,28,14,893,7,61,0,27,866,142,4,1,0,17,1030,0,262,78,1,32,24,0,5,10,942,71,2,0,932,3,21,47,0,27,0,1013,1,11,1,1,1,2,196,782,0,50,1,1,0,916,25,19,1,32,0,0,0,5,25,7,0,1430,5.926673751328374,11.113708820403826,6.537725823591924,14.364505844845908,1.0009708737864078,3.145631067961165,1.9718446601941748,1034,577,1452,76,195,28,31,17,11,52,11,6,24,2,59,28,5,14,17,61,27,2634,647,0,808,2473,0,2016,1265,0,3047,234,0,1068,2213,0,1014,54,2110,103,0,110,35,69,17,87,94,141,96,111,835,0,0,5,98,151,225,93,156,610,1,6,38,42,58,51,69,54,12,1,13,0,0,0,3,0,1165,134,1588,0,3,50,19,132,639,690,99,28,621,124,255,99,52,4,111,2,2,1797,1719,137,620,108,345,17,0,40,3,30,108,11,1437,4,0,0,1923,738,5,9,43,147,7,12,3,0,3,29,52,62,35,274,124,234,63,423,2044,269,156,179,218,206,238,92,64,23,15,1,4,1,2,4,57.0,58.0,63.0,57.0,56.0,48.0,78.0,66.0,67.0,79.0,65.0,90.0,70.0,70.0,69.0,52.0,57.0,54.0,61.0,47.0,59.0,61.0,57.0,57.0,65.0,62.0,61.0,61.0,54.0,48.0,55.0,50.0,62.0,49.0,44.0,44.0,36.0,48.0,47.0,45.0,31.0,55.0,46.0,46.0,42.0,40.0,49.0,42.0,41.0,35.0,38.0,49.0,40.0,25.0,34.0,36.0,36.0,28.0,30.0,18.0,22.0,24.0,29.0,23.0,22.0,28.0,24.0,15.0,21.0,13.0,12.0,30.0,12.0,12.0,7.0,15.0,14.0,7.0,11.0,9.0,8.0,4.0,6.0,4.0,7.0,6.0,6.0,4.0,6.0,2.0,5.0,2.0,2.0,2.0,2.0,1.0,1.0,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,993,2217,306,0,291,338,364,271,299,286,260,220,220,207,186,148,120,101,73,56,29,24,13,8,2,0,3469,22,17,8,0,3469,24,15,8,0,1060,19,67,327,101,13,938,991,0,2180,1313,23,0,3,18,2,0,2,0,0,1,0,59,3431,0,40,136,268,13,4,0,727,2328,0,484,715,122,19,2,2174,0,2.312278211497516,0.0,3.340788072417465,0.0,7.440273037542662,10,54,105,6,1,0,242,616,0,116,83,52,80,129,130,151,84,101,44,29,12,10,6,4,0,978,56,744,290,602,432,113,921,642,392,56,978,600,434,20,1014,933,101,795,239,280,515,207,827,674,360,229,805,565,469,495,539,13,1021,188,606,223,17,0,640,394,0,0,4,1,0,0,0,0,0,0,12,1017,0,1.7379110251450678,1.6624758220502902,1.0,1.0,1.0,49.516441005802704 +20207,Coclé,Antón,Río Hato,7612,29,2302,38,0,0,0,0,0,0,1,1,4,0,0,295,3354,1068,269,4358,359,1,0,0,268,0,4740,0,8,59,17,36,96,0,30,1547,344,2807,104,157,0,27,4651,137,29,0,1,168,4986,0,3870,258,487,234,146,0,96,409,4182,285,7,7,4817,22,63,53,1,30,0,4622,50,154,155,3,2,0,1936,2955,3,80,8,4,2334,2148,351,10,1,36,0,0,0,43,59,4,3737,6250,6.50155183116077,16.76494930684875,6.528657148768881,18.111524932753984,1.01323706377858,3.3215002005615726,2.1768953068592056,5056,2714,5619,408,1184,118,176,139,32,230,44,74,142,14,248,71,48,90,86,96,44,12512,2579,0,3664,11427,0,10409,4682,0,14208,883,0,4243,10848,0,3820,423,10471,377,0,397,209,258,73,302,379,417,401,434,3094,2,2,27,491,697,1370,549,771,3159,28,65,189,245,346,468,288,260,49,8,108,1,1,0,3,0,6140,899,6483,0,25,417,129,810,2550,2374,330,419,3189,467,1247,856,498,39,124,428,5,8156,7794,624,2608,906,2465,105,13,126,6,41,551,52,4670,187,0,0,8257,3895,30,73,197,920,43,104,3,0,10,327,343,322,216,1490,706,1107,297,2221,8442,1187,556,691,964,1230,1205,550,434,184,136,45,57,19,63,187,208.0,211.0,235.0,205.0,242.0,252.0,248.0,268.0,299.0,260.0,290.0,276.0,239.0,263.0,252.0,266.0,273.0,271.0,240.0,245.0,281.0,253.0,264.0,265.0,265.0,270.0,272.0,247.0,211.0,216.0,221.0,235.0,204.0,229.0,241.0,218.0,228.0,227.0,206.0,225.0,219.0,206.0,197.0,225.0,204.0,213.0,240.0,197.0,211.0,201.0,204.0,184.0,181.0,188.0,175.0,144.0,159.0,171.0,150.0,145.0,122.0,151.0,113.0,122.0,104.0,105.0,119.0,93.0,131.0,99.0,104.0,93.0,78.0,85.0,74.0,77.0,76.0,67.0,58.0,55.0,54.0,49.0,33.0,29.0,33.0,21.0,26.0,28.0,17.0,21.0,15.0,9.0,11.0,10.0,5.0,7.0,6.0,2.0,2.0,4.0,4.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3748,10499,1703,0,1101,1327,1320,1295,1328,1216,1130,1104,1051,1062,932,769,612,547,434,333,198,113,50,21,7,0,15040,555,312,43,0,15051,657,199,43,0,4626,101,984,1966,493,82,3950,3748,0,9539,5832,579,0,125,291,18,1,0,1,7,0,0,190,15317,0,792,1105,2153,183,30,38,5400,6249,0,2515,3149,711,77,138,9360,0,2.1319896954083952,0.0,3.047469066366704,0.0,8.207335423197492,289,377,745,77,15,21,1720,1812,0,453,269,195,344,531,696,651,428,617,327,165,89,99,43,83,62,4838,218,4287,769,3777,1279,594,4462,4216,840,899,4157,2589,2467,462,4594,4649,407,4462,594,2235,2227,1414,3642,3442,1614,1381,3675,1403,3653,1131,3925,52,5004,1104,2686,1166,100,2,3274,1782,0,23,70,5,0,0,0,3,0,0,54,4901,0,1.612495057334915,1.5409252669039146,1.1923076923076923,1.0579710144927537,1.0579710144927537,50.76048259493671 +20208,Coclé,Antón,San Juan de Dios,1838,8,0,5,0,0,0,0,0,0,0,0,0,0,0,0,678,610,95,1210,78,0,0,0,95,0,972,0,4,153,13,35,195,0,11,7,7,1135,15,173,0,46,931,429,1,1,0,21,1383,0,266,89,11,55,47,0,3,7,1319,53,1,0,1181,15,123,41,2,21,0,1374,1,5,0,1,2,0,117,1068,0,198,0,0,0,1230,18,36,17,54,1,3,0,4,16,4,0,1851,6.519230769230769,20.450320512820515,6.9006410256410255,23.037660256410252,1.007230657989877,3.1843817787418653,1.992769342010123,1393,811,2415,67,521,26,85,56,12,110,22,10,9,1,53,49,21,35,19,49,16,3321,1881,0,562,4640,0,1965,3237,0,4812,390,0,1470,3732,0,1439,31,3566,166,0,169,38,106,22,144,162,200,211,192,1767,0,1,2,149,183,480,138,171,709,0,5,56,64,53,97,46,31,1,0,4,0,0,0,1,0,1508,275,2829,0,2,85,32,123,930,1569,118,89,571,265,237,299,119,13,208,3,2,2856,2682,119,578,294,489,17,3,214,3,59,271,13,2535,22,0,0,3543,897,3,8,31,128,0,1,1,0,3,20,51,35,41,276,306,218,76,757,4052,448,169,176,232,177,158,41,39,11,8,2,0,0,3,22,83.0,83.0,84.0,86.0,94.0,87.0,106.0,107.0,93.0,103.0,96.0,118.0,100.0,121.0,101.0,128.0,97.0,115.0,91.0,107.0,110.0,101.0,109.0,99.0,114.0,111.0,108.0,88.0,77.0,79.0,80.0,83.0,58.0,81.0,81.0,79.0,64.0,63.0,71.0,68.0,63.0,64.0,53.0,65.0,68.0,58.0,60.0,73.0,47.0,55.0,55.0,56.0,35.0,67.0,50.0,48.0,33.0,46.0,40.0,47.0,45.0,34.0,26.0,40.0,34.0,42.0,29.0,24.0,32.0,27.0,24.0,31.0,14.0,28.0,28.0,35.0,20.0,20.0,21.0,17.0,26.0,15.0,15.0,6.0,15.0,10.0,18.0,17.0,5.0,11.0,0.0,3.0,2.0,3.0,4.0,2.0,1.0,0.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1462,3524,552,0,430,496,536,538,533,463,383,345,313,293,263,214,179,154,125,113,77,61,12,7,3,0,5504,9,13,12,0,5505,12,9,12,0,1512,7,84,551,153,8,1762,1461,0,3857,1670,11,0,9,26,1,0,0,0,2,0,0,26,5474,0,25,265,60,1,0,1,450,4736,0,502,823,122,18,4,4069,0,2.5111607142857144,0.0,3.8008474576271194,0.0,6.789093535572409,4,61,20,0,0,0,165,1143,0,378,120,112,117,192,161,117,65,63,27,22,11,1,1,3,3,1257,136,737,656,556,837,160,1233,344,1049,25,1368,797,596,7,1386,1102,291,847,546,291,556,146,1247,504,889,109,1284,781,612,625,768,38,1355,222,736,427,8,0,911,482,0,0,9,0,0,0,0,1,0,0,3,1380,0,2.050251256281407,1.925340990667624,1.0,1.0476190476190477,1.0476190476190477,52.17731514716439 +20209,Coclé,Antón,Santa Rita,1285,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,561,293,40,839,16,3,0,0,37,0,755,0,5,40,10,8,47,0,30,3,2,796,9,67,0,18,736,152,0,0,0,7,895,0,271,80,2,24,29,0,0,7,867,21,0,0,813,1,40,26,0,15,0,886,1,5,0,1,2,0,147,690,0,58,0,0,0,852,15,0,0,9,0,0,0,4,13,2,0,1301,5.739331026528259,16.71049596309112,6.021914648212226,17.807381776239907,1.012290502793296,3.345251396648045,2.011173184357542,906,452,954,27,269,45,61,36,3,53,4,8,12,0,49,15,2,13,21,25,14,2153,549,0,457,2245,0,1224,1478,0,2566,136,0,628,2074,0,595,33,1996,78,0,81,30,33,7,54,57,84,84,87,793,0,0,8,57,110,232,80,80,572,1,5,14,21,35,69,55,33,10,0,9,0,0,0,1,0,853,144,1470,0,7,110,19,189,400,730,103,48,427,89,165,68,147,1,79,1,0,1444,1386,106,329,65,430,16,0,31,0,17,194,12,1051,10,0,0,1633,625,9,7,31,147,5,9,1,0,2,27,53,42,42,180,178,156,58,259,1740,280,88,121,182,134,155,61,30,17,6,3,1,0,2,10,24.0,26.0,38.0,40.0,44.0,35.0,40.0,41.0,33.0,42.0,47.0,40.0,41.0,33.0,47.0,42.0,40.0,31.0,32.0,36.0,35.0,35.0,44.0,36.0,44.0,43.0,37.0,42.0,41.0,38.0,47.0,38.0,39.0,33.0,31.0,39.0,30.0,39.0,39.0,30.0,38.0,36.0,37.0,36.0,32.0,32.0,34.0,37.0,30.0,41.0,37.0,37.0,31.0,33.0,36.0,33.0,26.0,33.0,36.0,36.0,36.0,34.0,25.0,37.0,30.0,26.0,22.0,27.0,31.0,23.0,22.0,16.0,25.0,16.0,14.0,26.0,14.0,14.0,20.0,15.0,12.0,16.0,16.0,10.0,22.0,14.0,11.0,10.0,7.0,5.0,8.0,5.0,4.0,2.0,1.0,1.0,3.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,571,1794,465,0,172,191,208,181,194,201,188,177,179,174,174,164,162,129,93,89,76,47,20,10,1,0,2816,7,7,0,0,2816,7,7,0,0,810,13,97,362,128,10,839,571,0,1722,1097,11,0,5,15,0,1,0,0,3,0,0,86,2720,0,20,46,78,5,4,4,1121,1552,0,354,591,180,16,4,1685,0,2.407830342577488,0.0,3.363095238095238,0.0,7.788339222614841,10,19,29,3,1,2,396,446,0,177,89,38,96,124,90,96,59,71,35,11,7,4,2,2,5,872,34,671,235,532,374,124,782,509,397,26,880,536,370,10,896,801,105,719,187,316,403,141,765,370,536,136,770,513,393,465,441,17,889,186,445,264,11,0,462,444,0,1,4,0,0,0,0,1,0,0,28,872,0,1.5938189845474613,1.5298013245033113,1.0,1.0185185185185186,1.0185185185185186,56.20088300220751 +20210,Coclé,Antón,Caballero,1598,11,0,0,0,0,0,0,1,0,0,0,0,0,0,4,435,690,57,1074,55,2,0,0,55,0,938,0,7,84,6,14,126,0,11,88,2,957,13,117,0,9,920,253,0,0,0,13,1186,0,273,103,7,13,27,0,0,3,1140,42,1,0,1051,9,72,24,2,28,0,1179,1,1,0,1,4,0,146,964,1,73,2,0,0,1132,6,5,0,25,0,1,0,1,12,4,0,1610,6.648506151142355,22.57469244288225,6.811072056239016,23.18365553602812,1.009274873524452,3.139123102866779,2.025295109612141,1197,650,1692,44,313,20,63,44,8,67,10,10,18,0,40,32,14,22,16,44,14,2633,1260,0,218,3675,0,2036,1857,0,3674,219,0,1027,2866,0,996,31,2749,117,0,121,36,75,14,81,111,135,145,135,1317,0,1,3,102,109,369,110,143,652,3,2,32,47,36,50,37,19,4,2,1,0,0,1,0,0,1426,85,1982,0,0,28,19,97,665,1026,118,76,440,46,168,219,84,11,512,1,6,2151,1985,75,521,227,454,24,1,178,7,44,297,14,1235,4,0,0,2604,771,3,11,17,83,3,1,0,0,7,16,27,21,20,224,412,202,54,528,2703,419,163,154,286,195,123,52,21,12,1,0,1,0,2,4,65.0,56.0,67.0,55.0,65.0,62.0,65.0,66.0,69.0,73.0,73.0,71.0,85.0,71.0,64.0,75.0,72.0,73.0,73.0,67.0,78.0,66.0,66.0,76.0,62.0,79.0,71.0,78.0,57.0,66.0,60.0,68.0,64.0,59.0,55.0,46.0,39.0,54.0,55.0,40.0,67.0,50.0,56.0,37.0,48.0,53.0,41.0,49.0,42.0,50.0,43.0,44.0,33.0,50.0,32.0,37.0,36.0,33.0,42.0,31.0,40.0,34.0,31.0,28.0,22.0,25.0,27.0,26.0,29.0,23.0,27.0,23.0,21.0,21.0,18.0,31.0,19.0,21.0,22.0,18.0,20.0,8.0,14.0,15.0,13.0,13.0,14.0,9.0,8.0,5.0,8.0,6.0,7.0,2.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1007,2628,501,0,308,335,364,360,348,351,306,234,258,235,202,179,155,130,110,111,70,49,27,3,1,0,4116,8,3,9,0,4116,8,3,9,0,1282,14,538,373,137,11,776,1005,0,2832,1296,8,0,3,4,20,0,0,1,0,0,0,43,4065,0,12,60,131,4,0,0,1272,2657,0,392,659,103,9,1,2972,0,2.582331730769231,0.0,3.738812785388128,0.0,6.990087040618955,5,18,52,1,0,0,370,751,0,183,110,76,151,193,170,127,82,62,27,11,3,0,0,2,0,1116,81,744,453,567,630,91,1106,336,861,21,1176,606,591,24,1173,981,216,850,347,375,475,79,1118,540,657,88,1109,833,364,488,709,46,1151,222,552,409,14,1,749,448,0,1,2,8,0,0,1,0,0,0,8,1177,0,1.7954924874791318,1.6569282136894825,1.0,1.0192307692307692,1.0192307692307692,52.91729323308271 +20301,Coclé,La Pintada,La Pintada,1703,6,59,12,0,0,0,1,0,0,0,1,1,0,0,43,991,232,33,1235,31,0,1,0,32,0,1135,0,0,110,1,5,48,0,0,751,20,465,19,30,0,14,1173,91,6,0,0,29,1299,0,238,85,43,69,46,0,4,61,1182,45,7,0,1215,10,38,9,5,22,0,1283,3,11,0,0,2,0,419,849,2,29,0,0,697,545,30,8,2,2,0,2,0,1,7,5,831,952,6.379716981132075,20.29638364779874,6.620283018867925,21.88679245283019,1.0069284064665127,3.8352578906851424,2.5658198614318706,1310,747,1556,46,458,42,94,64,10,103,13,14,36,4,88,44,19,31,25,6,9,3406,893,0,997,3302,0,2387,1912,0,4095,204,0,1131,3168,0,1014,117,3063,105,0,106,51,67,15,74,94,176,143,130,901,0,2,3,104,198,413,100,195,891,4,25,38,39,111,173,127,72,14,2,30,0,0,0,1,0,1624,118,2171,0,6,54,34,251,722,985,112,101,807,273,254,98,138,5,139,0,2,2342,2155,314,596,104,568,57,0,73,4,33,244,19,1743,8,0,0,2382,1038,4,30,77,344,11,26,1,0,8,47,147,108,85,253,209,344,154,387,2464,449,171,244,298,212,246,156,151,57,24,3,7,2,5,8,42.0,35.0,60.0,61.0,59.0,64.0,56.0,74.0,67.0,66.0,67.0,73.0,65.0,66.0,77.0,67.0,66.0,70.0,70.0,64.0,53.0,80.0,71.0,69.0,63.0,81.0,62.0,64.0,50.0,63.0,64.0,61.0,45.0,54.0,51.0,58.0,64.0,59.0,53.0,69.0,44.0,61.0,58.0,62.0,58.0,55.0,41.0,53.0,54.0,57.0,58.0,60.0,41.0,60.0,54.0,56.0,37.0,50.0,57.0,54.0,41.0,43.0,39.0,54.0,53.0,41.0,31.0,35.0,50.0,25.0,29.0,34.0,28.0,36.0,24.0,36.0,21.0,24.0,39.0,25.0,20.0,17.0,27.0,15.0,24.0,16.0,14.0,8.0,7.0,16.0,9.0,10.0,4.0,8.0,8.0,5.0,4.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,932,2871,694,0,257,327,348,337,336,320,275,303,283,260,273,254,230,182,151,145,103,61,39,11,2,0,4427,39,25,6,0,4429,42,20,6,0,1174,17,81,702,155,13,1423,932,0,2428,2022,47,0,22,34,2,2,0,0,2,1,0,230,4204,0,60,116,238,13,10,9,2254,1797,0,756,1140,257,9,6,2329,0,2.1251325556733827,0.0,3.0431372549019606,0.0,8.357349344007115,22,40,94,6,4,2,672,470,0,142,84,50,118,172,158,143,95,147,87,45,25,22,9,8,3,1256,54,1060,250,938,372,203,1107,961,349,143,1167,607,703,126,1184,1177,133,996,314,871,125,375,935,645,665,357,953,458,852,458,852,16,1294,206,672,415,17,1,812,498,0,6,9,1,1,0,0,2,0,0,70,1221,0,1.786422578184592,1.6437833714721586,1.5,1.077922077922078,1.077922077922078,56.1 +20302,Coclé,La Pintada,El Harino,2308,3,6,0,0,0,0,0,1,0,0,0,0,0,0,5,883,625,72,1442,71,0,2,0,70,0,1028,0,11,386,4,4,146,0,6,544,9,944,13,70,3,2,1269,286,3,2,0,25,1585,1,495,93,12,66,65,0,3,11,1505,63,3,0,1247,242,54,21,12,9,0,1560,5,7,1,1,11,0,228,1131,1,133,89,3,0,1225,253,6,2,54,1,38,0,2,3,1,0,2318,6.742895805142084,21.63870094722598,6.912043301759134,23.35791610284168,1.0321766561514196,3.593059936908517,2.3287066246056782,1636,922,2301,84,459,55,84,46,17,90,18,17,20,3,93,39,19,17,23,12,19,3887,1513,0,464,4936,0,2273,3127,0,4991,409,0,1356,4044,0,1289,67,3774,270,0,274,51,98,3,125,188,281,250,239,1591,0,0,7,168,210,485,136,183,738,0,6,35,58,62,108,70,21,7,0,6,0,0,0,0,0,1950,124,2697,0,6,65,27,137,829,1460,144,127,664,328,283,119,124,7,503,8,6,2989,2763,155,673,128,880,22,1,177,6,104,367,41,2137,65,0,0,3646,859,7,14,54,183,3,5,0,0,6,29,80,56,49,272,593,348,137,504,3686,500,252,285,280,243,177,124,83,34,11,5,4,2,1,65,69.0,89.0,101.0,93.0,101.0,108.0,109.0,91.0,101.0,119.0,100.0,97.0,89.0,103.0,101.0,115.0,115.0,112.0,94.0,108.0,105.0,101.0,113.0,100.0,101.0,99.0,92.0,70.0,86.0,72.0,88.0,74.0,72.0,72.0,68.0,63.0,75.0,67.0,73.0,68.0,81.0,55.0,63.0,51.0,66.0,58.0,63.0,67.0,70.0,64.0,65.0,67.0,48.0,59.0,55.0,59.0,66.0,40.0,53.0,44.0,54.0,53.0,44.0,51.0,38.0,39.0,42.0,39.0,30.0,43.0,32.0,30.0,28.0,29.0,19.0,30.0,21.0,32.0,26.0,22.0,24.0,19.0,9.0,15.0,24.0,18.0,15.0,8.0,10.0,4.0,8.0,5.0,6.0,5.0,1.0,2.0,1.0,2.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1471,3637,644,0,453,528,490,544,520,419,374,346,316,322,294,262,240,193,138,131,91,55,25,8,3,0,5726,8,10,8,0,5726,11,7,8,0,1610,28,316,589,175,13,1552,1469,0,4181,1563,8,0,11,22,3,0,0,0,0,1,0,21,5694,0,42,160,156,9,6,2,538,4839,0,519,893,142,14,3,4181,0,2.4526086956521738,0.0,3.607712765957447,0.0,6.680806675938804,10,47,56,3,1,1,203,1315,0,281,155,133,173,222,193,122,100,141,52,21,15,10,6,5,7,1522,114,932,704,927,709,251,1385,704,932,26,1610,731,905,16,1620,1420,216,914,722,749,165,194,1442,898,738,237,1399,745,891,598,1038,18,1618,306,881,430,19,1,1120,516,0,1,6,0,0,0,0,0,1,0,8,1620,0,1.8259010384850336,1.6878436163714112,1.0,1.0337078651685394,1.0337078651685394,52.119804400978 +20303,Coclé,La Pintada,El Potrero,1574,8,0,0,0,0,0,0,0,0,0,0,0,0,0,2,987,77,16,1057,9,1,0,0,15,0,997,0,2,41,1,6,33,0,2,433,14,572,4,58,0,1,1032,43,0,0,0,7,1082,1,293,81,4,69,52,0,1,11,1031,35,4,0,1044,12,8,10,1,7,0,1069,0,12,0,0,1,0,183,876,0,23,0,0,0,1057,14,4,3,1,0,1,0,0,1,1,0,1582,5.666666666666667,17.793650793650794,6.754435107376284,22.428571428571427,1.0083179297597042,3.487985212569316,2.205175600739372,1091,611,1150,108,297,31,33,20,12,54,10,9,22,2,75,27,18,14,18,23,17,2558,726,0,445,2839,0,897,2387,0,3053,231,0,835,2449,0,780,55,2328,121,0,123,36,39,8,66,102,167,137,109,930,0,2,3,94,111,295,92,128,537,1,2,26,36,62,72,49,47,1,1,8,0,0,0,0,0,1128,141,1731,0,9,90,19,177,574,746,65,169,499,102,130,69,169,3,232,2,7,1790,1660,121,419,83,552,8,0,22,8,41,235,14,1189,4,0,0,2153,629,3,6,37,164,1,7,0,0,8,34,61,50,42,159,301,185,120,309,2047,340,141,165,255,165,154,80,60,23,7,3,4,1,1,4,37.0,47.0,39.0,43.0,40.0,54.0,45.0,50.0,45.0,50.0,62.0,57.0,53.0,57.0,60.0,63.0,50.0,51.0,51.0,52.0,50.0,55.0,57.0,53.0,61.0,60.0,42.0,57.0,38.0,54.0,46.0,34.0,42.0,56.0,46.0,34.0,28.0,37.0,42.0,39.0,38.0,46.0,43.0,31.0,42.0,48.0,48.0,39.0,49.0,44.0,51.0,39.0,44.0,40.0,50.0,33.0,27.0,36.0,37.0,31.0,40.0,38.0,38.0,41.0,33.0,29.0,20.0,25.0,28.0,26.0,23.0,22.0,30.0,19.0,13.0,23.0,20.0,26.0,24.0,20.0,13.0,22.0,14.0,19.0,16.0,14.0,7.0,9.0,5.0,5.0,7.0,7.0,1.0,5.0,4.0,1.0,1.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,739,2204,507,0,206,244,289,267,276,251,224,180,200,228,224,164,190,128,107,113,84,40,24,6,5,0,3427,17,5,1,0,3427,17,5,1,0,1040,11,117,404,112,10,1017,739,0,2118,1321,11,0,1,1,1,0,0,0,0,0,0,8,3439,0,18,49,168,9,2,1,136,3067,0,455,866,181,19,1,1928,0,2.4483714483714483,0.0,3.377889447236181,0.0,7.333913043478261,10,17,75,5,1,1,54,928,0,127,102,73,125,166,165,98,65,73,49,24,8,10,4,1,1,1073,18,878,213,835,256,157,934,844,247,64,1027,510,581,12,1079,987,104,771,320,547,224,170,921,345,746,276,815,472,619,375,716,12,1079,223,568,283,17,0,800,291,0,1,0,0,0,0,0,0,0,0,6,1084,0,1.640696608615949,1.5215398716773605,1.0,1.0,1.0,55.87901008249312 +20304,Coclé,La Pintada,Llano Grande,1462,8,3,4,0,0,0,0,0,0,0,0,0,0,0,1,569,473,68,971,72,1,1,0,66,0,823,0,7,130,2,0,139,0,10,370,8,613,21,84,0,15,887,185,2,1,0,36,1111,0,170,88,18,60,30,0,0,13,1046,50,2,0,800,79,91,22,7,112,0,1081,0,2,0,0,26,2,205,777,1,125,2,1,0,1008,26,3,0,46,0,9,0,1,8,10,0,1477,6.1228239845261125,19.458413926499038,6.551257253384913,21.54158607350097,1.026102610261026,3.215121512151215,1.9657965796579655,1140,725,1582,98,307,34,45,25,9,95,8,11,34,1,53,20,11,28,18,10,13,2361,1511,0,399,3473,0,1260,2612,0,3569,303,0,1035,2837,0,961,74,2687,150,0,152,60,65,3,93,132,208,172,169,1097,0,0,2,101,145,386,110,132,560,1,1,22,45,47,70,69,16,5,2,6,0,0,0,1,0,1352,102,2001,0,3,22,21,75,652,1113,116,45,500,372,124,91,126,6,180,0,31,2108,2006,96,436,99,557,9,0,202,31,121,302,20,1791,156,0,0,2607,666,4,5,18,148,1,5,1,0,32,27,41,36,29,146,344,340,98,361,2532,457,144,131,180,134,115,84,101,46,21,3,6,1,3,156,63.0,52.0,65.0,62.0,69.0,77.0,72.0,68.0,73.0,58.0,76.0,84.0,65.0,65.0,74.0,71.0,77.0,68.0,56.0,94.0,65.0,72.0,80.0,86.0,62.0,76.0,66.0,81.0,51.0,66.0,60.0,59.0,54.0,50.0,44.0,50.0,59.0,43.0,52.0,57.0,51.0,59.0,46.0,47.0,50.0,36.0,34.0,49.0,42.0,30.0,64.0,45.0,44.0,43.0,47.0,37.0,34.0,30.0,35.0,37.0,37.0,34.0,41.0,26.0,29.0,32.0,20.0,20.0,26.0,25.0,19.0,24.0,27.0,19.0,20.0,21.0,21.0,22.0,16.0,13.0,19.0,14.0,11.0,17.0,11.0,9.0,11.0,11.0,5.0,6.0,7.0,3.0,6.0,2.0,3.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1023,2626,465,0,311,348,364,366,365,340,267,261,253,191,243,173,167,123,109,93,72,42,21,5,0,0,4083,19,10,2,0,4083,21,8,2,0,1257,19,35,511,127,7,1135,1023,0,2652,1452,10,0,2,9,0,1,1,0,4,0,0,212,3885,0,31,141,150,1,4,0,569,3218,0,447,709,71,6,6,2875,0,2.4141048824593128,0.0,3.470856102003643,0.0,6.862177929022849,10,44,51,0,1,0,165,869,0,221,127,71,112,133,119,81,49,79,56,35,15,18,9,5,10,1067,73,668,472,611,529,113,1027,575,565,42,1098,499,641,88,1052,864,276,675,465,561,114,149,991,354,786,206,934,478,662,468,672,11,1129,165,660,292,23,0,856,284,0,0,1,0,1,1,0,0,0,0,64,1073,0,1.849122807017544,1.7596491228070177,2.0,1.0483870967741935,1.0483870967741935,52.64385964912281 +20305,Coclé,La Pintada,Piedras Gordas,1829,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,606,96,1131,61,1,0,0,95,0,853,0,6,281,2,5,124,0,17,285,7,847,19,58,0,72,955,299,1,2,0,31,1288,0,333,82,1,58,71,0,0,3,1246,39,0,0,962,222,66,15,10,13,0,1269,1,1,2,3,11,1,122,980,1,143,42,0,0,1088,91,6,2,60,0,22,0,0,17,2,0,1833,5.686174724342664,16.55640373197625,6.157760814249364,19.28837998303647,1.0124223602484472,3.4479813664596275,2.2135093167701863,1304,757,1916,86,400,35,50,50,10,88,8,7,1,1,63,40,27,28,21,13,25,2877,1528,0,305,4100,0,792,3613,0,4052,353,0,1268,3137,0,1229,39,2974,163,0,164,45,91,5,140,144,280,200,176,1398,0,0,0,131,151,392,124,123,659,4,13,20,25,38,39,30,10,0,0,2,0,0,1,0,0,1399,127,2393,0,4,74,23,64,818,1267,70,174,475,191,130,81,75,5,519,3,10,2501,2212,91,503,85,522,10,1,267,10,116,347,28,1759,268,0,0,3077,743,0,4,23,70,1,1,0,0,11,17,20,24,32,127,523,231,72,469,3150,427,126,156,184,147,105,65,67,15,3,0,0,0,0,268,80.0,75.0,79.0,74.0,68.0,77.0,93.0,99.0,68.0,81.0,96.0,88.0,84.0,86.0,99.0,90.0,112.0,96.0,84.0,80.0,88.0,92.0,94.0,83.0,96.0,71.0,79.0,71.0,49.0,64.0,51.0,59.0,64.0,58.0,51.0,53.0,55.0,73.0,71.0,58.0,59.0,56.0,38.0,39.0,48.0,45.0,51.0,42.0,39.0,43.0,48.0,37.0,52.0,42.0,43.0,37.0,39.0,40.0,43.0,25.0,41.0,35.0,47.0,38.0,37.0,31.0,27.0,20.0,31.0,30.0,30.0,25.0,14.0,20.0,22.0,20.0,27.0,23.0,30.0,17.0,31.0,14.0,22.0,15.0,19.0,12.0,9.0,11.0,10.0,10.0,5.0,4.0,7.0,3.0,5.0,3.0,2.0,7.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1247,2906,560,0,376,418,453,462,453,334,283,310,240,220,222,184,198,139,111,117,101,52,24,16,0,0,4695,3,2,13,0,4695,3,2,13,0,1422,19,221,426,153,7,1218,1247,0,3159,1550,4,0,5,20,1,4,0,0,1,0,0,107,4575,0,22,161,393,2,0,3,1688,2444,0,425,929,71,9,0,3279,0,2.656353591160221,0.0,3.816072908036454,0.0,6.424570337364736,7,39,119,2,0,2,529,606,0,303,144,100,151,148,133,88,73,79,39,12,2,2,0,0,30,1173,131,729,575,723,581,169,1135,470,834,9,1295,518,786,9,1295,1046,258,696,608,488,208,89,1215,209,1095,165,1139,815,489,649,655,12,1292,247,705,350,2,0,961,343,0,2,2,0,2,0,0,0,0,0,33,1265,0,1.9179447852760736,1.696319018404908,1.0,1.1097560975609757,1.1097560975609757,53.40490797546012 +20306,Coclé,La Pintada,Las Lomas,1099,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,544,130,11,657,17,0,0,0,11,0,529,0,6,53,11,2,82,0,2,12,0,627,11,35,0,0,542,137,1,0,0,5,685,0,296,55,1,31,34,0,0,2,657,26,0,0,568,80,13,15,1,8,0,685,0,0,0,0,0,0,34,567,0,71,13,0,0,572,103,1,1,4,0,4,0,0,0,0,0,1102,6.767407407407408,23.245925925925928,6.940740740740741,23.675555555555555,1.0116788321167882,3.611678832116788,2.487591240875912,693,335,880,39,240,10,47,36,2,41,4,3,20,0,40,17,11,15,9,1,17,1292,897,0,129,2060,0,730,1459,0,1995,194,0,576,1613,0,562,14,1508,105,0,107,18,41,0,74,91,161,107,96,625,0,0,0,68,93,191,54,75,293,0,5,13,14,12,10,8,22,3,0,7,0,0,0,1,0,850,21,1104,0,1,10,2,68,388,516,62,70,138,57,61,25,27,13,550,0,0,1230,1120,37,148,27,609,7,2,39,2,60,247,28,382,28,0,0,1587,337,0,5,2,35,2,6,1,0,2,6,21,9,12,70,528,96,24,103,1239,437,150,218,129,52,40,20,25,6,3,0,2,1,0,28,42.0,53.0,28.0,38.0,37.0,30.0,43.0,33.0,35.0,36.0,51.0,45.0,35.0,42.0,53.0,43.0,48.0,45.0,39.0,37.0,43.0,42.0,38.0,33.0,45.0,33.0,29.0,29.0,23.0,22.0,50.0,30.0,27.0,28.0,23.0,22.0,28.0,25.0,28.0,20.0,19.0,17.0,20.0,26.0,21.0,21.0,27.0,24.0,24.0,24.0,23.0,24.0,25.0,21.0,25.0,13.0,28.0,18.0,28.0,22.0,27.0,19.0,19.0,19.0,20.0,25.0,17.0,20.0,18.0,17.0,21.0,16.0,21.0,22.0,15.0,15.0,18.0,14.0,13.0,14.0,7.0,7.0,7.0,4.0,6.0,9.0,12.0,11.0,9.0,8.0,4.0,3.0,2.0,2.0,3.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,601,1384,365,0,198,177,226,212,201,136,158,123,103,120,118,109,104,97,95,74,31,49,14,3,2,0,2342,2,1,5,0,2342,2,1,5,0,734,12,119,160,93,5,626,601,0,1597,752,1,0,1,8,0,0,0,0,2,0,1,16,2322,0,8,141,120,5,6,0,357,1713,0,125,338,74,4,0,1809,0,2.875402792696026,0.0,4.173202614379085,0.0,6.273617021276595,2,40,33,3,4,0,135,476,0,40,82,49,124,146,107,47,37,36,6,10,4,1,0,3,1,657,36,435,258,429,264,90,603,325,368,5,688,303,390,3,690,346,347,374,319,337,37,39,654,134,559,77,616,482,211,355,338,7,686,168,322,189,14,0,474,219,0,0,1,0,0,0,0,1,0,0,5,686,0,1.774891774891775,1.616161616161616,1.0,1.024390243902439,1.024390243902439,57.24242424242424 +20307,Coclé,La Pintada,Llano Norte,1622,2,0,0,0,0,0,0,2,0,0,0,0,0,0,3,451,689,34,1083,60,1,0,0,33,0,526,0,22,453,7,7,157,0,5,391,2,711,9,55,3,6,859,302,0,0,0,16,1177,1,288,46,10,79,23,0,1,18,1117,41,0,0,598,552,0,3,1,23,0,1132,0,2,0,5,37,1,165,730,0,129,153,0,0,845,165,14,1,64,7,70,1,0,10,0,0,1626,5.322772277227723,15.452475247524752,5.8297029702970296,17.585148514851486,1.0518266779949024,3.2650807136788447,2.073067119796092,1238,923,2085,141,220,33,23,19,7,71,17,10,33,2,41,29,8,16,6,2,24,2740,1704,0,228,4216,0,1829,2615,0,3932,512,0,1217,3227,0,1165,52,2948,279,0,289,65,89,12,136,181,232,198,208,1303,0,0,0,120,199,509,89,126,515,4,10,14,29,22,52,26,11,2,0,3,0,0,0,0,0,1653,105,2075,0,3,37,30,10,712,1191,55,107,533,299,118,38,77,3,653,7,2,2545,2277,60,656,53,633,65,0,261,2,124,151,23,2155,100,0,0,3128,589,0,9,14,89,1,3,0,0,6,27,29,28,40,100,638,232,178,480,3515,272,154,131,148,101,117,106,120,29,18,5,4,1,1,100,103.0,88.0,91.0,96.0,121.0,106.0,96.0,84.0,107.0,97.0,118.0,92.0,94.0,100.0,92.0,108.0,88.0,85.0,79.0,96.0,97.0,109.0,114.0,95.0,87.0,79.0,97.0,82.0,81.0,73.0,71.0,63.0,64.0,63.0,65.0,66.0,42.0,63.0,51.0,59.0,59.0,53.0,43.0,56.0,50.0,54.0,43.0,66.0,32.0,58.0,43.0,38.0,33.0,32.0,36.0,31.0,27.0,33.0,41.0,40.0,21.0,30.0,29.0,24.0,34.0,30.0,18.0,21.0,24.0,27.0,17.0,16.0,27.0,8.0,19.0,12.0,14.0,16.0,16.0,11.0,7.0,6.0,12.0,11.0,13.0,5.0,7.0,3.0,2.0,3.0,1.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1485,2983,354,0,499,490,496,456,502,412,326,281,261,253,182,172,138,120,87,69,49,20,9,0,0,0,4789,7,5,21,0,4789,7,5,21,0,1605,14,82,493,77,1,1066,1484,0,2861,1954,7,0,0,50,3,1,1,0,0,0,0,52,4715,0,8,730,192,8,12,1,1172,2699,0,443,498,11,1,0,3869,0,2.605099150141643,0.0,3.7796901893287433,0.0,6.012650352550809,1,172,65,2,5,1,322,670,0,308,93,96,96,132,112,82,75,122,35,32,13,15,4,1,22,1076,162,496,742,548,690,160,1078,430,808,15,1223,445,793,34,1204,942,296,528,710,459,69,78,1160,453,785,178,1060,705,533,769,469,10,1228,141,836,238,23,2,1039,199,0,0,11,0,1,0,0,0,0,0,11,1215,0,2.052419354838709,1.836290322580645,0.0,1.088235294117647,1.088235294117647,47.29967689822294 +20403,Coclé,Natá,El Caño,1567,6,0,0,0,0,0,0,1,0,0,0,1,0,0,5,793,275,49,1046,27,2,0,0,47,0,1039,0,0,18,0,5,54,0,6,547,21,517,9,22,0,6,1082,25,2,0,0,13,1122,3,215,70,18,103,42,0,12,21,1039,47,2,1,1083,0,12,26,0,1,0,1118,1,3,0,0,0,0,325,772,0,25,0,0,368,716,5,4,0,10,0,0,0,3,10,6,0,1575,5.963269054178145,11.917355371900827,6.2387511478420565,14.439853076216712,1.0204991087344029,3.575757575757576,2.2816399286987523,1146,576,1136,66,279,33,68,46,7,46,9,8,20,0,76,22,16,19,37,36,20,2567,721,1,702,2586,1,1564,1724,1,3023,265,1,898,2391,0,800,98,2263,127,1,133,47,44,8,79,108,152,117,86,744,1,2,3,97,155,279,90,103,578,7,19,33,60,83,67,110,58,7,1,16,0,0,1,0,1,1019,97,1874,1,10,25,31,278,560,895,72,69,666,57,179,37,44,0,117,1,6,1722,1718,212,500,49,265,52,2,21,6,6,208,23,1219,30,0,0,1945,736,3,13,67,206,6,14,0,1,6,37,97,73,68,175,195,128,111,226,1881,313,129,177,277,190,193,97,90,31,23,3,1,3,2,30,29.0,36.0,38.0,48.0,35.0,55.0,42.0,56.0,57.0,53.0,52.0,62.0,45.0,63.0,45.0,62.0,57.0,44.0,50.0,56.0,40.0,62.0,45.0,61.0,49.0,47.0,38.0,44.0,31.0,41.0,40.0,33.0,41.0,30.0,36.0,51.0,37.0,39.0,57.0,45.0,48.0,33.0,34.0,29.0,42.0,34.0,45.0,44.0,50.0,45.0,41.0,39.0,35.0,52.0,58.0,43.0,42.0,38.0,41.0,34.0,46.0,39.0,29.0,48.0,28.0,46.0,27.0,28.0,35.0,32.0,28.0,31.0,28.0,26.0,24.0,26.0,23.0,18.0,23.0,16.0,25.0,20.0,19.0,13.0,14.0,11.0,11.0,7.0,6.0,6.0,4.0,3.0,4.0,1.0,4.0,1.0,4.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,716,2153,571,0,186,263,267,269,257,201,180,229,186,218,225,198,190,168,137,106,91,41,16,9,3,0,3414,11,12,2,1,3414,12,11,2,1,891,18,36,476,137,12,1153,716,1,2272,1156,11,1,15,28,0,0,0,0,1,0,0,9,3386,1,122,143,405,31,7,6,479,2246,1,587,1074,243,43,3,1489,1,2.264705882352941,0.0,3.175662414131501,0.0,7.823255813953488,32,45,150,20,5,3,167,724,0,159,100,39,106,152,133,127,91,107,60,37,11,13,3,2,5,1125,21,967,179,870,276,156,990,928,218,185,961,620,526,86,1060,991,155,937,209,488,449,251,895,520,626,372,774,246,900,341,805,3,1143,266,581,280,19,1,758,388,0,1,9,0,0,0,0,1,0,0,3,1132,0,1.5013077593722757,1.4978204010462075,1.0,1.1176470588235294,1.1176470588235294,56.48342059336824 +20404,Coclé,Natá,Guzmán,479,3,0,0,0,0,0,0,0,0,0,0,1,0,0,2,54,239,24,279,16,2,0,0,22,0,57,0,11,117,1,1,131,0,1,0,0,295,2,21,0,1,269,40,0,0,0,10,319,0,125,12,0,6,20,0,0,3,316,0,0,0,285,7,8,11,1,7,0,318,0,0,0,0,1,0,13,285,0,21,0,0,0,216,64,2,2,27,0,4,0,0,3,1,0,483,5.546428571428572,16.485714285714284,6.921428571428572,23.692857142857143,1.0031347962382444,3.0689655172413794,1.9310344827586208,321,145,350,22,90,6,8,11,1,11,0,3,10,0,11,13,6,0,1,8,21,478,439,0,17,900,0,212,705,0,781,136,0,214,703,0,210,4,611,92,0,93,7,18,2,43,51,60,40,50,272,0,1,0,30,28,79,23,20,81,0,2,2,1,3,4,2,5,0,0,0,0,0,0,0,0,146,11,641,0,1,1,2,20,126,457,25,13,100,5,29,9,1,0,10,0,2,508,470,18,91,11,32,1,0,1,2,22,85,11,519,0,0,0,697,88,0,1,2,10,0,0,0,0,2,3,2,2,8,29,28,27,8,48,719,94,16,41,37,31,25,7,7,0,1,0,0,0,0,0,9.0,20.0,21.0,11.0,15.0,19.0,27.0,28.0,14.0,16.0,19.0,21.0,11.0,18.0,12.0,19.0,15.0,20.0,15.0,12.0,13.0,16.0,15.0,20.0,13.0,17.0,13.0,17.0,13.0,15.0,20.0,16.0,11.0,12.0,10.0,11.0,15.0,10.0,10.0,13.0,10.0,9.0,8.0,14.0,7.0,8.0,8.0,9.0,5.0,10.0,9.0,8.0,12.0,4.0,8.0,15.0,11.0,10.0,8.0,12.0,9.0,4.0,14.0,9.0,6.0,3.0,8.0,11.0,2.0,6.0,8.0,4.0,6.0,7.0,4.0,6.0,4.0,10.0,5.0,6.0,2.0,4.0,7.0,3.0,2.0,2.0,2.0,4.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,261,588,129,0,76,104,81,81,77,75,69,59,48,40,41,56,42,30,29,31,18,11,7,2,1,0,976,2,0,0,0,976,2,0,0,0,310,4,10,49,49,1,294,261,0,651,326,1,0,0,0,5,0,0,0,0,0,0,9,964,0,0,0,20,0,1,0,41,916,0,88,198,17,3,0,672,0,3.028720626631854,0.0,3.977941176470588,0.0,5.360940695296524,0,0,9,0,1,0,17,294,0,106,51,11,38,36,29,24,10,13,1,1,0,0,0,0,0,299,22,45,276,74,247,22,299,48,273,0,321,118,203,0,321,167,154,76,245,61,15,6,315,65,256,23,298,219,102,177,144,0,321,90,149,76,6,0,226,95,0,0,0,1,0,0,0,0,0,0,1,319,0,1.5825545171339563,1.4641744548286604,1.0,1.0,1.0,53.45794392523364 +20405,Coclé,Natá,Las Huacas,612,7,0,0,0,0,0,0,0,0,0,0,0,0,0,2,65,319,28,368,18,16,0,0,12,0,160,0,7,79,2,0,152,0,14,0,2,388,15,7,0,2,241,170,0,0,0,3,414,0,122,29,4,25,25,0,0,1,402,10,1,0,310,35,9,42,1,17,0,414,0,0,0,0,0,0,17,270,0,124,3,0,0,222,16,8,3,134,0,29,0,0,0,2,0,619,6.361344537815126,22.138655462184875,6.445378151260504,23.676470588235293,1.0072463768115942,3.1714975845410627,1.9565217391304348,417,227,716,9,130,20,24,12,5,11,5,2,3,0,17,7,5,7,6,0,8,647,802,0,33,1416,0,296,1153,0,1170,279,0,444,1005,0,419,25,799,206,0,208,13,26,15,44,84,105,76,84,297,0,0,0,45,51,137,43,44,139,2,3,7,5,4,8,5,4,0,0,0,0,0,0,0,0,511,41,723,0,5,12,9,13,294,345,21,50,77,40,22,23,15,0,359,0,0,847,734,22,79,24,334,3,0,74,0,81,110,14,524,56,0,0,1098,159,0,2,3,13,0,0,0,0,2,5,10,4,6,37,368,21,17,82,1238,96,61,37,46,23,13,5,3,1,2,0,0,0,0,56,37.0,25.0,35.0,35.0,32.0,19.0,29.0,31.0,30.0,33.0,40.0,43.0,26.0,33.0,36.0,36.0,44.0,36.0,26.0,36.0,29.0,42.0,21.0,29.0,32.0,17.0,17.0,27.0,20.0,10.0,21.0,17.0,14.0,15.0,13.0,15.0,24.0,10.0,15.0,17.0,21.0,13.0,18.0,20.0,14.0,17.0,20.0,22.0,18.0,13.0,15.0,13.0,11.0,12.0,10.0,9.0,16.0,10.0,14.0,12.0,9.0,13.0,10.0,12.0,8.0,16.0,11.0,11.0,9.0,11.0,14.0,7.0,10.0,7.0,9.0,12.0,6.0,7.0,2.0,2.0,7.0,3.0,5.0,1.0,3.0,0.0,1.0,2.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,484,933,164,0,164,142,178,178,153,91,80,81,86,90,61,61,52,58,47,29,19,8,1,2,0,0,1577,0,0,4,0,1577,0,0,4,0,496,1,33,57,33,0,477,484,0,1267,314,0,0,0,1,0,0,0,0,0,0,0,10,1570,0,4,1,10,1,0,4,41,1520,0,70,183,15,2,1,1310,0,3.0085616438356166,0.0,4.347258485639687,0.0,5.151802656546489,1,1,3,1,0,0,16,395,0,118,44,56,57,68,27,16,8,7,0,5,1,0,0,0,10,358,59,107,310,144,273,48,369,71,346,1,416,109,308,0,417,129,288,143,274,72,71,12,405,30,387,28,389,322,95,228,189,3,414,97,202,115,3,0,300,117,0,0,0,0,0,0,0,0,0,0,0,417,0,2.031175059952038,1.7601918465227815,1.0,1.0434782608695652,1.0434782608695652,51.65707434052758 +20406,Coclé,Natá,Toza,1030,2,0,0,0,0,0,0,1,0,0,0,0,0,0,1,452,279,33,711,21,2,0,0,31,0,643,0,0,50,3,0,60,0,9,274,11,425,35,19,0,1,697,46,0,0,0,22,765,0,118,80,5,48,16,0,0,10,732,22,1,0,713,3,10,32,0,7,0,765,0,0,0,0,0,0,143,593,0,29,0,0,0,695,46,9,0,5,0,1,0,1,8,0,0,1033,4.659919028340081,9.986504723346828,5.219973009446694,12.554655870445345,1.015686274509804,3.3816993464052287,1.9973856209150327,777,444,831,55,190,16,28,7,12,41,8,3,25,0,47,13,4,13,24,14,15,1673,616,0,292,1997,0,562,1727,0,2054,235,0,645,1644,0,592,53,1515,129,0,137,43,44,12,62,99,111,78,80,629,0,0,3,66,104,152,65,78,285,0,1,16,58,48,67,29,8,2,2,10,0,0,0,0,0,750,117,1171,0,5,47,25,139,390,546,52,44,439,54,74,34,160,1,76,2,0,1235,1202,130,368,35,292,4,8,2,1,18,107,22,975,7,0,0,1509,354,3,5,63,94,2,8,0,0,1,22,48,36,35,129,65,143,81,307,1423,200,94,122,187,137,150,54,34,23,6,0,0,0,0,7,36.0,41.0,42.0,29.0,36.0,49.0,43.0,37.0,43.0,43.0,40.0,45.0,30.0,37.0,44.0,41.0,52.0,38.0,32.0,45.0,35.0,38.0,40.0,43.0,33.0,44.0,39.0,37.0,29.0,29.0,38.0,29.0,40.0,22.0,29.0,28.0,25.0,40.0,29.0,35.0,41.0,28.0,26.0,21.0,34.0,24.0,16.0,34.0,29.0,20.0,42.0,25.0,33.0,31.0,35.0,26.0,25.0,22.0,29.0,23.0,25.0,22.0,26.0,13.0,16.0,21.0,14.0,19.0,16.0,14.0,22.0,12.0,18.0,20.0,14.0,13.0,10.0,16.0,11.0,7.0,12.0,6.0,5.0,7.0,9.0,1.0,3.0,4.0,2.0,2.0,1.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,595,1556,286,0,184,215,196,208,189,178,158,157,150,123,166,125,102,84,86,57,39,12,4,3,1,0,2429,2,5,1,0,2430,5,1,1,0,775,11,44,280,65,6,661,595,0,1689,743,5,0,1,4,0,0,0,0,1,0,0,18,2413,0,50,43,196,14,2,3,196,1933,0,416,764,143,14,0,1100,0,2.393541876892028,0.0,3.1912798874824198,0.0,6.743947476405417,15,16,75,6,2,0,72,591,0,103,66,35,74,125,102,103,53,64,21,12,10,7,2,0,0,754,23,594,183,586,191,80,697,598,179,133,644,413,364,37,740,641,136,581,196,180,401,132,645,194,583,204,573,270,507,244,533,10,767,176,402,189,10,1,536,241,0,0,1,0,0,0,0,1,0,0,6,769,0,1.5874035989717223,1.544987146529563,1.0,1.0285714285714285,1.0285714285714285,52.24839124839125 +20407,Coclé,Natá,Villarreal,828,5,3,0,0,0,0,0,2,0,0,0,0,0,0,4,473,156,17,625,8,5,0,0,12,0,622,0,1,5,0,0,17,0,5,140,6,403,75,18,0,8,603,31,0,0,0,16,650,0,95,33,3,20,35,0,5,15,603,24,3,0,621,0,7,13,0,9,0,649,0,0,0,1,0,0,127,511,1,11,0,0,0,585,32,11,1,1,0,3,2,1,4,10,0,838,5.46677471636953,11.39870340356564,5.484602917341977,11.779578606158832,1.015384615384615,3.4123076923076923,2.116923076923077,660,377,658,53,140,25,22,23,8,21,3,6,25,0,56,18,4,8,22,25,15,1453,472,0,286,1639,0,962,963,0,1782,143,0,504,1421,0,467,37,1345,76,0,78,25,29,8,48,66,92,77,54,476,1,0,1,59,67,156,52,71,354,1,1,12,27,36,74,32,11,6,1,10,0,0,0,0,0,649,69,1031,0,4,25,10,158,298,516,42,17,392,57,109,51,45,2,51,4,0,1032,989,102,342,55,173,23,0,14,2,2,91,17,669,13,0,0,1183,409,1,8,31,104,6,7,0,0,2,28,30,40,28,147,23,145,67,208,1028,166,102,119,161,126,157,57,52,20,10,1,5,2,2,13,25.0,19.0,30.0,22.0,21.0,33.0,26.0,37.0,30.0,29.0,24.0,35.0,18.0,33.0,34.0,27.0,33.0,29.0,32.0,27.0,25.0,37.0,32.0,35.0,28.0,32.0,30.0,35.0,26.0,22.0,24.0,22.0,25.0,25.0,31.0,21.0,31.0,20.0,30.0,22.0,28.0,29.0,27.0,23.0,20.0,28.0,17.0,30.0,20.0,32.0,17.0,36.0,31.0,23.0,28.0,23.0,22.0,31.0,29.0,26.0,25.0,18.0,18.0,19.0,21.0,19.0,19.0,13.0,11.0,14.0,10.0,17.0,11.0,10.0,10.0,15.0,16.0,10.0,15.0,10.0,14.0,8.0,9.0,10.0,11.0,4.0,8.0,2.0,2.0,2.0,1.0,1.0,3.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,416,1322,283,0,117,155,144,148,157,145,127,124,127,127,135,131,101,76,58,66,52,18,10,2,1,0,2010,7,1,3,0,2011,7,0,3,0,635,5,29,245,86,7,598,416,0,1269,746,6,0,0,36,5,0,0,0,0,0,0,11,1969,0,29,22,99,5,2,1,91,1772,0,322,591,140,28,3,937,0,2.205574912891986,0.0,3.063973063973064,0.0,7.50519544779812,10,4,44,3,1,1,32,565,0,55,43,29,65,91,87,83,51,63,40,23,9,10,4,3,4,635,25,583,77,573,87,92,568,565,95,94,566,346,314,15,645,557,103,563,97,189,374,129,531,326,334,255,405,212,448,221,439,9,651,142,346,158,14,2,478,182,0,0,8,1,0,0,0,0,0,0,3,648,0,1.5589123867069483,1.4939577039274925,1.0,1.0526315789473684,1.0526315789473684,54.34242424242424 +20501,Coclé,Olá,Olá,668,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,174,16,446,14,0,0,0,16,0,369,0,2,40,0,0,52,0,13,267,2,195,1,11,0,0,434,37,0,0,0,5,476,0,129,19,0,24,24,0,0,5,454,17,0,0,436,8,6,19,0,7,0,474,0,1,0,0,1,0,98,346,0,31,0,1,0,433,27,3,0,5,0,6,0,1,1,0,0,672,6.480434782608696,19.76086956521739,6.7043478260869565,22.85,1.012605042016807,3.588235294117647,2.149159663865546,482,242,498,17,142,9,25,11,5,29,1,7,4,0,19,12,4,0,18,3,7,1045,358,0,353,1050,0,524,879,0,1264,139,0,356,1047,0,325,31,939,108,0,111,7,14,0,44,60,71,56,44,337,0,1,0,33,56,117,27,41,210,4,10,22,23,27,23,17,35,5,0,8,0,0,0,0,0,467,53,769,0,1,16,27,72,226,390,32,49,285,21,43,19,24,0,118,0,0,782,690,111,187,19,179,3,0,11,0,21,131,6,463,3,0,0,904,269,0,13,31,61,4,7,0,0,0,12,39,21,33,102,136,65,26,86,851,157,41,63,100,88,69,42,33,11,10,3,1,0,0,3,14.0,19.0,18.0,18.0,18.0,11.0,19.0,21.0,23.0,22.0,33.0,18.0,23.0,14.0,23.0,23.0,21.0,17.0,25.0,20.0,33.0,18.0,24.0,18.0,23.0,19.0,16.0,21.0,28.0,21.0,20.0,23.0,29.0,15.0,23.0,15.0,14.0,18.0,14.0,14.0,17.0,15.0,26.0,13.0,13.0,18.0,14.0,22.0,14.0,22.0,19.0,19.0,14.0,20.0,23.0,19.0,18.0,15.0,17.0,15.0,19.0,21.0,15.0,17.0,12.0,13.0,17.0,14.0,17.0,4.0,14.0,14.0,9.0,10.0,6.0,11.0,11.0,7.0,7.0,8.0,11.0,4.0,11.0,3.0,10.0,3.0,4.0,3.0,3.0,2.0,2.0,3.0,0.0,3.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,294,949,229,0,87,96,111,106,116,105,110,75,84,90,95,84,84,65,53,44,39,15,9,3,1,0,1462,3,6,1,0,1462,3,6,1,0,444,12,22,158,51,3,488,294,0,688,779,5,0,2,3,0,0,0,0,0,0,0,12,1455,0,19,13,244,7,0,1,599,589,0,247,404,74,9,0,738,0,2.5476973684210527,0.0,3.4013921113689096,0.0,7.181385869565218,7,7,99,1,0,0,188,180,0,80,54,26,41,53,66,44,29,43,16,14,6,5,4,1,0,465,17,344,138,331,151,76,406,321,161,34,448,230,252,35,447,406,76,312,170,113,199,94,388,140,342,106,376,203,279,163,319,1,481,108,241,129,4,0,301,181,0,1,2,0,0,0,0,0,0,0,5,474,0,1.6224066390041494,1.4315352697095436,1.0,1.0,1.0,55.96265560165975 +20502,Coclé,Olá,El Copé,616,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,113,289,18,399,4,0,0,0,18,0,228,0,0,58,0,0,127,0,8,94,0,309,2,16,0,0,300,112,0,0,0,9,421,0,120,40,0,17,26,0,0,1,411,9,0,0,339,13,0,50,0,19,0,421,0,0,0,0,0,0,12,345,0,63,1,0,0,349,23,0,0,5,0,10,0,0,29,5,0,624,5.17741935483871,14.236559139784946,6.129032258064516,17.309139784946236,1.002375296912114,3.2209026128266034,2.040380047505938,422,233,659,17,116,8,9,12,4,14,1,5,3,0,17,10,0,3,7,3,2,846,561,0,185,1222,0,467,940,0,1204,203,0,429,978,0,417,12,825,153,0,154,24,22,4,63,77,110,67,81,318,0,0,0,36,50,94,30,42,182,1,0,2,4,22,6,5,13,0,0,0,0,0,0,0,0,451,29,746,0,2,7,15,12,257,446,22,9,164,49,25,39,10,0,186,1,0,800,703,57,140,40,212,11,0,14,0,26,128,8,464,0,0,0,991,195,0,1,16,23,0,0,0,0,0,10,8,7,10,65,210,41,18,111,1075,156,33,53,74,49,31,22,6,2,2,0,0,0,0,0,26.0,20.0,28.0,22.0,34.0,27.0,22.0,30.0,27.0,41.0,34.0,43.0,22.0,29.0,28.0,26.0,30.0,27.0,21.0,31.0,25.0,27.0,34.0,23.0,29.0,18.0,29.0,20.0,22.0,28.0,24.0,19.0,23.0,18.0,21.0,16.0,11.0,14.0,15.0,20.0,21.0,16.0,18.0,14.0,9.0,10.0,19.0,14.0,12.0,15.0,15.0,12.0,15.0,15.0,14.0,5.0,7.0,13.0,17.0,9.0,14.0,11.0,10.0,8.0,10.0,11.0,8.0,10.0,7.0,9.0,7.0,7.0,15.0,6.0,10.0,9.0,8.0,8.0,9.0,9.0,3.0,7.0,4.0,5.0,4.0,5.0,5.0,2.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,433,894,176,0,130,147,156,135,138,117,105,76,78,70,71,51,53,45,45,43,23,15,4,1,0,0,1501,0,0,2,0,1501,0,0,2,0,462,1,4,116,28,1,458,433,0,1087,416,0,0,0,0,0,0,0,0,0,0,0,15,1488,0,3,3,184,3,0,0,318,992,0,168,306,12,1,0,1016,0,2.8700173310225305,0.0,4.186486486486486,0.0,5.5968063872255485,0,1,54,1,0,0,96,270,0,94,62,34,51,56,35,34,19,25,7,3,2,0,0,0,0,378,44,185,237,196,226,59,363,147,275,2,420,122,300,2,420,269,153,171,251,150,21,17,405,100,322,44,378,263,159,237,185,4,418,93,214,113,2,0,273,149,0,0,0,0,0,0,0,0,0,0,3,419,0,1.895734597156398,1.6658767772511849,0.0,1.0,1.0,52.84123222748815 +20503,Coclé,Olá,El Palmar,778,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,283,3,403,12,1,0,0,2,0,12,0,15,175,1,7,208,0,0,1,1,353,21,37,3,2,178,239,0,0,0,1,418,0,222,45,0,45,56,0,0,1,407,10,0,0,222,127,7,60,1,1,0,416,0,0,0,2,0,0,9,290,2,93,24,0,0,295,101,0,0,20,1,1,0,0,0,0,0,786,6.916666666666667,23.893939393939394,6.96969696969697,23.904040404040405,1.0,3.2464114832535884,2.098086124401914,418,235,421,41,103,13,13,6,1,23,2,2,18,0,31,16,6,2,4,3,35,623,584,0,59,1148,0,340,867,0,1031,176,0,284,923,0,279,5,798,125,0,132,10,25,0,26,77,103,54,75,338,0,0,0,43,41,118,21,29,72,5,0,2,4,8,8,6,8,1,0,1,0,0,0,0,0,554,3,530,0,2,1,0,23,173,266,39,29,49,13,20,23,18,21,413,0,0,685,611,25,47,23,434,7,0,21,0,59,127,11,192,26,0,0,972,88,0,0,1,24,1,1,0,0,0,9,10,1,6,44,383,26,15,63,659,194,82,133,103,42,29,8,10,4,4,1,1,0,0,26,20.0,16.0,26.0,27.0,17.0,23.0,26.0,20.0,11.0,23.0,26.0,32.0,20.0,25.0,23.0,25.0,22.0,13.0,23.0,11.0,21.0,16.0,21.0,17.0,20.0,20.0,14.0,18.0,10.0,18.0,13.0,14.0,12.0,10.0,17.0,17.0,11.0,12.0,18.0,14.0,15.0,11.0,13.0,4.0,15.0,12.0,10.0,13.0,9.0,12.0,10.0,15.0,9.0,14.0,13.0,18.0,16.0,16.0,8.0,14.0,15.0,21.0,18.0,23.0,13.0,19.0,12.0,18.0,19.0,13.0,14.0,7.0,7.0,10.0,8.0,8.0,8.0,8.0,5.0,7.0,5.0,6.0,3.0,5.0,4.0,7.0,3.0,5.0,4.0,1.0,3.0,2.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,335,744,217,0,106,103,126,94,95,80,66,72,58,56,61,72,90,81,46,36,23,20,8,2,1,0,1289,0,0,7,0,1289,0,0,7,0,485,2,87,82,60,5,240,335,0,744,552,0,0,0,1,1,2,1,0,0,0,0,3,1288,0,1,10,155,2,4,0,343,781,0,38,150,27,4,1,1076,0,3.036,0.0,3.9273743016759775,0.0,5.302469135802469,1,5,51,1,2,0,99,259,0,18,39,35,67,95,68,36,18,23,5,3,4,4,0,0,3,371,47,18,400,65,353,44,374,7,411,2,416,292,126,6,412,198,220,86,332,59,27,4,414,20,398,37,381,372,46,340,78,4,414,101,204,103,10,0,332,86,0,0,1,0,1,0,0,0,0,0,1,415,0,1.638755980861244,1.4617224880382775,1.0,1.0384615384615383,1.0384615384615383,56.645933014354064 +20504,Coclé,Olá,El Picacho,200,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,71,11,117,6,1,0,0,10,0,83,0,1,18,2,1,24,0,5,56,1,65,6,6,0,0,116,16,0,0,0,2,134,0,42,10,0,7,14,0,0,0,126,8,0,0,123,3,3,4,0,1,0,134,0,0,0,0,0,0,18,110,0,5,1,0,0,120,11,1,0,0,0,1,0,0,1,0,0,207,6.877862595419847,22.251908396946565,6.969465648854962,23.53435114503817,1.0149253731343284,3.283582089552239,1.7611940298507462,136,63,93,14,20,2,4,5,1,4,1,0,2,1,7,0,1,2,5,0,1,233,103,0,48,288,0,90,246,0,304,32,0,71,265,0,69,2,238,27,0,29,5,4,0,10,12,21,13,18,105,0,0,0,15,4,24,8,10,37,0,0,2,5,5,4,2,3,0,0,0,0,0,0,0,0,127,4,168,0,0,1,1,18,36,98,11,5,58,11,7,13,5,0,36,0,0,201,145,13,50,9,52,3,0,3,0,5,32,6,91,2,0,0,241,42,0,3,6,7,0,0,0,0,0,6,2,4,2,16,45,21,6,29,198,38,12,21,32,17,16,5,4,1,0,0,0,0,0,2,3.0,1.0,0.0,6.0,7.0,5.0,6.0,6.0,8.0,5.0,4.0,6.0,3.0,5.0,4.0,4.0,2.0,3.0,4.0,4.0,8.0,5.0,3.0,2.0,5.0,4.0,6.0,3.0,4.0,5.0,4.0,6.0,8.0,7.0,1.0,5.0,2.0,4.0,6.0,5.0,7.0,9.0,4.0,5.0,4.0,4.0,1.0,2.0,1.0,4.0,5.0,4.0,5.0,2.0,4.0,4.0,2.0,6.0,6.0,6.0,4.0,5.0,6.0,2.0,5.0,3.0,5.0,6.0,1.0,4.0,5.0,1.0,3.0,3.0,2.0,2.0,0.0,2.0,6.0,2.0,0.0,2.0,1.0,1.0,3.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,69,217,60,0,17,30,22,17,23,22,26,22,29,12,20,24,22,19,14,12,7,6,1,1,0,0,345,1,0,0,0,345,1,0,0,0,108,1,3,46,9,1,109,69,0,186,159,1,0,1,0,1,0,0,0,0,0,0,3,341,0,1,10,103,0,0,0,120,112,0,47,80,19,1,0,199,0,3.0,0.0,3.5416666666666665,0.0,6.297687861271676,0,5,46,0,0,0,39,46,0,23,19,10,12,25,18,13,4,8,2,1,1,0,0,0,0,126,10,72,64,69,67,23,113,70,66,7,129,36,100,1,135,106,30,74,62,12,62,16,120,55,81,37,99,76,60,60,76,4,132,48,61,24,3,0,108,28,0,0,0,0,0,0,0,0,0,0,1,135,0,1.4779411764705883,1.0661764705882353,0.0,1.0,1.0,55.14705882352941 +20505,Coclé,Olá,La Pava,747,0,0,0,0,0,0,0,7,0,0,0,0,0,0,2,273,250,17,510,15,1,0,0,16,0,396,0,1,30,0,0,114,0,1,214,0,319,0,6,0,3,486,44,0,0,0,12,542,0,132,31,2,23,17,0,0,3,524,13,2,0,483,8,5,37,0,9,0,539,0,1,0,0,2,0,67,429,0,44,2,0,0,502,16,0,0,16,0,1,0,1,6,0,0,754,6.926640926640927,15.077220077220078,6.986486486486487,16.95173745173745,1.0166051660516606,3.234317343173432,2.162361623616236,551,296,543,50,125,21,12,8,5,28,3,4,36,1,53,11,7,10,24,57,13,1091,519,0,155,1455,0,692,918,0,1365,245,0,381,1229,0,346,35,1055,174,0,174,15,17,7,54,72,70,70,69,392,0,1,9,36,53,120,37,49,225,2,1,29,24,24,15,21,12,8,2,2,0,0,0,0,0,463,48,954,0,1,27,3,84,241,564,50,15,275,44,69,34,14,1,57,1,1,872,811,59,262,39,123,3,0,8,2,15,118,20,683,7,0,0,1091,298,9,2,16,43,4,2,0,0,2,8,14,20,15,71,87,59,37,198,1024,164,52,73,122,91,93,31,16,5,4,1,0,0,0,7,24.0,16.0,15.0,18.0,20.0,23.0,18.0,28.0,31.0,25.0,21.0,30.0,23.0,16.0,27.0,26.0,28.0,24.0,33.0,38.0,33.0,28.0,31.0,27.0,26.0,28.0,25.0,22.0,24.0,19.0,28.0,25.0,29.0,14.0,19.0,21.0,19.0,20.0,23.0,21.0,19.0,20.0,25.0,23.0,20.0,25.0,31.0,21.0,25.0,28.0,21.0,14.0,24.0,16.0,13.0,18.0,17.0,20.0,11.0,12.0,16.0,11.0,16.0,14.0,19.0,20.0,10.0,12.0,14.0,13.0,20.0,12.0,16.0,9.0,14.0,13.0,8.0,9.0,10.0,9.0,4.0,2.0,6.0,2.0,5.0,5.0,7.0,3.0,1.0,3.0,1.0,1.0,2.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,335,1110,238,0,93,125,117,149,145,118,115,104,107,130,88,78,76,69,71,49,19,19,6,3,2,0,1679,3,1,0,0,1679,3,1,0,0,549,0,12,160,54,4,569,335,0,800,881,2,0,1,2,0,0,0,0,0,0,0,9,1671,0,25,10,99,0,2,0,511,1036,0,257,422,64,21,1,918,0,2.3617021276595747,0.0,3.291060291060291,0.0,6.532976827094474,8,3,37,0,1,0,178,324,0,105,65,25,45,69,72,59,41,41,14,6,1,3,1,0,4,526,25,350,201,313,238,77,474,350,201,17,534,254,297,6,545,399,152,323,228,175,148,80,471,134,417,109,442,217,334,142,409,2,549,122,294,126,9,7,375,176,0,0,1,0,0,0,0,0,0,0,4,546,0,1.5627240143369177,1.4534050179211468,1.0,1.0476190476190477,1.0476190476190477,53.50635208711434 +20601,Coclé,Penonomé,Penonomé,9092,8,681,99,0,2,15,2,5,0,0,10,9,0,0,3847,3402,261,37,7296,214,0,0,0,37,0,7437,0,11,68,2,4,25,0,0,7103,62,304,21,36,2,19,7418,39,62,0,0,28,7547,5,1035,245,477,459,112,0,2062,1266,3955,239,24,1,7454,16,30,15,2,30,0,6476,93,961,8,6,0,3,5639,1879,1,24,3,1,7098,264,55,2,1,5,0,0,0,100,16,6,8562,1361,6.732371578805447,21.41364433059188,6.715653229068357,21.32587299447216,1.016562872664635,3.9014177819000926,2.5109314959586597,7690,4259,8934,404,1819,342,332,286,124,452,81,105,923,85,383,148,83,150,122,184,122,21671,3045,0,12358,12358,0,19552,5164,0,23620,1096,0,7693,17023,0,5715,1978,16572,451,0,489,342,363,46,428,466,664,532,512,2386,3,7,90,633,830,1778,628,1022,4824,21,263,440,754,1015,1907,1757,1212,360,65,798,0,8,6,67,0,11104,977,10346,0,55,296,116,2030,4508,2529,269,1010,8423,715,1213,425,905,35,156,15,18,12650,13186,3382,4690,466,2865,369,7,94,32,22,436,67,6449,300,0,0,8820,6885,102,339,670,4529,272,738,72,0,42,1083,2446,1158,790,2429,192,1306,833,1802,10980,1280,781,1130,1613,1916,2292,1368,1804,1064,601,229,212,109,157,300,258.0,258.0,283.0,321.0,367.0,370.0,386.0,381.0,391.0,394.0,432.0,403.0,373.0,362.0,397.0,354.0,407.0,353.0,407.0,399.0,410.0,408.0,441.0,411.0,450.0,455.0,467.0,440.0,360.0,385.0,375.0,380.0,396.0,379.0,391.0,335.0,380.0,384.0,360.0,339.0,404.0,369.0,371.0,359.0,324.0,357.0,329.0,363.0,303.0,312.0,339.0,341.0,342.0,299.0,315.0,272.0,301.0,299.0,262.0,268.0,257.0,244.0,245.0,200.0,210.0,223.0,176.0,184.0,174.0,160.0,162.0,147.0,143.0,133.0,125.0,129.0,110.0,103.0,95.0,91.0,81.0,72.0,80.0,69.0,63.0,59.0,45.0,41.0,49.0,38.0,18.0,25.0,17.0,23.0,23.0,11.0,15.0,9.0,7.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5376,17551,2909,0,1487,1922,1967,1920,2120,2107,1921,1798,1827,1664,1636,1402,1156,917,710,528,365,232,106,45,6,0,24558,718,541,19,0,24581,837,399,19,0,5458,269,762,5037,775,295,7868,5372,0,8346,16930,560,0,59,143,17,3,0,0,19,1,2,416,25176,0,1276,993,1228,171,72,72,5039,16985,0,6715,6573,2183,138,45,10182,0,1.7051415667882577,0.0,2.548865153538051,0.0,10.418563245084378,428,330,442,69,29,33,1652,4707,0,212,117,121,263,470,649,775,589,1297,916,703,439,498,257,321,45,7643,47,7313,377,6848,842,1517,6173,6826,864,2761,4929,3907,3783,2117,5573,7413,277,7050,640,5949,1101,4347,3343,6331,1359,4106,3584,1190,6500,957,6733,109,7581,1243,4250,1956,241,25,4585,3105,0,14,44,3,2,0,0,6,0,1,121,7499,0,1.6396629941672067,1.7091380427738172,1.1724137931034482,1.0301204819277108,1.0301204819277108,52.01391417425228 +20602,Coclé,Penonomé,Cañaveral,3730,42,3,6,0,0,0,0,3,0,0,0,2,0,0,122,1943,485,74,2342,208,1,0,0,73,0,2448,0,3,57,7,11,57,0,41,1913,54,551,34,53,1,18,2471,104,11,2,0,36,2624,0,570,223,153,169,42,0,115,142,2264,94,5,4,2471,38,43,46,1,25,0,2578,2,43,0,0,1,0,1033,1529,0,59,2,1,945,1482,115,12,4,5,0,1,0,7,53,0,1165,2621,6.129032258064516,18.47678992918961,6.426042486231314,19.904799370574352,1.0209603658536586,3.5701219512195124,2.348704268292683,2681,1542,3434,179,821,103,136,113,31,167,40,27,47,3,153,66,42,82,37,86,85,7280,1522,0,2438,6364,0,5839,2963,0,8223,579,0,2666,6136,0,2406,260,5896,240,0,260,114,147,33,204,241,347,226,267,1604,4,6,16,251,362,748,264,417,1569,5,46,190,228,295,340,329,106,99,8,74,0,0,1,1,0,3632,364,3842,0,6,154,43,484,1555,1361,218,224,2120,342,676,194,404,36,149,17,1,4642,4682,648,1515,206,1464,51,0,54,1,38,427,59,2506,10,0,0,4526,2237,16,58,165,693,68,74,1,0,2,148,336,250,232,873,161,816,288,890,4727,785,372,463,634,646,748,320,347,156,65,24,16,2,9,10,130.0,122.0,138.0,132.0,154.0,150.0,153.0,157.0,187.0,163.0,155.0,178.0,131.0,157.0,139.0,156.0,149.0,154.0,134.0,150.0,142.0,148.0,196.0,161.0,156.0,161.0,171.0,150.0,155.0,157.0,124.0,115.0,126.0,127.0,109.0,116.0,116.0,120.0,123.0,119.0,115.0,107.0,106.0,112.0,98.0,118.0,101.0,120.0,117.0,94.0,103.0,90.0,110.0,96.0,133.0,103.0,94.0,109.0,70.0,92.0,85.0,73.0,80.0,67.0,68.0,47.0,59.0,80.0,55.0,64.0,59.0,49.0,60.0,58.0,41.0,52.0,38.0,40.0,50.0,47.0,45.0,17.0,31.0,21.0,29.0,21.0,19.0,16.0,12.0,14.0,4.0,12.0,9.0,5.0,7.0,4.0,6.0,3.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2246,5996,1082,0,676,810,760,743,803,794,601,594,538,550,532,468,373,305,267,227,143,82,37,20,1,0,9210,63,36,15,0,9212,66,31,15,0,2577,69,758,1259,265,32,2120,2244,0,4949,4333,42,0,60,76,5,1,1,0,4,0,0,185,8992,0,274,459,937,55,70,29,3003,4497,0,1614,2256,483,59,12,4900,0,2.1324015247776367,0.0,3.033980582524272,0.0,8.423745173745173,86,149,303,21,28,10,921,1163,0,122,124,104,187,309,334,315,212,443,223,129,64,62,27,23,1,2600,81,2335,346,2124,557,443,2238,2241,440,349,2332,1288,1393,328,2353,2491,190,2236,445,1622,614,872,1809,1837,844,875,1806,735,1946,759,1922,45,2636,419,1382,841,39,3,1662,1019,0,15,18,0,0,1,0,1,0,0,53,2593,0,1.7295081967213115,1.7444113263785397,1.0,1.0234375,1.0234375,52.33233867959717 +20603,Coclé,Penonomé,Coclé,2518,12,0,0,0,0,0,0,0,0,0,0,0,0,0,257,1117,293,55,1600,67,2,0,0,53,0,1672,0,1,22,0,7,13,0,7,1543,20,140,4,14,0,1,1668,27,6,0,0,21,1722,1,333,95,133,199,47,0,255,84,1340,41,1,1,1675,8,6,17,2,14,0,1632,14,73,0,1,0,2,820,882,0,20,0,0,35,1473,188,15,0,1,0,0,0,5,5,0,1131,1399,6.756485849056604,15.94811320754717,6.912735849056604,17.85141509433962,1.0145180023228804,3.683507549361208,2.346689895470383,1747,1082,2198,125,343,33,61,47,19,80,17,10,42,7,75,36,20,54,21,41,13,4570,845,0,1517,3898,0,3854,1561,0,4998,417,0,1708,3707,0,1493,215,3552,155,0,163,107,104,16,148,143,221,141,169,1019,1,2,8,180,204,458,172,199,959,3,20,57,149,144,282,199,70,19,1,56,0,0,0,1,0,2089,159,2504,0,2,61,23,245,971,1051,61,176,1312,104,211,71,185,4,281,37,1,2906,2905,378,1166,77,532,40,2,9,2,32,173,33,2257,15,0,0,2783,1218,8,30,124,527,11,50,1,0,2,98,232,142,77,403,131,305,267,591,3302,383,179,257,323,349,357,221,227,98,40,24,23,3,10,15,94.0,98.0,99.0,105.0,106.0,119.0,96.0,131.0,118.0,93.0,113.0,90.0,104.0,95.0,83.0,98.0,123.0,66.0,82.0,80.0,88.0,85.0,82.0,86.0,116.0,87.0,130.0,101.0,104.0,118.0,110.0,102.0,109.0,84.0,96.0,85.0,82.0,94.0,69.0,68.0,86.0,74.0,58.0,65.0,51.0,67.0,53.0,66.0,48.0,71.0,57.0,69.0,51.0,76.0,50.0,59.0,61.0,59.0,54.0,54.0,49.0,39.0,30.0,41.0,41.0,30.0,30.0,23.0,27.0,33.0,39.0,13.0,28.0,18.0,21.0,21.0,20.0,17.0,18.0,11.0,21.0,18.0,17.0,11.0,10.0,8.0,15.0,11.0,5.0,4.0,5.0,5.0,1.0,1.0,2.0,3.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1544,3774,493,0,502,557,485,449,457,540,501,398,334,305,303,287,200,143,119,87,77,43,14,9,1,0,5673,96,37,5,0,5675,105,26,5,0,1684,40,462,793,161,19,1108,1544,0,3234,2525,52,0,8,26,2,0,0,0,2,0,0,42,5731,0,181,80,712,47,2,10,1752,3027,0,1151,1524,244,25,3,2864,0,2.071247892074199,0.0,2.9495327102803737,0.0,8.110308036482532,66,29,256,27,1,6,543,819,0,127,106,76,130,210,217,224,128,213,121,73,38,38,22,21,3,1714,33,1549,198,1461,286,260,1487,1545,202,347,1400,915,832,178,1569,1630,117,1523,224,826,697,543,1204,1292,455,768,979,202,1545,299,1448,25,1722,277,1050,377,43,0,1175,572,0,3,11,2,0,0,0,0,0,0,11,1720,0,1.663423010875787,1.6628506010303377,1.0,1.0307692307692309,1.0307692307692309,48.60961648540355 +20604,Coclé,Penonomé,Chiguirí Arriba,2053,7,1,1,0,0,0,0,1,0,0,2,1,0,0,0,358,1267,87,1493,132,0,0,0,87,0,990,0,20,413,9,13,260,0,7,2,6,1471,15,194,4,20,1005,652,0,1,0,54,1712,0,224,53,4,47,22,0,0,8,1632,68,3,1,1166,449,31,16,25,25,0,1660,2,4,0,0,46,0,70,1242,1,386,12,1,0,1218,260,69,3,114,0,11,0,0,37,0,0,2066,6.321380243572395,19.484438430311236,6.860622462787551,23.13599458728011,1.0075934579439252,3.258761682242991,2.0957943925233646,1728,1053,2950,96,912,28,100,79,9,175,24,11,19,1,76,65,21,33,33,43,27,4366,2335,0,324,6377,0,1776,4925,0,6147,554,0,1831,4870,0,1802,29,4594,276,0,286,71,135,19,160,209,351,272,257,2537,0,0,0,156,186,702,162,200,847,1,6,12,19,37,40,23,7,1,0,5,0,0,0,0,0,3361,93,2451,0,2,45,16,28,901,1211,161,150,438,270,179,247,108,4,2184,5,5,3737,3448,75,538,244,1600,12,1,965,5,203,399,44,1373,805,0,0,4904,904,0,7,14,71,0,5,0,0,5,18,37,41,35,242,2030,320,83,643,4238,644,459,272,295,220,158,45,27,9,3,3,3,0,4,805,131.0,109.0,127.0,117.0,140.0,146.0,125.0,150.0,122.0,113.0,162.0,140.0,145.0,133.0,134.0,151.0,138.0,188.0,148.0,129.0,148.0,148.0,104.0,129.0,129.0,118.0,116.0,127.0,109.0,105.0,112.0,105.0,95.0,82.0,84.0,80.0,89.0,93.0,101.0,88.0,100.0,84.0,74.0,59.0,65.0,69.0,85.0,75.0,74.0,76.0,62.0,63.0,64.0,63.0,67.0,51.0,65.0,65.0,56.0,43.0,51.0,50.0,46.0,42.0,38.0,38.0,40.0,35.0,51.0,33.0,41.0,27.0,35.0,32.0,31.0,32.0,32.0,13.0,18.0,19.0,23.0,29.0,26.0,18.0,17.0,14.0,16.0,13.0,7.0,14.0,9.0,6.0,6.0,2.0,2.0,1.0,4.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1994,4503,688,0,624,656,714,754,658,575,478,451,382,379,319,280,227,197,166,114,113,64,25,5,4,0,7151,8,0,26,0,7151,8,0,26,0,2307,15,333,507,205,7,1817,1994,0,5270,1909,6,0,4,14,9,0,0,0,5,1,1,250,6901,0,12,576,197,1,4,1,3053,3341,0,315,777,41,11,2,6039,0,2.686907686907687,0.0,3.9808951965065504,0.0,6.187613082811413,4,159,52,0,1,0,738,774,0,260,110,197,251,297,221,137,73,102,36,16,6,3,1,4,11,1504,224,655,1073,534,1194,220,1508,320,1408,14,1714,715,1013,17,1711,1435,293,758,970,502,256,83,1645,397,1331,93,1635,1192,536,866,862,25,1703,256,877,576,19,1,1259,469,0,0,2,1,0,0,0,2,0,0,49,1674,0,2.1613649508386352,1.994216310005784,1.0,1.021978021978022,1.021978021978022,52.7019675925926 +20605,Coclé,Penonomé,El Coco,4247,14,130,0,0,1,8,0,0,0,0,0,4,0,0,1375,1708,137,51,3194,26,0,1,0,50,0,3167,0,4,76,0,0,24,0,0,2191,63,854,33,112,0,18,3160,49,18,0,0,44,3271,0,458,219,183,224,36,0,1108,334,1719,103,6,1,3158,3,7,40,0,63,0,3023,8,231,4,0,0,5,2065,1172,0,34,0,0,946,2051,213,4,2,3,0,2,6,32,4,8,2395,2009,6.860436137071651,19.25264797507788,6.937383177570093,19.932710280373836,1.0171201467441149,3.602568022011617,2.2696423112198105,3331,1888,3841,379,619,97,166,138,36,154,65,34,301,15,128,48,29,74,49,72,56,9094,1273,0,3839,6528,0,8326,2041,0,9760,607,0,3495,6872,0,2954,541,6642,230,0,251,169,236,27,226,268,338,264,282,1422,2,1,16,299,446,843,293,414,2193,9,48,181,275,340,464,472,335,54,18,165,0,2,4,10,0,4868,305,3929,0,6,75,23,433,1893,1177,125,301,3354,314,458,211,662,14,104,20,2,5334,5730,912,2470,212,1454,70,0,19,2,37,202,40,2782,60,0,0,4509,2883,16,85,205,1186,43,164,11,0,3,255,536,399,297,1335,113,720,399,1116,4877,555,468,548,673,856,1301,530,635,290,118,45,52,20,36,60,174.0,148.0,187.0,188.0,215.0,200.0,226.0,208.0,205.0,211.0,191.0,188.0,182.0,182.0,181.0,191.0,162.0,160.0,178.0,161.0,180.0,149.0,194.0,178.0,169.0,207.0,203.0,231.0,217.0,203.0,230.0,202.0,237.0,215.0,235.0,182.0,179.0,183.0,188.0,182.0,161.0,142.0,121.0,129.0,124.0,116.0,130.0,115.0,110.0,128.0,108.0,107.0,106.0,105.0,96.0,89.0,93.0,98.0,84.0,68.0,84.0,74.0,75.0,86.0,66.0,60.0,53.0,58.0,41.0,58.0,38.0,34.0,29.0,30.0,23.0,32.0,22.0,26.0,31.0,14.0,18.0,18.0,19.0,14.0,23.0,19.0,20.0,13.0,10.0,6.0,10.0,5.0,5.0,5.0,3.0,2.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2886,7431,747,0,912,1050,924,852,870,1061,1119,914,677,599,522,432,385,270,154,125,92,68,28,7,3,0,10697,255,102,10,0,10699,265,90,10,0,3089,79,719,1391,255,51,2595,2885,0,4029,6894,141,0,43,106,18,1,2,0,30,8,0,224,10632,0,345,536,1082,110,34,17,4207,4733,0,2779,3079,455,51,16,4684,0,1.8030366933783213,0.0,2.6762149983907304,0.0,8.909074475777295,138,175,373,44,17,11,1282,1291,0,38,41,66,124,215,337,458,373,663,394,232,135,131,36,73,11,3272,59,3059,272,2847,484,495,2836,2981,350,860,2471,1948,1383,612,2719,3213,118,3041,290,1921,1120,1482,1849,2684,647,1453,1878,650,2681,703,2628,35,3296,548,1966,699,118,9,2109,1222,0,10,33,4,1,2,0,6,1,0,58,3216,0,1.597005988023952,1.715568862275449,1.2307692307692308,1.0813953488372092,1.0813953488372092,46.33743620534374 +20613,Coclé,Penonomé,General Victoriano Lorenzo,3110,6,8,0,0,0,0,0,0,0,0,0,1,0,0,0,1494,791,84,2193,92,0,0,0,84,0,2130,0,1,101,20,10,80,0,27,393,27,1699,47,179,0,24,2135,200,0,2,0,32,2369,1,484,102,17,107,44,0,13,50,2199,103,4,0,2136,43,100,36,7,47,0,2340,1,17,1,2,7,1,561,1720,0,85,2,1,165,1858,215,10,1,84,0,0,0,8,26,2,0,3125,5.018766756032171,13.390974084003574,5.911081322609473,17.663985701519213,1.0173068805403125,3.4968341072182354,2.229210637399747,2411,1337,3170,134,834,86,132,99,18,186,20,28,34,7,137,123,33,54,70,293,77,6535,1535,0,1569,6501,0,4866,3204,0,7575,495,0,2299,5771,0,2148,151,5582,189,0,192,122,133,33,172,183,333,227,241,1848,0,2,3,236,319,749,199,324,1452,5,13,126,164,192,336,240,116,37,13,58,0,1,0,1,0,3022,371,3861,0,9,181,58,434,1393,1691,215,128,1616,238,670,242,275,18,216,2,5,4280,4216,459,1254,277,1173,38,0,76,5,44,449,46,2595,13,0,0,4494,1935,5,20,102,608,32,56,2,0,5,99,255,161,171,585,299,626,204,988,4637,783,324,439,614,536,536,215,213,87,50,18,16,4,11,13,92.0,105.0,122.0,107.0,124.0,124.0,147.0,140.0,130.0,151.0,142.0,143.0,127.0,156.0,136.0,123.0,149.0,136.0,115.0,139.0,138.0,139.0,146.0,146.0,124.0,151.0,145.0,162.0,125.0,125.0,96.0,115.0,137.0,107.0,132.0,100.0,98.0,103.0,119.0,107.0,104.0,90.0,117.0,95.0,92.0,96.0,91.0,95.0,94.0,106.0,92.0,100.0,107.0,113.0,104.0,86.0,84.0,82.0,90.0,79.0,89.0,68.0,63.0,63.0,67.0,54.0,74.0,63.0,61.0,60.0,51.0,50.0,55.0,63.0,59.0,44.0,44.0,43.0,44.0,36.0,49.0,23.0,38.0,19.0,24.0,27.0,16.0,12.0,10.0,13.0,13.0,10.0,18.0,6.0,7.0,5.0,5.0,4.0,2.0,0.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1946,5444,1106,0,550,692,704,662,693,708,587,527,498,482,516,421,350,312,278,211,153,78,54,16,4,0,8442,20,28,6,0,8442,24,24,6,0,2258,35,508,1171,296,18,2266,1944,0,5213,3267,16,0,4,29,15,0,0,0,3,0,0,70,8375,0,116,100,314,8,6,14,1675,6263,0,1283,1923,442,37,9,4802,0,2.2210818307905686,0.0,3.2214345287739783,0.0,8.175729755178908,41,25,106,2,3,3,536,1695,0,194,147,112,176,328,314,314,189,282,140,86,44,33,20,25,6,2340,71,1951,460,1675,736,391,2020,1562,849,133,2278,1170,1241,46,2365,2251,160,1876,535,1042,834,593,1818,1645,766,578,1833,1130,1281,1088,1323,31,2380,396,1239,741,35,0,1637,774,0,0,5,3,0,0,0,1,0,0,13,2389,0,1.7751970136872668,1.7486520116134383,1.0,1.053030303030303,1.053030303030303,54.51928660306927 +20607,Coclé,Penonomé,Río Grande,1529,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1042,30,15,1042,33,0,0,0,15,0,1064,0,1,7,2,0,14,0,2,535,372,159,2,19,0,3,1051,22,4,0,0,13,1090,0,222,88,24,71,36,0,35,67,901,84,3,0,1035,6,6,7,2,34,0,1062,5,18,0,2,0,3,390,687,0,12,1,0,366,685,33,1,1,1,0,1,0,1,0,1,0,1531,6.942804428044281,19.748154981549817,6.958487084870849,22.369926199261997,1.015596330275229,3.763302752293578,2.4201834862385323,1107,582,1158,82,270,40,55,54,17,63,12,12,48,5,87,17,13,31,13,18,32,2901,426,0,1115,2212,0,2274,1053,0,3137,190,0,905,2422,0,804,101,2344,78,0,85,41,48,12,65,87,97,84,89,667,2,6,15,98,136,266,90,122,604,5,25,52,114,82,253,88,29,21,3,38,0,0,1,2,0,1399,164,1466,0,1,56,28,268,521,487,66,124,911,69,190,58,147,0,159,8,1,1796,1709,286,732,69,362,67,0,26,1,11,142,19,1027,22,0,0,1697,853,15,30,48,331,17,36,2,0,1,105,141,93,80,252,62,220,177,432,1603,261,161,182,296,334,285,130,108,68,26,9,14,5,1,22,51.0,38.0,46.0,43.0,56.0,44.0,45.0,51.0,61.0,41.0,51.0,47.0,50.0,43.0,43.0,44.0,43.0,62.0,48.0,47.0,77.0,61.0,51.0,45.0,72.0,62.0,59.0,54.0,54.0,51.0,49.0,54.0,33.0,35.0,32.0,33.0,35.0,42.0,37.0,45.0,49.0,36.0,34.0,38.0,33.0,44.0,41.0,44.0,42.0,48.0,49.0,50.0,51.0,47.0,43.0,39.0,46.0,44.0,46.0,31.0,41.0,34.0,36.0,30.0,27.0,25.0,22.0,31.0,32.0,32.0,31.0,30.0,33.0,22.0,24.0,32.0,28.0,22.0,18.0,17.0,19.0,21.0,11.0,15.0,12.0,10.0,9.0,9.0,5.0,7.0,6.0,2.0,3.0,1.0,6.0,2.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,710,2248,547,0,234,242,234,244,306,280,203,192,190,219,240,206,168,142,140,117,78,40,18,7,5,0,3431,32,40,2,0,3432,43,28,2,0,903,27,271,537,142,18,897,710,0,1765,1701,39,0,4,47,3,0,2,0,0,0,0,86,3363,0,101,171,477,27,17,8,961,1743,0,701,955,293,21,2,1533,0,2.165656565656566,0.0,2.930608365019012,0.0,8.682453637660485,35,62,179,11,6,1,317,496,0,56,59,43,54,113,165,145,103,159,83,46,19,31,14,13,4,1087,20,1009,98,944,163,164,943,1009,98,225,882,639,468,119,988,1053,54,981,126,681,300,358,749,714,393,470,637,192,915,250,857,9,1098,227,545,299,36,0,724,383,0,1,7,1,0,1,0,0,0,0,29,1068,0,1.6224028906955736,1.5438121047877145,1.0,1.018181818181818,1.018181818181818,55.3026196928636 +20608,Coclé,Penonomé,Río Indio,1369,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,894,24,855,74,0,0,0,24,0,90,0,10,637,27,10,178,0,1,1,2,846,14,87,2,1,338,605,1,2,1,6,953,0,321,42,0,32,22,0,1,1,925,26,0,0,54,887,5,2,3,2,0,867,3,1,0,5,77,0,5,424,1,394,129,0,0,317,285,13,28,271,1,29,0,0,9,0,0,1370,6.397009966777409,20.64119601328904,6.956810631229236,23.538205980066444,1.0104931794333682,3.291710388247639,2.0724029380902413,963,711,1908,72,229,23,35,11,7,43,4,10,9,1,25,14,7,6,15,3,16,1678,2018,0,80,3616,0,638,3058,0,3404,292,0,1155,2541,0,1144,11,2373,168,0,170,56,73,2,121,115,235,153,156,1420,2,0,1,112,138,516,66,103,210,1,3,12,7,8,5,5,3,1,0,2,0,0,0,0,0,1900,14,1250,0,0,4,3,8,467,626,46,103,143,53,27,33,21,1,1625,8,0,2218,1808,40,424,35,926,3,0,483,0,204,183,15,1046,106,0,0,2906,241,1,0,3,11,0,2,0,0,0,9,10,8,9,106,1285,43,15,429,3159,313,163,82,78,60,41,8,7,4,2,1,1,0,1,106,71.0,86.0,81.0,92.0,84.0,85.0,80.0,106.0,73.0,104.0,100.0,97.0,88.0,104.0,91.0,117.0,111.0,89.0,88.0,78.0,59.0,71.0,65.0,57.0,42.0,53.0,41.0,47.0,34.0,38.0,42.0,45.0,35.0,34.0,53.0,41.0,39.0,42.0,41.0,56.0,44.0,42.0,40.0,53.0,42.0,42.0,40.0,34.0,43.0,39.0,34.0,42.0,36.0,42.0,32.0,31.0,37.0,37.0,27.0,26.0,36.0,23.0,26.0,33.0,30.0,27.0,24.0,20.0,20.0,23.0,26.0,13.0,21.0,22.0,10.0,17.0,14.0,14.0,10.0,15.0,13.0,11.0,12.0,5.0,9.0,5.0,5.0,1.0,6.0,3.0,3.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1342,2329,355,0,414,448,480,483,294,213,209,219,221,198,186,158,148,114,92,70,50,20,7,2,0,0,3995,3,0,28,0,3995,3,0,28,0,1213,11,94,362,94,4,908,1340,0,2559,1465,2,0,4,2,0,0,1,0,1,0,0,37,3981,0,7,207,48,2,2,0,469,3291,0,61,128,10,2,1,3824,0,3.259259259259259,0.0,4.847380410022779,0.0,5.599354197714853,3,56,14,0,1,0,131,758,0,199,96,136,169,164,93,44,28,20,6,4,0,1,2,1,0,644,319,79,884,76,887,175,788,34,929,0,963,531,432,12,951,569,394,250,713,88,162,2,961,10,953,10,953,871,92,812,151,15,948,134,611,209,9,0,851,112,0,1,0,0,0,1,0,1,0,0,8,952,0,2.3032191069574246,1.877466251298027,0.0,1.0444444444444445,1.0444444444444445,51.782969885773625 +20609,Coclé,Penonomé,Toabré,2853,6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,749,1208,94,1860,97,2,1,0,91,0,1264,0,27,478,10,13,254,0,5,5,43,1740,48,196,3,16,1507,512,1,3,0,28,2051,0,542,128,11,76,51,0,5,31,1958,56,1,0,1340,363,196,28,12,112,0,1957,7,17,0,1,55,14,243,1491,3,291,16,7,0,1543,198,34,3,231,2,5,0,7,23,5,0,2860,5.745548535324526,16.313612866168867,6.744974152785756,21.45318782309018,1.0126767430521697,3.2974158946855194,2.10580204778157,2078,1211,2990,119,598,66,105,58,14,129,23,17,30,2,108,64,15,34,39,23,25,4703,2279,0,595,6387,0,2840,4142,0,6520,462,0,1908,5074,0,1827,81,4836,238,0,246,77,120,8,178,229,400,242,287,2227,0,2,13,178,283,722,189,254,910,1,6,67,60,76,78,35,63,13,2,16,0,0,0,0,0,3371,116,2730,0,4,34,35,153,1015,1216,160,186,850,358,329,209,181,2,1536,4,0,3955,3485,182,1072,206,1428,20,1,558,2,168,478,38,1441,246,0,0,4877,1095,13,7,50,153,6,16,0,0,3,35,74,49,71,335,1328,417,123,1052,4349,710,432,402,453,397,219,104,86,26,6,2,3,1,4,246,114.0,107.0,113.0,124.0,115.0,111.0,139.0,144.0,129.0,127.0,142.0,136.0,135.0,130.0,143.0,145.0,151.0,136.0,112.0,124.0,125.0,120.0,135.0,115.0,111.0,117.0,99.0,129.0,82.0,110.0,83.0,102.0,98.0,89.0,85.0,105.0,78.0,102.0,84.0,112.0,78.0,92.0,74.0,94.0,76.0,74.0,77.0,68.0,71.0,89.0,84.0,59.0,74.0,77.0,77.0,71.0,75.0,71.0,75.0,63.0,67.0,57.0,60.0,65.0,47.0,68.0,47.0,44.0,51.0,55.0,46.0,40.0,45.0,33.0,60.0,44.0,47.0,36.0,30.0,28.0,32.0,31.0,34.0,22.0,20.0,32.0,15.0,21.0,14.0,13.0,7.0,10.0,6.0,12.0,8.0,2.0,6.0,2.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1909,4564,967,0,573,650,686,668,606,537,457,481,414,379,371,355,296,265,224,185,139,95,43,15,1,0,7388,18,10,24,0,7391,19,6,24,0,2225,26,315,749,240,11,1967,1907,0,4675,2749,16,0,14,19,1,0,0,0,0,0,1,436,6969,0,44,439,267,7,14,7,1717,4945,0,616,1159,192,16,5,5452,0,2.6267123287671232,0.0,3.782005141388175,0.0,6.703763440860215,13,125,110,2,7,1,519,1301,0,220,124,159,235,415,317,194,115,164,54,31,20,10,4,4,11,1873,205,1076,1002,939,1139,261,1817,808,1270,52,2026,1062,1016,27,2051,1690,388,1130,948,820,310,200,1878,748,1330,261,1817,1360,718,1180,898,44,2034,384,1123,550,21,0,1527,551,0,5,6,0,0,0,0,0,0,0,117,1950,0,1.903272377285852,1.6770933589990376,1.0,1.0810810810810811,1.0810810810810811,54.21992300288739 +20610,Coclé,Penonomé,Tulú,708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,473,15,475,18,0,0,0,15,0,94,0,3,280,1,0,130,0,0,1,0,465,12,28,2,0,131,375,1,0,0,1,508,0,153,16,1,17,13,0,0,0,497,11,0,0,35,466,1,2,2,2,0,470,0,0,0,0,38,0,1,182,4,250,71,0,0,323,56,1,4,102,0,19,0,0,3,0,0,708,6.762532981530343,23.21635883905013,7.0,24.0,1.0,3.40748031496063,2.2381889763779528,508,368,1047,38,188,15,16,13,1,36,4,5,2,0,20,23,6,5,9,3,11,831,1243,0,27,2047,0,307,1767,0,1845,229,0,617,1457,0,610,7,1331,126,0,130,27,26,0,93,99,127,89,115,728,0,0,0,71,77,236,31,59,132,0,1,8,8,9,5,1,0,1,0,1,0,0,0,0,0,1264,7,508,0,0,1,0,0,269,160,31,48,38,450,22,23,7,0,727,3,0,1209,1032,19,278,20,728,0,1,224,0,88,84,5,382,22,0,0,1613,157,0,1,2,6,0,0,0,0,0,0,6,4,5,29,500,443,6,278,1844,158,70,52,36,31,15,7,4,0,2,0,0,0,0,22,38.0,41.0,53.0,35.0,56.0,49.0,37.0,57.0,47.0,49.0,45.0,57.0,55.0,65.0,52.0,58.0,43.0,38.0,40.0,43.0,43.0,46.0,38.0,39.0,25.0,39.0,27.0,32.0,20.0,24.0,21.0,31.0,16.0,29.0,18.0,23.0,20.0,31.0,29.0,22.0,24.0,27.0,21.0,24.0,20.0,27.0,17.0,28.0,24.0,20.0,32.0,21.0,15.0,24.0,26.0,17.0,17.0,15.0,14.0,12.0,16.0,16.0,16.0,18.0,25.0,19.0,19.0,10.0,7.0,12.0,8.0,11.0,11.0,7.0,10.0,8.0,15.0,5.0,7.0,7.0,5.0,5.0,4.0,1.0,3.0,1.0,3.0,6.0,4.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,736,1311,194,0,223,239,274,222,191,142,115,125,116,116,118,75,91,67,47,42,18,15,4,0,1,0,2226,1,0,14,0,2226,1,0,14,0,600,1,42,252,65,2,545,734,0,1404,836,1,0,1,5,0,0,0,0,0,0,1,13,2221,0,0,78,50,0,0,1,643,1469,0,28,65,4,0,0,2144,0,3.1345911949685537,0.0,4.796747967479675,0.0,5.467202141900937,0,19,12,0,0,0,151,326,0,85,50,69,86,108,58,15,15,16,3,3,0,0,0,0,0,330,178,33,475,46,462,34,474,26,482,0,508,275,233,3,505,268,240,126,382,70,56,1,507,3,505,5,503,454,54,409,99,5,503,68,301,137,2,0,457,51,0,0,0,0,0,0,0,0,0,0,1,507,0,2.37992125984252,2.031496062992126,0.0,1.037037037037037,1.037037037037037,52.881889763779526 +30101,Colón,Colón,Barrio Norte,481,53,4326,752,4,1,0,1,0,0,0,1,12,12,23,4480,19,19,38,3895,623,0,0,0,8,30,4554,0,0,0,0,0,0,0,2,4556,0,0,0,0,0,0,4342,0,75,0,0,139,4556,7,405,93,164,336,51,0,99,903,2236,936,6,376,4309,242,0,2,0,3,0,3670,32,33,783,36,0,2,3704,600,0,0,250,2,4376,63,1,0,0,0,0,0,0,115,1,0,5666,0,6.856531531531531,20.405405405405407,6.847747747747747,20.40675675675676,1.0085601404741,2.6788849868305533,1.5491659350307287,4630,1705,4217,214,544,113,153,139,29,75,34,68,372,27,201,65,39,38,110,17,50,10251,1341,0,4155,7437,0,10208,1384,0,11072,520,0,3720,7872,0,2882,838,7630,242,0,260,170,193,27,229,235,276,255,280,507,3,4,50,345,552,946,486,740,3417,9,34,290,350,356,432,224,733,53,9,115,1,0,0,11,0,4628,851,4895,0,7,381,137,872,2115,1382,218,308,3964,299,347,103,535,12,1,20,2,5929,6391,1086,2693,117,1197,163,2,21,4,3,96,20,3881,433,0,0,4223,4609,55,41,135,1148,41,111,11,0,3,446,382,468,571,1401,21,566,400,1221,5496,691,265,442,663,888,1575,658,654,249,131,51,62,21,41,433,166.0,169.0,172.0,221.0,195.0,209.0,171.0,224.0,214.0,205.0,184.0,236.0,182.0,180.0,208.0,197.0,200.0,178.0,179.0,188.0,160.0,188.0,209.0,183.0,180.0,225.0,237.0,187.0,166.0,179.0,166.0,190.0,174.0,199.0,168.0,169.0,182.0,176.0,157.0,156.0,170.0,146.0,148.0,174.0,137.0,129.0,151.0,155.0,164.0,148.0,150.0,168.0,153.0,151.0,171.0,137.0,138.0,137.0,115.0,141.0,123.0,108.0,112.0,103.0,93.0,105.0,88.0,96.0,70.0,70.0,81.0,45.0,59.0,61.0,69.0,55.0,63.0,41.0,48.0,38.0,32.0,25.0,24.0,26.0,23.0,16.0,20.0,19.0,10.0,21.0,6.0,4.0,10.0,6.0,2.0,6.0,3.0,2.0,1.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,2936,8115,1251,18,923,1023,990,942,920,994,897,840,775,747,793,668,539,429,315,245,130,86,28,13,5,18,10589,1057,665,9,0,10626,1192,493,9,0,2312,231,1657,1939,434,166,2645,2936,0,6883,3995,1442,0,245,9,3,0,0,0,6,1,0,65,11991,0,2377,1080,1331,719,47,102,3456,3208,0,2594,2154,862,43,32,6635,0,1.8249127319492928,0.0,2.632107023411371,0.0,9.666964285714286,935,427,539,356,25,68,1218,1062,0,416,185,113,208,373,445,766,420,697,375,196,92,128,59,62,60,4457,173,4291,339,2960,1670,339,4291,4329,301,1956,2674,2632,1998,838,3792,4309,321,4295,335,2558,1737,1555,3075,3940,690,1230,3400,30,4600,31,4599,33,4597,1419,2232,869,110,19,2368,2262,0,52,6,0,0,0,0,1,1,0,18,4552,0,1.2753280275328027,1.3747042374704237,1.53125,1.045801526717557,1.045801526717557,48.580777537796976 +30102,Colón,Colón,Barrio Sur,65,0,2716,253,0,1,0,0,0,0,0,5,2,1,0,2412,0,0,0,2209,203,0,0,0,0,0,2411,0,0,0,0,0,0,0,1,2412,0,0,0,0,0,0,2283,0,51,0,0,78,2412,8,198,20,88,247,61,0,12,550,1118,555,12,165,2347,65,0,0,0,0,0,2291,20,6,72,23,0,0,1518,771,0,0,123,0,2409,0,0,0,0,0,0,0,0,3,0,0,3043,0,6.738895807388958,21.0195101701951,6.742631797426318,21.084682440846823,1.0095356550580432,2.527363184079602,1.3975953565505803,2442,912,2225,170,304,57,85,89,23,28,25,21,79,3,115,30,15,21,33,17,22,5664,449,0,2652,3461,0,5052,1061,0,5759,354,0,2058,4055,0,1708,350,3934,121,0,133,106,118,13,122,145,156,138,156,297,0,1,29,198,312,496,263,313,1816,4,16,173,218,201,174,238,177,34,14,50,0,0,2,0,0,2618,473,2312,0,5,180,54,353,1167,632,76,84,2066,196,289,33,374,28,2,5,2,3120,3343,519,1558,42,848,23,0,3,2,4,81,14,1537,25,0,0,2245,2478,34,19,60,488,30,49,0,0,2,171,198,241,316,954,7,300,219,683,2796,478,205,314,402,512,879,367,287,97,40,22,20,7,12,25,73.0,94.0,93.0,90.0,119.0,113.0,106.0,118.0,134.0,120.0,135.0,107.0,108.0,129.0,113.0,103.0,99.0,95.0,98.0,110.0,97.0,105.0,83.0,102.0,118.0,115.0,116.0,92.0,76.0,71.0,90.0,106.0,107.0,94.0,91.0,111.0,91.0,106.0,77.0,104.0,104.0,91.0,95.0,82.0,67.0,71.0,77.0,89.0,72.0,82.0,80.0,61.0,75.0,66.0,90.0,72.0,68.0,75.0,53.0,74.0,59.0,45.0,52.0,41.0,49.0,51.0,38.0,50.0,26.0,31.0,34.0,37.0,33.0,23.0,34.0,28.0,31.0,18.0,14.0,18.0,12.0,10.0,7.0,17.0,4.0,8.0,8.0,7.0,5.0,3.0,3.0,4.0,3.0,2.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1652,4247,564,0,469,591,592,505,505,470,488,489,439,391,372,342,246,196,161,109,50,31,15,2,0,0,5688,486,281,8,0,5698,517,240,8,0,1265,136,475,862,198,63,1812,1652,0,2864,3151,448,0,306,11,1,1,3,0,0,0,0,48,6093,0,1344,622,687,468,52,67,1577,1646,0,1395,1331,364,19,10,3344,0,1.830682219865677,0.0,2.64186295503212,0.0,9.443911496209193,505,230,275,220,24,41,542,605,0,102,94,65,150,261,256,397,269,402,228,100,39,35,12,18,7,2368,74,2248,194,1334,1108,170,2272,2282,160,976,1466,1435,1007,372,2070,2284,158,2229,213,1383,846,782,1660,1651,791,547,1895,26,2416,23,2419,16,2426,754,1211,429,48,2,1350,1092,0,68,5,1,0,2,0,0,0,0,27,2339,0,1.2765957446808511,1.3678396072013093,1.6071428571428572,1.0169491525423728,1.0169491525423728,48.058968058968055 +30103,Colón,Colón,Buena Vista,6778,103,110,51,0,0,0,0,1,0,2,1,6,0,0,659,3862,1027,202,5061,487,6,0,0,180,16,5645,0,9,25,5,26,28,0,12,3528,0,2114,39,33,3,33,5536,109,8,1,0,96,5750,7,362,378,167,214,164,0,203,324,5031,171,6,15,5492,119,3,106,2,26,2,5527,16,164,29,4,8,2,2355,3241,0,143,11,0,4141,1038,48,46,16,24,1,36,246,102,48,4,2224,4828,4.060264013774631,14.929787641094318,4.229959823990817,15.547541610866654,1.0165217391304349,3.1768695652173915,1.9598260869565216,5852,3231,7796,462,1007,117,161,135,34,242,40,28,113,3,298,136,33,112,92,229,154,14547,3404,0,4284,13667,0,11396,6555,0,16622,1329,0,6104,11847,0,5379,725,11200,647,0,698,286,404,55,487,472,639,525,563,2222,1,6,34,646,943,1510,583,803,4268,32,38,252,391,445,786,365,326,47,12,104,2,0,0,6,0,5778,1437,8357,0,25,738,254,740,3574,3539,271,233,4805,200,871,122,767,13,137,2,21,9539,9682,991,3968,156,1645,83,3,43,49,15,276,58,8311,136,0,0,8455,5406,35,57,238,1232,44,99,6,0,52,318,534,556,485,1221,115,1240,966,1728,11099,1353,320,624,835,1285,1615,772,734,244,109,34,35,14,12,136,302.0,277.0,326.0,365.0,387.0,400.0,406.0,404.0,389.0,393.0,372.0,427.0,332.0,356.0,365.0,339.0,324.0,327.0,313.0,312.0,310.0,315.0,346.0,322.0,338.0,355.0,396.0,300.0,304.0,288.0,271.0,301.0,281.0,289.0,299.0,252.0,250.0,265.0,247.0,259.0,267.0,244.0,268.0,242.0,212.0,221.0,201.0,212.0,236.0,231.0,227.0,204.0,207.0,202.0,192.0,210.0,206.0,159.0,146.0,148.0,147.0,122.0,149.0,115.0,89.0,103.0,81.0,101.0,81.0,89.0,64.0,71.0,56.0,57.0,49.0,61.0,52.0,43.0,40.0,37.0,27.0,33.0,38.0,26.0,16.0,25.0,19.0,20.0,13.0,19.0,5.0,9.0,14.0,3.0,2.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5501,12460,1260,0,1657,1992,1852,1615,1631,1643,1441,1273,1233,1101,1032,869,622,455,297,233,140,96,33,5,1,0,18868,185,124,44,0,18876,197,104,44,0,4307,239,1130,3086,436,76,4449,5498,0,9805,9247,169,0,119,408,58,2,1,2,53,2,2,209,18365,0,1456,1518,693,358,78,76,3335,11707,0,3691,4044,702,68,8,10708,0,2.0817650050864698,0.0,3.052225862401233,0.0,8.214140783518028,469,498,247,146,35,32,1095,3330,0,750,346,182,321,496,636,902,502,751,413,225,126,105,41,30,19,5710,142,5195,657,4714,1138,674,5178,4995,857,983,4869,2508,3344,381,5471,5365,487,4845,1007,2364,2481,1557,4295,3401,2451,2017,3835,1398,4454,799,5053,54,5798,1065,3634,1087,66,3,3641,2211,0,32,112,26,1,1,1,11,0,1,68,5599,0,1.629205807002562,1.6536293766011956,1.16,1.05,1.05,47.24982911825017 +30104,Colón,Colón,Cativá,12295,61,614,7,0,0,0,1,0,0,0,0,15,1,0,2608,7498,390,122,10198,298,2,0,0,102,18,10597,0,1,3,0,5,1,0,11,10002,32,550,13,7,1,13,10487,9,27,0,0,95,10618,0,458,667,599,352,283,0,916,1092,8306,269,18,17,10454,57,0,103,1,3,0,9599,26,942,45,4,0,2,8099,2405,0,98,14,2,9929,163,0,3,3,0,2,7,19,453,37,2,12296,698,5.539734443123266,15.841260404280618,5.550039635354737,15.95798652397939,1.0235449237144472,3.54558297231117,2.2698248257675644,10883,5842,13953,1017,2991,296,451,424,137,538,104,114,242,8,473,225,71,131,143,79,146,30124,4651,0,14080,20695,0,26947,7828,0,32947,1828,0,12200,22575,0,9866,2334,21614,961,0,998,511,600,98,781,845,947,815,896,2878,0,14,108,1117,1580,2573,1106,1572,9285,50,85,723,949,1097,1821,1141,1266,292,41,549,1,5,4,27,0,12093,1359,17311,0,51,709,200,2625,7454,6248,446,538,10116,552,1011,187,1124,47,16,17,74,17900,19100,2567,7465,217,2637,145,6,26,81,8,305,59,12454,75,0,0,13291,12263,121,131,562,3606,238,520,31,0,81,859,1590,1369,1349,2520,49,1628,1500,2507,19513,2097,784,1115,1638,2632,3565,1832,2119,830,398,153,135,51,63,75,509.0,510.0,582.0,624.0,667.0,626.0,647.0,678.0,721.0,673.0,753.0,687.0,649.0,690.0,658.0,657.0,668.0,644.0,631.0,610.0,646.0,588.0,647.0,628.0,622.0,694.0,653.0,524.0,500.0,437.0,490.0,502.0,506.0,571.0,515.0,496.0,458.0,502.0,484.0,498.0,499.0,462.0,494.0,479.0,432.0,443.0,449.0,378.0,461.0,432.0,449.0,412.0,428.0,358.0,420.0,383.0,383.0,333.0,336.0,322.0,331.0,294.0,286.0,292.0,245.0,250.0,276.0,207.0,214.0,186.0,194.0,198.0,193.0,178.0,191.0,147.0,108.0,120.0,100.0,117.0,101.0,70.0,71.0,56.0,58.0,47.0,50.0,44.0,28.0,29.0,21.0,23.0,12.0,14.0,15.0,13.0,5.0,8.0,4.0,1.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,9674,23972,3354,0,2892,3345,3437,3210,3131,2808,2584,2438,2366,2163,2067,1757,1448,1133,954,592,356,198,85,31,5,0,35868,728,323,81,0,35885,765,269,81,0,7071,373,935,6836,1076,274,10765,9670,0,18493,17900,607,0,2078,178,15,7,2,1,26,1,3,548,34141,0,6534,3758,2454,1536,177,239,11348,10954,0,8369,9022,2580,110,47,16872,0,1.962956045324368,0.0,2.834850333114385,0.0,9.329648648648648,2080,1090,811,618,71,92,3230,2891,0,1015,348,233,430,728,1025,1412,1017,1778,1023,688,388,407,207,166,3,10757,126,10247,636,8892,1991,1496,9387,10370,513,3650,7233,6192,4691,3103,7780,10293,590,10020,863,6900,3120,4406,6477,7993,2890,4356,6527,1098,9785,428,10455,154,10729,1758,6273,2664,188,2,6532,4351,0,345,54,9,3,1,1,7,1,3,164,10295,0,1.6444648598989435,1.7547083141938449,1.16,1.061269146608315,1.061269146608315,49.98704401359919 +30105,Colón,Colón,Ciricito,1187,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,381,441,42,730,92,0,0,0,39,3,715,0,13,89,13,5,26,0,3,608,0,254,0,2,0,0,812,48,0,0,0,4,864,0,178,71,5,40,34,0,0,13,830,21,0,0,687,164,0,10,1,1,1,849,3,5,1,1,5,0,137,635,0,70,21,1,0,548,12,77,16,9,2,74,0,112,14,0,0,1192,5.858928571428572,11.225,6.728571428571429,15.342857142857143,1.03125,3.328703703703704,2.076388888888889,891,574,1245,76,246,15,35,17,6,47,9,1,12,0,49,28,7,9,17,8,14,2447,493,0,278,2662,0,2127,813,0,2742,198,0,906,2034,0,872,34,1943,91,0,98,43,62,0,69,103,133,108,133,764,2,1,1,121,122,266,78,120,551,3,9,19,27,23,31,5,37,5,1,5,0,0,0,0,0,1110,167,1333,0,0,66,48,49,528,627,59,70,599,82,99,15,72,9,326,31,0,1691,1483,143,561,16,408,20,4,81,0,17,170,12,644,4,0,0,1892,639,2,4,16,49,3,5,0,0,0,25,38,32,64,198,274,138,107,401,1600,511,185,166,155,179,230,65,53,18,4,0,3,0,1,4,48.0,52.0,63.0,71.0,43.0,53.0,53.0,62.0,74.0,45.0,74.0,65.0,67.0,73.0,64.0,58.0,48.0,56.0,52.0,51.0,56.0,42.0,53.0,56.0,57.0,58.0,53.0,47.0,51.0,52.0,41.0,50.0,48.0,50.0,44.0,41.0,38.0,36.0,47.0,35.0,32.0,29.0,36.0,44.0,44.0,40.0,30.0,36.0,32.0,31.0,32.0,38.0,27.0,38.0,29.0,15.0,32.0,24.0,26.0,29.0,24.0,26.0,19.0,18.0,19.0,16.0,17.0,20.0,14.0,12.0,16.0,20.0,21.0,9.0,10.0,14.0,14.0,9.0,12.0,15.0,9.0,6.0,5.0,7.0,7.0,4.0,5.0,3.0,8.0,7.0,5.0,1.0,2.0,4.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,907,1970,297,0,277,287,343,265,264,261,233,197,185,169,164,126,106,79,76,64,34,27,14,3,0,0,3145,7,13,9,0,3145,8,12,9,0,937,19,266,369,75,4,597,907,0,1863,1299,12,0,12,7,2,0,0,0,3,0,0,139,3011,0,99,480,186,34,3,1,402,1969,0,396,449,60,3,1,2265,0,2.505280259951259,0.0,3.668316831683169,0.0,6.903276622558286,31,149,60,17,1,0,129,504,0,48,53,45,72,131,130,126,96,102,44,20,12,9,2,1,0,862,29,634,257,611,280,116,775,678,213,46,845,408,483,15,876,822,69,678,213,158,520,102,789,507,384,188,703,374,517,302,589,9,882,145,510,227,9,0,684,207,0,3,3,1,0,0,0,1,0,0,45,838,0,1.897867564534231,1.6644219977553312,1.0,1.048780487804878,1.048780487804878,50.34006734006734 +30108,Colón,Colón,Limón,2101,9,32,13,0,0,0,0,11,0,1,0,2,0,0,11,1232,376,26,1509,110,0,0,0,24,2,1534,0,11,46,20,7,25,0,2,1134,0,481,2,24,1,3,1563,59,6,0,0,17,1645,1,271,137,5,73,23,0,0,93,1518,34,0,0,1508,74,4,53,3,1,2,1592,2,30,2,3,16,0,849,677,6,89,22,2,919,264,3,98,11,103,2,50,91,78,23,3,0,2169,3.525295109612141,4.305227655986509,3.523608768971332,4.501686340640809,1.02370820668693,3.291793313069909,1.9817629179331304,1686,955,2145,128,346,48,47,29,13,70,9,16,51,3,72,24,18,24,37,11,19,4284,895,0,1246,3933,0,3205,1974,0,4855,324,0,1701,3478,0,1494,207,3296,182,0,192,57,105,5,129,144,198,151,176,654,0,2,7,174,274,450,155,237,1226,16,27,90,111,120,121,62,226,19,6,43,0,0,0,2,0,1798,369,2388,0,13,181,66,242,1021,952,87,86,1401,67,252,43,258,36,32,7,8,2822,2724,309,1113,49,540,46,18,15,14,119,101,19,1780,58,0,0,2479,1603,7,28,76,306,13,41,2,0,15,89,156,159,137,423,44,408,307,429,2959,480,116,219,255,376,490,252,206,74,43,7,7,1,3,58,92.0,96.0,71.0,108.0,98.0,99.0,113.0,101.0,130.0,83.0,119.0,112.0,100.0,102.0,112.0,97.0,74.0,83.0,89.0,76.0,99.0,100.0,93.0,95.0,85.0,101.0,103.0,99.0,85.0,77.0,88.0,75.0,84.0,64.0,84.0,78.0,82.0,78.0,70.0,76.0,77.0,70.0,68.0,66.0,67.0,64.0,75.0,67.0,73.0,62.0,74.0,55.0,68.0,47.0,71.0,47.0,63.0,38.0,44.0,52.0,44.0,48.0,27.0,41.0,37.0,31.0,39.0,26.0,19.0,35.0,20.0,18.0,22.0,24.0,21.0,24.0,18.0,11.0,19.0,15.0,13.0,7.0,8.0,14.0,4.0,5.0,5.0,2.0,3.0,5.0,3.0,6.0,4.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,1536,3580,427,3,465,526,545,419,472,465,395,384,348,341,315,244,197,150,105,87,46,20,18,1,0,3,5432,69,30,15,0,5433,73,25,15,0,1331,58,430,901,159,28,1104,1535,0,3135,2349,62,0,23,40,7,0,0,1,89,0,0,48,5338,0,618,586,230,103,31,12,1786,2180,0,1066,1236,232,19,5,2988,0,2.1422202407489968,0.0,3.097609561752988,0.0,8.361702127659575,205,180,84,45,12,6,530,624,0,141,103,46,98,148,212,230,173,241,147,60,24,37,12,6,6,1630,56,1445,241,1283,403,215,1471,1415,271,311,1375,737,949,138,1548,1565,121,1375,311,592,783,451,1235,1266,420,580,1106,352,1334,116,1570,19,1667,323,974,370,19,12,1107,579,0,6,15,5,0,0,1,21,0,0,16,1622,0,1.661955241460542,1.6042402826855124,1.181818181818182,1.046875,1.046875,48.21589561091341 +30109,Colón,Colón,Nueva Providencia,3060,67,0,0,0,0,0,0,4,0,1,18,5,0,0,0,1801,615,53,2275,141,1,0,0,51,1,2433,0,5,5,6,5,5,0,10,692,38,1562,18,18,0,141,2429,10,3,1,0,26,2469,1,123,233,97,148,56,0,3,208,2188,66,1,3,2348,33,0,87,0,1,0,2411,3,47,8,0,0,0,959,1423,0,77,9,1,1107,531,0,78,7,35,6,12,560,120,8,5,0,3155,3.1807081807081805,6.6361416361416365,3.2344322344322345,6.794871794871795,1.014985824220332,3.1190765492102064,1.8671526933981368,2529,1511,3490,301,496,45,74,64,21,113,31,15,44,0,92,45,14,19,33,52,37,6519,1524,0,1651,6392,0,5527,2516,0,7435,608,0,2725,5318,0,2472,253,4975,343,0,352,109,187,14,230,270,290,257,248,1173,0,1,9,260,426,708,257,408,1982,10,15,81,94,108,183,120,183,19,11,37,0,0,0,1,0,2883,397,3586,0,10,187,50,184,1581,1537,71,213,2117,96,430,106,366,7,34,5,10,4373,4361,352,1889,115,758,42,1,4,10,7,104,21,3024,164,0,0,4010,2298,8,14,50,432,16,37,1,0,11,131,172,168,250,587,21,585,427,928,4834,667,164,280,403,561,973,325,231,80,33,9,4,1,5,164,158.0,161.0,165.0,207.0,184.0,203.0,192.0,199.0,219.0,180.0,178.0,174.0,172.0,162.0,162.0,157.0,157.0,137.0,148.0,149.0,160.0,156.0,164.0,149.0,138.0,166.0,169.0,151.0,139.0,136.0,146.0,147.0,150.0,141.0,126.0,120.0,111.0,149.0,131.0,118.0,117.0,117.0,107.0,119.0,102.0,109.0,96.0,96.0,103.0,85.0,102.0,85.0,76.0,84.0,82.0,66.0,62.0,59.0,69.0,65.0,48.0,45.0,39.0,55.0,30.0,39.0,35.0,27.0,35.0,23.0,25.0,27.0,19.0,17.0,18.0,12.0,16.0,15.0,7.0,10.0,6.0,4.0,9.0,6.0,4.0,4.0,2.0,1.0,3.0,3.0,3.0,3.0,4.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0,2716,5633,385,0,875,993,848,748,767,761,710,629,562,489,429,321,217,159,106,60,29,13,11,4,3,0,8431,161,108,34,0,8435,167,98,34,0,2314,75,557,1128,141,40,1763,2716,0,3778,4838,118,0,48,169,15,0,1,0,68,1,0,100,8332,0,544,291,158,100,508,35,2499,4599,0,1668,1898,179,17,2,4970,0,2.0715328467153284,0.0,3.1181244364292158,0.0,7.716968170368674,177,89,62,43,208,19,713,1218,0,150,127,70,121,243,274,490,282,367,182,80,44,22,11,7,36,2497,32,2284,245,2080,449,307,2222,2253,276,303,2226,1332,1197,92,2437,2364,165,2204,325,484,1720,530,1999,1774,755,770,1759,318,2211,143,2386,31,2498,437,1564,506,22,5,1689,840,0,19,38,4,0,1,0,10,1,0,29,2427,0,1.7257300710339385,1.7209944751381216,1.1875,1.0185185185185186,1.0185185185185186,44.84618426255437 +30110,Colón,Colón,Puerto Pilón,5787,34,594,9,1,0,0,0,0,0,0,0,21,0,0,2654,2484,210,98,5012,336,1,39,10,42,6,5372,0,6,32,14,5,7,1,9,5080,13,336,1,1,5,10,5332,43,16,0,0,55,5446,13,168,196,265,278,58,0,1006,445,3811,180,1,3,5343,54,0,41,7,0,1,5128,16,292,4,1,5,0,4222,1149,4,49,20,2,5008,115,8,25,34,12,3,24,68,82,62,5,6070,376,5.917559929838238,16.34808029623855,6.04307152601832,16.711946988891054,1.0157914065369078,3.490451707675358,2.270840984208593,5553,2939,6996,541,1284,110,187,173,78,246,40,39,96,3,224,86,32,84,115,13,55,15350,1890,0,7423,9817,0,15115,2125,0,16222,1018,0,6332,10908,0,5185,1147,10614,294,0,356,296,331,47,406,415,433,413,416,1224,3,6,50,544,774,1326,654,793,4454,8,14,451,540,738,951,598,630,114,23,224,0,1,3,4,0,6747,947,7476,0,9,468,113,1061,3716,2289,183,227,5226,451,745,108,844,9,29,13,5,8816,9469,1498,3730,114,2012,52,1,17,6,10,191,40,5108,24,0,0,6340,6346,55,50,262,1808,96,208,5,0,7,460,829,669,782,1420,36,1085,1053,1353,8693,1499,509,728,946,1098,1871,974,1130,441,193,65,67,18,29,24,215.0,260.0,290.0,280.0,323.0,344.0,328.0,365.0,354.0,356.0,333.0,359.0,316.0,360.0,355.0,333.0,355.0,324.0,329.0,283.0,294.0,305.0,301.0,293.0,285.0,330.0,311.0,234.0,237.0,215.0,234.0,247.0,240.0,264.0,234.0,242.0,232.0,264.0,255.0,273.0,281.0,266.0,277.0,235.0,242.0,244.0,238.0,241.0,266.0,200.0,236.0,236.0,212.0,194.0,214.0,190.0,175.0,173.0,165.0,167.0,160.0,157.0,148.0,144.0,128.0,97.0,100.0,93.0,79.0,84.0,70.0,73.0,75.0,55.0,60.0,66.0,55.0,49.0,45.0,45.0,36.0,30.0,32.0,24.0,30.0,21.0,25.0,19.0,18.0,11.0,10.0,7.0,10.0,6.0,4.0,6.0,2.0,0.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4838,12103,1344,0,1368,1747,1723,1624,1478,1327,1219,1266,1301,1189,1092,870,737,453,333,260,152,94,37,13,2,0,17876,202,184,23,0,17883,225,154,23,0,3294,325,1737,3455,508,168,3961,4837,0,9366,8746,173,0,187,59,9,0,0,0,81,25,2,304,17618,0,4585,1822,1507,1105,74,171,4435,4586,0,4279,4447,1065,54,21,8419,0,1.9084835497289805,0.0,2.7897151596253105,0.0,9.491058244462677,1377,541,501,450,31,90,1319,1244,0,205,199,135,276,448,508,739,539,964,606,390,188,171,82,79,3,5458,95,5183,370,4561,992,656,4897,5231,322,1830,3723,3409,2144,1328,4225,5222,331,5160,393,3291,1869,2342,3211,4852,701,2426,3127,162,5391,117,5436,34,5519,936,3220,1343,54,1,3295,2258,0,35,21,1,0,0,0,18,9,1,72,5396,0,1.587324450846237,1.704897371263954,1.2162162162162162,1.0452261306532664,1.0452261306532664,49.22186205654601 +30111,Colón,Colón,Sabanitas,6623,16,1371,31,0,1,0,1,0,0,0,1,1,0,0,2827,3540,463,71,6519,311,0,0,0,48,23,6854,0,3,6,4,6,9,0,19,6134,19,724,2,6,1,15,6762,22,30,0,0,87,6901,11,201,238,272,294,124,0,465,771,5345,296,14,10,6802,18,0,78,0,3,0,5530,104,284,981,2,0,0,4969,1865,2,62,2,1,6072,366,97,46,7,76,4,41,111,55,15,11,6417,1628,5.803672532517215,17.05692425401683,5.847895944912012,17.16954858454476,1.026807709027677,3.626286045500652,2.241559194319664,7088,3532,8814,650,1927,214,325,334,58,328,70,59,228,3,372,121,92,130,100,233,97,19253,2992,0,7012,15233,0,16229,6016,0,20922,1323,0,7704,14541,0,6468,1236,13896,645,0,676,297,423,57,502,555,642,547,620,1998,7,2,132,660,913,1699,681,1080,6510,20,86,345,405,565,831,660,853,135,20,298,1,1,5,19,0,7662,1727,10170,0,60,782,301,1618,4512,3505,315,220,6710,342,718,148,903,25,18,18,25,11489,12141,1605,5037,168,1912,98,2,19,66,8,253,62,7809,432,0,0,8641,7952,145,97,286,2047,112,263,16,0,76,511,869,863,926,1826,50,1152,1045,2071,12116,1387,580,808,1108,1692,2366,1217,1062,442,186,84,70,35,45,432,315.0,323.0,351.0,396.0,436.0,427.0,435.0,450.0,488.0,450.0,470.0,463.0,430.0,410.0,416.0,371.0,409.0,417.0,396.0,393.0,347.0,396.0,430.0,458.0,393.0,402.0,410.0,328.0,304.0,310.0,316.0,326.0,358.0,365.0,334.0,314.0,349.0,352.0,328.0,290.0,321.0,304.0,301.0,283.0,256.0,283.0,278.0,265.0,265.0,242.0,281.0,249.0,233.0,267.0,249.0,207.0,229.0,230.0,213.0,215.0,201.0,193.0,186.0,177.0,151.0,179.0,176.0,138.0,128.0,133.0,126.0,101.0,128.0,112.0,113.0,88.0,85.0,85.0,73.0,68.0,47.0,52.0,42.0,44.0,41.0,42.0,25.0,34.0,30.0,18.0,25.0,16.0,16.0,8.0,5.0,5.0,7.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6260,15175,2195,0,1821,2250,2189,1986,2024,1754,1699,1633,1465,1333,1279,1094,908,754,580,399,226,149,70,15,2,0,22949,360,266,55,0,22958,380,237,55,0,4486,296,1399,3975,715,220,6280,6259,0,9224,14122,284,0,486,206,12,0,7,2,86,4,1,500,22326,0,3536,2125,1686,1106,173,189,6059,8756,0,5120,5524,1633,96,30,11227,0,2.021453287197232,0.0,2.89361074221632,0.0,9.120736352094797,1107,658,540,418,82,73,1824,2386,0,697,245,180,316,502,757,932,665,1113,713,352,195,215,86,101,17,6977,111,6641,447,5856,1232,899,6189,6613,475,2093,4995,3903,3185,1556,5532,6723,365,6547,541,3544,3003,2495,4593,5231,1857,2487,4601,656,6432,305,6783,82,7006,1264,3833,1819,172,2,3969,3119,0,108,79,8,0,5,0,22,0,0,168,6698,0,1.6204513399153735,1.7124118476727783,1.2258064516129032,1.042207792207792,1.042207792207792,50.02186794582393 +30112,Colón,Colón,Salamanca,2022,40,6,0,0,0,0,0,6,0,1,0,1,0,0,6,1171,310,59,1409,78,3,0,0,56,0,1433,0,11,62,7,8,21,0,4,613,37,873,0,18,0,5,1465,53,1,0,0,27,1546,0,287,108,38,52,37,0,0,54,1434,58,0,0,1397,84,0,55,2,8,0,1502,3,33,1,1,6,0,363,1110,0,63,9,1,26,1213,109,5,2,3,0,11,0,169,5,3,0,2076,5.516320474777448,18.041543026706236,6.473293768545994,22.589020771513358,1.0226390685640363,3.054980595084088,1.8745148771021996,1582,886,1893,157,258,34,43,24,16,68,6,6,69,1,66,63,11,45,13,73,49,3389,1324,0,587,4126,0,2248,2465,0,4257,456,0,1431,3282,0,1335,96,3018,264,0,266,66,101,1,113,160,217,172,140,900,0,1,11,147,200,476,154,202,887,5,3,81,112,83,71,67,58,9,4,5,1,0,0,0,0,1422,343,2343,0,4,144,52,147,840,1166,85,105,892,112,226,29,167,1,242,15,4,2599,2444,183,818,38,565,32,2,35,15,15,200,21,1792,3,0,0,2709,1166,12,10,46,155,5,5,0,0,15,40,77,120,73,223,192,303,213,509,2810,843,119,161,212,325,269,123,104,42,23,5,0,1,3,3,81.0,89.0,82.0,78.0,90.0,100.0,106.0,105.0,104.0,100.0,106.0,87.0,77.0,97.0,88.0,103.0,89.0,81.0,74.0,90.0,68.0,84.0,94.0,85.0,78.0,80.0,91.0,70.0,80.0,79.0,75.0,76.0,78.0,72.0,60.0,76.0,60.0,69.0,74.0,67.0,48.0,74.0,56.0,62.0,51.0,50.0,56.0,54.0,62.0,62.0,57.0,54.0,49.0,61.0,44.0,51.0,42.0,40.0,47.0,33.0,50.0,35.0,38.0,32.0,33.0,25.0,30.0,28.0,37.0,33.0,25.0,24.0,17.0,27.0,23.0,20.0,15.0,14.0,12.0,11.0,16.0,15.0,6.0,7.0,10.0,6.0,10.0,8.0,7.0,3.0,3.0,3.0,8.0,3.0,5.0,2.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1390,3194,459,0,420,515,455,437,409,400,361,346,291,284,265,213,188,153,116,72,54,34,22,7,1,0,4976,48,4,15,0,4976,48,4,15,0,1266,66,441,747,127,16,990,1390,0,2789,2215,39,0,14,76,7,1,1,0,27,6,0,54,4857,0,234,357,218,59,54,3,1018,3100,0,665,1009,145,10,3,3211,0,2.3356819325616507,0.0,3.296817172464841,0.0,7.328177672020622,75,123,92,20,26,2,330,914,0,198,172,71,152,190,208,185,111,152,65,33,21,13,5,4,1,1534,48,1304,278,1253,329,181,1401,1229,353,128,1454,545,1037,29,1553,1271,311,1164,418,495,669,247,1335,695,887,424,1158,471,1111,288,1294,13,1569,341,923,288,30,7,1071,511,0,5,24,1,0,1,0,11,1,0,15,1524,0,1.6356198867212084,1.538074260541221,1.6666666666666667,1.069767441860465,1.069767441860465,48.86725663716814 +30113,Colón,Colón,San Juan,7868,77,139,27,0,0,0,0,11,0,1,0,2,0,0,66,5467,846,272,5943,436,2,0,0,256,14,6574,0,6,19,9,16,26,1,0,5545,6,1038,12,19,2,29,6441,51,15,0,0,144,6651,19,359,466,218,261,137,0,15,510,5907,206,10,3,6472,58,0,115,0,5,1,6482,24,133,11,0,1,0,2621,3926,0,94,10,0,6406,63,35,11,6,16,0,16,7,46,34,11,6697,1428,5.935731857318573,21.17650676506765,6.073185731857318,21.59517220172202,1.02135017290633,3.09622613140881,1.9282814614343708,6795,3855,8872,742,1139,153,181,167,48,278,54,61,149,5,362,99,48,142,82,203,141,17496,3467,0,4732,16231,0,15068,5895,0,19558,1405,0,7086,13877,0,6150,936,13135,742,0,772,283,444,26,548,583,736,629,639,2348,3,5,43,693,1082,1988,684,1120,5564,17,37,316,441,431,616,346,401,52,16,93,1,1,3,2,0,6720,1374,10258,0,46,592,147,792,4276,4661,318,211,5263,301,1117,127,795,29,76,10,152,11320,11179,1055,4317,159,2031,72,7,68,161,18,412,40,8361,56,0,0,9950,6818,48,57,237,1111,42,88,1,0,184,292,587,549,480,1535,121,1552,1153,1641,13159,1937,528,765,1048,1282,1773,803,735,257,87,28,22,10,9,56,362.0,358.0,390.0,426.0,426.0,386.0,446.0,471.0,449.0,433.0,449.0,486.0,429.0,395.0,448.0,366.0,398.0,398.0,384.0,394.0,405.0,358.0,357.0,405.0,373.0,426.0,404.0,373.0,346.0,348.0,355.0,344.0,360.0,364.0,315.0,312.0,301.0,325.0,306.0,307.0,312.0,265.0,301.0,270.0,227.0,258.0,242.0,266.0,249.0,260.0,265.0,269.0,258.0,253.0,245.0,207.0,182.0,199.0,217.0,172.0,175.0,149.0,147.0,145.0,121.0,122.0,95.0,100.0,96.0,94.0,74.0,75.0,75.0,63.0,63.0,71.0,54.0,54.0,45.0,48.0,53.0,29.0,25.0,40.0,31.0,19.0,27.0,20.0,17.0,16.0,10.0,10.0,13.0,7.0,8.0,4.0,3.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6354,14678,1467,0,1962,2185,2207,1940,1898,1897,1738,1551,1375,1275,1290,977,737,507,350,272,178,99,48,13,0,0,22001,310,145,43,0,22005,331,120,43,0,5103,288,1330,3628,473,79,5245,6353,0,11880,10328,291,0,74,276,25,11,8,5,407,36,1,259,21397,0,1108,1413,1248,197,66,55,3479,14933,0,3966,4925,772,84,15,12737,0,2.0780823413781806,0.0,3.0288808664259927,0.0,8.233077025645585,359,431,464,77,20,22,1170,4252,0,886,400,267,448,685,754,978,593,839,431,246,117,92,23,23,11,6614,181,6033,762,5583,1212,827,5968,6005,790,1155,5640,2872,3923,627,6168,6373,422,5669,1126,3292,2377,1914,4881,5382,1413,2212,4583,1905,4890,1053,5742,151,6644,1200,4204,1311,80,12,4449,2346,0,23,79,10,3,3,3,101,10,1,95,6467,0,1.6629939767886,1.6422800058763038,1.2,1.0456273764258557,1.0456273764258557,47.2831493745401 +30114,Colón,Colón,Santa Rosa,496,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,306,63,9,368,6,0,0,0,8,1,372,0,0,2,2,2,5,0,0,37,31,314,0,0,0,1,368,6,1,0,0,8,383,2,41,21,7,26,17,0,0,11,366,5,1,0,363,9,0,11,0,0,0,382,0,0,0,0,1,0,144,227,0,12,0,0,20,351,1,3,0,1,0,4,0,0,3,0,0,497,4.067204301075269,13.38978494623656,5.416666666666667,19.887096774193548,1.010443864229765,3.177545691906005,2.093994778067885,387,231,481,40,41,5,9,12,3,13,4,1,5,0,13,2,0,2,6,2,7,931,217,0,221,927,0,893,255,0,1054,94,0,347,801,0,318,29,763,38,0,38,23,22,0,35,45,47,30,34,205,0,0,4,62,52,98,29,42,290,0,11,2,12,12,34,11,4,0,1,5,0,0,0,0,0,388,104,521,0,0,28,65,37,214,230,24,16,310,2,50,8,33,0,26,1,4,628,604,114,223,8,68,3,0,3,15,1,29,6,469,26,0,0,627,313,4,9,12,43,0,5,0,0,15,15,18,43,35,47,4,58,81,176,728,50,11,14,37,139,136,47,29,11,2,1,1,0,0,26,17.0,23.0,21.0,23.0,16.0,23.0,20.0,30.0,24.0,22.0,20.0,22.0,23.0,33.0,28.0,21.0,20.0,20.0,17.0,26.0,17.0,18.0,28.0,23.0,20.0,27.0,19.0,15.0,20.0,16.0,12.0,18.0,15.0,19.0,18.0,19.0,18.0,15.0,20.0,20.0,19.0,13.0,14.0,17.0,12.0,10.0,13.0,13.0,17.0,15.0,24.0,12.0,11.0,16.0,13.0,18.0,15.0,12.0,9.0,11.0,4.0,6.0,4.0,11.0,5.0,6.0,6.0,7.0,4.0,4.0,3.0,5.0,7.0,5.0,6.0,1.0,6.0,2.0,2.0,2.0,3.0,2.0,4.0,2.0,3.0,2.0,3.0,0.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,345,795,92,0,100,119,126,104,106,97,82,92,75,68,76,65,30,27,26,13,14,9,3,0,0,0,1203,23,4,2,0,1203,23,4,2,0,370,4,13,153,14,2,331,345,0,778,428,26,0,1,0,9,0,0,0,0,0,0,0,1222,0,6,2,18,1,2,0,19,1184,0,269,283,35,4,0,641,0,2.1214574898785425,0.0,3.0424242424242425,0.0,7.496753246753247,2,2,9,1,1,0,11,361,0,50,21,7,11,22,69,68,34,56,24,12,4,5,0,1,3,376,11,338,49,314,73,39,348,306,81,56,331,179,208,6,381,334,53,321,66,242,79,97,290,269,118,136,251,71,316,38,349,5,382,81,234,68,4,0,254,133,0,1,0,1,0,0,0,0,0,0,0,385,0,1.6227390180878554,1.5607235142118865,1.0,1.125,1.125,47.82428940568475 +30115,Colón,Colón,Cristóbal Este,13792,18,9477,18,0,2,0,0,0,0,0,1,11,0,0,14062,4662,345,93,18820,249,7,14,0,65,7,19127,0,2,13,0,10,5,0,5,18723,124,309,2,2,1,1,18905,32,83,0,2,140,19162,41,661,2153,499,555,234,0,7311,1728,9418,511,22,172,18835,238,1,84,0,4,0,12611,248,5679,619,0,0,5,16185,2711,0,103,163,0,18441,58,9,1,0,0,3,0,94,535,18,3,23255,64,5.87281175707802,17.992003457964124,5.881510698076507,18.18575751026583,1.0132554013151027,3.5718609748460493,2.367915666423129,19428,9401,25534,1361,4576,640,841,859,227,771,214,191,730,43,774,304,102,308,273,107,181,55970,4751,0,25438,35283,0,52911,7810,0,57462,3259,0,22517,38204,0,18480,4037,36865,1339,0,1463,931,1264,211,1486,1561,1696,1548,1750,3909,9,43,196,2022,2910,4984,2251,3281,16029,45,115,1333,1669,1962,2442,1747,2582,340,107,770,3,4,5,53,0,23162,3319,26486,0,58,1489,410,3404,13414,8658,529,481,18500,1854,2054,366,2633,88,17,71,45,30599,34217,5349,12766,406,6686,276,5,87,53,26,514,168,16801,911,0,0,23482,21858,206,158,734,5444,295,735,55,0,52,1949,2471,2332,2669,6053,105,3003,2465,5382,31844,4869,1533,2297,2882,3984,7393,3212,3062,1233,682,266,304,122,222,911,925.0,992.0,1022.0,1156.0,1156.0,1242.0,1261.0,1380.0,1420.0,1295.0,1419.0,1408.0,1270.0,1281.0,1282.0,1175.0,1230.0,1116.0,1068.0,1069.0,981.0,974.0,1077.0,1022.0,999.0,1164.0,1197.0,908.0,890.0,771.0,836.0,980.0,977.0,1039.0,998.0,908.0,935.0,959.0,962.0,937.0,893.0,784.0,804.0,780.0,735.0,785.0,669.0,729.0,725.0,688.0,715.0,702.0,705.0,663.0,651.0,627.0,614.0,639.0,659.0,609.0,579.0,523.0,492.0,450.0,438.0,418.0,351.0,344.0,381.0,289.0,263.0,250.0,255.0,217.0,213.0,193.0,179.0,158.0,135.0,124.0,104.0,82.0,75.0,60.0,65.0,48.0,56.0,42.0,35.0,24.0,23.0,15.0,17.0,11.0,7.0,14.0,12.0,5.0,4.0,2.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,18509,41830,4477,0,5251,6598,6660,5658,5053,4930,4830,4701,3996,3596,3436,3148,2482,1783,1198,789,386,205,73,37,6,0,61323,2056,1327,110,0,61378,2225,1103,110,0,12592,675,6144,10487,1634,499,14285,18500,0,15932,47541,1343,0,2309,121,17,0,4,0,40,2,4,552,61767,0,12597,8950,6722,3979,386,591,18800,12791,0,14443,14301,3507,153,77,32335,0,1.9170783345095272,0.0,2.791481382266274,0.0,9.200968896568748,4005,2478,2135,1599,133,281,5299,3498,0,926,728,619,1057,1526,1724,2735,1996,3107,1878,1083,597,663,308,415,54,19237,191,18507,921,15945,3483,1946,17482,18539,889,7686,11742,11944,7484,5050,14378,18476,952,18512,916,11747,6765,7244,12184,15746,3682,6904,12524,1129,18299,345,19083,299,19129,3457,10427,4960,584,2,9493,9935,0,418,48,8,0,1,0,15,1,3,162,18772,0,1.5748327328872878,1.7610396294390118,1.25,1.0379888268156423,1.0379888268156423,47.83384805435454 +30201,Colón,Chagres,Nuevo Chagres,309,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,145,20,7,159,7,0,0,0,7,0,164,0,0,5,1,1,2,0,0,118,1,54,0,0,0,0,169,3,0,0,0,1,173,0,66,40,9,20,6,0,0,4,139,29,0,1,166,1,0,5,1,0,0,57,0,113,0,0,3,0,60,109,0,2,1,1,0,151,11,0,0,2,0,1,0,5,3,0,0,314,3.740740740740741,8.493827160493828,3.8395061728395055,8.722222222222221,1.0289017341040465,3.23699421965318,2.1965317919075145,178,89,197,34,44,4,6,2,1,5,0,2,5,0,6,0,1,4,4,0,0,419,103,0,59,463,0,380,142,0,480,42,0,188,334,0,179,9,319,15,0,15,10,15,2,17,14,24,14,13,70,0,1,0,15,19,41,22,30,121,0,3,9,8,12,13,9,19,0,0,6,0,0,0,0,0,260,6,180,0,0,5,0,20,109,28,1,22,127,38,50,4,16,0,22,4,0,294,273,68,64,5,113,1,0,10,0,5,17,5,84,0,0,0,246,161,0,3,6,24,0,6,0,0,0,10,11,16,14,50,30,40,24,71,268,30,25,45,59,32,64,13,14,9,3,2,2,0,1,0,14.0,6.0,13.0,12.0,12.0,13.0,14.0,12.0,12.0,13.0,12.0,11.0,10.0,10.0,8.0,13.0,8.0,13.0,8.0,6.0,6.0,10.0,6.0,4.0,7.0,9.0,11.0,12.0,12.0,8.0,7.0,9.0,10.0,6.0,5.0,12.0,6.0,7.0,6.0,8.0,10.0,11.0,7.0,3.0,6.0,6.0,5.0,3.0,5.0,4.0,3.0,6.0,5.0,5.0,3.0,2.0,7.0,4.0,9.0,6.0,3.0,6.0,6.0,3.0,2.0,6.0,5.0,3.0,0.0,4.0,3.0,2.0,1.0,3.0,7.0,1.0,2.0,3.0,2.0,0.0,0.0,4.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,172,339,56,0,57,64,51,48,33,52,37,39,37,23,22,28,20,18,16,8,7,3,2,2,0,0,561,5,1,0,0,561,5,1,0,0,179,8,66,43,15,3,81,172,0,288,278,1,0,6,0,0,0,0,1,1,0,0,11,548,0,39,27,50,51,1,2,209,188,0,95,111,22,1,1,337,0,2.515837104072398,0.0,3.467532467532468,0.0,8.056437389770723,16,10,14,17,1,1,66,53,0,1,1,2,15,30,27,29,16,27,12,3,8,5,1,1,0,173,5,146,32,135,43,16,162,154,24,33,145,76,102,1,177,170,8,137,41,81,56,22,156,147,31,47,131,36,142,29,149,0,178,41,90,43,4,0,124,54,0,4,0,0,0,0,0,1,0,0,1,172,0,1.651685393258427,1.5337078651685394,1.0,1.0,1.0,50.12359550561798 +30202,Colón,Chagres,Achiote,381,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,115,15,224,41,4,0,0,11,0,196,0,0,45,4,3,31,0,1,96,0,172,0,12,0,0,247,23,2,1,0,7,280,0,66,30,5,6,5,0,0,5,254,21,0,0,179,92,0,6,2,0,1,264,0,10,0,0,6,0,59,142,0,39,40,0,0,147,35,2,0,59,0,33,0,0,4,0,0,392,5.615384615384615,8.54945054945055,6.65934065934066,12.423076923076923,1.0178571428571428,2.878571428571429,1.8035714285714288,285,160,349,38,53,3,13,4,3,17,5,3,5,0,15,7,1,5,7,0,7,612,251,0,71,792,0,496,367,0,769,94,0,266,597,0,252,14,556,41,0,41,13,20,0,36,36,38,37,38,177,0,0,1,26,28,67,22,46,179,0,0,6,8,8,10,3,21,1,0,1,0,0,0,0,0,470,36,254,0,1,20,0,15,138,72,25,4,193,48,35,11,18,0,190,1,0,492,446,66,202,12,163,3,0,50,0,5,43,4,75,0,0,0,522,203,1,4,6,23,0,1,0,0,0,15,18,14,20,84,88,53,31,183,458,66,69,71,74,68,70,26,23,8,4,1,0,0,0,0,17.0,14.0,19.0,25.0,13.0,15.0,25.0,18.0,19.0,13.0,20.0,22.0,16.0,13.0,18.0,16.0,11.0,26.0,14.0,16.0,15.0,20.0,18.0,16.0,18.0,15.0,28.0,17.0,11.0,16.0,14.0,14.0,13.0,13.0,10.0,10.0,10.0,10.0,8.0,7.0,9.0,9.0,10.0,9.0,16.0,14.0,11.0,13.0,9.0,8.0,5.0,9.0,9.0,14.0,8.0,11.0,6.0,4.0,7.0,4.0,4.0,6.0,6.0,3.0,10.0,10.0,5.0,6.0,5.0,8.0,3.0,3.0,0.0,3.0,5.0,3.0,7.0,1.0,1.0,4.0,2.0,2.0,1.0,3.0,4.0,3.0,0.0,3.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,267,580,89,2,88,90,89,83,87,87,64,45,53,55,45,32,29,34,14,16,12,8,4,1,0,2,914,2,9,13,0,914,2,9,13,0,266,5,101,125,16,0,158,267,0,473,460,5,0,2,20,1,0,0,0,0,0,0,8,907,0,13,42,21,13,0,3,297,549,0,123,134,16,3,0,662,0,2.625698324022346,0.0,3.7796610169491527,0.0,6.878464818763327,3,12,10,8,0,1,94,157,0,3,9,16,30,43,54,27,32,31,19,9,4,5,3,0,0,261,24,179,106,176,109,32,253,190,95,27,258,150,135,6,279,240,45,168,117,115,53,38,247,114,171,63,222,163,122,152,133,3,282,69,144,67,5,0,223,62,0,1,7,1,0,0,0,0,0,0,2,274,0,1.7263157894736842,1.5649122807017544,0.0,1.0,1.0,49.44561403508772 +30203,Colón,Chagres,El Guabo,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,244,7,383,34,0,0,0,7,0,336,0,1,50,9,3,23,0,2,81,0,327,0,16,0,0,364,52,0,3,0,5,424,0,72,17,1,15,6,0,0,3,412,9,0,0,263,156,0,3,1,0,1,416,0,1,0,0,7,0,20,293,0,55,56,0,0,231,83,5,19,63,1,12,0,6,4,0,0,535,5.414012738853503,15.254777070063694,6.777070063694268,20.88853503184713,1.0141509433962264,2.900943396226415,1.7735849056603774,430,260,574,59,126,13,20,11,8,30,6,2,14,0,14,17,4,9,11,0,4,881,544,0,77,1348,0,522,903,0,1285,140,0,412,1013,0,404,8,940,73,0,75,26,25,2,42,39,63,57,63,416,0,0,0,39,55,121,35,49,240,2,2,15,7,14,23,6,4,2,0,3,0,0,0,0,0,514,12,698,0,0,10,2,17,237,380,30,34,184,32,33,10,22,1,238,1,2,820,733,51,218,10,189,7,0,46,2,17,113,9,427,5,0,0,906,281,0,2,5,27,1,2,0,0,2,10,9,9,14,72,141,33,29,207,1020,140,69,69,67,59,83,13,17,6,3,2,0,0,0,5,36.0,35.0,25.0,32.0,44.0,31.0,27.0,37.0,30.0,32.0,32.0,37.0,32.0,21.0,23.0,26.0,25.0,23.0,20.0,27.0,21.0,29.0,33.0,25.0,23.0,23.0,34.0,21.0,25.0,20.0,19.0,16.0,20.0,21.0,28.0,19.0,26.0,16.0,22.0,13.0,27.0,11.0,11.0,15.0,14.0,10.0,13.0,18.0,17.0,11.0,10.0,10.0,19.0,13.0,14.0,14.0,22.0,16.0,13.0,12.0,19.0,8.0,9.0,14.0,10.0,7.0,14.0,8.0,7.0,7.0,11.0,9.0,6.0,9.0,7.0,7.0,2.0,5.0,10.0,6.0,8.0,2.0,4.0,3.0,4.0,2.0,3.0,2.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,474,925,154,0,172,157,145,121,131,123,104,96,78,69,66,77,60,43,42,30,21,10,7,1,0,0,1530,3,2,18,0,1530,3,2,18,0,455,7,99,172,43,2,301,474,0,950,602,1,0,2,1,1,0,0,0,0,0,0,16,1533,0,6,104,26,9,1,0,207,1200,0,129,201,18,1,0,1204,0,2.6695652173913045,0.0,3.708955223880597,0.0,6.513844172569221,0,36,11,4,0,0,70,309,0,49,36,37,48,78,54,46,27,23,16,9,3,3,0,0,1,399,31,266,164,226,204,48,382,287,143,8,422,202,228,5,425,356,74,248,182,156,92,34,396,186,244,50,380,243,187,240,190,1,429,75,237,109,9,0,330,100,0,0,0,0,0,0,0,0,0,0,6,424,0,1.9069767441860463,1.7046511627906975,0.0,1.1428571428571428,1.1428571428571428,50.181395348837206 +30204,Colón,Chagres,La Encantada,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,568,20,590,44,0,0,0,20,0,48,0,7,450,28,2,119,0,0,11,0,615,8,20,0,0,443,204,0,0,0,7,654,0,195,31,0,13,11,0,0,1,646,7,0,0,127,525,1,1,0,0,0,638,0,7,0,0,9,0,8,314,1,159,172,0,0,227,152,30,4,190,2,37,0,4,8,0,0,904,6.406332453825858,20.445910290237467,6.95778364116095,23.62532981530343,1.003058103975535,3.2522935779816518,1.9938837920489296,656,445,1007,58,105,13,4,2,4,21,2,3,13,0,29,16,4,6,9,2,3,1135,1005,0,31,2109,0,602,1538,0,1951,189,0,632,1508,0,625,7,1405,103,0,104,27,47,3,79,94,139,101,121,778,0,0,0,63,89,176,48,60,181,1,1,4,7,4,5,3,4,0,0,1,0,0,0,0,0,816,6,1010,0,0,4,1,14,375,535,19,67,67,46,19,1,9,0,680,0,0,1240,1093,45,208,2,450,0,0,117,0,90,156,15,338,16,0,0,1621,195,0,1,5,9,0,1,0,0,0,2,9,8,12,33,451,28,7,272,1721,222,115,101,59,38,38,8,11,2,1,0,0,0,1,16,52.0,47.0,45.0,49.0,48.0,42.0,58.0,61.0,56.0,43.0,54.0,57.0,50.0,48.0,48.0,45.0,38.0,47.0,44.0,34.0,45.0,44.0,28.0,35.0,37.0,33.0,27.0,30.0,27.0,26.0,15.0,34.0,22.0,18.0,29.0,25.0,17.0,33.0,22.0,23.0,33.0,20.0,31.0,24.0,27.0,19.0,27.0,22.0,22.0,26.0,19.0,21.0,18.0,26.0,19.0,22.0,14.0,20.0,25.0,26.0,21.0,21.0,16.0,17.0,16.0,23.0,19.0,17.0,12.0,8.0,15.0,13.0,8.0,9.0,8.0,7.0,10.0,14.0,5.0,7.0,12.0,13.0,11.0,3.0,6.0,6.0,2.0,3.0,2.0,0.0,4.0,2.0,0.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,758,1330,245,0,241,260,257,208,189,143,118,120,135,116,103,107,91,79,53,43,45,13,11,1,0,0,2305,2,2,24,0,2306,3,0,24,0,771,6,110,200,68,1,419,758,0,1348,983,2,0,0,11,1,0,0,0,2,0,0,8,2311,0,5,79,25,2,1,0,332,1889,0,45,123,16,1,0,2148,0,3.234093637454982,0.0,4.480836236933798,0.0,5.51650235747964,3,29,9,1,1,0,103,510,0,107,68,84,115,131,74,34,17,15,5,5,0,0,0,1,0,560,96,76,580,85,571,74,582,43,613,3,653,294,362,4,652,427,229,155,501,34,121,10,646,128,528,26,630,549,107,552,104,5,651,115,429,107,5,0,548,108,0,0,4,0,0,0,0,1,0,0,2,649,0,1.8902439024390243,1.666158536585366,0.0,1.0,1.0,51.86128048780488 +30205,Colón,Chagres,Palmas Bellas,861,5,0,0,0,0,0,0,0,0,0,0,1,0,0,0,368,222,39,541,49,0,0,0,39,0,569,0,3,30,4,4,16,0,3,338,0,272,12,6,1,0,563,48,5,0,0,13,629,0,143,54,9,26,5,0,1,9,587,30,1,1,535,71,0,10,0,12,1,509,1,113,1,0,4,1,231,335,0,29,34,0,0,454,1,12,13,16,41,25,0,48,18,1,0,867,1.9714285714285715,8.397802197802198,2.476923076923077,9.826373626373629,1.0079491255961843,3.3322734499205087,2.0508744038155804,635,356,832,50,141,22,21,13,2,34,4,8,33,0,31,28,4,15,15,6,9,1617,387,0,289,1715,0,1443,561,0,1838,166,0,640,1364,0,589,51,1267,97,0,99,22,33,12,50,57,79,62,73,270,0,0,0,75,108,165,82,131,490,5,6,15,28,39,40,32,22,4,0,5,0,0,0,0,0,949,93,718,0,0,74,3,56,374,233,15,40,465,122,126,19,95,1,178,5,0,1093,1058,191,327,20,427,9,0,37,0,13,102,22,477,0,0,0,1073,564,0,6,27,83,2,5,0,0,0,30,35,59,39,221,138,148,69,303,1047,160,108,114,182,147,185,83,70,31,10,6,4,1,3,0,30.0,37.0,45.0,35.0,48.0,36.0,34.0,49.0,39.0,38.0,40.0,47.0,42.0,43.0,37.0,41.0,40.0,40.0,43.0,29.0,39.0,38.0,23.0,26.0,39.0,38.0,49.0,34.0,31.0,22.0,34.0,36.0,35.0,24.0,29.0,20.0,29.0,31.0,33.0,29.0,29.0,28.0,28.0,27.0,20.0,24.0,20.0,29.0,26.0,16.0,20.0,23.0,19.0,15.0,24.0,23.0,10.0,26.0,23.0,22.0,14.0,14.0,23.0,17.0,12.0,7.0,16.0,11.0,8.0,11.0,11.0,8.0,16.0,6.0,10.0,6.0,8.0,4.0,3.0,11.0,5.0,5.0,8.0,3.0,2.0,2.0,1.0,1.0,3.0,1.0,5.0,1.0,4.0,1.0,1.0,2.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,600,1364,186,1,195,196,209,193,165,174,158,142,132,115,101,104,80,53,51,32,23,8,12,6,1,1,2131,4,4,12,0,2131,4,4,12,0,646,25,189,227,61,9,394,600,0,1345,799,7,0,1,5,3,0,0,0,0,1,0,34,2107,0,42,177,141,87,4,14,1288,398,0,331,389,64,5,1,1361,0,2.486766398158803,0.0,3.509433962264151,0.0,7.775918177591818,17,52,46,39,3,7,368,103,0,8,18,20,36,83,101,84,72,101,48,29,16,10,1,7,0,591,44,492,143,437,198,55,580,527,108,94,541,266,369,38,597,583,52,471,164,336,135,123,512,442,193,117,518,231,404,217,418,8,627,122,334,157,22,0,432,203,1,0,2,3,0,0,0,0,1,0,10,619,0,1.721259842519685,1.6661417322834646,1.0,1.1153846153846154,1.1153846153846154,49.78864353312303 +30206,Colón,Chagres,Piña,402,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,78,35,237,18,2,0,0,32,1,268,0,0,5,3,1,13,0,0,136,0,146,8,0,0,0,266,12,2,0,0,10,290,0,83,23,1,9,3,0,0,1,268,21,0,0,242,31,1,8,0,8,0,197,0,92,0,0,1,0,72,186,0,18,14,0,0,204,35,4,4,24,11,3,0,3,1,1,0,409,4.397489539748954,12.97907949790795,6.937238493723849,23.774058577405857,1.0034482758620689,3.279310344827586,2.093103448275862,291,156,323,21,63,2,4,8,0,7,4,3,6,0,22,3,6,1,6,2,7,607,218,0,62,763,0,553,272,0,742,83,0,230,595,0,216,14,558,37,0,37,15,19,1,24,28,31,47,26,134,1,3,5,27,46,84,32,42,150,4,3,4,15,20,16,4,6,0,0,1,0,0,0,0,0,448,9,276,0,0,2,0,31,129,83,7,26,169,64,60,9,40,0,88,27,0,470,418,71,125,9,227,0,0,25,0,6,30,9,127,0,0,0,505,193,5,3,7,19,0,1,0,0,0,10,12,14,18,92,75,47,25,164,467,51,61,58,58,54,69,43,15,8,3,0,0,0,1,0,12.0,18.0,15.0,18.0,21.0,13.0,14.0,14.0,19.0,11.0,27.0,18.0,11.0,12.0,17.0,13.0,14.0,10.0,10.0,14.0,17.0,15.0,15.0,14.0,14.0,18.0,18.0,15.0,11.0,14.0,8.0,13.0,5.0,17.0,16.0,9.0,6.0,11.0,6.0,6.0,9.0,10.0,16.0,10.0,10.0,13.0,8.0,11.0,12.0,8.0,9.0,11.0,13.0,9.0,10.0,10.0,10.0,8.0,8.0,10.0,8.0,7.0,8.0,8.0,8.0,6.0,4.0,9.0,8.0,5.0,6.0,6.0,5.0,8.0,5.0,2.0,3.0,2.0,4.0,2.0,4.0,2.0,2.0,1.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,240,553,95,0,84,71,85,61,75,76,59,38,55,52,52,46,39,32,30,13,11,4,1,3,1,0,882,4,2,0,0,882,4,2,0,0,203,5,101,151,28,3,157,240,0,506,381,1,0,5,3,1,0,0,0,3,0,0,7,869,0,31,3,110,46,1,1,400,296,0,129,200,32,4,2,521,0,2.6489675516224187,0.0,3.404858299595141,0.0,7.177927927927928,10,2,37,22,0,0,134,86,0,12,12,17,23,40,42,39,33,46,17,4,3,2,0,1,0,277,14,225,66,208,83,21,270,242,49,43,248,139,152,5,286,263,28,217,74,114,103,24,267,232,59,55,236,123,168,91,200,1,290,73,154,58,6,0,206,85,0,1,0,1,0,0,0,2,0,0,5,282,0,1.6151202749140894,1.436426116838488,0.0,1.0,1.0,51.89003436426117 +30207,Colón,Chagres,Salud,1005,3,6,0,0,0,0,0,0,0,0,0,0,0,0,9,342,306,31,610,47,0,0,1,28,2,502,0,6,82,8,7,77,0,6,175,0,483,21,4,0,5,604,77,1,1,0,5,688,0,207,59,23,24,13,0,0,13,642,32,1,0,443,211,0,2,1,31,0,528,0,143,1,1,14,1,162,357,0,56,113,0,0,460,16,15,54,85,2,20,0,25,11,0,0,1014,4.401260504201681,14.067226890756302,5.044117647058823,16.281512605042018,1.004360465116279,3.143895348837209,2.052325581395349,691,454,1057,108,139,7,6,17,4,33,7,2,13,0,43,14,3,16,8,10,9,1663,662,0,210,2115,0,1514,811,0,2048,277,0,780,1545,0,763,17,1456,89,0,102,38,62,7,74,90,95,99,114,515,0,0,1,71,118,203,56,119,417,0,0,31,21,23,15,20,27,3,2,2,0,0,0,0,0,1168,35,789,0,0,30,0,63,454,195,16,61,412,257,116,7,65,2,332,2,0,1339,1199,211,373,7,536,5,0,61,0,31,75,16,538,1,0,0,1430,492,1,0,13,51,3,2,0,0,0,20,30,26,24,194,271,129,60,449,1400,166,102,164,276,137,162,62,45,16,2,2,1,0,2,1,62.0,52.0,49.0,50.0,58.0,51.0,63.0,51.0,56.0,54.0,60.0,54.0,60.0,50.0,53.0,48.0,48.0,72.0,50.0,43.0,39.0,44.0,38.0,40.0,41.0,40.0,37.0,41.0,25.0,35.0,30.0,36.0,38.0,35.0,41.0,25.0,33.0,34.0,29.0,29.0,36.0,29.0,25.0,20.0,26.0,27.0,30.0,25.0,22.0,24.0,24.0,21.0,26.0,29.0,16.0,12.0,21.0,18.0,21.0,16.0,13.0,15.0,19.0,11.0,15.0,12.0,18.0,9.0,14.0,18.0,9.0,14.0,6.0,6.0,11.0,6.0,4.0,7.0,10.0,7.0,8.0,10.0,4.0,2.0,8.0,3.0,4.0,4.0,3.0,0.0,1.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,823,1512,203,0,271,275,277,261,202,178,180,150,136,128,116,88,73,71,46,34,32,14,5,1,0,0,2526,5,5,2,0,2526,5,5,2,0,801,10,174,251,45,3,431,823,0,1443,1089,6,0,10,11,5,0,0,0,18,0,0,61,2433,0,57,103,81,27,1,7,1360,902,0,208,320,77,1,2,1930,0,2.65249734325186,0.0,3.921824104234528,0.0,6.693459416863672,21,35,33,11,0,4,357,230,0,7,21,18,49,140,141,104,57,88,32,14,10,8,0,2,0,630,61,432,259,390,301,64,627,432,259,70,621,236,455,13,678,596,95,405,286,369,36,79,612,537,154,107,584,344,347,311,380,6,685,121,418,142,10,0,545,146,0,4,1,2,0,0,0,7,0,0,20,657,0,1.9377713458755428,1.735166425470333,1.25,1.0625,1.0625,48.98408104196816 +30301,Colón,Donoso,Miguel de La Borda,1078,0,0,1,0,0,0,0,7,0,0,2,1,0,0,0,241,350,62,545,46,1,0,1,38,22,176,0,8,339,8,7,110,0,5,142,16,460,12,21,2,0,459,187,0,0,0,7,653,0,240,72,9,49,56,0,0,6,615,31,1,0,186,467,0,0,0,0,0,281,0,299,1,5,66,1,47,241,0,32,333,0,0,419,35,8,23,52,0,101,0,1,14,0,0,1089,6.552863436123348,23.090308370044053,6.68942731277533,23.3215859030837,1.010719754977029,3.165390505359877,2.090352220520674,663,453,984,64,118,9,20,15,3,29,15,4,31,0,35,19,1,17,8,4,12,1404,814,0,162,2056,0,1008,1210,0,2002,216,0,718,1500,0,693,25,1394,106,0,113,38,42,3,73,62,97,105,124,688,0,0,1,84,118,196,54,82,252,4,1,14,15,14,16,13,6,1,1,1,0,0,0,0,0,822,33,1069,0,2,7,9,28,404,562,37,38,149,71,48,2,49,0,505,16,7,1317,1091,88,138,2,408,42,0,162,7,56,119,14,702,7,0,0,1584,302,2,4,9,22,0,1,0,0,2,13,13,17,30,85,368,66,24,237,1751,188,113,84,89,51,66,16,31,4,4,2,1,0,1,7,34.0,47.0,52.0,57.0,41.0,52.0,41.0,57.0,52.0,51.0,66.0,66.0,45.0,58.0,52.0,46.0,48.0,37.0,35.0,33.0,32.0,38.0,31.0,37.0,32.0,33.0,31.0,32.0,28.0,40.0,42.0,29.0,37.0,27.0,26.0,20.0,34.0,34.0,31.0,22.0,29.0,25.0,34.0,30.0,23.0,25.0,23.0,29.0,28.0,25.0,28.0,29.0,24.0,16.0,26.0,23.0,16.0,20.0,16.0,18.0,20.0,21.0,20.0,22.0,13.0,12.0,12.0,12.0,15.0,25.0,14.0,10.0,16.0,7.0,7.0,10.0,12.0,9.0,5.0,7.0,6.0,5.0,3.0,3.0,2.0,1.0,4.0,2.0,4.0,2.0,4.0,3.0,1.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,771,1418,218,1,231,253,287,199,170,164,161,141,141,130,123,93,96,76,54,43,19,13,9,4,0,1,2388,2,11,7,0,2390,2,9,7,0,807,12,82,227,59,0,450,771,0,1339,1067,2,0,5,47,11,4,6,4,0,2,0,60,2269,0,79,150,68,25,0,5,1268,813,0,106,163,27,3,2,2107,0,3.1204250295159386,0.0,4.2571912013536375,0.0,6.120431893687708,23,43,28,12,0,3,334,220,0,144,65,70,102,90,69,36,19,33,8,14,3,6,0,1,0,561,102,210,453,247,416,123,540,189,474,16,647,169,494,13,650,450,213,236,427,174,62,37,626,182,481,27,636,426,237,386,277,3,660,119,400,136,8,7,549,114,0,4,12,2,1,2,2,0,0,0,16,624,0,1.9656716417910447,1.628358208955224,0.0,1.0384615384615383,1.0384615384615383,51.01508295625943 +30302,Colón,Donoso,Coclé del Norte,1366,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,541,148,703,65,37,58,1,52,0,0,0,59,571,11,20,243,0,12,26,4,692,39,92,10,53,532,371,0,0,0,13,916,0,263,56,1,78,54,2,0,6,888,22,0,0,104,787,3,1,8,1,12,665,0,87,0,11,153,0,75,206,2,109,508,16,0,489,97,6,8,121,6,179,0,0,10,0,0,1370,6.249146757679181,20.281569965870307,6.928327645051194,23.5443686006826,1.0065502183406114,2.9224890829694323,1.7631004366812226,922,685,2156,115,197,23,32,44,6,71,14,6,30,0,47,19,10,4,23,4,9,1613,2215,0,118,3710,0,634,3194,0,3115,713,0,1220,2608,0,1180,40,2115,493,0,503,53,112,5,179,189,248,221,231,1104,1,2,2,120,162,340,70,98,148,0,0,8,7,10,8,2,3,0,0,2,0,0,0,0,0,1330,32,1754,0,5,4,5,10,645,1023,46,30,150,82,42,14,46,3,827,193,1,2275,2026,35,189,13,861,24,2,233,1,59,58,9,2030,313,0,0,2926,176,2,0,3,7,0,2,0,0,1,8,10,7,25,69,769,64,37,372,3311,259,99,92,66,48,47,33,26,3,3,1,0,0,0,313,98.0,130.0,132.0,113.0,131.0,96.0,124.0,118.0,113.0,130.0,120.0,130.0,106.0,104.0,116.0,108.0,100.0,94.0,95.0,87.0,81.0,58.0,79.0,70.0,66.0,60.0,50.0,68.0,76.0,50.0,55.0,64.0,54.0,56.0,40.0,54.0,36.0,52.0,39.0,54.0,47.0,53.0,46.0,47.0,26.0,22.0,28.0,33.0,29.0,32.0,27.0,25.0,31.0,22.0,24.0,34.0,29.0,22.0,23.0,19.0,18.0,11.0,11.0,26.0,16.0,6.0,16.0,10.0,9.0,20.0,13.0,14.0,13.0,8.0,9.0,6.0,6.0,10.0,6.0,8.0,7.0,3.0,10.0,3.0,1.0,3.0,2.0,4.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1761,2347,193,0,604,581,576,484,354,304,269,235,219,144,129,127,82,61,57,36,24,12,3,0,0,0,4149,9,11,132,0,4149,10,10,132,0,1374,11,85,224,57,3,789,1758,0,2509,1782,10,0,8,901,52,0,0,6,0,1,0,13,3320,0,49,37,66,9,0,0,325,3815,0,93,115,12,2,0,4079,0,2.9316901408450704,0.0,4.65162037037037,0.0,4.5019762845849804,21,14,17,4,0,0,77,789,0,282,98,84,116,95,69,38,32,36,10,5,1,1,1,0,54,649,273,130,792,230,692,187,735,95,827,4,918,234,688,0,922,478,444,245,677,143,102,23,899,133,789,12,910,559,363,514,408,21,901,116,603,181,22,0,788,134,0,0,167,12,0,0,0,0,0,0,4,739,0,2.4674620390455533,2.1973969631236443,1.0,1.0,1.0,45.399132321041215 +30303,Colón,Donoso,El Guásimo,1101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,709,28,683,65,1,5,0,22,0,0,0,8,417,11,14,314,0,12,0,0,675,41,58,2,0,198,575,0,0,0,3,776,0,210,33,0,40,42,0,0,4,758,14,0,0,17,758,0,1,0,0,0,662,1,2,0,10,101,0,6,89,0,82,599,0,0,266,104,4,45,124,4,229,0,0,0,0,0,1101,6.010810810810811,19.67837837837838,6.981081081081081,23.975675675675674,1.006443298969072,3.106958762886598,1.972938144329897,781,571,1845,57,116,24,23,24,7,39,2,1,4,0,33,25,20,4,17,3,7,1009,2120,0,30,3099,0,481,2648,0,2751,378,0,1064,2065,0,1060,4,1886,179,0,181,72,76,1,131,151,228,143,173,1093,0,0,1,92,146,357,45,60,163,0,0,3,2,3,2,2,3,1,0,0,0,0,0,0,0,1118,31,1427,0,0,0,26,8,548,706,40,125,53,101,40,4,16,0,893,37,0,1913,1581,44,137,13,684,38,0,227,1,136,141,13,1167,1,0,0,2396,170,1,1,1,6,1,0,0,0,1,10,12,4,10,48,626,33,8,397,2744,263,135,118,113,59,30,11,9,5,4,1,1,0,0,1,72.0,104.0,82.0,107.0,86.0,87.0,77.0,113.0,91.0,99.0,87.0,103.0,87.0,93.0,78.0,95.0,91.0,74.0,77.0,71.0,50.0,43.0,48.0,44.0,50.0,52.0,42.0,61.0,42.0,36.0,45.0,45.0,36.0,26.0,35.0,43.0,34.0,46.0,35.0,32.0,37.0,32.0,40.0,33.0,36.0,29.0,24.0,33.0,27.0,30.0,39.0,25.0,33.0,31.0,25.0,17.0,22.0,18.0,23.0,18.0,19.0,15.0,18.0,19.0,14.0,16.0,13.0,14.0,18.0,9.0,14.0,13.0,13.0,7.0,4.0,17.0,7.0,9.0,11.0,5.0,1.0,6.0,6.0,4.0,7.0,3.0,1.0,1.0,5.0,4.0,2.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,1366,1910,215,3,451,467,448,408,235,233,187,190,178,143,153,98,85,70,51,49,24,14,5,2,0,3,3476,2,0,16,0,3476,2,0,16,0,970,3,83,300,63,1,708,1366,0,2059,1433,2,0,4,11,0,0,0,0,1,0,0,20,3458,0,3,101,11,4,1,0,781,2593,0,39,88,14,0,0,3353,0,3.3389529724933453,0.0,5.121037463976945,0.0,4.997996565540928,0,26,4,0,0,0,208,543,0,105,88,90,126,184,98,40,19,14,9,4,1,2,0,1,0,368,413,26,755,61,720,106,675,18,763,1,780,287,494,0,781,322,459,77,704,46,31,2,779,143,638,5,776,666,115,613,168,2,779,106,531,140,4,0,680,101,2,2,4,0,0,0,0,1,0,0,6,768,0,2.449423815620998,2.0243277848911654,1.0,1.0,1.0,48.04749679075738 +30304,Colón,Donoso,Gobea,367,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,143,85,18,213,15,0,0,0,17,1,150,0,3,60,11,4,17,0,1,68,0,171,4,1,0,2,198,44,0,0,1,3,246,0,77,26,0,3,15,0,0,3,231,11,1,0,145,100,0,0,0,1,0,114,0,129,2,0,1,0,62,115,0,15,54,0,0,146,34,6,7,29,1,12,0,7,4,0,0,370,6.455555555555556,21.988888888888887,6.977777777777778,24.0,1.008130081300813,3.402439024390244,2.3008130081300813,249,153,350,19,95,4,5,5,3,20,6,1,16,1,9,5,3,5,0,5,4,635,219,0,81,773,0,429,425,0,787,67,0,272,582,0,244,28,549,33,0,33,17,14,1,26,17,49,36,43,225,0,0,2,41,46,74,20,32,132,1,2,7,9,11,9,3,2,0,0,0,0,0,0,2,0,328,33,389,0,0,8,19,12,158,180,27,12,84,46,39,5,17,0,152,1,0,502,425,48,118,5,143,13,1,16,0,6,35,4,239,2,0,0,570,157,2,0,7,12,0,0,2,0,0,6,8,8,8,47,100,37,11,136,580,88,60,52,45,45,22,11,11,4,3,4,0,0,0,2,15.0,20.0,23.0,15.0,20.0,18.0,15.0,20.0,16.0,15.0,25.0,24.0,21.0,17.0,18.0,13.0,17.0,21.0,19.0,17.0,17.0,17.0,14.0,20.0,23.0,13.0,11.0,8.0,15.0,5.0,13.0,12.0,15.0,8.0,17.0,11.0,12.0,11.0,7.0,14.0,7.0,13.0,8.0,8.0,14.0,8.0,9.0,6.0,8.0,12.0,5.0,8.0,10.0,8.0,4.0,6.0,9.0,10.0,9.0,10.0,5.0,6.0,5.0,7.0,9.0,9.0,6.0,14.0,5.0,4.0,2.0,2.0,6.0,2.0,8.0,8.0,3.0,3.0,2.0,2.0,0.0,0.0,2.0,4.0,2.0,3.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,282,554,91,0,93,84,105,87,91,52,65,55,50,43,35,44,32,38,20,18,8,5,2,0,0,0,916,4,3,4,0,916,4,3,4,0,318,8,34,60,22,2,201,282,0,424,501,2,0,7,2,0,3,0,1,3,0,0,17,894,0,55,113,74,24,0,1,472,188,0,63,104,16,0,0,744,0,2.807121661721068,0.0,3.891774891774892,0.0,6.568500539374326,19,34,29,10,0,0,115,42,0,26,23,22,27,45,30,21,16,13,14,4,4,2,0,0,1,230,19,143,106,127,122,30,219,131,118,16,233,116,133,2,247,207,42,138,111,117,21,26,223,156,93,38,211,127,122,141,108,4,245,53,124,62,10,2,202,47,0,2,1,0,1,0,0,2,0,0,4,239,0,2.0,1.6932270916334662,0.0,1.0,1.0,50.95180722891566 +30305,Colón,Donoso,Río Indio,457,0,3,0,0,0,0,1,0,0,0,0,2,0,0,0,137,161,14,274,24,0,0,1,13,0,184,0,0,106,12,0,9,0,1,100,0,200,0,12,0,0,247,64,0,0,0,1,312,0,75,22,19,19,13,0,0,9,294,9,0,0,194,117,0,0,0,1,0,211,0,97,0,1,3,0,56,161,0,23,72,0,0,50,17,94,0,23,25,39,0,30,34,0,0,463,4.522388059701493,16.52238805970149,5.776119402985074,19.71641791044776,1.0064102564102564,3.4166666666666665,2.1474358974358974,316,196,448,40,83,8,12,8,1,15,6,1,10,0,22,13,2,5,18,1,3,689,361,0,89,961,0,572,478,0,957,93,0,363,687,0,343,20,646,41,0,41,6,19,11,31,36,44,41,60,226,0,0,0,36,50,97,21,52,207,1,0,8,10,17,18,5,13,0,0,0,0,0,0,0,0,385,70,470,0,1,29,27,13,214,184,25,34,159,26,42,1,23,0,182,5,1,600,544,85,117,2,203,18,1,12,1,13,63,5,202,1,0,0,643,238,1,1,8,34,0,0,0,0,1,4,11,24,17,53,142,42,30,131,715,101,59,52,59,50,52,14,26,9,4,0,1,1,0,1,23.0,19.0,33.0,19.0,21.0,15.0,17.0,32.0,18.0,22.0,31.0,31.0,21.0,19.0,20.0,20.0,24.0,19.0,25.0,22.0,24.0,19.0,14.0,19.0,26.0,19.0,16.0,19.0,18.0,11.0,16.0,13.0,13.0,21.0,11.0,11.0,10.0,15.0,9.0,14.0,19.0,7.0,7.0,15.0,8.0,10.0,8.0,13.0,19.0,10.0,8.0,8.0,13.0,12.0,10.0,6.0,21.0,10.0,8.0,12.0,8.0,4.0,11.0,11.0,9.0,4.0,10.0,5.0,7.0,11.0,5.0,5.0,2.0,5.0,4.0,6.0,9.0,4.0,0.0,9.0,6.0,3.0,2.0,1.0,0.0,2.0,2.0,1.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,341,695,108,0,115,104,122,110,102,83,74,59,56,60,51,57,43,37,21,28,12,9,1,0,0,0,1130,6,2,6,0,1130,6,2,6,0,335,6,47,129,23,0,263,341,0,708,431,5,0,3,5,0,0,0,0,0,1,1,15,1119,0,54,86,77,35,2,5,560,325,0,101,140,15,2,0,886,0,2.648275862068965,0.0,3.967857142857143,0.0,6.962412587412588,19,23,25,17,2,3,143,84,0,39,16,17,42,56,37,27,18,28,17,5,6,4,1,1,0,283,33,167,149,159,157,48,268,168,148,43,273,102,214,2,314,245,71,178,138,113,65,41,275,192,124,64,252,155,161,136,180,5,311,55,179,79,3,1,259,57,0,2,3,0,0,0,0,0,0,0,2,309,0,1.892744479495268,1.7160883280757098,0.0,1.0,1.0,50.901898734177216 +30402,Colón,Portobelo,Cacique,207,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,6,5,93,2,0,1,0,4,0,93,0,1,6,0,0,0,0,0,43,0,52,0,2,0,3,94,2,1,0,0,3,100,0,82,15,1,6,4,0,0,1,83,16,0,0,90,8,1,1,0,0,0,64,1,35,0,0,0,0,62,33,0,1,4,0,0,74,3,2,0,6,0,1,0,14,0,0,0,208,5.311688311688312,7.818181818181818,6.831168831168832,23.20779220779221,1.01,3.92,2.79,101,64,96,6,27,1,0,7,2,3,1,0,0,0,9,0,0,1,1,0,2,239,48,0,68,219,0,227,60,0,270,17,0,87,200,0,82,5,194,6,0,6,5,5,0,9,8,7,9,11,53,0,0,0,8,18,19,11,9,64,0,0,6,4,15,7,5,4,0,1,3,0,0,0,0,0,134,4,119,0,0,3,0,11,48,51,7,2,66,17,8,1,10,0,11,22,0,166,142,26,41,1,66,0,0,1,0,0,11,0,56,0,0,0,148,85,0,1,2,18,0,3,0,0,0,5,6,9,3,41,21,12,12,29,138,22,13,20,29,23,28,7,12,5,1,5,0,0,5,0,8.0,4.0,5.0,4.0,3.0,6.0,6.0,8.0,4.0,3.0,9.0,7.0,3.0,7.0,5.0,3.0,3.0,5.0,4.0,3.0,4.0,6.0,4.0,8.0,2.0,5.0,5.0,7.0,2.0,2.0,2.0,8.0,4.0,4.0,5.0,4.0,4.0,4.0,5.0,2.0,3.0,4.0,3.0,5.0,3.0,2.0,5.0,2.0,6.0,1.0,4.0,2.0,5.0,6.0,4.0,5.0,4.0,5.0,2.0,1.0,3.0,2.0,3.0,4.0,2.0,6.0,5.0,4.0,2.0,1.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,82,191,35,0,24,27,31,18,24,21,23,19,18,16,21,17,14,18,5,2,4,3,2,1,0,0,291,8,8,1,0,291,9,7,1,0,107,2,27,41,7,1,41,82,0,146,147,15,0,2,0,0,0,0,0,0,0,0,7,299,0,27,31,16,19,0,0,163,52,0,50,43,11,0,2,202,0,2.221311475409836,0.0,3.1341463414634148,0.0,8.14935064935065,6,10,8,6,0,0,54,17,0,1,0,6,3,15,20,16,8,15,6,5,2,0,0,4,0,98,3,84,17,76,25,15,86,89,12,42,59,50,51,1,100,97,4,85,16,66,19,32,69,83,18,46,55,67,34,35,66,2,99,23,54,24,0,0,76,25,0,0,0,0,0,0,0,0,0,0,3,98,0,1.6435643564356437,1.405940594059406,0.0,0.0,0.0,50.75247524752475 +30403,Colón,Portobelo,Puerto Lindo o Garrote,478,8,5,0,0,0,0,0,0,0,0,2,2,0,0,5,287,26,13,304,14,1,1,0,11,0,326,0,2,0,0,0,3,0,0,200,0,123,0,8,0,0,318,8,1,0,0,4,331,0,94,23,13,14,16,0,0,27,281,23,0,0,311,13,0,5,0,1,1,286,2,29,13,1,0,0,140,176,1,12,2,0,0,319,5,0,0,0,0,1,0,4,2,0,0,495,6.719135802469136,23.608024691358025,6.848765432098766,23.83333333333333,1.0060422960725075,3.205438066465257,2.1540785498489425,337,182,320,54,60,7,20,11,3,9,2,2,4,0,17,3,5,4,7,1,1,773,166,0,174,765,0,692,247,0,866,73,0,263,676,0,252,11,641,35,0,37,17,20,1,31,30,38,44,36,165,0,0,0,32,42,101,27,30,192,0,1,8,6,15,25,10,18,9,0,3,0,0,0,1,0,451,26,354,0,0,22,2,24,152,154,16,8,267,34,50,10,19,2,45,46,0,524,487,53,224,8,170,3,0,15,0,0,25,4,233,1,0,0,541,225,1,2,8,44,6,3,1,0,0,21,7,24,10,89,39,73,64,150,469,74,50,57,65,117,75,43,37,7,12,1,1,0,2,1,20.0,15.0,15.0,22.0,18.0,16.0,19.0,21.0,15.0,19.0,20.0,21.0,17.0,18.0,19.0,18.0,15.0,18.0,14.0,12.0,20.0,11.0,13.0,20.0,20.0,21.0,24.0,18.0,16.0,18.0,12.0,13.0,15.0,16.0,9.0,13.0,12.0,11.0,15.0,16.0,14.0,9.0,13.0,15.0,11.0,9.0,10.0,11.0,13.0,15.0,11.0,10.0,12.0,16.0,9.0,5.0,10.0,15.0,12.0,8.0,6.0,10.0,10.0,2.0,5.0,9.0,4.0,3.0,4.0,4.0,8.0,5.0,3.0,6.0,3.0,3.0,2.0,2.0,6.0,0.0,3.0,1.0,2.0,2.0,2.0,3.0,2.0,1.0,0.0,2.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,275,651,85,0,90,90,95,77,84,97,65,67,62,58,58,50,33,24,25,13,10,8,5,0,0,0,933,48,24,6,0,933,51,21,6,0,347,7,86,95,25,8,168,275,0,468,492,51,0,0,20,0,0,0,0,1,0,0,1,989,0,22,35,188,52,0,0,134,580,0,123,111,22,1,3,751,0,2.19240506329114,0.0,3.1203007518796992,0.0,7.416419386745797,10,14,44,24,0,0,41,204,0,12,13,11,23,40,53,47,32,46,23,17,5,8,1,2,0,328,9,310,27,293,44,35,302,306,31,85,252,133,204,10,327,314,23,262,75,240,22,73,264,213,124,121,216,79,258,84,253,0,337,92,169,72,4,0,230,107,0,0,6,0,0,0,0,0,0,0,1,330,0,1.5548961424332344,1.4451038575667656,1.5,1.0,1.0,47.97329376854599 +30404,Colón,Portobelo,Isla Grande,652,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,300,12,15,311,1,8,0,0,7,0,315,0,1,9,0,0,2,0,0,237,0,81,4,4,1,0,320,1,0,0,0,6,327,0,247,36,3,18,21,0,0,23,273,31,0,0,298,20,0,2,0,7,0,240,0,76,8,1,2,0,155,165,0,4,3,0,0,196,6,5,0,0,0,2,0,117,0,1,0,656,3.4603960396039604,10.915841584158416,3.658415841584159,12.227722772277229,1.0061162079510704,3.287461773700306,2.220183486238532,333,149,327,31,94,3,6,8,1,20,2,2,12,0,21,7,1,2,6,1,0,710,203,0,97,816,0,550,363,0,840,73,0,265,648,0,254,11,619,29,0,30,18,16,8,15,33,44,32,34,172,0,0,4,40,30,89,29,37,208,1,1,10,8,17,12,5,15,2,0,3,0,0,0,0,0,453,25,324,0,4,11,3,18,146,137,12,11,242,25,51,50,33,0,18,56,0,504,484,50,182,46,177,20,0,0,0,2,32,5,241,1,0,0,513,243,6,2,5,29,1,3,0,0,0,19,3,13,10,104,19,76,60,174,473,99,49,76,80,87,71,25,20,2,5,0,0,0,0,1,19.0,24.0,15.0,17.0,18.0,17.0,19.0,16.0,24.0,17.0,16.0,23.0,11.0,17.0,16.0,22.0,12.0,12.0,10.0,17.0,13.0,16.0,21.0,18.0,20.0,19.0,19.0,19.0,15.0,14.0,14.0,12.0,18.0,19.0,12.0,16.0,17.0,10.0,6.0,12.0,15.0,11.0,10.0,9.0,13.0,8.0,9.0,4.0,10.0,12.0,11.0,15.0,12.0,14.0,11.0,9.0,16.0,11.0,12.0,3.0,10.0,5.0,9.0,3.0,11.0,7.0,9.0,7.0,6.0,6.0,4.0,3.0,3.0,5.0,5.0,4.0,1.0,4.0,2.0,3.0,5.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,269,636,83,0,93,93,83,73,88,86,75,61,58,43,63,51,38,35,20,14,10,3,0,1,0,0,945,36,6,1,0,947,37,3,1,0,305,5,136,86,23,4,160,269,0,555,410,23,0,1,3,0,0,0,0,0,0,0,6,978,0,252,15,103,35,1,6,373,203,0,99,129,20,1,0,739,0,2.307888040712468,0.0,3.1977611940298507,0.0,7.350202429149798,84,7,30,13,1,4,118,76,0,15,30,12,28,44,52,55,32,36,11,10,1,3,0,0,0,325,8,298,35,265,68,17,316,296,37,106,227,137,196,11,322,305,28,269,64,261,8,40,293,231,102,59,274,69,264,60,273,1,332,98,142,81,12,0,201,132,0,1,2,0,0,0,0,0,0,0,3,327,0,1.5135135135135136,1.4534534534534536,0.0,1.0,1.0,49.28528528528528 +30405,Colón,Portobelo,María Chiquita,1190,1,291,0,0,0,3,0,0,0,0,0,0,0,0,13,809,42,15,838,26,2,0,0,12,1,852,4,1,6,1,4,11,0,0,609,4,230,1,4,0,31,847,16,2,0,0,14,879,0,354,68,101,50,30,0,3,93,724,55,0,4,839,25,1,13,1,0,0,444,6,425,2,0,1,1,501,355,0,17,6,0,11,736,30,2,1,2,1,14,48,32,2,0,0,1485,5.667953667953668,18.868725868725868,5.806949806949807,19.474903474903478,1.023890784982935,3.369738339021616,2.156996587030717,900,502,1213,84,176,11,28,8,4,30,14,3,130,0,39,20,9,3,18,1,7,2327,576,0,712,2191,0,2029,874,0,2678,225,0,1092,1811,0,968,124,1719,92,0,100,38,52,5,86,89,99,88,104,321,0,0,6,135,156,300,99,141,720,1,1,36,47,64,79,65,45,8,4,14,0,0,0,0,0,1027,153,1350,0,5,70,45,146,669,467,24,44,766,61,156,30,96,2,26,2,0,1597,1506,183,631,32,277,15,0,1,0,5,39,7,921,28,0,0,1439,850,6,4,38,175,6,12,0,0,0,41,79,54,83,228,18,198,151,328,1721,154,101,138,180,197,329,109,83,31,21,6,3,1,1,28,44.0,59.0,40.0,57.0,49.0,59.0,63.0,67.0,76.0,59.0,80.0,54.0,60.0,61.0,54.0,54.0,70.0,71.0,77.0,67.0,70.0,57.0,39.0,34.0,52.0,57.0,47.0,46.0,29.0,45.0,37.0,46.0,45.0,52.0,45.0,34.0,45.0,46.0,38.0,32.0,32.0,41.0,29.0,38.0,37.0,35.0,39.0,25.0,41.0,30.0,38.0,32.0,34.0,28.0,32.0,40.0,18.0,33.0,32.0,26.0,29.0,21.0,23.0,23.0,15.0,20.0,10.0,17.0,16.0,18.0,11.0,14.0,8.0,12.0,4.0,5.0,12.0,9.0,5.0,8.0,4.0,9.0,6.0,3.0,3.0,1.0,4.0,1.0,3.0,2.0,2.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,882,2006,214,1,249,324,309,339,252,224,225,195,177,170,164,149,111,81,49,39,25,11,5,2,2,1,3025,49,10,19,0,3025,51,8,19,0,660,27,149,486,62,14,824,881,0,1612,1455,36,0,26,48,4,0,0,3,47,1,0,17,2957,0,361,336,275,166,5,5,857,1098,0,574,690,143,10,6,1680,0,2.099180327868853,0.0,3.050931677018633,0.0,8.149210441508218,120,79,81,59,1,4,234,322,0,39,39,32,64,114,106,141,83,140,66,31,18,17,4,4,2,865,35,807,93,698,202,101,799,810,90,172,728,428,472,102,798,821,79,789,111,485,304,261,639,620,280,300,600,142,758,86,814,11,889,175,534,170,21,3,580,320,1,9,11,4,0,0,0,7,0,0,9,860,0,1.7685492801771872,1.6677740863787376,1.6,1.0571428571428572,1.0571428571428572,49.35817575083426 +30501,Colón,Santa Isabel,Palenque,381,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,154,4,5,156,2,4,0,0,1,0,156,0,1,3,0,0,3,0,0,151,0,10,0,2,0,0,158,1,2,0,0,2,163,0,151,14,20,7,27,0,0,14,120,29,0,0,156,5,0,0,0,2,0,62,0,100,0,0,1,0,86,72,0,4,1,0,0,155,1,0,0,0,0,2,0,5,0,0,0,384,5.391025641025641,15.935897435897436,5.910256410256411,18.58333333333333,1.012269938650307,3.6134969325153374,2.5276073619631902,166,77,181,20,30,3,9,5,3,5,4,1,4,0,11,5,1,5,0,0,3,339,134,0,61,412,0,291,182,0,428,45,0,142,331,0,141,1,308,23,0,23,4,7,0,14,17,18,17,13,61,0,0,1,23,30,39,22,43,110,1,3,3,3,4,3,1,11,1,0,1,0,0,0,0,0,236,4,175,0,0,1,2,16,88,50,14,7,98,26,48,24,23,0,15,4,0,250,258,36,74,22,100,2,0,4,0,0,24,6,101,0,0,0,273,119,2,3,1,15,2,0,0,0,0,11,3,5,17,58,11,37,14,84,236,41,34,38,33,62,31,12,11,4,1,1,1,1,2,0,9.0,10.0,9.0,7.0,7.0,9.0,9.0,13.0,10.0,10.0,11.0,7.0,12.0,11.0,10.0,7.0,9.0,14.0,11.0,6.0,7.0,7.0,7.0,9.0,4.0,9.0,10.0,1.0,10.0,5.0,13.0,5.0,7.0,6.0,9.0,9.0,5.0,6.0,4.0,3.0,8.0,5.0,3.0,4.0,4.0,4.0,9.0,8.0,4.0,6.0,5.0,9.0,8.0,4.0,10.0,4.0,3.0,6.0,1.0,7.0,3.0,5.0,3.0,1.0,3.0,2.0,4.0,9.0,4.0,5.0,3.0,1.0,5.0,0.0,2.0,1.0,1.0,2.0,3.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,144,310,54,0,42,51,51,47,34,35,40,27,24,31,36,21,15,24,11,8,5,5,0,1,0,0,481,24,2,1,0,481,24,2,1,0,143,1,53,57,20,0,90,144,0,245,243,20,0,31,10,0,0,0,0,6,4,0,0,457,0,16,35,60,67,12,2,206,110,0,73,76,15,2,1,341,0,2.2548076923076925,0.0,3.197183098591549,0.0,7.624015748031496,7,11,22,35,8,2,54,27,0,7,9,7,15,18,34,21,16,26,6,1,1,1,1,2,0,162,4,138,28,129,37,22,144,147,19,42,124,75,91,6,160,136,30,126,40,119,7,24,142,113,53,37,129,39,127,25,141,0,166,47,80,38,1,1,105,61,0,3,5,0,0,0,0,1,0,0,0,157,0,1.497005988023952,1.5449101796407183,0.0,1.0,1.0,50.63253012048193 +30502,Colón,Santa Isabel,Cuango,256,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,148,7,12,145,10,2,1,0,8,1,152,0,0,9,0,1,4,0,1,153,0,13,0,1,0,0,157,4,0,0,0,6,167,0,57,18,2,12,3,0,0,14,138,15,0,0,151,15,0,0,1,0,0,52,0,112,1,0,1,1,57,101,0,4,5,0,0,163,0,0,0,0,0,3,0,0,1,0,0,259,6.987730061349693,11.282208588957054,6.94478527607362,11.153374233128837,1.0,3.51497005988024,2.4850299401197606,167,95,212,59,44,2,9,12,0,11,8,5,0,0,3,3,0,2,3,0,2,479,86,0,50,515,0,470,95,0,497,68,0,191,374,0,187,4,342,32,0,32,14,20,2,21,23,29,22,31,79,0,0,0,41,31,67,22,26,84,0,4,2,1,2,3,3,3,0,0,3,0,0,0,0,0,202,30,239,0,0,21,0,15,99,99,8,18,102,15,53,3,8,0,48,3,0,330,294,20,114,4,74,4,0,16,0,1,15,4,223,2,0,0,365,89,0,3,3,11,0,0,0,0,0,6,0,7,8,29,37,42,9,94,381,34,22,36,44,48,29,14,9,3,1,0,1,0,0,2,11.0,15.0,17.0,16.0,12.0,14.0,20.0,16.0,21.0,11.0,15.0,10.0,14.0,18.0,16.0,12.0,13.0,7.0,11.0,13.0,16.0,7.0,18.0,9.0,10.0,13.0,10.0,8.0,9.0,7.0,11.0,8.0,11.0,4.0,7.0,8.0,7.0,11.0,4.0,4.0,9.0,6.0,8.0,6.0,4.0,6.0,1.0,4.0,3.0,4.0,6.0,6.0,4.0,5.0,1.0,5.0,7.0,3.0,6.0,4.0,2.0,4.0,2.0,2.0,1.0,8.0,4.0,4.0,0.0,3.0,2.0,2.0,4.0,4.0,4.0,1.0,1.0,0.0,1.0,0.0,1.0,2.0,2.0,2.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,226,347,51,0,71,82,73,56,60,47,41,34,33,18,22,25,11,19,16,3,9,3,1,0,0,0,578,29,9,8,0,578,30,8,8,0,193,2,20,46,10,0,127,226,0,301,300,23,0,8,8,1,0,0,0,129,5,0,3,470,0,19,3,31,75,1,1,303,191,0,62,57,16,0,0,489,0,2.8401826484018264,0.0,3.7987012987012982,0.0,6.189102564102564,6,0,6,25,1,1,79,49,0,8,11,11,14,22,33,16,14,22,13,2,0,1,0,0,0,160,7,134,33,129,38,19,148,136,31,25,142,71,96,2,165,148,19,105,62,100,5,16,151,122,45,25,142,58,109,37,130,7,160,35,89,43,0,0,131,36,0,3,4,0,0,0,0,28,1,0,2,129,0,1.9760479041916168,1.7604790419161678,1.5,1.0,1.0,48.5748502994012 +30503,Colón,Santa Isabel,Miramar,215,1,0,0,0,0,0,0,4,0,0,0,6,0,0,0,107,3,10,108,2,6,0,0,3,1,110,8,0,2,0,0,0,0,0,98,0,21,0,1,0,0,115,1,1,0,0,3,120,0,67,10,2,8,9,0,0,16,92,12,0,0,103,10,0,1,0,6,0,41,1,77,0,0,0,1,57,57,0,3,2,1,0,113,0,5,0,0,0,1,0,1,0,0,0,226,6.442477876106195,21.495575221238937,6.398230088495575,21.469026548672566,1.025,3.4916666666666667,2.333333333333333,129,64,100,31,14,2,2,5,0,4,1,1,36,0,5,0,1,2,1,0,0,336,33,0,86,283,0,291,78,0,334,35,0,97,272,0,94,3,255,17,0,17,10,7,1,6,16,13,8,19,64,0,0,2,19,17,42,9,19,78,0,0,1,3,1,3,4,7,1,0,1,0,0,1,0,0,200,15,109,0,0,5,3,12,50,41,0,6,127,15,29,9,8,0,13,14,0,241,148,20,128,9,54,4,0,0,0,0,5,2,89,1,0,0,220,85,2,1,1,12,1,2,0,0,0,16,3,7,6,53,8,30,5,87,154,31,18,20,64,42,21,13,10,7,6,0,2,0,0,1,4.0,7.0,7.0,2.0,3.0,10.0,8.0,6.0,10.0,8.0,6.0,13.0,6.0,6.0,4.0,4.0,6.0,3.0,7.0,5.0,10.0,4.0,4.0,8.0,3.0,6.0,9.0,5.0,10.0,7.0,5.0,5.0,5.0,10.0,12.0,4.0,3.0,5.0,8.0,4.0,11.0,5.0,5.0,4.0,3.0,2.0,3.0,6.0,6.0,5.0,5.0,1.0,3.0,5.0,3.0,7.0,3.0,4.0,3.0,7.0,4.0,7.0,3.0,3.0,2.0,2.0,3.0,3.0,4.0,2.0,0.0,3.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,100,262,27,0,23,42,35,25,29,37,37,24,28,22,17,24,19,14,5,1,5,0,2,0,0,0,337,39,12,1,0,338,40,10,1,0,147,0,17,40,9,1,75,100,0,111,246,32,0,30,26,0,0,0,0,5,0,0,7,321,0,36,26,22,19,5,1,173,107,0,75,26,13,0,0,275,0,2.4471544715447155,0.0,3.261363636363636,0.0,7.352185089974293,11,6,7,12,4,1,61,27,0,3,7,6,4,26,19,15,11,15,8,4,2,0,2,1,0,125,4,110,19,101,28,7,122,111,18,53,76,48,81,7,122,120,9,98,31,92,6,32,97,90,39,37,92,45,84,23,106,3,126,40,64,19,6,4,104,25,0,9,0,0,0,0,0,2,0,0,3,115,0,1.8120300751879697,1.112781954887218,0.0,1.0,1.0,49.44961240310077 +30504,Colón,Santa Isabel,Nombre de Dios,709,4,4,0,0,0,0,0,0,0,0,0,0,0,0,3,340,26,26,361,8,10,1,1,14,0,367,0,1,13,0,1,13,0,0,298,0,95,1,1,0,0,374,12,2,0,0,7,395,1,219,38,14,31,19,0,1,39,307,45,1,2,357,37,0,1,0,0,0,296,3,94,2,0,0,0,134,235,0,14,10,2,0,212,9,3,0,3,1,14,0,151,1,1,0,717,5.208144796380091,17.95022624434389,5.230769230769231,17.88235294117647,1.0050632911392403,3.4835443037974683,2.3518987341772157,397,194,348,47,67,9,11,10,0,13,5,5,21,0,11,2,2,1,9,1,2,814,216,0,100,930,0,719,311,0,899,131,0,279,751,0,260,19,677,74,0,76,19,21,0,21,26,37,45,49,165,0,0,0,47,49,101,44,59,163,0,0,14,18,24,19,8,20,2,0,2,1,0,0,0,0,379,47,486,0,3,28,9,26,162,259,24,15,178,32,49,7,36,2,100,12,0,602,525,64,164,6,146,21,0,15,0,3,51,3,381,18,0,0,639,217,0,3,17,32,2,2,0,0,0,23,16,18,16,59,74,47,32,141,634,88,58,48,88,74,56,19,27,10,5,0,0,0,2,18,29.0,20.0,24.0,24.0,28.0,22.0,18.0,18.0,12.0,20.0,22.0,26.0,16.0,21.0,17.0,15.0,18.0,20.0,14.0,23.0,16.0,20.0,27.0,18.0,17.0,19.0,15.0,15.0,20.0,16.0,15.0,14.0,13.0,14.0,6.0,14.0,13.0,17.0,7.0,15.0,14.0,12.0,9.0,9.0,17.0,12.0,17.0,11.0,9.0,14.0,13.0,12.0,10.0,12.0,11.0,17.0,9.0,11.0,8.0,12.0,11.0,5.0,12.0,7.0,4.0,7.0,7.0,10.0,12.0,6.0,10.0,7.0,6.0,5.0,2.0,8.0,6.0,5.0,3.0,9.0,4.0,4.0,7.0,2.0,2.0,3.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,317,679,131,0,125,90,102,90,98,85,62,66,61,63,58,57,39,42,30,31,19,6,1,2,0,0,1099,8,11,9,0,1099,13,6,9,0,349,3,10,120,38,2,288,317,0,499,613,15,0,7,116,1,0,0,0,17,1,0,4,981,0,79,9,27,10,1,0,503,498,0,133,125,33,1,1,834,0,2.5454545454545454,0.0,3.3289473684210527,0.0,7.067435669920142,41,5,6,5,0,0,165,175,0,49,32,30,40,55,56,43,19,37,16,11,1,1,1,2,4,382,15,321,76,303,94,36,361,332,65,73,324,159,238,15,382,345,52,278,119,247,31,60,337,276,121,96,301,107,290,97,300,2,395,120,191,74,12,0,272,125,0,2,25,1,0,0,0,6,0,0,1,362,0,1.5163727959697733,1.3224181360201512,0.0,1.0,1.0,50.40050377833753 +30505,Colón,Santa Isabel,Palmira,232,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,86,18,24,101,3,9,3,0,12,0,80,0,5,21,2,4,12,0,4,78,0,43,2,4,0,1,113,12,1,1,0,1,128,0,50,11,6,29,9,0,0,6,97,25,0,0,84,41,0,2,1,0,0,78,0,46,1,0,3,0,36,72,0,12,8,0,0,109,1,2,0,1,1,12,0,2,0,0,0,233,7.0,24.0,6.954545454545454,23.818181818181817,1.0,3.328125,2.2734375,128,56,151,4,33,1,10,8,0,8,0,2,3,0,3,5,1,0,1,0,2,230,137,0,9,358,0,210,157,0,325,42,0,108,259,0,107,1,222,37,0,40,6,3,0,19,19,19,10,14,77,0,0,0,20,24,33,9,15,44,1,2,1,6,3,0,0,2,0,0,0,0,0,0,0,0,189,3,122,0,0,0,3,4,54,48,4,12,22,27,15,1,12,0,94,19,0,215,189,12,37,1,123,2,0,15,0,0,6,0,93,0,0,0,253,58,1,0,0,2,0,0,0,0,0,8,0,4,3,21,86,16,0,54,269,19,14,26,43,15,12,1,1,2,1,0,1,0,0,0,7.0,11.0,8.0,11.0,9.0,5.0,5.0,13.0,13.0,8.0,10.0,10.0,11.0,5.0,6.0,5.0,10.0,3.0,9.0,10.0,10.0,7.0,8.0,6.0,11.0,7.0,6.0,5.0,6.0,2.0,6.0,2.0,4.0,2.0,5.0,8.0,5.0,5.0,9.0,4.0,5.0,4.0,4.0,3.0,3.0,4.0,4.0,4.0,4.0,4.0,2.0,5.0,1.0,2.0,3.0,4.0,1.0,2.0,3.0,5.0,1.0,6.0,3.0,3.0,1.0,2.0,4.0,3.0,1.0,3.0,1.0,3.0,2.0,3.0,2.0,1.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,132,236,36,0,46,44,42,37,42,26,19,31,19,20,13,15,14,13,11,7,2,3,0,0,0,0,354,26,13,11,0,354,27,12,11,0,120,1,4,28,4,1,114,132,0,223,157,24,0,18,5,2,0,0,0,73,0,0,3,303,0,16,13,54,57,1,5,161,97,0,11,23,7,0,0,363,0,2.4,0.0,3.381443298969072,0.0,5.735148514851486,8,3,7,20,0,2,58,30,0,18,6,11,18,24,23,11,7,5,3,0,1,1,0,0,0,118,10,77,51,76,52,11,117,81,47,19,109,27,101,4,124,84,44,73,55,70,3,3,125,55,73,16,112,72,56,45,83,3,125,35,55,35,3,0,95,33,0,5,1,1,0,0,0,14,0,0,1,106,0,1.6796875,1.4765625,0.0,1.0,1.0,47.921875 +30506,Colón,Santa Isabel,Playa Chiquita,90,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,43,10,5,51,2,4,0,0,0,1,41,0,1,9,1,0,3,0,3,44,0,12,0,1,0,1,53,4,0,0,0,1,58,0,18,8,0,6,2,0,0,4,41,13,0,0,47,10,0,0,0,0,1,18,1,36,0,0,1,2,5,45,0,3,5,0,0,42,4,5,0,0,0,6,0,1,0,0,0,93,7.0,23.93478260869565,7.0,24.0,1.0344827586206895,4.0344827586206895,2.706896551724138,60,22,64,9,19,0,6,5,1,2,2,0,6,0,7,1,1,2,3,2,1,153,26,0,19,160,0,120,59,0,160,19,0,53,126,0,51,2,117,9,0,9,2,3,1,5,9,5,8,11,33,0,0,2,5,12,9,10,10,30,2,0,0,2,3,2,1,3,1,1,0,0,0,0,0,0,89,5,63,0,0,1,2,3,26,22,5,7,23,8,32,1,1,0,25,3,0,108,88,11,30,1,46,1,0,4,0,2,4,4,37,0,0,0,110,38,2,0,1,4,2,0,0,0,0,5,6,1,2,6,14,28,9,23,99,6,10,15,26,15,12,7,2,1,2,0,1,0,0,0,4.0,3.0,6.0,4.0,2.0,3.0,0.0,7.0,5.0,5.0,4.0,6.0,2.0,2.0,1.0,1.0,4.0,2.0,3.0,2.0,2.0,5.0,4.0,2.0,2.0,7.0,1.0,3.0,1.0,2.0,4.0,3.0,4.0,4.0,4.0,3.0,1.0,2.0,1.0,2.0,0.0,2.0,7.0,0.0,2.0,2.0,1.0,0.0,3.0,3.0,2.0,1.0,5.0,0.0,2.0,1.0,3.0,3.0,2.0,1.0,2.0,2.0,4.0,2.0,3.0,4.0,5.0,0.0,1.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,54,122,20,0,19,20,15,12,15,14,19,9,11,9,10,10,13,13,2,1,2,2,0,0,0,0,184,4,3,5,0,184,4,3,5,0,57,1,4,15,5,1,59,54,0,105,86,5,0,1,5,0,1,0,0,15,0,0,5,169,0,102,0,0,1,0,0,43,50,0,17,22,5,0,1,151,0,2.514705882352941,0.0,3.7777777777777777,0.0,6.954081632653061,28,0,0,0,0,0,14,18,0,0,0,3,6,7,9,12,12,5,3,1,1,1,0,0,0,57,3,45,15,41,19,2,58,44,16,4,56,11,49,0,60,51,9,35,25,33,2,8,52,43,17,11,49,28,32,18,42,1,59,20,23,13,4,1,41,19,0,0,1,0,1,0,0,2,0,0,3,53,0,1.7704918032786885,1.4426229508196722,0.0,1.0,1.0,52.21666666666667 +30507,Colón,Santa Isabel,Santa Isabel,208,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,2,13,84,0,5,0,1,6,1,91,0,0,4,0,0,1,0,1,1,0,6,90,0,0,0,92,2,0,0,0,3,97,0,61,10,3,30,8,0,0,6,77,14,0,0,88,8,0,0,0,1,0,35,0,62,0,0,0,0,57,36,0,1,3,0,0,92,2,0,0,0,0,2,0,1,0,0,0,209,6.702127659574468,22.5,6.6063829787234045,22.46808510638298,1.0,3.618556701030928,2.577319587628866,97,43,81,11,26,2,3,1,2,3,1,2,3,1,11,2,0,4,0,0,4,180,74,0,28,226,0,142,112,0,232,22,0,73,181,0,69,4,164,17,0,17,6,7,1,8,5,14,12,12,57,0,0,1,10,13,27,7,7,34,0,0,2,4,2,5,1,2,0,0,0,0,0,0,0,0,125,7,83,0,0,1,5,10,38,26,3,6,29,22,15,1,11,0,30,23,0,128,148,27,14,1,84,2,0,3,0,1,8,1,59,0,0,0,162,46,2,0,2,3,0,0,0,0,0,10,2,4,5,20,40,11,0,40,139,14,17,16,38,15,20,4,6,3,3,1,0,0,0,0,4.0,2.0,7.0,9.0,8.0,6.0,6.0,7.0,2.0,10.0,12.0,8.0,4.0,4.0,3.0,3.0,2.0,2.0,2.0,1.0,2.0,4.0,3.0,5.0,3.0,4.0,5.0,3.0,4.0,8.0,3.0,1.0,5.0,3.0,2.0,3.0,1.0,1.0,4.0,1.0,3.0,1.0,4.0,1.0,0.0,4.0,3.0,4.0,1.0,3.0,4.0,2.0,4.0,2.0,3.0,5.0,3.0,1.0,5.0,3.0,7.0,2.0,2.0,2.0,1.0,0.0,2.0,2.0,4.0,4.0,4.0,2.0,3.0,1.0,2.0,0.0,3.0,3.0,1.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,92,145,39,0,30,31,31,10,17,24,14,10,9,15,15,17,14,12,12,9,5,0,0,0,1,0,264,3,5,4,0,264,3,5,4,0,84,0,2,25,13,2,58,92,0,141,132,3,0,23,3,0,0,0,0,1,0,0,4,245,0,1,4,24,12,0,0,217,18,0,18,25,10,0,2,221,0,3.0727272727272728,0.0,3.8395061728395055,0.0,6.2898550724637685,1,3,4,7,0,0,75,7,0,7,3,4,9,17,15,14,10,8,5,2,1,2,0,0,0,93,4,69,28,79,18,6,91,90,7,18,79,62,35,0,97,68,29,73,24,69,4,4,93,42,55,20,77,47,50,21,76,1,96,30,41,22,4,0,57,40,0,4,2,0,0,0,0,1,0,0,1,89,0,1.3195876288659794,1.5257731958762886,0.0,1.0,1.0,52.49484536082474 +30508,Colón,Santa Isabel,Viento Frío,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,8,9,186,1,6,0,0,2,1,181,0,0,7,1,0,7,0,0,177,0,18,0,1,0,0,189,4,0,0,0,3,196,0,104,6,4,19,7,0,0,7,158,31,0,0,184,12,0,0,0,0,0,52,0,144,0,0,0,0,107,84,0,3,1,1,0,191,2,0,0,0,0,2,0,1,0,0,0,336,7.0,9.424870466321243,7.0,9.424870466321243,1.0,3.872448979591837,2.6020408163265305,196,92,198,35,40,4,5,5,3,6,1,0,2,0,8,1,1,0,1,1,1,458,76,0,22,512,0,426,108,0,495,39,0,167,367,0,160,7,351,16,0,16,8,9,1,14,19,17,25,17,115,0,0,0,29,30,46,28,27,91,0,0,4,10,5,9,9,3,0,0,1,1,0,0,0,0,173,45,248,0,0,9,34,27,102,106,13,0,60,16,32,1,19,0,70,10,0,309,278,25,53,1,127,1,0,1,0,0,26,0,159,0,0,0,333,111,0,1,5,14,1,1,0,0,0,9,4,12,6,26,41,30,11,79,339,69,16,43,32,35,28,12,7,3,2,1,0,0,0,0,13.0,16.0,12.0,12.0,8.0,10.0,9.0,19.0,12.0,10.0,12.0,11.0,13.0,11.0,14.0,8.0,14.0,10.0,9.0,6.0,9.0,11.0,7.0,8.0,11.0,8.0,10.0,13.0,10.0,8.0,8.0,8.0,12.0,6.0,7.0,6.0,9.0,7.0,6.0,6.0,14.0,5.0,5.0,3.0,5.0,8.0,2.0,7.0,9.0,1.0,7.0,5.0,2.0,2.0,3.0,5.0,5.0,2.0,6.0,2.0,3.0,4.0,2.0,4.0,7.0,6.0,5.0,5.0,6.0,5.0,5.0,0.0,1.0,8.0,6.0,1.0,1.0,4.0,1.0,4.0,2.0,1.0,1.0,0.0,1.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,182,335,70,0,61,60,61,47,46,49,41,34,32,27,19,20,20,27,20,11,5,7,0,0,0,0,577,2,1,7,0,577,2,1,7,0,159,0,3,68,6,1,168,182,0,358,228,1,0,0,3,1,0,0,0,0,0,0,0,583,0,87,19,6,15,0,1,50,409,0,38,67,27,1,0,454,0,2.333333333333333,0.0,3.236111111111111,0.0,7.088586030664395,29,9,4,5,0,1,17,131,0,11,21,17,32,30,26,21,12,15,2,8,1,0,0,0,0,189,7,165,31,148,48,12,184,164,32,43,153,80,116,0,196,174,22,152,44,147,5,23,173,157,39,42,154,78,118,47,149,2,194,60,95,39,2,0,148,48,0,0,0,1,0,0,0,0,0,0,0,195,0,1.576530612244898,1.4183673469387754,0.0,1.0,1.0,49.46938775510204 +30601,Colón,Omar Torrijos Herrera,San José del General,653,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,290,171,10,436,25,1,0,0,9,0,363,0,5,70,1,3,24,0,5,385,0,64,0,21,0,1,443,22,0,0,0,6,471,0,70,41,39,28,22,0,0,26,431,14,0,0,347,121,1,2,0,0,0,467,1,0,0,1,2,0,116,287,0,23,44,1,0,433,11,1,2,3,4,11,0,3,3,0,0,671,5.966216216216216,11.826576576576576,6.574324324324325,14.68018018018018,1.0169851380042465,3.6772823779193207,2.4012738853503186,479,342,733,51,116,17,28,9,12,40,16,3,17,2,9,9,11,6,1,2,4,1371,314,0,309,1376,0,914,771,0,1495,190,0,521,1164,0,462,59,1041,123,0,124,22,38,1,45,65,64,62,59,256,0,0,0,62,91,191,61,88,331,0,1,9,25,21,34,15,14,1,0,5,0,0,0,0,0,643,30,780,0,2,14,10,20,296,420,37,7,405,27,78,13,24,2,99,13,0,954,911,99,335,15,125,10,2,75,0,24,37,7,1050,0,0,0,996,375,0,1,11,64,1,5,0,0,0,20,17,44,63,55,94,77,82,221,1214,94,30,52,78,79,138,76,73,13,10,1,3,4,0,0,40.0,39.0,48.0,53.0,38.0,37.0,41.0,47.0,32.0,37.0,28.0,33.0,23.0,28.0,40.0,32.0,34.0,35.0,35.0,36.0,38.0,36.0,45.0,41.0,41.0,37.0,34.0,46.0,36.0,24.0,34.0,26.0,36.0,22.0,20.0,29.0,31.0,20.0,19.0,26.0,20.0,22.0,21.0,20.0,13.0,19.0,15.0,23.0,24.0,17.0,14.0,15.0,15.0,17.0,20.0,15.0,10.0,11.0,17.0,11.0,11.0,10.0,11.0,10.0,8.0,10.0,4.0,9.0,5.0,3.0,4.0,5.0,4.0,3.0,4.0,2.0,3.0,3.0,6.0,3.0,5.0,4.0,3.0,1.0,1.0,2.0,4.0,3.0,0.0,3.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,564,1202,99,0,218,194,152,172,201,177,138,125,96,98,81,64,50,31,20,17,14,12,4,1,0,0,1840,15,0,10,0,1840,15,0,10,0,677,4,12,142,24,1,441,564,0,1076,781,8,0,0,82,1,0,0,0,0,0,0,7,1775,0,2,13,49,0,0,0,95,1706,0,351,331,19,3,0,1161,0,2.185289957567185,0.0,3.1265822784810124,0.0,6.886327077747989,0,5,14,0,0,0,37,423,0,68,22,13,29,37,46,60,43,88,31,21,7,10,1,3,0,465,14,334,145,334,145,102,377,297,182,29,450,165,314,0,479,440,39,271,208,237,34,118,361,174,305,115,364,147,332,197,282,6,473,49,287,128,15,0,350,129,0,0,11,0,0,0,0,0,0,0,1,467,0,1.9916492693110648,1.9018789144050103,0.0,1.0,1.0,45.1106471816284 +30602,Colón,Omar Torrijos Herrera,Nueva Esperanza,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,89,17,103,9,2,10,0,5,0,0,0,1,90,0,5,32,0,1,1,0,105,0,23,0,0,57,72,0,0,0,0,129,0,40,3,0,7,4,0,0,0,129,0,0,0,3,121,0,0,5,0,0,109,0,0,0,1,19,0,0,26,0,32,71,0,0,79,9,4,22,1,1,11,2,0,0,0,0,183,5.6477272727272725,15.579545454545457,6.454545454545454,20.0,1.0,3.86046511627907,2.604651162790698,129,100,441,13,103,4,16,24,4,45,10,0,0,0,0,2,1,2,1,1,1,326,416,0,20,722,0,45,697,0,525,217,0,217,525,0,215,2,304,221,0,222,4,14,1,32,23,28,38,36,144,0,0,0,35,31,61,10,14,38,1,1,2,1,3,2,1,0,0,0,0,0,0,0,0,0,200,23,388,0,2,12,7,0,145,231,7,5,74,20,7,0,23,2,95,0,0,477,412,6,73,0,71,11,0,60,0,20,6,2,539,0,0,0,562,41,0,1,2,5,0,0,0,0,0,2,3,1,2,16,63,38,10,88,719,60,22,8,12,17,19,10,15,7,0,0,0,0,0,0,28.0,39.0,44.0,36.0,32.0,25.0,21.0,20.0,16.0,17.0,26.0,15.0,23.0,28.0,19.0,27.0,23.0,21.0,26.0,24.0,21.0,17.0,22.0,23.0,16.0,18.0,16.0,12.0,18.0,12.0,12.0,10.0,15.0,6.0,7.0,9.0,7.0,8.0,7.0,4.0,8.0,8.0,6.0,9.0,5.0,1.0,5.0,10.0,4.0,10.0,4.0,3.0,6.0,9.0,3.0,0.0,3.0,3.0,3.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,389,486,14,0,179,99,111,121,99,76,50,35,36,30,25,11,3,4,6,1,2,1,0,0,0,0,787,0,0,102,0,787,0,0,102,0,312,0,16,18,11,1,142,389,0,324,565,0,0,0,797,0,0,0,0,0,0,0,0,92,0,5,61,19,4,0,0,13,787,0,49,5,0,0,0,835,0,2.571428571428572,0.0,4.0989010989010985,0.0,3.6794150731158606,2,12,4,3,0,0,3,105,0,22,7,8,9,16,16,14,6,19,7,2,1,0,2,0,0,82,47,10,119,16,113,71,58,7,122,0,129,33,96,0,129,83,46,14,115,12,2,5,124,15,114,2,127,68,61,70,59,2,127,4,61,64,0,0,93,36,0,0,106,0,0,0,0,0,0,0,0,23,0,3.697674418604651,3.193798449612403,1.0,1.1111111111111112,1.1111111111111112,41.51162790697674 +30603,Colón,Omar Torrijos Herrera,San Juan de Turbe,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,132,5,182,21,0,0,0,5,0,0,0,18,163,0,0,26,0,1,92,0,85,1,30,0,0,170,38,0,0,0,0,208,0,22,19,2,7,5,0,0,0,199,7,0,2,99,107,0,0,0,1,1,204,0,3,0,0,1,0,42,109,0,27,30,0,0,140,43,0,0,2,6,15,0,0,2,0,0,263,5.890710382513661,20.114754098360656,6.562841530054645,22.3551912568306,1.0048076923076923,3.5528846153846154,1.9855769230769231,209,158,334,27,29,8,5,7,0,10,8,3,8,1,9,3,1,0,6,0,4,517,208,0,75,650,0,195,530,0,615,110,0,210,515,0,191,19,415,100,0,100,9,8,0,26,31,35,39,31,206,1,0,0,27,30,48,18,25,67,0,0,7,6,4,4,0,1,1,0,0,0,0,1,0,0,285,17,310,0,1,12,3,7,135,150,10,8,152,74,7,20,13,1,35,0,0,400,407,24,142,26,50,1,0,59,0,20,13,6,161,0,0,0,521,83,0,1,1,5,0,1,0,0,0,6,11,3,12,19,77,45,32,97,527,40,33,23,31,22,52,31,37,6,2,3,0,0,0,0,22.0,23.0,18.0,19.0,29.0,21.0,15.0,19.0,13.0,16.0,21.0,16.0,13.0,14.0,19.0,7.0,17.0,15.0,18.0,23.0,13.0,17.0,15.0,16.0,16.0,19.0,23.0,10.0,18.0,9.0,16.0,12.0,13.0,12.0,11.0,11.0,13.0,7.0,9.0,9.0,9.0,9.0,13.0,6.0,5.0,6.0,4.0,10.0,2.0,8.0,7.0,6.0,6.0,2.0,6.0,5.0,6.0,6.0,5.0,4.0,8.0,5.0,6.0,0.0,2.0,2.0,1.0,3.0,5.0,2.0,3.0,2.0,4.0,0.0,0.0,3.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,278,495,34,0,111,84,83,80,77,79,64,49,42,30,27,26,21,13,9,9,1,2,0,0,0,0,796,0,0,11,0,796,0,0,11,0,303,4,37,55,9,0,121,278,0,405,402,0,0,10,82,0,0,0,0,0,0,0,4,711,0,1,93,34,2,1,0,37,639,0,135,88,7,0,0,577,0,2.261437908496732,0.0,3.4973262032085564,0.0,5.234200743494424,1,24,18,1,1,0,10,154,0,21,12,10,8,26,18,23,22,37,15,10,2,5,0,0,0,193,16,39,170,98,111,31,178,36,173,2,207,98,111,0,209,182,27,87,122,73,14,29,180,56,153,48,161,133,76,153,56,5,204,23,141,42,3,0,176,33,0,3,12,0,0,0,0,0,0,0,0,194,0,1.9138755980861244,1.947368421052632,1.0,1.0,1.0,42.82775119617225 +40101,Chiriquí,Alanje,Alanje,1020,23,21,27,0,0,0,1,4,0,0,0,2,0,0,12,713,45,98,730,40,31,28,0,37,2,772,0,1,15,0,5,69,0,6,750,3,105,5,5,0,0,781,55,5,0,0,27,868,0,77,49,18,62,17,0,2,84,710,71,1,0,773,46,0,7,21,3,18,829,1,3,0,1,21,13,173,607,0,83,5,0,407,326,79,6,0,16,0,4,0,2,20,8,0,1098,6.801724137931035,21.092364532019705,6.902709359605911,21.58128078817734,1.0345622119815667,3.184331797235023,2.08294930875576,900,465,1177,84,256,15,33,53,9,64,11,10,109,0,62,29,12,14,15,4,19,2269,664,0,638,2295,0,1936,997,0,2498,435,0,830,2103,0,784,46,1785,318,0,322,35,63,13,95,80,127,112,101,430,0,0,0,101,117,298,107,113,510,0,23,24,30,43,102,40,21,8,1,17,0,0,0,0,0,1142,52,1383,0,1,23,21,129,517,600,71,66,756,63,125,48,73,1,111,8,3,1650,1536,158,640,51,294,26,5,11,3,3,80,20,1135,5,0,0,1758,598,0,25,23,151,5,17,0,0,3,31,72,53,49,156,52,161,167,450,1743,205,114,168,251,250,235,76,75,36,18,5,4,0,1,5,69.0,73.0,60.0,51.0,65.0,59.0,57.0,74.0,49.0,52.0,63.0,66.0,49.0,45.0,54.0,63.0,58.0,54.0,55.0,58.0,50.0,49.0,57.0,60.0,56.0,47.0,37.0,56.0,51.0,41.0,40.0,37.0,48.0,53.0,36.0,31.0,39.0,41.0,42.0,41.0,38.0,45.0,44.0,38.0,35.0,30.0,38.0,34.0,34.0,37.0,40.0,27.0,40.0,45.0,43.0,35.0,25.0,29.0,25.0,29.0,28.0,21.0,31.0,32.0,21.0,26.0,17.0,17.0,17.0,10.0,16.0,6.0,13.0,22.0,9.0,8.0,10.0,9.0,6.0,10.0,8.0,3.0,5.0,6.0,5.0,5.0,6.0,7.0,2.0,7.0,0.0,1.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,886,2044,256,0,318,291,277,288,272,232,214,194,200,173,195,143,133,87,66,43,27,27,6,0,0,0,3111,19,17,39,0,3111,19,17,39,0,957,14,266,242,95,9,719,884,0,1717,1445,24,0,3,916,41,0,1,1,0,0,0,0,2224,0,50,140,486,29,6,9,558,1908,0,613,661,116,25,0,1771,0,2.2334132693844926,0.0,3.167452830188679,0.0,6.850910232266164,16,41,177,12,3,2,165,484,0,68,41,32,51,122,133,140,87,101,49,29,21,14,5,2,3,822,78,702,198,689,211,121,779,719,181,239,661,439,461,81,819,756,144,698,202,410,288,185,715,507,393,298,602,149,751,117,783,8,892,178,469,240,13,5,548,352,0,1,189,7,0,1,0,0,0,0,0,702,0,1.8232044198895028,1.6972375690607735,1.1428571428571428,1.0344827586206895,1.0344827586206895,49.763333333333335 +40102,Chiriquí,Alanje,Divalá,1148,11,5,73,0,0,0,0,0,0,0,0,9,0,0,1,726,218,23,843,102,10,1,0,12,0,883,0,0,26,0,9,47,0,3,685,10,252,3,17,1,0,905,38,0,0,0,25,968,3,101,29,45,71,20,0,1,94,733,138,2,0,869,18,0,4,72,5,0,961,0,3,0,0,3,1,159,744,0,64,1,0,559,69,180,6,118,2,0,2,0,24,8,0,832,414,6.266089108910891,19.3960396039604,6.382425742574258,18.544554455445542,1.008264462809917,3.1167355371900825,1.851239669421488,985,514,1203,121,436,12,41,45,8,74,10,9,37,1,59,23,7,24,24,9,8,2218,991,0,393,2816,0,1559,1650,0,2703,506,0,918,2291,0,863,55,1866,425,0,428,13,57,11,85,127,135,133,146,511,0,0,6,113,167,247,104,145,487,2,9,34,51,49,54,53,27,6,1,8,0,0,0,0,0,890,185,1727,0,5,109,15,212,619,754,70,72,507,27,88,29,55,1,318,6,1,1824,1672,144,619,29,216,9,1,13,1,29,99,32,1286,7,0,0,2015,604,6,14,34,116,6,7,0,0,1,17,48,35,33,175,97,108,83,478,2226,201,105,174,309,216,99,66,56,16,7,2,7,2,3,7,78.0,62.0,75.0,72.0,94.0,67.0,68.0,57.0,71.0,50.0,70.0,79.0,51.0,69.0,69.0,68.0,72.0,63.0,64.0,64.0,46.0,56.0,60.0,62.0,42.0,53.0,35.0,51.0,50.0,53.0,40.0,43.0,54.0,45.0,33.0,33.0,40.0,42.0,39.0,42.0,29.0,33.0,45.0,37.0,37.0,35.0,38.0,32.0,38.0,28.0,36.0,34.0,50.0,33.0,33.0,41.0,34.0,33.0,38.0,29.0,34.0,33.0,28.0,29.0,23.0,25.0,28.0,18.0,11.0,21.0,19.0,19.0,20.0,23.0,18.0,12.0,13.0,19.0,14.0,8.0,12.0,11.0,8.0,11.0,4.0,5.0,5.0,11.0,3.0,2.0,4.0,2.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1032,2110,354,0,381,313,338,331,266,242,215,196,181,171,186,175,147,103,99,66,46,26,11,2,1,0,3434,9,8,45,0,3434,9,8,45,0,949,26,378,373,96,12,631,1031,0,2021,1454,21,0,6,890,21,0,0,0,0,0,0,0,2579,0,14,24,193,8,1,2,506,2748,0,425,928,203,11,2,1927,0,2.5870870870870872,0.0,3.585339168490153,0.0,6.447940503432494,3,12,70,5,1,1,197,696,0,102,65,59,85,176,170,98,66,81,30,17,6,9,5,5,2,944,41,744,241,696,289,166,819,788,197,107,878,495,490,13,972,853,132,742,243,227,515,155,830,450,535,199,786,227,758,235,750,3,982,226,453,281,25,0,699,286,0,0,177,7,0,0,0,0,0,0,0,801,0,1.851776649746193,1.69746192893401,1.2,1.0277777777777777,1.0277777777777777,53.29035532994924 +40103,Chiriquí,Alanje,El Tejar,752,4,0,40,0,0,0,0,0,0,0,0,0,0,0,3,540,47,28,555,35,8,15,0,5,0,574,0,1,8,0,3,31,0,1,410,1,177,1,29,0,0,584,28,0,0,0,6,618,1,38,17,43,32,47,0,8,75,510,22,3,0,571,23,0,6,17,0,1,605,1,0,0,0,12,0,161,415,0,39,2,1,1,582,11,0,15,0,0,2,0,0,6,1,0,796,6.956228956228956,20.803030303030305,6.971380471380472,22.09259259259259,1.011326860841424,3.2281553398058254,2.074433656957929,625,344,781,71,138,16,24,26,6,39,7,8,28,0,15,19,9,17,9,6,17,1521,442,0,349,1614,0,1253,710,0,1702,261,0,564,1399,0,491,73,1223,176,0,186,21,32,8,50,81,73,64,67,313,1,1,3,69,86,170,61,89,328,1,5,22,44,43,38,37,44,10,1,13,0,0,1,1,0,696,63,982,0,5,28,15,126,358,421,58,19,479,42,76,36,51,1,51,19,0,1079,1034,110,392,38,213,0,1,0,1,5,58,19,837,2,0,0,1150,447,3,4,8,105,10,13,1,0,1,17,50,31,43,99,34,124,107,253,1183,116,60,87,208,139,186,48,51,19,7,2,3,0,2,2,35.0,41.0,37.0,37.0,42.0,34.0,39.0,43.0,34.0,30.0,31.0,45.0,39.0,38.0,41.0,26.0,34.0,38.0,30.0,44.0,31.0,36.0,53.0,41.0,38.0,35.0,33.0,26.0,28.0,29.0,30.0,24.0,27.0,28.0,28.0,21.0,21.0,16.0,26.0,28.0,29.0,39.0,31.0,18.0,26.0,19.0,20.0,29.0,17.0,19.0,26.0,20.0,36.0,28.0,25.0,18.0,22.0,28.0,23.0,13.0,21.0,16.0,11.0,10.0,17.0,15.0,9.0,17.0,14.0,9.0,9.0,15.0,13.0,11.0,9.0,14.0,7.0,8.0,6.0,6.0,8.0,4.0,4.0,9.0,6.0,4.0,4.0,3.0,1.0,3.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,566,1332,215,0,192,180,194,172,199,151,137,112,143,104,135,104,75,64,57,41,31,15,6,1,0,0,2085,5,7,16,0,2085,5,7,16,0,592,9,199,208,74,6,459,566,0,1138,970,5,0,1,534,3,0,0,0,0,0,0,0,1575,0,10,68,233,12,4,0,92,1694,0,390,515,112,17,1,1078,0,2.2187134502923977,0.0,3.173076923076923,0.0,7.259346900141979,6,24,91,3,3,0,41,457,0,38,30,15,40,106,91,106,50,71,42,15,7,10,1,3,0,603,22,501,124,464,161,115,510,507,118,130,495,308,317,33,592,557,68,495,130,185,310,144,481,385,240,231,394,212,413,225,400,6,619,114,334,156,21,0,405,220,0,0,124,2,0,0,0,0,0,0,0,499,0,1.7264,1.6544,1.0,1.0,1.0,50.9056 +40104,Chiriquí,Alanje,Guarumal,1028,43,104,11,0,0,0,0,0,0,0,0,5,0,0,20,714,49,58,767,16,24,1,0,20,13,765,0,1,8,1,8,46,1,11,407,12,401,1,20,0,0,768,55,6,0,0,12,841,0,217,58,13,38,19,0,12,36,715,70,7,1,785,6,1,8,34,5,2,806,5,2,2,0,22,4,189,600,0,50,1,1,223,363,211,7,4,0,0,1,0,2,14,16,0,1191,6.3023839397741535,19.355081555834374,6.973651191969887,22.764115432873275,1.028537455410226,3.3198573127229487,1.9607609988109396,870,454,924,100,189,20,55,33,7,39,10,0,40,2,56,8,15,8,15,9,10,1997,559,0,499,2057,0,1611,945,0,2328,228,0,694,1862,0,630,64,1706,156,0,160,32,27,0,81,83,115,86,95,511,0,3,1,84,108,190,98,123,352,0,3,63,60,63,50,57,80,7,4,19,0,0,0,1,0,901,106,1312,0,2,45,37,84,470,617,90,51,429,36,124,34,146,3,210,11,1,1429,1314,140,418,42,330,48,1,10,5,6,133,14,1141,9,0,0,1559,542,1,4,26,160,7,19,1,0,5,19,59,39,33,131,114,115,125,367,1563,220,75,162,210,173,157,58,55,38,12,3,4,0,4,9,49.0,45.0,49.0,44.0,46.0,53.0,29.0,37.0,39.0,33.0,40.0,46.0,45.0,48.0,36.0,37.0,60.0,45.0,45.0,47.0,48.0,41.0,52.0,57.0,35.0,45.0,32.0,48.0,37.0,28.0,43.0,42.0,26.0,19.0,25.0,29.0,26.0,34.0,36.0,19.0,27.0,46.0,30.0,25.0,35.0,34.0,38.0,31.0,43.0,29.0,45.0,42.0,31.0,45.0,37.0,35.0,44.0,29.0,31.0,24.0,26.0,24.0,29.0,25.0,16.0,22.0,26.0,15.0,20.0,21.0,21.0,18.0,19.0,15.0,13.0,17.0,11.0,9.0,11.0,18.0,4.0,6.0,6.0,5.0,9.0,4.0,6.0,4.0,11.0,4.0,1.0,1.0,3.0,3.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,639,1777,327,0,233,191,215,234,233,190,155,144,163,175,200,163,120,104,86,66,30,29,9,3,0,0,2693,13,12,25,0,2694,13,11,25,0,795,5,97,293,92,4,818,639,0,1774,948,21,0,1,456,13,0,0,0,0,0,0,0,2273,0,30,54,981,8,2,1,771,896,0,388,541,60,14,12,1728,0,2.140161725067385,0.0,3.0411140583554377,0.0,7.544659132336857,15,14,355,6,1,0,254,225,0,110,73,31,81,127,107,112,51,79,43,14,13,12,5,5,2,821,49,722,148,709,161,129,741,736,134,218,652,482,388,44,826,773,97,696,174,223,473,243,627,577,293,309,561,202,668,219,651,6,864,201,447,190,32,0,622,248,0,0,102,5,0,0,0,0,0,0,0,763,0,1.6425287356321838,1.5103448275862068,1.0,1.0,1.0,53.11954022988506 +40105,Chiriquí,Alanje,Palo Grande,275,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,19,14,188,5,9,0,0,5,0,185,0,0,2,1,1,18,0,0,61,7,124,0,11,0,4,190,13,0,0,0,4,207,0,34,5,1,10,19,0,1,7,174,25,0,0,196,0,0,0,10,0,1,204,0,1,1,0,1,0,31,167,0,9,0,0,2,150,29,7,4,2,0,0,0,3,10,0,0,276,6.767955801104972,23.23204419889503,6.961325966850829,23.906077348066297,1.0096618357487923,3.106280193236715,2.0096618357487923,209,99,186,34,68,8,6,8,1,17,1,0,5,0,15,6,3,2,8,4,3,442,148,0,82,508,0,267,323,0,509,81,0,131,459,0,126,5,419,40,0,42,5,16,3,26,28,33,32,25,100,0,0,0,21,24,50,14,24,82,0,3,10,13,7,19,4,3,2,0,4,0,0,0,0,0,236,6,284,0,1,4,0,36,73,159,16,0,103,43,34,5,9,0,47,0,0,338,304,31,111,6,87,4,0,2,0,3,21,1,225,6,0,0,379,110,0,4,3,24,2,4,0,0,0,3,9,15,8,26,34,29,30,88,331,52,43,32,69,46,25,10,11,7,3,0,1,5,1,6,16.0,16.0,9.0,11.0,9.0,12.0,14.0,7.0,10.0,12.0,10.0,6.0,9.0,10.0,6.0,10.0,8.0,13.0,6.0,15.0,5.0,12.0,12.0,9.0,12.0,13.0,10.0,4.0,12.0,8.0,9.0,12.0,7.0,6.0,6.0,6.0,4.0,7.0,6.0,7.0,4.0,6.0,3.0,10.0,6.0,12.0,5.0,8.0,13.0,4.0,5.0,9.0,4.0,6.0,3.0,8.0,9.0,7.0,7.0,9.0,7.0,5.0,6.0,10.0,6.0,5.0,3.0,2.0,10.0,6.0,6.0,3.0,4.0,3.0,10.0,4.0,7.0,6.0,3.0,2.0,4.0,7.0,0.0,1.0,3.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,391,94,0,61,55,41,52,50,47,40,30,29,42,27,40,34,26,26,22,15,5,0,0,0,0,616,9,8,9,0,616,10,7,9,0,198,6,76,67,29,2,107,157,0,339,290,13,0,1,150,20,0,0,0,1,0,0,0,470,0,7,13,137,5,4,0,162,314,0,88,131,25,7,5,386,0,2.28125,0.0,2.8617021276595747,0.0,6.56386292834891,2,5,62,3,3,0,51,83,0,17,16,15,14,34,41,20,11,15,10,4,2,1,2,4,3,194,15,163,46,169,40,41,168,170,39,46,163,129,80,6,203,184,25,167,42,47,120,39,170,90,119,80,129,96,113,108,101,4,205,52,92,62,3,0,143,66,0,1,30,4,0,0,0,1,0,0,0,173,0,1.6172248803827751,1.4545454545454546,0.0,1.0,1.0,55.17703349282296 +40106,Chiriquí,Alanje,Querévalo,776,15,0,2,0,0,0,0,0,0,0,0,0,0,0,2,562,33,26,580,17,5,1,0,20,0,590,0,1,5,0,0,27,0,0,533,2,83,4,1,0,0,582,24,2,1,0,14,623,0,59,40,11,51,9,0,10,41,529,33,1,9,594,14,0,3,4,6,2,615,0,0,0,0,5,3,201,389,0,32,1,0,18,548,50,1,3,0,0,1,0,0,1,1,0,793,6.957792207792208,18.217532467532468,6.970779220779221,18.29383116883117,1.0032102728731942,3.359550561797753,2.229534510433387,625,342,683,61,153,21,30,20,6,34,6,6,18,1,44,13,21,12,11,5,23,1574,316,0,462,1428,0,1367,523,0,1742,148,0,558,1332,0,496,62,1241,91,0,93,25,21,5,52,62,77,63,65,296,0,0,0,61,90,165,74,106,317,17,14,25,39,38,57,52,54,10,1,10,0,0,0,1,0,717,37,962,0,1,14,10,72,366,444,66,14,401,40,114,26,56,11,104,0,0,1022,984,130,306,30,267,13,0,2,4,3,121,13,720,2,0,0,1081,464,0,6,13,131,10,10,1,0,4,31,64,40,27,127,107,95,83,176,1076,164,66,100,154,142,135,57,55,35,11,4,4,0,1,2,25.0,32.0,28.0,31.0,25.0,34.0,23.0,38.0,25.0,29.0,39.0,37.0,35.0,19.0,32.0,31.0,39.0,36.0,33.0,33.0,41.0,25.0,38.0,27.0,26.0,35.0,42.0,25.0,33.0,24.0,33.0,31.0,27.0,19.0,32.0,19.0,18.0,26.0,23.0,23.0,25.0,21.0,23.0,20.0,22.0,33.0,24.0,36.0,20.0,19.0,41.0,27.0,15.0,15.0,24.0,11.0,26.0,23.0,22.0,29.0,22.0,22.0,14.0,22.0,16.0,19.0,17.0,12.0,14.0,8.0,12.0,10.0,14.0,12.0,7.0,12.0,9.0,10.0,13.0,14.0,9.0,10.0,4.0,3.0,11.0,1.0,2.0,4.0,3.0,5.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,452,1311,243,0,141,149,162,172,157,159,142,109,111,132,122,111,96,70,55,58,37,15,6,2,0,0,1976,11,7,12,0,1976,11,7,12,0,562,7,215,247,66,10,448,451,0,1204,789,13,0,1,274,0,0,0,0,0,0,0,0,1731,0,38,59,354,8,0,6,617,924,0,343,516,61,17,1,1068,0,1.992941176470588,0.0,2.804159445407279,0.0,8.055333998005983,14,25,150,2,0,1,178,255,0,56,37,16,44,85,98,97,55,49,35,20,7,14,5,6,1,598,27,544,81,524,101,101,524,537,88,188,437,341,284,47,578,556,69,544,81,301,243,193,432,369,256,254,371,187,438,158,467,4,621,124,333,155,13,0,435,190,0,1,56,0,0,0,0,0,0,0,0,568,0,1.6352,1.5744,1.0,1.0,1.0,52.6992 +40107,Chiriquí,Alanje,Santo Tomás,627,1,0,0,0,0,0,0,1,0,0,0,3,0,0,0,421,51,27,452,20,14,0,0,13,0,458,0,0,7,0,5,27,0,2,192,0,248,12,45,0,2,454,27,0,0,0,18,499,1,36,22,0,55,15,0,5,19,389,82,3,1,465,11,0,3,17,2,1,491,1,0,0,0,7,0,80,395,1,21,2,0,3,420,34,18,2,0,0,1,0,17,4,0,0,632,6.568927789934355,21.334792122538293,6.807439824945296,22.49671772428884,1.0200400801603209,3.0160320641282565,1.685370741482966,512,266,529,59,73,4,12,12,4,11,2,7,20,0,33,7,6,21,10,2,5,1118,284,0,230,1172,0,888,514,0,1241,161,0,420,982,0,369,51,886,96,0,96,17,28,0,38,50,73,80,72,236,0,2,1,54,61,107,52,52,227,0,0,23,32,26,37,22,7,3,1,4,0,0,0,1,0,455,67,728,0,11,39,12,47,262,339,18,62,282,55,84,15,32,0,47,1,0,785,726,74,252,16,174,0,0,0,0,5,81,8,543,0,0,0,866,297,1,2,18,60,2,3,1,0,0,14,22,23,18,84,70,60,66,165,880,125,46,68,133,101,71,31,30,16,6,1,2,1,0,0,32.0,24.0,29.0,24.0,26.0,35.0,23.0,20.0,23.0,25.0,36.0,31.0,23.0,19.0,26.0,25.0,29.0,32.0,26.0,18.0,27.0,26.0,25.0,21.0,22.0,18.0,19.0,20.0,23.0,23.0,21.0,19.0,23.0,21.0,22.0,18.0,14.0,21.0,17.0,19.0,25.0,16.0,21.0,16.0,21.0,19.0,16.0,15.0,15.0,20.0,12.0,15.0,18.0,17.0,11.0,17.0,23.0,11.0,15.0,11.0,14.0,18.0,19.0,16.0,4.0,11.0,9.0,12.0,10.0,3.0,10.0,6.0,4.0,9.0,6.0,3.0,7.0,7.0,9.0,9.0,5.0,6.0,6.0,5.0,3.0,2.0,5.0,1.0,4.0,1.0,1.0,2.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,396,954,161,0,135,126,135,130,121,103,106,89,99,85,73,77,71,45,35,35,25,13,6,2,0,0,1490,3,4,14,0,1490,3,4,14,0,449,16,198,138,41,1,272,396,0,803,701,7,0,0,238,13,0,0,0,0,0,0,0,1260,0,6,11,363,15,0,0,383,733,0,217,419,42,9,0,824,0,2.52,0.0,3.509756097560976,0.0,6.968894771674388,3,7,152,7,0,0,146,197,0,69,44,29,39,73,78,59,34,40,20,11,6,4,3,0,0,478,34,410,102,390,122,79,433,410,102,56,456,267,245,69,443,446,66,402,110,85,317,83,429,332,180,154,358,228,284,255,257,7,505,131,270,102,9,1,356,156,0,0,55,3,0,0,0,0,0,0,0,454,0,1.530214424951267,1.4152046783625731,1.0,1.1176470588235294,1.1176470588235294,51.091796875 +40108,Chiriquí,Alanje,Canta Gallo,280,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,14,6,210,0,6,0,0,0,0,194,0,0,3,0,2,8,0,9,163,0,47,3,3,0,0,206,7,0,0,0,3,216,0,21,13,0,18,14,0,0,5,197,13,1,0,204,4,0,4,3,1,0,215,0,0,0,1,0,0,3,204,0,8,1,0,0,57,96,53,1,0,0,6,0,1,0,2,0,282,6.601307189542483,11.627450980392156,6.5816993464052285,11.699346405228756,1.023148148148148,3.092592592592593,1.7685185185185186,221,130,247,0,47,3,12,2,2,13,4,2,0,0,6,0,0,2,3,0,1,466,165,0,60,571,0,179,452,0,570,61,0,66,565,0,59,7,517,48,0,48,8,10,0,30,19,32,27,23,164,0,0,0,18,33,49,20,26,87,0,0,0,4,7,6,8,9,3,0,0,0,0,0,0,0,158,17,399,0,2,5,5,9,55,198,33,104,152,4,5,1,1,0,3,0,5,365,318,22,109,2,14,0,0,4,20,0,40,4,474,0,0,0,450,92,0,0,4,25,3,0,0,0,21,8,6,3,8,22,13,11,18,65,483,49,13,10,30,33,37,14,9,1,3,0,0,1,0,0,10.0,17.0,10.0,15.0,9.0,8.0,14.0,10.0,6.0,10.0,17.0,9.0,15.0,11.0,8.0,8.0,14.0,10.0,10.0,9.0,10.0,15.0,16.0,14.0,13.0,9.0,8.0,9.0,9.0,12.0,6.0,8.0,16.0,14.0,4.0,5.0,4.0,7.0,12.0,7.0,10.0,5.0,11.0,4.0,5.0,11.0,7.0,10.0,11.0,11.0,8.0,11.0,6.0,8.0,9.0,3.0,9.0,7.0,5.0,5.0,8.0,8.0,4.0,1.0,3.0,7.0,6.0,9.0,3.0,1.0,6.0,5.0,1.0,2.0,7.0,7.0,3.0,2.0,3.0,4.0,1.0,5.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,3.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,169,429,85,0,61,48,60,51,68,47,48,35,35,50,42,29,24,26,21,19,8,6,5,0,0,0,677,3,0,3,0,677,3,0,3,0,257,9,72,56,17,3,100,169,0,505,177,1,0,0,129,0,0,0,0,0,0,0,0,554,0,0,31,45,3,0,0,7,597,0,101,139,8,1,0,434,0,2.516981132075472,0.0,3.435233160621762,0.0,6.3601756954612005,0,13,25,3,0,0,5,175,0,78,17,7,13,18,25,22,14,16,4,5,0,1,0,1,0,212,9,176,45,166,55,27,194,182,39,35,186,42,179,2,219,179,42,177,44,50,127,23,198,28,193,76,145,37,184,61,160,2,219,51,107,63,0,0,169,52,0,0,24,0,0,0,0,0,0,0,0,197,0,1.6515837104072395,1.4389140271493213,1.0,1.1428571428571428,1.1428571428571428,52.22171945701358 +40109,Chiriquí,Alanje,Nuevo México,804,1,1,13,0,0,0,0,0,0,0,9,2,0,0,6,447,150,35,549,54,4,0,0,30,1,513,0,8,50,1,10,56,0,0,241,2,371,2,22,0,0,577,49,0,0,0,12,638,0,75,29,4,50,23,0,0,14,539,81,2,2,514,25,12,0,87,0,0,631,0,0,0,0,7,0,56,510,0,69,3,0,151,285,111,36,35,2,0,4,0,4,5,5,0,830,6.574040219378428,18.610603290676416,6.663619744058501,18.974405850091408,1.0203761755485894,2.7633228840125392,1.7225705329153604,662,365,1016,65,227,11,26,50,5,33,9,4,23,1,16,13,5,12,11,7,4,1184,1086,0,131,2139,0,568,1702,0,1892,378,0,745,1525,0,728,17,1211,314,0,314,33,39,6,95,98,106,102,129,386,0,0,1,100,121,160,80,96,295,0,8,15,22,18,23,19,2,1,0,1,0,0,0,0,0,476,84,1368,0,5,45,13,120,486,661,29,72,258,42,45,13,16,8,151,4,0,1290,1207,67,328,15,109,6,0,12,0,29,50,16,1167,6,0,0,1523,344,1,10,9,40,1,0,0,0,0,8,16,10,15,92,52,41,41,285,1857,113,60,107,141,82,71,29,19,6,4,1,1,0,0,6,51.0,53.0,59.0,64.0,52.0,70.0,52.0,64.0,55.0,49.0,43.0,81.0,41.0,62.0,42.0,51.0,63.0,41.0,52.0,45.0,43.0,46.0,34.0,39.0,39.0,37.0,44.0,42.0,36.0,29.0,30.0,37.0,24.0,23.0,28.0,34.0,28.0,34.0,35.0,14.0,30.0,28.0,21.0,14.0,27.0,29.0,15.0,16.0,21.0,22.0,28.0,22.0,20.0,26.0,25.0,26.0,19.0,17.0,18.0,18.0,17.0,11.0,17.0,25.0,19.0,17.0,15.0,13.0,17.0,11.0,9.0,8.0,11.0,8.0,13.0,7.0,10.0,7.0,4.0,10.0,4.0,3.0,6.0,3.0,8.0,2.0,4.0,1.0,1.0,0.0,3.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,838,1459,200,0,279,290,269,252,201,188,142,145,120,103,121,98,89,73,49,38,24,8,7,0,1,0,2443,4,5,45,0,2444,4,4,45,0,633,10,225,242,44,5,500,838,0,1463,1028,6,0,0,1120,5,0,0,0,0,0,0,0,1372,0,3,32,132,4,0,0,119,2207,0,234,604,111,11,3,1534,0,2.5355603448275863,0.0,3.649586776859504,0.0,5.663596315578695,1,17,48,2,0,0,45,549,0,118,68,45,57,113,95,74,28,29,11,7,2,2,1,0,1,626,36,409,253,368,294,97,565,424,238,39,623,308,354,6,656,464,198,418,244,73,345,68,594,196,466,94,568,215,447,193,469,4,658,113,354,178,17,0,461,201,0,0,215,1,0,0,0,0,0,0,0,446,0,1.948640483383686,1.8232628398791544,0.0,1.0869565217391304,1.0869565217391304,50.16465256797583 +40202,Chiriquí,Barú,Limones,536,0,1,0,0,0,0,0,0,0,0,0,0,0,0,4,262,105,28,348,23,11,0,0,16,1,376,1,0,12,2,0,8,0,0,9,29,316,6,39,0,0,377,12,3,0,0,7,399,0,78,14,1,32,13,0,0,16,314,42,0,27,290,97,0,2,9,1,0,370,2,4,1,1,21,0,45,298,0,52,4,0,8,249,43,25,20,1,0,8,0,37,7,1,0,537,6.703333333333333,12.73,6.833333333333333,13.873333333333331,1.005012531328321,3.020050125313283,1.924812030075188,401,199,397,37,46,14,15,20,2,13,5,4,6,0,20,5,0,4,4,3,1,859,219,0,164,914,0,741,337,0,963,115,0,313,765,0,288,25,696,69,0,70,23,17,1,47,64,63,54,49,209,0,0,0,51,44,99,29,54,140,6,10,9,6,3,3,5,17,0,0,5,0,0,0,0,0,395,23,521,0,0,13,8,25,181,250,64,1,144,15,38,14,12,0,137,54,0,630,529,32,224,14,126,12,0,6,0,15,49,7,305,0,0,0,735,166,0,10,2,21,0,5,0,0,0,7,17,6,4,60,85,42,32,165,697,94,44,83,88,50,42,27,19,5,4,1,2,0,3,0,23.0,15.0,22.0,21.0,24.0,29.0,17.0,30.0,18.0,21.0,25.0,19.0,20.0,24.0,9.0,21.0,18.0,21.0,19.0,17.0,19.0,20.0,15.0,14.0,14.0,13.0,17.0,30.0,16.0,6.0,18.0,14.0,22.0,16.0,12.0,13.0,14.0,12.0,14.0,10.0,13.0,15.0,7.0,14.0,10.0,12.0,16.0,18.0,17.0,17.0,14.0,19.0,7.0,19.0,15.0,13.0,13.0,10.0,11.0,11.0,12.0,14.0,9.0,11.0,4.0,5.0,9.0,5.0,7.0,7.0,10.0,8.0,3.0,5.0,3.0,7.0,5.0,5.0,3.0,5.0,0.0,5.0,4.0,3.0,5.0,2.0,3.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,317,726,116,0,105,115,97,96,82,82,82,63,59,80,74,58,50,33,29,25,17,8,3,1,0,0,1094,33,30,2,0,1097,34,26,2,0,334,9,155,125,21,4,194,317,0,795,308,56,0,6,151,7,0,1,0,0,0,0,0,994,0,38,22,174,6,1,3,321,594,0,120,200,20,2,4,813,0,2.675233644859813,0.0,3.6754966887417218,0.0,6.251941328731665,15,10,64,1,0,2,109,200,0,43,30,29,67,74,47,38,21,28,9,7,2,2,0,4,0,385,16,322,79,304,97,45,356,319,82,33,368,237,164,12,389,335,66,288,113,96,192,57,344,285,116,71,330,162,239,215,186,8,393,111,212,72,6,0,302,99,0,4,46,3,0,0,0,0,0,0,0,348,0,1.571072319201995,1.319201995012469,1.0,1.0,1.0,49.67082294264339 +40204,Chiriquí,Barú,Baco,2788,8,11,0,0,0,0,0,0,0,0,0,1,0,0,65,1835,317,120,2147,70,10,0,0,107,3,2207,28,0,11,0,36,46,0,9,61,240,1625,34,366,0,11,2209,67,5,0,0,56,2337,0,164,72,17,141,76,0,4,87,2093,149,4,0,2000,201,0,7,118,9,2,2315,0,1,0,5,15,1,307,1865,1,159,5,0,1776,10,193,218,65,1,0,0,0,14,43,17,0,2808,6.044466902475998,18.93077311773623,6.200101061141991,19.794845881758462,1.011553273427471,3.202824133504493,2.070603337612324,2365,1272,3019,210,646,66,91,80,18,131,34,9,64,3,227,99,23,50,69,119,36,5117,2329,0,794,6652,0,3313,4133,0,6734,712,0,2302,5144,0,2189,113,4645,499,0,503,65,144,6,225,332,342,296,305,1356,0,0,0,309,437,576,275,326,1209,15,31,92,97,122,137,132,64,19,2,24,0,0,1,4,0,2291,269,4023,0,16,102,70,432,1464,1772,215,140,1143,215,211,47,138,30,717,11,12,4091,3917,340,1342,58,576,127,5,61,15,69,195,64,3295,24,0,0,4634,1551,0,36,66,251,18,23,4,0,17,53,110,83,58,525,255,231,133,1095,5051,625,324,460,488,425,258,147,125,50,14,4,5,4,4,24,145.0,132.0,133.0,152.0,124.0,169.0,128.0,139.0,159.0,144.0,170.0,158.0,146.0,122.0,143.0,153.0,159.0,151.0,141.0,155.0,158.0,158.0,177.0,134.0,103.0,148.0,122.0,117.0,107.0,110.0,102.0,105.0,96.0,95.0,101.0,79.0,102.0,73.0,90.0,79.0,77.0,90.0,98.0,77.0,81.0,74.0,73.0,106.0,97.0,83.0,108.0,83.0,89.0,99.0,89.0,77.0,84.0,89.0,64.0,71.0,86.0,63.0,77.0,76.0,55.0,49.0,54.0,47.0,61.0,43.0,48.0,31.0,42.0,36.0,38.0,32.0,25.0,25.0,24.0,26.0,28.0,20.0,11.0,18.0,19.0,10.0,15.0,11.0,10.0,10.0,6.0,6.0,3.0,0.0,4.0,3.0,4.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2164,5081,763,0,686,739,739,759,730,604,499,423,423,433,468,385,357,254,195,132,96,56,19,10,1,0,7953,24,17,14,0,7954,24,16,14,0,1946,72,178,1163,201,34,2250,2164,0,4117,3848,43,0,11,1628,15,0,0,0,0,1,0,0,6353,0,85,116,1326,66,3,5,1364,5043,0,974,2099,397,67,5,4466,0,2.40789064926996,0.0,3.4375290292614955,0.0,6.997502497502498,26,48,472,27,2,4,379,1407,0,314,206,158,293,362,338,217,137,176,81,31,16,20,3,6,6,2279,86,2052,313,1888,477,325,2040,2034,331,252,2113,1331,1034,27,2338,2023,342,1939,426,657,1282,407,1958,1216,1149,574,1791,803,1562,703,1662,9,2356,445,1286,578,56,0,1562,803,0,3,399,4,0,0,0,0,1,0,0,1958,0,1.7298097251585625,1.6562367864693446,1.3333333333333333,1.043103448275862,1.043103448275862,51.22748414376321 +40205,Chiriquí,Barú,Rodolfo Aguilar Delgado,2680,8,0,0,0,0,0,0,0,0,0,0,5,0,0,452,1032,771,58,1982,273,5,3,0,47,3,2157,3,2,32,4,46,57,0,12,38,758,1088,95,327,1,6,2125,123,9,0,0,56,2313,10,131,39,6,117,72,0,4,45,1931,331,2,0,1350,709,1,15,214,24,0,2295,0,1,0,5,11,1,162,1735,0,371,44,1,1358,91,54,614,46,19,0,6,0,43,72,10,0,2693,5.994677312042581,20.568196939454424,5.934797072521623,21.070525615435795,1.009511456982274,3.265888456549935,2.1171638564634674,2340,1274,3385,313,952,43,118,129,20,160,24,22,71,0,226,142,44,89,50,48,37,5375,2717,0,859,7233,0,2918,5174,0,6990,1102,0,2645,5447,0,2595,50,4698,749,0,773,132,196,30,300,387,426,364,358,1339,0,1,1,374,469,683,271,355,1331,1,10,38,50,49,62,43,37,6,2,4,0,0,0,0,0,2158,417,4396,0,9,237,77,558,1645,1874,155,164,1246,244,138,39,111,8,685,0,0,4627,4224,173,1309,50,750,79,26,84,0,59,191,54,3550,58,0,0,5335,1448,1,19,44,115,6,3,0,0,0,27,45,38,46,373,559,145,113,1229,5962,483,303,420,536,692,227,90,55,16,6,1,1,0,1,58,179.0,197.0,205.0,178.0,194.0,198.0,190.0,168.0,183.0,188.0,198.0,187.0,166.0,184.0,231.0,188.0,217.0,178.0,172.0,166.0,157.0,171.0,178.0,164.0,118.0,133.0,123.0,131.0,102.0,113.0,107.0,120.0,98.0,115.0,95.0,90.0,88.0,82.0,96.0,76.0,98.0,82.0,85.0,86.0,73.0,79.0,83.0,73.0,73.0,68.0,100.0,77.0,79.0,89.0,83.0,80.0,79.0,81.0,90.0,71.0,80.0,73.0,63.0,67.0,58.0,56.0,64.0,58.0,51.0,37.0,39.0,43.0,37.0,37.0,33.0,38.0,24.0,21.0,18.0,17.0,23.0,20.0,20.0,9.0,16.0,16.0,11.0,14.0,17.0,8.0,9.0,3.0,9.0,3.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2846,5248,757,0,953,927,966,921,788,602,535,432,424,376,428,401,341,266,189,118,88,66,26,4,0,0,8632,110,44,65,0,8640,112,34,65,0,2268,96,531,1001,214,24,1872,2845,0,4741,3994,116,0,14,4153,22,0,1,0,11,1,1,0,4648,0,66,88,606,26,1,7,647,7410,0,1042,2349,511,92,4,4853,0,2.684194620731339,0.0,3.858962693357598,0.0,6.039543554400633,21,34,230,16,0,2,211,1826,0,309,133,153,257,374,427,269,160,156,46,26,6,4,1,1,13,2208,132,1689,651,1636,704,369,1971,1779,561,88,2252,1451,889,25,2315,1908,432,1722,618,431,1291,220,2120,842,1498,311,2029,1032,1308,929,1411,23,2317,446,1175,670,49,0,1648,692,0,2,867,6,0,0,0,0,1,0,0,1464,0,1.9773504273504277,1.8051282051282047,1.0,1.0344827586206895,1.0344827586206895,50.94102564102564 +40301,Chiriquí,Boquerón,Boquerón,2064,10,9,0,0,0,0,0,3,0,0,2,4,0,0,202,1332,37,19,1536,35,2,0,0,17,0,1551,0,0,7,2,6,16,0,8,36,979,405,25,135,1,9,1517,41,4,0,0,28,1590,1,100,129,47,174,42,0,203,114,1184,78,11,0,1545,24,0,4,16,1,0,1581,0,7,0,2,0,0,812,744,0,28,6,0,1140,387,28,7,3,1,0,5,0,11,7,1,990,1102,6.812218649517685,22.535691318327974,6.872668810289389,23.08938906752412,1.0144654088050316,3.6320754716981134,2.293081761006289,1619,915,1736,176,323,54,65,41,21,58,22,16,33,4,48,16,18,35,28,6,21,4020,769,0,1532,3257,0,3069,1720,0,4404,385,0,1422,3367,0,1176,246,3133,234,0,237,64,69,11,113,158,179,171,121,595,0,1,5,141,203,419,135,170,1047,8,15,69,91,131,150,242,140,35,5,60,1,1,0,2,0,1913,132,2271,0,7,62,23,246,893,914,74,144,1175,156,195,66,235,7,181,1,6,2513,2570,397,868,80,582,71,0,16,8,5,226,33,1514,21,0,0,2314,1303,5,23,99,475,35,59,3,0,9,85,214,158,102,425,172,264,177,439,2451,343,185,236,340,445,439,214,227,116,32,11,8,7,8,21,70.0,76.0,74.0,74.0,90.0,77.0,74.0,78.0,75.0,79.0,94.0,89.0,65.0,79.0,84.0,101.0,69.0,81.0,85.0,76.0,95.0,72.0,78.0,72.0,74.0,79.0,63.0,74.0,61.0,89.0,89.0,71.0,73.0,91.0,75.0,55.0,85.0,68.0,71.0,59.0,72.0,77.0,65.0,57.0,65.0,62.0,60.0,66.0,51.0,56.0,57.0,48.0,55.0,64.0,63.0,56.0,64.0,52.0,57.0,61.0,59.0,56.0,33.0,48.0,36.0,41.0,31.0,35.0,28.0,26.0,32.0,27.0,33.0,26.0,25.0,27.0,19.0,21.0,21.0,14.0,21.0,15.0,13.0,14.0,13.0,12.0,8.0,8.0,4.0,6.0,11.0,5.0,2.0,3.0,0.0,4.0,6.0,2.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1178,3346,559,0,384,383,411,412,391,366,399,338,336,295,287,290,232,161,143,102,76,38,21,15,3,0,4932,46,84,21,0,4938,46,78,21,0,1314,53,72,812,144,32,1478,1178,0,2323,2680,80,0,4,286,36,3,2,0,0,2,0,13,4737,0,88,113,154,17,6,8,190,4507,0,965,1307,227,32,20,2532,0,2.017767653758542,0.0,2.8657219973009447,0.0,8.57190635451505,26,48,62,11,6,3,85,1378,0,79,80,47,84,163,198,222,135,253,159,85,42,35,16,14,1,1575,44,1475,144,1443,176,255,1364,1293,326,420,1199,969,650,188,1431,1516,103,1427,192,931,496,631,988,1009,610,805,814,558,1061,514,1105,24,1595,300,936,356,27,3,1113,506,0,0,59,9,1,1,0,0,0,0,3,1546,0,1.5493218249075216,1.5844636251541306,1.1428571428571428,1.0410958904109588,1.0410958904109588,51.52748610253243 +40302,Chiriquí,Boquerón,Bágala,2394,1,7,0,0,0,0,0,8,0,0,1,3,0,0,589,991,80,11,1646,14,5,1,0,2,3,1615,0,3,9,1,3,30,0,10,302,948,305,6,81,0,29,1629,23,3,0,0,16,1671,21,204,243,58,147,58,0,758,146,730,32,3,2,1623,16,0,7,23,2,0,1657,1,4,0,2,7,0,1158,464,0,47,2,0,150,1111,325,37,10,2,0,8,0,21,7,0,0,2414,6.71374527112232,20.63871374527112,6.877679697351828,21.93316519546028,1.0125673249551166,3.5505685218432075,2.3524835427887494,1695,920,1729,179,222,67,75,32,16,49,23,18,83,5,84,49,13,15,19,16,21,3964,772,0,1939,2797,0,3434,1302,0,4377,359,0,1504,3232,0,1208,296,2976,256,0,260,52,91,0,118,173,157,134,124,532,1,1,1,139,135,288,115,188,885,3,32,107,165,188,256,355,64,57,8,95,0,3,1,8,0,2005,205,1970,0,4,52,21,180,840,743,45,162,1530,115,203,51,160,5,61,2,50,2512,2601,583,1003,58,431,35,0,17,50,9,182,14,1620,41,0,0,1948,1308,1,46,100,625,53,92,7,0,50,99,313,223,113,608,64,236,161,343,2574,283,90,167,273,289,585,274,293,146,53,15,13,6,11,41,92.0,78.0,110.0,97.0,94.0,104.0,87.0,104.0,93.0,74.0,92.0,92.0,79.0,65.0,82.0,79.0,62.0,76.0,78.0,60.0,77.0,58.0,77.0,95.0,70.0,94.0,87.0,107.0,104.0,101.0,91.0,104.0,108.0,110.0,105.0,106.0,93.0,78.0,82.0,72.0,74.0,64.0,66.0,63.0,55.0,54.0,53.0,56.0,66.0,29.0,56.0,53.0,57.0,35.0,34.0,35.0,56.0,41.0,30.0,39.0,40.0,31.0,22.0,38.0,31.0,29.0,13.0,31.0,24.0,27.0,24.0,19.0,19.0,22.0,18.0,17.0,12.0,14.0,16.0,8.0,13.0,14.0,11.0,10.0,14.0,14.0,5.0,11.0,4.0,9.0,6.0,3.0,3.0,2.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1343,3352,418,0,471,462,410,355,377,493,518,431,322,258,235,201,162,124,102,67,62,43,14,6,0,0,4992,51,52,18,0,4994,54,47,18,0,1300,51,53,811,112,46,1397,1343,0,1876,3196,41,0,2,447,14,0,2,0,1,0,1,28,4618,0,110,50,162,15,10,3,658,4105,0,1287,1352,168,19,7,2280,0,1.7919182535996283,0.0,2.638402242466713,0.0,8.89360453745355,54,25,63,9,4,3,236,1301,0,92,97,33,70,113,140,255,167,298,197,84,56,44,15,17,14,1666,29,1569,126,1520,175,237,1458,1456,239,670,1025,974,721,287,1408,1550,145,1509,186,931,578,787,908,1289,406,897,798,376,1319,230,1465,17,1678,337,1018,296,44,9,1117,578,0,1,119,3,0,2,0,0,0,1,9,1560,0,1.4741784037558685,1.5264084507042253,1.8,1.0465116279069768,1.0465116279069768,46.225958702064894 +40303,Chiriquí,Boquerón,Cordillera,229,0,0,0,0,0,0,0,6,0,0,1,0,0,0,0,140,18,1,150,8,1,0,0,0,0,146,0,0,4,0,1,8,0,0,21,44,60,7,25,0,2,155,3,0,0,0,1,159,1,18,12,5,23,11,0,0,8,115,35,1,0,138,15,0,4,1,1,0,158,0,0,0,1,0,0,53,90,0,8,8,0,0,137,18,0,0,4,0,0,0,0,0,0,0,236,6.922580645161291,23.65806451612903,6.948387096774193,23.741935483870968,1.0125786163522013,3.220125786163522,1.8616352201257864,161,80,187,7,13,6,6,8,0,6,1,0,8,0,7,6,3,1,3,0,0,356,99,0,108,347,0,255,200,0,414,41,0,142,313,0,105,37,273,40,0,40,3,6,4,8,19,25,11,23,84,0,1,0,13,21,36,13,13,62,0,0,7,12,13,14,9,10,3,0,5,0,0,0,0,0,195,14,191,0,4,8,2,13,81,92,2,3,98,44,7,2,8,1,47,0,0,260,223,20,110,4,36,7,0,30,0,4,16,0,180,5,0,0,264,92,0,0,8,30,2,4,0,0,0,12,8,5,4,10,44,10,18,98,277,25,11,11,29,56,16,15,17,9,7,0,4,1,0,5,6.0,6.0,9.0,7.0,7.0,13.0,7.0,5.0,13.0,10.0,12.0,6.0,6.0,9.0,7.0,9.0,7.0,9.0,6.0,11.0,8.0,10.0,5.0,7.0,5.0,5.0,8.0,7.0,7.0,9.0,6.0,7.0,7.0,5.0,6.0,5.0,8.0,4.0,10.0,4.0,5.0,10.0,3.0,7.0,6.0,4.0,4.0,4.0,6.0,2.0,7.0,6.0,9.0,6.0,5.0,4.0,9.0,2.0,7.0,4.0,0.0,4.0,6.0,6.0,5.0,2.0,2.0,1.0,4.0,4.0,1.0,4.0,4.0,3.0,1.0,3.0,2.0,3.0,1.0,5.0,2.0,0.0,3.0,1.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,123,306,54,0,35,48,40,42,35,36,31,31,31,20,33,26,21,13,13,14,10,3,0,1,0,0,467,12,1,3,0,467,13,0,3,0,146,8,12,64,11,8,111,123,0,205,266,12,0,0,146,7,0,0,0,0,0,0,9,321,0,9,12,98,0,1,0,114,249,0,74,97,12,1,4,295,0,1.994350282485876,0.0,3.061946902654867,0.0,7.370600414078675,3,4,29,0,0,0,33,92,0,16,10,8,8,13,36,10,10,21,9,8,3,6,2,0,1,161,0,123,38,115,46,34,127,30,131,2,159,95,66,0,161,144,17,121,40,44,77,48,113,97,64,62,99,69,92,94,67,38,123,48,81,32,0,7,126,35,0,0,34,1,0,0,0,0,0,0,2,124,0,1.5476190476190477,1.3273809523809523,1.4285714285714286,1.0666666666666669,1.0666666666666669,52.46583850931677 +40304,Chiriquí,Boquerón,Guabal,461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,242,53,8,332,9,4,0,0,3,1,333,0,1,0,0,1,14,0,0,6,75,203,9,55,0,1,322,18,0,0,0,9,349,1,28,27,1,32,23,0,0,9,309,30,1,0,309,28,0,0,10,2,0,335,0,0,0,12,0,2,80,243,0,13,11,2,21,239,49,25,6,1,0,7,0,1,0,0,0,461,6.980582524271845,23.818770226537215,7.0,23.94822006472492,1.0,3.2148997134670485,2.088825214899713,349,227,461,13,48,7,3,1,3,12,2,0,0,0,10,3,9,5,4,1,4,646,394,0,92,948,0,511,529,0,916,124,0,272,768,0,260,12,663,105,0,105,6,12,0,36,45,33,38,47,224,0,0,0,26,46,86,39,44,170,1,1,8,12,6,32,19,2,1,0,1,0,0,0,0,0,333,50,527,0,1,32,8,33,173,251,15,55,148,27,79,9,59,3,45,0,3,579,547,34,171,10,135,17,0,3,3,7,47,8,454,2,0,0,657,195,0,1,2,53,1,1,0,0,3,10,15,9,7,84,39,48,26,142,687,74,17,58,80,73,77,27,21,6,3,0,0,0,1,2,20.0,22.0,25.0,19.0,19.0,23.0,21.0,28.0,22.0,17.0,19.0,23.0,18.0,17.0,22.0,21.0,19.0,20.0,18.0,23.0,17.0,22.0,16.0,23.0,18.0,11.0,22.0,19.0,15.0,22.0,17.0,16.0,18.0,15.0,15.0,11.0,17.0,13.0,13.0,18.0,13.0,10.0,12.0,10.0,14.0,19.0,10.0,8.0,8.0,25.0,13.0,12.0,8.0,17.0,3.0,8.0,14.0,11.0,7.0,4.0,12.0,7.0,4.0,10.0,6.0,12.0,5.0,7.0,2.0,8.0,5.0,8.0,4.0,2.0,4.0,3.0,6.0,3.0,2.0,1.0,5.0,2.0,2.0,4.0,1.0,4.0,1.0,3.0,3.0,3.0,1.0,0.0,2.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,315,704,107,0,105,111,99,101,96,89,81,72,59,70,53,44,39,34,23,15,14,14,5,2,0,0,1107,5,2,12,0,1107,6,1,12,0,335,13,34,166,29,2,232,315,0,749,371,6,0,1,113,3,0,1,0,0,0,0,18,990,0,0,12,0,0,0,0,2,1112,0,121,190,24,7,2,782,0,2.210526315789474,0.0,3.229965156794425,0.0,6.654529307282416,0,2,0,0,0,0,1,346,0,31,21,12,33,57,62,48,31,28,16,5,2,2,0,1,0,332,17,279,70,279,70,47,302,184,165,10,339,199,150,3,346,266,83,271,78,54,217,59,290,105,244,119,230,118,231,122,227,2,347,68,224,57,0,0,288,61,0,1,24,1,0,1,0,0,0,0,3,319,0,1.659025787965616,1.5673352435530086,0.0,1.0,1.0,49.39541547277937 +40305,Chiriquí,Boquerón,Guayabal,1080,3,2,0,0,0,0,0,1,0,0,0,0,0,0,13,688,72,22,760,13,5,0,0,14,3,730,0,2,17,0,9,28,0,9,203,209,259,17,106,1,0,756,28,0,0,0,11,795,1,98,53,12,66,60,0,15,33,667,80,0,0,711,57,0,7,15,5,0,792,3,0,0,0,0,0,229,505,0,35,24,2,159,543,61,4,3,0,0,0,0,12,10,3,0,1086,6.606815203145478,23.61205766710354,6.750982961992136,23.72083879423329,1.0176100628930818,3.1446540880503147,2.0427672955974843,809,418,835,56,134,26,37,27,8,34,11,11,14,0,92,18,3,10,15,2,5,1665,595,0,416,1844,0,957,1303,0,2062,198,0,628,1632,0,578,50,1478,154,0,157,15,41,4,70,109,111,65,83,400,0,1,0,56,97,181,60,89,443,0,0,34,43,46,71,52,18,6,1,7,0,0,0,0,0,782,30,1207,0,1,13,2,78,385,634,69,41,382,88,65,16,166,2,79,0,10,1247,1173,98,324,23,283,62,0,2,16,6,131,15,599,192,0,0,1280,584,0,2,25,118,4,6,0,0,15,25,28,33,51,129,103,154,80,194,1163,213,77,100,215,172,139,59,52,19,10,1,4,1,3,192,43.0,37.0,42.0,38.0,37.0,48.0,32.0,45.0,42.0,37.0,37.0,39.0,37.0,32.0,25.0,43.0,39.0,35.0,30.0,45.0,45.0,46.0,46.0,34.0,37.0,31.0,46.0,37.0,32.0,29.0,38.0,40.0,31.0,41.0,28.0,37.0,31.0,26.0,24.0,26.0,32.0,27.0,32.0,18.0,24.0,21.0,32.0,25.0,32.0,23.0,26.0,25.0,31.0,38.0,27.0,33.0,31.0,35.0,27.0,27.0,29.0,17.0,20.0,15.0,21.0,23.0,15.0,17.0,11.0,21.0,12.0,7.0,13.0,11.0,13.0,11.0,11.0,10.0,8.0,15.0,17.0,10.0,3.0,9.0,5.0,8.0,5.0,9.0,4.0,3.0,3.0,3.0,0.0,1.0,2.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,571,1565,284,0,197,204,170,192,208,175,178,144,133,133,147,153,102,87,56,55,44,29,9,3,1,0,2384,16,2,18,0,2385,16,1,18,0,720,11,36,313,79,11,679,571,0,1414,984,22,0,2,196,13,0,0,0,0,0,0,6,2203,0,363,13,93,2,0,3,217,1729,0,295,416,79,8,7,1615,0,2.2845445240532243,0.0,3.217201166180758,0.0,7.333471074380165,118,8,29,1,0,1,77,575,0,66,58,42,54,143,121,98,61,77,38,17,7,8,2,4,13,782,27,654,155,641,168,149,660,471,338,46,763,498,311,25,784,705,104,655,154,170,485,179,630,338,471,299,510,377,432,362,447,40,769,183,443,177,6,1,538,271,0,0,50,3,0,0,0,0,0,0,1,755,0,1.539506172839506,1.4481481481481482,1.0,1.0357142857142858,1.0357142857142858,51.70951792336218 +40306,Chiriquí,Boquerón,Paraíso,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,120,65,7,136,50,1,0,0,6,0,163,0,0,18,0,4,7,0,1,9,57,92,10,24,1,0,187,6,0,0,0,0,193,0,33,7,0,46,7,0,0,6,128,59,0,0,142,21,0,16,9,5,0,191,0,0,0,1,0,1,29,130,0,26,8,0,1,171,7,4,10,0,0,0,0,0,0,0,0,286,6.5251396648044695,21.48603351955307,6.966480446927374,23.932960893854748,1.0518134715025906,2.937823834196891,1.854922279792746,203,117,282,20,31,0,6,2,1,10,4,2,5,0,12,1,1,0,6,1,3,373,230,0,55,548,0,136,467,0,485,118,0,146,457,0,130,16,349,108,0,109,2,9,0,21,23,27,16,31,122,1,1,0,20,20,36,18,23,71,0,0,5,7,8,7,13,11,1,0,1,0,0,0,0,0,231,16,259,0,2,6,5,8,99,130,16,6,79,43,21,7,13,2,80,0,0,351,332,16,116,7,67,36,0,2,1,5,17,8,295,0,0,0,378,96,0,1,2,29,0,0,0,0,1,8,5,6,3,33,36,34,7,114,415,24,15,30,104,51,20,11,10,1,2,0,0,0,0,0,21.0,19.0,19.0,21.0,22.0,23.0,16.0,13.0,14.0,9.0,11.0,14.0,8.0,6.0,16.0,12.0,14.0,10.0,16.0,13.0,15.0,18.0,18.0,15.0,9.0,14.0,14.0,10.0,9.0,10.0,8.0,9.0,3.0,11.0,7.0,4.0,5.0,4.0,13.0,3.0,8.0,6.0,3.0,11.0,8.0,8.0,6.0,8.0,9.0,3.0,11.0,4.0,8.0,5.0,5.0,4.0,5.0,3.0,4.0,7.0,5.0,2.0,2.0,4.0,1.0,4.0,5.0,2.0,7.0,1.0,2.0,4.0,2.0,5.0,0.0,5.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,232,404,47,0,102,75,55,65,75,57,38,29,36,34,33,23,14,19,13,6,5,2,2,0,0,0,646,3,3,31,0,646,4,2,31,0,228,1,3,70,5,2,142,232,0,297,376,10,0,0,326,22,0,0,0,0,0,0,1,334,0,0,0,6,0,0,0,5,672,0,69,64,7,1,1,541,0,2.423076923076923,0.0,3.5095541401273884,0.0,5.674963396778916,0,0,1,0,0,0,2,200,0,10,6,5,12,60,48,25,12,13,8,3,0,1,0,0,0,198,5,125,78,120,83,43,160,57,146,0,203,97,106,3,200,160,43,122,81,18,104,32,171,110,93,45,158,116,87,90,113,11,192,46,118,36,3,0,168,35,0,0,79,4,0,0,0,0,0,0,0,120,0,1.729064039408867,1.6354679802955665,1.0,1.0,1.0,45.72413793103448 +40307,Chiriquí,Boquerón,Pedregal,982,4,14,0,0,0,0,0,0,0,0,0,1,0,0,5,765,17,18,766,21,6,1,0,8,3,780,0,0,8,0,3,10,0,4,75,557,115,11,40,0,7,766,19,4,0,0,16,805,2,43,42,26,55,27,0,24,81,628,66,6,0,777,8,1,8,2,9,0,802,0,1,1,0,0,1,314,475,0,16,0,0,7,748,27,1,2,2,0,1,0,13,3,1,0,1001,6.791560102301791,18.69693094629156,6.937340153452685,22.703324808184146,1.027329192546584,3.53167701863354,2.216149068322981,828,412,1026,34,176,26,31,22,8,34,6,8,12,4,38,12,10,23,16,6,4,1919,526,0,661,1784,0,1598,847,0,2257,188,0,770,1675,0,667,103,1549,126,0,134,39,28,7,61,86,76,86,65,348,0,4,1,85,109,183,79,104,461,5,9,46,78,72,125,65,44,15,3,22,1,0,0,4,0,956,112,1098,0,17,42,32,118,485,411,54,30,589,91,134,30,150,2,43,2,18,1308,1319,189,452,39,337,11,0,11,20,4,82,10,822,6,0,0,1215,660,1,11,40,203,10,22,4,0,20,33,119,44,45,239,38,191,98,241,1357,175,85,111,177,209,227,102,90,48,19,7,7,0,7,6,39.0,51.0,38.0,54.0,41.0,48.0,40.0,46.0,56.0,48.0,52.0,66.0,47.0,53.0,45.0,38.0,35.0,42.0,44.0,33.0,35.0,44.0,39.0,35.0,51.0,44.0,39.0,34.0,33.0,28.0,48.0,31.0,35.0,46.0,40.0,33.0,40.0,34.0,23.0,47.0,38.0,29.0,22.0,46.0,31.0,31.0,34.0,22.0,22.0,29.0,32.0,42.0,26.0,31.0,30.0,24.0,25.0,26.0,24.0,34.0,31.0,14.0,15.0,25.0,22.0,26.0,17.0,14.0,16.0,16.0,16.0,13.0,9.0,13.0,12.0,8.0,7.0,7.0,13.0,9.0,7.0,6.0,5.0,5.0,5.0,2.0,1.0,4.0,3.0,0.0,6.0,1.0,2.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,724,1656,247,0,223,238,263,192,204,178,200,177,166,138,161,133,107,89,63,44,28,10,12,1,0,0,2556,27,18,26,0,2556,28,17,26,0,635,13,61,343,74,13,764,724,0,1339,1254,34,0,1,269,4,0,0,0,1,0,0,17,2335,0,20,20,75,10,0,3,168,2331,0,451,604,105,23,0,1444,0,2.03336339044184,0.0,2.9567567567567568,0.0,8.216977540921203,10,11,39,5,0,0,65,698,0,44,34,24,44,93,129,141,71,104,53,30,17,28,5,10,0,801,27,713,115,699,129,128,700,693,135,180,648,506,322,114,714,735,93,714,114,376,338,272,556,548,280,336,492,53,775,72,756,7,821,174,454,185,15,0,512,316,0,0,62,4,0,0,0,0,0,0,10,752,0,1.579710144927536,1.5929951690821256,1.0833333333333333,1.0888888888888888,1.0888888888888888,50.98067632850242 +40308,Chiriquí,Boquerón,Tijeras,1436,4,11,0,0,0,0,0,0,0,0,0,3,0,0,1,1033,37,12,1069,2,2,2,0,6,2,1070,0,0,2,0,2,8,0,1,78,708,236,5,46,1,9,1048,17,5,1,0,12,1083,8,99,88,33,119,21,0,222,88,717,54,2,0,1058,9,0,3,8,5,0,965,12,99,0,1,2,4,638,427,0,16,1,1,5,1002,28,5,2,0,0,0,0,40,1,0,0,1454,6.914009661835749,22.81449275362319,6.961352657004831,23.48599033816425,1.0240073868882733,3.600184672206833,2.268698060941828,1112,631,1179,92,228,41,42,27,11,50,10,9,33,1,48,16,6,21,15,3,11,2872,399,0,1313,1958,0,2638,633,0,3044,227,0,973,2298,0,744,229,2186,112,0,114,38,49,13,66,87,103,85,92,397,0,2,4,84,122,235,104,147,675,0,7,62,109,89,238,174,55,29,7,79,1,1,0,3,0,1389,94,1482,0,5,46,24,189,589,609,49,46,1003,85,163,45,117,3,47,0,6,1735,1731,368,677,60,324,17,0,16,7,5,74,11,1119,3,0,0,1432,899,4,30,49,460,14,73,4,0,7,78,265,173,69,277,34,191,146,243,1706,165,93,116,183,261,365,194,176,115,53,8,19,2,7,3,45.0,37.0,62.0,51.0,43.0,58.0,48.0,50.0,54.0,53.0,44.0,67.0,43.0,54.0,40.0,67.0,54.0,64.0,59.0,72.0,46.0,45.0,57.0,64.0,64.0,58.0,60.0,57.0,41.0,52.0,52.0,58.0,61.0,52.0,68.0,53.0,44.0,42.0,51.0,41.0,43.0,48.0,48.0,55.0,41.0,37.0,38.0,33.0,44.0,46.0,42.0,35.0,43.0,35.0,28.0,50.0,31.0,42.0,41.0,37.0,36.0,42.0,42.0,44.0,29.0,26.0,27.0,30.0,21.0,15.0,21.0,22.0,15.0,15.0,21.0,7.0,11.0,8.0,11.0,7.0,9.0,9.0,7.0,4.0,6.0,3.0,1.0,5.0,4.0,1.0,2.0,2.0,2.0,0.0,1.0,4.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,749,2392,325,0,238,263,248,316,276,268,291,231,235,198,183,201,193,119,94,44,35,14,7,9,3,0,3386,37,40,3,0,3390,46,27,3,0,784,38,54,696,105,30,1011,748,0,1455,1971,40,0,2,183,19,0,1,0,0,1,0,51,3209,0,63,82,208,9,7,3,593,2501,0,844,977,193,30,3,1419,0,1.821214142761841,0.0,2.599801390268123,0.0,9.26399307559146,25,31,88,2,3,1,206,756,0,76,37,16,44,80,109,159,108,159,122,71,37,61,14,14,2,1096,16,1033,79,991,121,195,917,994,118,378,734,589,523,184,928,1051,61,1009,103,700,309,509,603,895,217,622,490,286,826,229,883,12,1100,183,651,251,27,0,668,444,0,0,41,3,0,0,0,0,1,0,22,1045,0,1.560251798561151,1.5566546762589928,1.0,1.054054054054054,1.054054054054054,49.95593525179856 +40401,Chiriquí,Boquete,Boquete,1926,13,128,1,0,0,0,2,11,0,0,101,1,0,0,15,1232,75,8,1234,88,5,0,0,2,1,1205,64,4,17,0,10,30,0,0,1267,16,34,4,7,1,1,1259,16,40,0,0,15,1330,50,389,56,140,69,34,0,44,301,753,187,43,2,1219,46,0,53,0,12,0,1161,72,53,21,6,0,17,930,335,0,36,28,1,38,1160,64,2,0,7,1,1,4,49,1,3,1073,1110,6.81378763866878,23.24405705229794,6.9049128367670365,23.61727416798732,1.0172932330827067,3.8,2.232330827067669,1463,727,1298,60,311,33,84,53,9,57,9,28,59,12,86,23,18,11,33,6,22,3350,626,0,1897,2079,0,2932,1044,0,3666,310,0,983,2993,0,708,275,2698,295,0,300,23,40,1,74,72,123,80,102,388,1,1,11,126,134,256,96,124,770,6,25,65,110,123,350,248,92,43,16,140,1,6,6,23,0,1512,87,2028,0,6,30,18,706,606,622,45,49,756,128,230,64,72,12,314,1,3,2078,2125,137,788,71,505,51,0,21,7,2,88,11,1288,519,0,0,1587,1063,11,37,80,648,34,141,26,0,7,144,172,98,74,260,184,171,57,432,1779,162,74,132,387,308,256,122,166,83,70,28,60,19,38,519,56.0,57.0,60.0,54.0,65.0,72.0,52.0,54.0,48.0,58.0,48.0,53.0,49.0,61.0,69.0,63.0,67.0,55.0,55.0,67.0,84.0,59.0,70.0,65.0,68.0,43.0,61.0,55.0,50.0,37.0,45.0,45.0,37.0,45.0,46.0,36.0,46.0,47.0,45.0,42.0,65.0,43.0,39.0,51.0,45.0,43.0,61.0,46.0,49.0,36.0,42.0,42.0,42.0,37.0,42.0,41.0,49.0,46.0,43.0,42.0,47.0,55.0,63.0,59.0,48.0,36.0,50.0,41.0,52.0,47.0,41.0,44.0,46.0,35.0,45.0,35.0,48.0,38.0,31.0,35.0,27.0,15.0,25.0,22.0,18.0,16.0,11.0,16.0,9.0,5.0,8.0,8.0,9.0,7.0,5.0,3.0,2.0,1.0,3.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,856,2509,838,0,292,284,280,307,346,246,218,216,243,235,205,221,272,226,211,187,107,57,37,9,4,0,3554,273,351,25,0,3565,319,294,25,0,855,57,143,924,191,118,1060,855,0,1612,2080,511,0,8,1185,47,0,1,0,0,0,0,0,2962,0,43,67,59,8,10,6,226,3784,0,627,808,389,19,349,2011,0,1.7977161500815662,0.0,2.74442538593482,0.0,9.636688079942898,21,19,27,2,6,4,89,1295,0,61,43,23,41,112,127,119,85,157,94,65,34,65,30,60,237,1407,56,1224,239,1140,323,377,1086,496,967,68,1395,841,622,366,1097,1373,90,1214,249,950,264,828,635,1170,293,804,659,261,1202,158,1305,19,1444,414,705,303,41,5,967,496,0,2,292,11,0,1,0,0,0,0,0,1157,0,1.4155313351498635,1.4475476839237058,1.2083333333333333,1.0602409638554218,1.0602409638554218,57.33151059466849 +40402,Chiriquí,Boquete,Caldera,803,0,8,0,0,0,0,0,2,0,0,7,3,0,0,1,520,25,10,537,9,3,1,0,5,1,503,3,0,24,0,2,16,0,8,503,21,22,1,7,0,2,524,12,3,0,0,17,556,0,107,30,18,64,36,0,6,51,463,33,3,0,502,28,0,5,2,19,0,535,15,6,0,0,0,0,188,348,0,5,13,2,2,508,42,0,0,1,0,1,0,1,1,0,0,823,6.958333333333333,23.764492753623188,6.990942028985507,23.907608695652176,1.0305755395683454,3.474820143884892,2.2284172661870505,583,293,563,31,68,20,23,21,4,8,1,9,9,4,46,34,10,14,7,1,12,1320,235,0,418,1137,0,1027,528,0,1420,135,0,432,1123,0,385,47,1043,80,0,81,19,22,5,49,57,96,51,52,287,0,0,1,46,54,115,43,57,273,0,1,26,39,38,31,36,47,12,2,15,0,0,0,0,0,526,63,819,0,1,27,8,118,262,379,32,28,289,42,145,32,32,1,41,1,1,847,790,65,277,32,191,7,0,9,3,9,71,12,658,29,0,0,887,383,2,2,7,102,10,15,0,0,3,30,32,32,21,103,39,124,35,170,824,152,74,95,119,109,91,53,44,19,8,4,6,0,10,29,15.0,22.0,26.0,19.0,22.0,30.0,17.0,21.0,24.0,33.0,24.0,27.0,33.0,14.0,24.0,26.0,22.0,27.0,39.0,17.0,22.0,25.0,27.0,23.0,24.0,18.0,29.0,18.0,30.0,17.0,16.0,14.0,20.0,21.0,17.0,16.0,18.0,21.0,27.0,20.0,12.0,15.0,21.0,21.0,21.0,24.0,23.0,21.0,28.0,10.0,20.0,23.0,20.0,15.0,29.0,17.0,21.0,20.0,18.0,12.0,20.0,20.0,14.0,15.0,15.0,9.0,15.0,24.0,11.0,15.0,13.0,11.0,12.0,16.0,10.0,11.0,11.0,7.0,9.0,6.0,6.0,9.0,6.0,6.0,6.0,10.0,6.0,4.0,2.0,2.0,7.0,3.0,0.0,4.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,351,1029,257,0,104,125,122,131,121,112,88,102,90,106,107,88,84,74,62,44,33,24,17,1,2,0,1568,16,49,4,0,1570,35,28,4,0,376,15,25,278,62,7,523,351,0,897,695,45,0,0,165,0,0,0,0,0,0,2,0,1470,0,25,7,39,4,0,0,19,1543,0,230,410,85,6,33,873,0,2.188405797101449,0.0,3.1044776119402986,0.0,7.792302993280391,9,6,14,3,0,0,13,538,0,75,47,23,46,73,59,59,49,58,30,16,4,7,6,8,13,564,19,479,104,478,105,112,471,387,196,69,514,300,283,29,554,530,53,487,96,165,322,174,409,383,200,224,359,194,389,209,374,5,578,144,321,107,11,2,357,226,0,0,36,0,0,0,0,0,0,1,0,546,0,1.4478632478632478,1.3504273504273503,1.0,1.0444444444444445,1.0444444444444445,54.00857632933105 +40403,Chiriquí,Boquete,Palmira,755,14,1,0,0,0,0,0,13,0,0,123,0,0,0,5,402,106,9,462,51,2,0,0,4,3,400,8,1,48,0,18,45,0,2,336,31,72,9,67,0,7,481,37,1,0,0,3,522,18,110,29,7,63,21,0,1,26,379,116,0,0,439,51,0,27,0,5,0,512,5,0,0,4,0,1,169,306,0,30,17,0,6,448,63,2,0,2,0,0,0,0,1,0,0,906,5.626692456479691,21.131528046421664,5.97872340425532,21.690522243713733,1.0363984674329505,3.289272030651341,1.8908045977011492,670,380,903,78,190,19,39,27,9,42,14,5,62,2,27,11,7,5,16,15,8,1435,777,0,385,1827,0,901,1311,0,1915,297,0,715,1497,0,637,78,1264,233,0,239,29,32,4,84,76,114,88,90,360,2,0,3,80,96,154,93,81,337,0,11,17,26,28,40,44,57,5,3,17,0,0,0,2,0,835,54,1011,0,13,19,16,63,423,410,50,65,292,52,119,30,49,1,320,0,22,1301,1139,67,510,40,202,20,1,22,23,12,66,15,1113,45,0,0,1310,413,3,14,16,122,3,17,2,0,22,34,43,32,17,84,179,95,42,341,1472,187,56,99,247,117,98,55,36,15,6,3,4,0,0,45,45.0,76.0,62.0,45.0,58.0,48.0,60.0,55.0,39.0,52.0,57.0,47.0,41.0,50.0,50.0,48.0,53.0,41.0,45.0,46.0,56.0,48.0,33.0,36.0,38.0,39.0,40.0,36.0,44.0,29.0,31.0,27.0,40.0,23.0,36.0,30.0,30.0,28.0,29.0,30.0,27.0,26.0,25.0,20.0,15.0,26.0,21.0,18.0,33.0,24.0,20.0,21.0,20.0,23.0,19.0,21.0,20.0,22.0,18.0,18.0,13.0,26.0,25.0,15.0,16.0,15.0,13.0,15.0,12.0,11.0,6.0,10.0,10.0,6.0,5.0,4.0,7.0,8.0,6.0,9.0,6.0,3.0,9.0,5.0,3.0,6.0,4.0,1.0,5.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,785,1468,187,0,286,254,245,233,211,188,157,147,113,122,103,99,95,66,37,34,26,18,2,4,0,0,2301,26,29,84,0,2303,29,24,84,0,726,16,48,277,43,9,536,785,0,1170,1217,53,0,0,1239,45,0,0,1,0,1,0,0,1154,0,122,18,20,2,5,3,37,2233,0,301,512,48,4,20,1555,0,2.394463667820069,0.0,3.5,0.0,6.6676229508196725,37,5,11,1,1,1,15,599,0,40,43,19,42,92,64,71,44,52,31,12,2,5,4,3,17,587,83,390,280,363,307,165,505,109,561,9,661,373,297,56,614,516,154,414,256,172,242,162,508,289,381,181,489,237,433,190,480,20,650,150,347,158,15,7,484,186,0,0,264,12,0,0,1,0,1,0,0,392,0,1.921713441654357,1.6824224519940916,1.6666666666666667,1.04,1.04,48.007462686567166 +40404,Chiriquí,Boquete,Alto Boquete,4582,13,249,0,1,1,0,1,14,0,0,3,4,0,0,91,2514,39,14,2620,24,1,0,0,7,6,2588,8,8,20,0,2,19,0,13,2544,60,46,0,4,0,4,2570,13,54,0,0,21,2658,85,1094,445,260,240,62,0,319,551,1678,100,8,2,2563,49,1,24,0,21,0,2486,69,84,15,2,0,2,1985,638,0,21,14,0,100,2238,188,8,1,9,0,3,0,110,1,0,4202,666,6.842834520981789,22.391528107680127,6.961203483768805,23.75217735550277,1.021068472535741,3.9206170052671183,2.5041384499623778,2721,1547,2567,111,509,120,114,66,31,132,26,33,117,17,172,69,42,42,52,30,41,7036,721,0,4347,3410,0,6565,1192,0,7343,414,0,2181,5576,0,1396,785,5333,243,0,255,81,110,12,141,152,202,155,155,666,3,4,17,195,237,451,192,243,1827,9,71,107,190,234,641,630,263,102,17,330,3,5,9,48,0,3325,240,3572,0,27,110,13,1015,1242,1030,141,144,2177,319,594,122,167,27,116,3,13,3893,4218,596,1523,156,1097,117,0,25,24,6,181,24,2585,1027,0,0,2623,2359,19,93,108,1460,90,333,52,0,26,326,633,378,216,625,160,502,198,501,3306,356,178,234,430,554,578,292,419,256,187,67,102,39,86,1027,59.0,103.0,88.0,104.0,85.0,116.0,116.0,99.0,105.0,99.0,113.0,107.0,117.0,126.0,114.0,118.0,120.0,104.0,105.0,96.0,122.0,100.0,136.0,114.0,93.0,121.0,101.0,120.0,110.0,111.0,92.0,104.0,117.0,91.0,105.0,87.0,101.0,94.0,91.0,102.0,107.0,107.0,85.0,108.0,111.0,117.0,106.0,102.0,103.0,84.0,112.0,124.0,79.0,94.0,114.0,95.0,106.0,103.0,95.0,105.0,92.0,100.0,79.0,103.0,98.0,105.0,77.0,74.0,89.0,78.0,84.0,74.0,80.0,81.0,55.0,63.0,59.0,51.0,48.0,36.0,51.0,35.0,34.0,25.0,34.0,29.0,19.0,16.0,14.0,14.0,13.0,4.0,7.0,3.0,7.0,6.0,3.0,2.0,3.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1551,5184,1376,0,439,535,577,543,565,563,509,475,518,512,523,504,472,423,374,257,179,92,34,14,3,0,7130,274,684,23,0,7149,643,296,23,0,1487,107,87,2155,274,157,2294,1550,0,1935,5581,595,0,6,782,21,2,2,0,1,1,3,0,7293,0,299,158,198,37,13,12,262,7132,0,1638,1833,647,38,456,3499,0,1.7708887706226717,0.0,2.648559670781893,0.0,10.494390334114168,104,55,76,18,5,6,100,2357,0,171,75,28,77,148,220,221,174,349,207,188,89,137,82,128,420,2695,26,2579,142,2474,247,619,2102,1386,1335,322,2399,1569,1152,698,2023,2635,86,2498,223,1898,600,1744,977,2379,342,1794,927,345,2376,305,2416,68,2653,526,1547,585,63,17,1712,1009,0,4,184,9,1,1,0,0,0,2,0,2520,0,1.4218407596785976,1.5405405405405406,1.1063829787234043,1.0232558139534884,1.0232558139534884,55.216464535097394 +40405,Chiriquí,Boquete,Jaramillo,1303,2,0,0,0,0,0,0,135,0,0,22,5,0,0,4,735,61,9,764,36,1,0,0,8,0,731,7,10,14,0,15,32,0,0,686,13,80,2,28,0,0,775,27,1,0,0,6,809,9,294,45,28,98,22,0,5,91,602,110,1,0,716,59,0,27,0,7,0,769,20,7,2,8,0,3,328,422,0,30,27,2,5,703,81,2,2,15,0,1,0,0,0,0,0,1467,6.893536121673004,23.10012674271229,6.97084917617237,23.789607097591887,1.0160692212608158,3.524103831891224,2.1520395550061804,893,467,1010,20,169,32,33,24,10,41,7,8,228,0,56,15,12,10,9,13,13,2106,628,0,580,2154,0,1568,1166,0,2443,291,0,660,2074,0,585,75,1811,263,0,272,15,31,1,74,106,109,105,78,414,0,0,0,85,110,223,73,98,535,1,14,26,44,43,90,97,43,5,2,34,0,0,1,5,0,1129,38,1263,0,0,18,13,200,389,593,46,35,564,83,157,72,100,9,165,0,6,1550,1392,48,684,83,294,14,0,26,7,3,96,8,1121,35,0,0,1490,663,0,16,18,200,4,34,5,0,7,39,45,43,69,154,101,159,59,491,1470,173,122,133,283,319,163,73,63,25,35,6,27,5,10,35,38.0,55.0,66.0,49.0,51.0,54.0,58.0,37.0,52.0,52.0,43.0,37.0,52.0,38.0,43.0,52.0,44.0,49.0,62.0,37.0,52.0,52.0,48.0,57.0,55.0,53.0,46.0,40.0,48.0,36.0,40.0,35.0,46.0,37.0,36.0,36.0,34.0,30.0,26.0,37.0,34.0,34.0,39.0,36.0,28.0,35.0,27.0,32.0,23.0,30.0,41.0,29.0,41.0,31.0,27.0,38.0,25.0,31.0,32.0,22.0,31.0,23.0,17.0,25.0,15.0,28.0,15.0,23.0,23.0,12.0,25.0,17.0,16.0,16.0,25.0,21.0,24.0,7.0,25.0,11.0,19.0,10.0,7.0,4.0,8.0,7.0,7.0,3.0,4.0,4.0,3.0,3.0,5.0,2.0,0.0,2.0,0.0,1.0,0.0,4.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,725,1834,383,0,259,253,213,244,264,223,194,163,171,147,169,148,111,101,99,88,48,25,13,7,2,0,2762,59,100,21,0,2764,66,91,21,0,854,40,48,398,77,21,780,724,0,1728,1053,161,0,0,894,51,0,0,0,0,0,1,0,1996,0,5,15,68,4,2,1,50,2797,0,455,642,111,9,93,1632,0,2.2055406613047364,0.0,3.143421052631579,0.0,7.556764106050306,4,7,27,3,1,0,26,825,0,48,36,28,49,111,137,102,55,104,49,28,11,24,11,19,10,873,20,672,221,640,253,152,741,132,761,31,862,549,344,108,785,792,101,705,188,386,319,303,590,594,299,342,551,181,712,118,775,9,884,216,466,195,16,91,626,267,0,0,178,11,0,0,0,0,0,0,0,704,0,1.5752032520325203,1.4146341463414631,1.25,1.0,1.0,52.910414333706605 +40406,Chiriquí,Boquete,Los Naranjos,1085,32,76,13,0,0,0,0,83,0,0,324,4,0,0,6,752,92,12,785,65,6,2,0,4,0,739,37,6,35,2,5,28,0,10,745,57,47,1,11,0,1,815,21,24,0,0,2,862,5,161,25,44,60,49,0,11,128,575,134,11,3,724,99,0,32,1,5,1,827,20,4,1,2,2,6,419,337,2,42,60,2,10,733,78,3,1,25,1,4,0,4,0,3,0,1617,6.911084043848964,23.75395858708892,6.965895249695493,23.889159561510358,1.0220417633410672,3.78538283062645,2.3016241299303943,1271,638,1484,78,334,32,67,54,4,67,22,18,158,2,56,18,13,11,22,5,8,2807,1049,0,1015,2841,0,2096,1760,0,3340,516,0,1043,2813,0,886,157,2369,444,0,446,38,63,3,129,127,157,131,136,520,0,1,2,158,145,276,106,154,589,4,10,45,85,91,189,118,51,30,2,43,0,1,0,6,0,1674,60,1644,0,5,26,7,279,593,681,50,41,758,77,170,87,64,6,564,0,1,2252,1977,92,891,91,555,75,0,20,3,21,111,9,1401,103,0,0,2110,808,2,15,30,339,25,42,7,0,4,97,83,62,62,236,353,155,63,619,2074,169,135,170,561,399,253,94,120,48,33,20,18,11,21,103,97.0,93.0,95.0,88.0,87.0,83.0,80.0,76.0,79.0,73.0,79.0,66.0,80.0,66.0,74.0,69.0,73.0,75.0,80.0,72.0,74.0,77.0,80.0,68.0,87.0,54.0,57.0,58.0,66.0,45.0,59.0,49.0,50.0,58.0,49.0,44.0,45.0,39.0,44.0,62.0,40.0,46.0,69.0,52.0,42.0,38.0,48.0,38.0,36.0,43.0,42.0,40.0,40.0,25.0,34.0,32.0,35.0,33.0,38.0,41.0,51.0,22.0,38.0,30.0,36.0,30.0,24.0,26.0,30.0,29.0,20.0,22.0,26.0,24.0,14.0,16.0,24.0,16.0,17.0,14.0,11.0,17.0,12.0,20.0,14.0,10.0,11.0,9.0,6.0,11.0,13.0,4.0,5.0,4.0,1.0,4.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1216,2523,490,0,460,391,365,369,386,280,265,234,249,203,181,179,177,139,106,87,74,47,27,7,3,0,3988,62,105,74,0,3989,90,76,74,0,1149,40,102,583,103,34,1003,1215,0,1704,2382,143,0,7,1953,47,0,0,1,0,0,0,0,2221,0,32,69,109,6,20,8,78,3907,0,664,734,225,9,92,2505,0,2.145699614890886,0.0,3.0863723608445297,0.0,7.253724284700874,12,22,37,2,7,3,33,1155,0,29,25,14,27,106,126,99,81,107,71,54,29,28,16,29,40,1182,89,759,512,711,560,295,976,184,1087,21,1250,668,603,205,1066,1110,161,796,475,517,279,406,865,772,499,413,858,277,994,213,1058,28,1243,339,608,306,18,21,960,311,0,2,494,17,0,0,1,0,0,0,0,757,0,1.743034055727554,1.5301857585139318,1.2352941176470589,1.0833333333333333,1.0833333333333333,51.29346970889064 +40501,Chiriquí,Bugaba,La Concepción,7807,20,491,11,0,1,0,1,0,0,0,1,13,0,0,447,6249,124,50,6675,145,7,0,0,37,6,6802,0,5,10,5,14,32,0,2,4702,1476,510,11,135,0,36,6700,46,39,1,0,84,6870,67,405,184,363,340,100,0,1748,1133,3637,319,29,4,6423,89,0,18,20,320,0,6825,27,11,0,6,1,0,4529,2271,4,53,11,2,5889,827,41,24,52,1,0,5,0,21,8,2,6814,1531,6.886192097084505,22.654284445759952,6.975284889743969,23.55468403137487,1.01018922852984,3.728238719068413,2.4622998544395927,6954,3666,7405,447,1302,300,295,215,108,276,63,73,145,31,315,169,58,133,118,98,71,18385,1815,0,9536,10664,0,17047,3153,0,19091,1109,0,6200,14000,0,4629,1571,13362,638,0,685,159,306,32,393,477,568,479,478,1867,1,10,40,570,685,1339,548,787,4458,8,106,464,617,1017,1570,1464,260,263,29,474,2,8,7,29,0,8547,609,9103,0,67,274,85,1462,3862,3218,316,245,6052,535,1068,241,783,32,332,3,16,10101,11179,2196,3896,275,2449,164,3,57,22,17,617,66,6561,292,0,0,7439,6265,41,173,615,3000,225,468,33,0,18,639,1547,926,571,1961,285,1159,800,1250,9921,1123,552,837,1278,1714,2003,1126,1195,668,300,93,88,39,51,292,255.0,265.0,284.0,276.0,313.0,307.0,312.0,330.0,349.0,330.0,377.0,372.0,330.0,319.0,329.0,317.0,331.0,334.0,311.0,292.0,328.0,316.0,334.0,331.0,271.0,348.0,310.0,330.0,348.0,272.0,288.0,293.0,316.0,310.0,334.0,319.0,289.0,326.0,319.0,289.0,296.0,273.0,294.0,298.0,261.0,270.0,225.0,254.0,247.0,262.0,289.0,261.0,251.0,255.0,248.0,239.0,231.0,208.0,220.0,236.0,214.0,185.0,208.0,188.0,177.0,156.0,166.0,153.0,133.0,129.0,130.0,131.0,133.0,129.0,131.0,100.0,116.0,105.0,90.0,76.0,91.0,61.0,73.0,70.0,56.0,55.0,45.0,40.0,35.0,27.0,37.0,18.0,18.0,17.0,13.0,16.0,9.0,11.0,5.0,5.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,4748,13946,2585,1,1393,1628,1727,1585,1580,1608,1541,1542,1422,1258,1304,1134,972,737,654,487,351,202,103,46,5,1,20573,286,380,41,0,20586,336,317,41,0,4453,260,863,4111,728,250,5867,4748,0,7250,13659,371,0,21,923,49,10,0,1,0,2,1,0,20273,0,467,207,659,49,14,33,1292,18559,0,4809,5940,1510,106,35,8880,0,1.844644148331784,0.0,2.6861313868613137,0.0,9.885902255639095,187,91,266,20,9,17,515,5849,0,399,217,130,281,500,740,895,653,1118,747,513,243,233,103,102,66,6843,111,6583,371,6385,569,1191,5763,6039,915,2253,4701,4119,2835,1424,5530,6678,276,6380,574,4184,2196,3529,3425,5820,1134,3659,3295,1227,5727,1033,5921,83,6871,1291,3888,1637,138,2,4158,2796,1,10,257,11,1,0,1,0,1,0,0,6673,0,1.452127659574468,1.6071017826336975,1.2,1.075601374570447,1.075601374570447,51.66575578886811 +40502,Chiriquí,Bugaba,Aserrío de Gariché,2297,5,8,0,0,0,0,0,1,0,1,0,0,0,0,46,1445,321,67,1772,40,2,2,0,62,1,1748,0,2,12,7,25,72,0,13,116,145,1333,16,256,0,13,1776,63,1,1,0,38,1879,0,140,74,13,168,36,0,11,106,1628,130,4,0,1672,151,3,7,45,1,0,1865,2,0,0,2,10,0,530,1231,1,113,4,0,701,13,3,667,405,4,0,4,0,23,58,1,0,2312,5.894002789400279,12.708507670850768,6.188284518828452,13.95536959553696,1.0074507716870675,3.229377328366152,2.060670569451836,1893,976,2203,174,438,59,61,48,16,89,9,17,29,3,126,51,12,32,43,22,26,4480,1160,0,851,4789,0,3068,2572,0,5088,552,0,1645,3995,0,1498,147,3612,383,0,399,55,98,13,161,201,260,220,233,1099,1,0,2,175,278,455,181,264,948,4,10,61,102,93,144,81,46,23,3,26,0,0,0,4,0,1801,235,2994,0,10,87,31,279,1075,1275,200,165,903,190,269,64,197,1,339,1,3,2983,3032,241,950,70,591,65,0,45,5,5,319,32,2241,15,0,0,3479,1184,2,22,57,241,17,24,4,0,4,34,132,72,77,446,217,266,152,636,3593,501,244,274,452,356,247,116,135,48,24,4,4,1,1,15,83.0,85.0,108.0,99.0,108.0,99.0,102.0,97.0,100.0,104.0,114.0,129.0,94.0,86.0,118.0,118.0,102.0,123.0,109.0,100.0,100.0,85.0,100.0,102.0,70.0,88.0,81.0,76.0,95.0,70.0,93.0,72.0,97.0,78.0,67.0,56.0,64.0,75.0,85.0,76.0,64.0,73.0,68.0,68.0,73.0,82.0,57.0,59.0,55.0,78.0,77.0,55.0,63.0,61.0,67.0,79.0,65.0,63.0,56.0,53.0,67.0,53.0,51.0,38.0,52.0,36.0,58.0,37.0,34.0,52.0,23.0,34.0,31.0,29.0,34.0,32.0,35.0,26.0,36.0,22.0,23.0,16.0,25.0,18.0,16.0,17.0,14.0,16.0,13.0,10.0,13.0,4.0,8.0,6.0,0.0,0.0,2.0,4.0,5.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1526,3759,730,0,483,502,541,552,457,410,407,356,346,331,323,316,261,217,151,151,98,70,31,11,1,0,5862,46,31,76,0,5862,47,30,76,0,1363,81,539,922,214,39,1331,1526,0,3477,2484,54,0,12,584,7,0,1,0,6,0,1,0,5404,0,79,97,333,21,3,4,633,4845,0,606,1162,256,38,2,3951,0,2.375490966221524,0.0,3.379754242246928,0.0,7.15876974231089,28,38,139,12,3,3,203,1467,0,214,185,114,163,306,284,198,88,181,70,45,20,13,4,4,4,1815,78,1562,331,1457,436,237,1656,1504,389,236,1657,1028,865,63,1830,1639,254,1517,376,485,1032,363,1530,892,1001,516,1377,526,1367,455,1438,21,1872,409,1032,435,17,2,1273,620,0,3,133,5,0,0,0,1,0,0,0,1751,0,1.5741424802110815,1.6,1.0,1.011904761904762,1.011904761904762,52.91283676703645 +40503,Chiriquí,Bugaba,Bugaba,1901,5,28,0,0,0,0,0,0,0,0,0,4,0,0,230,1216,30,11,1454,22,0,0,0,11,0,1477,0,1,3,0,2,4,0,0,987,353,102,5,29,0,11,1460,18,1,0,0,8,1487,12,138,96,35,116,50,0,266,178,971,69,3,0,1456,13,0,5,7,6,0,1482,2,3,0,0,0,0,738,737,0,9,1,2,1014,369,81,1,6,0,2,1,0,8,5,0,1681,257,6.782786885245901,20.95150273224044,6.897540983606557,21.581967213114755,1.0168123739071957,3.6032279757901815,2.3658372562205785,1516,830,1728,101,365,33,59,45,25,52,30,12,45,4,113,38,19,41,23,10,32,3983,563,0,1509,3037,0,3477,1069,0,4209,337,0,1670,2876,0,1439,231,2557,319,0,321,48,68,8,109,96,140,99,134,497,0,1,4,123,193,357,149,200,1084,22,55,61,120,133,167,159,108,40,1,47,1,0,0,1,0,1883,208,1992,0,17,97,17,219,887,730,105,51,1199,128,316,111,220,9,76,1,3,2369,2476,383,823,137,641,35,0,33,11,4,139,27,1705,39,0,0,2077,1388,4,64,76,399,28,46,1,0,9,79,199,135,100,535,70,361,200,403,2483,274,178,222,317,322,445,212,220,79,29,7,6,6,6,39,69.0,56.0,84.0,90.0,74.0,73.0,78.0,82.0,75.0,81.0,84.0,83.0,82.0,72.0,77.0,66.0,67.0,76.0,84.0,71.0,66.0,87.0,74.0,88.0,78.0,91.0,94.0,95.0,88.0,83.0,80.0,71.0,73.0,66.0,61.0,64.0,60.0,56.0,58.0,79.0,57.0,42.0,66.0,62.0,61.0,74.0,58.0,58.0,49.0,63.0,64.0,59.0,45.0,49.0,53.0,47.0,60.0,57.0,49.0,53.0,40.0,47.0,44.0,43.0,41.0,34.0,46.0,30.0,36.0,24.0,29.0,22.0,24.0,20.0,28.0,18.0,13.0,12.0,15.0,11.0,7.0,16.0,10.0,8.0,11.0,5.0,10.0,4.0,10.0,5.0,3.0,2.0,3.0,4.0,1.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1160,3217,468,0,373,389,398,364,393,451,351,317,288,302,270,266,215,170,123,69,52,34,13,7,0,0,4746,34,47,18,0,4747,39,41,18,0,1094,49,54,811,115,28,1534,1160,0,1884,2920,41,0,6,157,7,0,0,0,1,0,4,0,4670,0,43,42,272,25,5,2,469,3987,0,884,1267,224,24,2,2444,0,2.011428571428572,0.0,2.905673758865248,0.0,8.613415892672858,21,17,91,12,1,2,172,1200,0,109,59,46,71,151,157,246,153,236,123,57,34,27,12,12,19,1504,12,1400,116,1355,161,253,1263,1319,197,371,1145,907,609,219,1297,1430,86,1379,137,796,583,587,929,1010,506,703,813,226,1290,210,1306,17,1499,262,836,379,39,0,949,567,0,2,47,1,0,0,0,0,0,1,0,1465,0,1.562664907651715,1.633245382585752,1.0,1.0357142857142858,1.0357142857142858,50.12005277044855 +40505,Chiriquí,Bugaba,Gómez,1171,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,764,106,29,863,8,15,1,0,4,9,820,0,0,9,1,16,53,0,1,0,39,570,39,249,3,0,808,73,2,0,0,17,900,0,103,37,10,83,43,0,6,30,743,120,1,0,771,96,0,7,21,4,1,898,1,0,0,0,1,0,261,555,0,75,9,0,105,150,16,33,575,5,0,8,0,4,3,1,0,1176,6.531365313653136,14.136531365313653,6.981549815498155,21.48339483394834,1.012222222222222,3.422222222222222,2.3044444444444445,911,502,932,82,174,18,25,19,9,45,3,8,18,0,60,28,10,4,19,0,6,2107,474,0,344,2237,0,1478,1103,0,2343,238,0,599,1982,0,529,70,1786,196,0,196,11,37,0,55,70,105,96,88,661,0,0,0,87,122,192,72,132,434,7,7,24,35,41,49,19,23,5,3,10,0,0,0,0,0,952,25,1365,0,0,11,8,66,388,815,70,26,237,74,67,21,71,26,466,0,1,1452,1294,80,403,24,373,34,3,45,1,19,185,16,1003,0,0,0,1685,532,1,9,22,80,3,10,0,0,1,22,42,23,21,132,303,63,74,296,1587,310,104,196,232,141,64,49,34,13,13,1,1,0,1,0,50.0,39.0,45.0,31.0,49.0,37.0,38.0,36.0,45.0,34.0,42.0,45.0,37.0,45.0,54.0,51.0,53.0,50.0,53.0,52.0,54.0,41.0,51.0,47.0,47.0,39.0,39.0,41.0,28.0,25.0,42.0,31.0,28.0,35.0,29.0,27.0,21.0,25.0,33.0,26.0,19.0,34.0,25.0,41.0,28.0,28.0,38.0,22.0,40.0,34.0,37.0,32.0,28.0,45.0,30.0,26.0,28.0,41.0,38.0,25.0,31.0,30.0,27.0,25.0,27.0,20.0,29.0,12.0,22.0,20.0,18.0,17.0,18.0,22.0,16.0,23.0,14.0,19.0,13.0,9.0,13.0,14.0,10.0,6.0,7.0,5.0,9.0,6.0,7.0,3.0,2.0,3.0,2.0,3.0,3.0,0.0,2.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,627,1747,372,0,214,190,223,259,240,172,165,132,147,162,172,158,140,103,91,78,50,30,13,5,2,0,2655,13,3,75,0,2655,13,3,75,0,671,41,251,513,110,18,516,626,0,1699,1032,15,0,0,301,30,0,0,0,0,0,0,0,2415,0,31,29,80,8,1,0,137,2460,0,174,472,70,4,1,2025,0,2.5211141060197666,0.0,3.399239543726236,0.0,7.091041514930809,9,11,47,3,1,0,69,771,0,62,119,65,136,176,126,85,42,48,23,21,3,4,0,1,0,858,53,731,180,744,167,126,785,572,339,62,849,478,433,14,897,809,102,663,248,266,397,190,721,510,401,302,609,373,538,427,484,8,903,214,473,210,14,0,654,257,0,0,76,7,0,0,0,0,0,0,0,828,0,1.5938529088913282,1.420417124039517,1.3333333333333333,1.0909090909090908,1.0909090909090908,54.09659714599341 +40506,Chiriquí,Bugaba,La Estrella,2444,6,1,0,0,0,0,0,0,0,0,0,2,0,0,48,1581,247,60,1847,29,16,3,0,39,2,1841,0,2,16,4,13,53,1,6,44,324,1093,58,409,1,7,1836,77,0,0,0,23,1936,10,199,144,28,57,77,0,115,102,1581,131,3,4,1801,75,0,5,51,2,2,1928,4,0,0,1,3,0,640,1207,1,81,7,0,415,658,219,541,43,2,0,6,0,17,32,3,0,2453,6.377708978328173,20.410216718266252,6.457430340557275,20.894736842105264,1.0227272727272727,3.2231404958677685,2.096590909090909,1982,1080,2113,182,344,64,62,35,24,59,19,17,45,6,128,37,5,35,48,3,23,4577,1083,0,988,4672,0,2350,3310,0,5214,446,0,1433,4227,0,1226,207,3883,344,0,350,39,94,6,145,184,264,177,219,1195,0,1,10,163,203,419,148,212,1079,8,35,51,91,98,154,181,73,30,2,27,0,2,0,0,0,1974,207,2889,0,18,118,48,203,903,1555,146,82,963,218,274,75,179,17,399,4,1,3071,2961,346,962,76,665,34,1,45,1,23,352,52,2065,111,0,0,3229,1289,10,47,61,386,21,25,2,0,2,37,205,104,78,370,294,297,186,608,3240,585,196,337,442,352,313,144,166,95,31,7,8,2,3,111,99.0,88.0,90.0,95.0,103.0,105.0,95.0,99.0,93.0,95.0,114.0,108.0,95.0,82.0,88.0,79.0,93.0,75.0,85.0,86.0,95.0,93.0,91.0,112.0,84.0,80.0,84.0,100.0,109.0,104.0,102.0,95.0,77.0,83.0,80.0,68.0,73.0,86.0,70.0,59.0,61.0,55.0,88.0,72.0,73.0,58.0,68.0,66.0,66.0,83.0,73.0,69.0,86.0,53.0,55.0,61.0,75.0,69.0,64.0,60.0,63.0,56.0,54.0,53.0,44.0,51.0,65.0,47.0,54.0,33.0,40.0,40.0,42.0,38.0,46.0,27.0,34.0,32.0,27.0,21.0,16.0,19.0,19.0,18.0,10.0,14.0,20.0,11.0,10.0,16.0,7.0,6.0,3.0,7.0,5.0,2.0,4.0,4.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1449,3788,795,0,475,487,487,418,475,477,437,356,349,341,336,329,270,250,206,141,82,71,28,12,5,0,5934,24,24,50,0,5934,25,23,50,0,1523,51,78,913,177,20,1821,1449,0,3651,2343,38,0,3,549,14,0,4,0,9,0,0,0,5453,0,40,101,153,7,1,1,241,5488,0,793,1445,207,26,0,3561,0,2.276194299478121,0.0,3.1481696687972107,0.0,7.578912466843501,15,37,72,4,1,1,87,1765,0,213,180,100,189,290,235,196,134,193,101,48,31,26,13,10,21,1916,66,1736,246,1675,307,256,1726,1561,421,262,1720,1229,753,59,1923,1793,189,1678,304,772,906,473,1509,878,1104,746,1236,613,1369,683,1299,15,1967,435,1110,396,41,0,1395,587,0,2,139,4,0,0,0,1,0,0,0,1836,0,1.5494450050454087,1.4939455095862766,1.0,1.0740740740740742,1.0740740740740742,52.15539858728557 +40507,Chiriquí,Bugaba,San Andrés,1095,9,0,0,0,0,0,0,0,0,0,0,0,0,0,12,658,144,15,805,9,3,1,0,8,3,725,0,4,33,1,13,51,0,2,152,139,344,24,169,0,1,760,59,1,0,0,9,829,0,62,27,5,171,10,0,7,44,674,98,1,5,701,96,0,12,10,10,0,825,0,1,1,1,0,1,270,483,1,55,20,0,636,66,4,98,12,0,1,3,0,7,2,0,0,1104,6.807365439093484,22.926345609065155,6.920679886685552,23.24929178470255,1.0180940892641737,3.5126658624849214,2.393244873341376,844,410,875,47,184,20,34,25,6,42,10,8,21,1,67,19,16,14,21,3,10,1903,482,0,325,2060,0,1504,881,0,2185,200,0,585,1800,0,492,93,1635,165,0,166,6,30,2,55,80,85,70,70,565,0,1,2,71,82,204,77,87,395,5,8,26,48,63,114,32,31,3,0,6,0,1,0,0,0,886,14,1268,0,2,3,4,115,400,673,54,26,232,79,65,28,86,8,400,0,1,1277,1250,102,331,33,391,40,0,1,1,7,153,26,799,25,0,0,1434,508,2,13,49,152,3,6,1,0,1,17,62,32,18,104,290,82,56,238,1286,325,130,182,210,132,85,55,51,24,15,1,4,1,1,25,23.0,34.0,39.0,46.0,35.0,39.0,30.0,47.0,35.0,31.0,38.0,41.0,39.0,36.0,37.0,44.0,45.0,42.0,42.0,43.0,33.0,31.0,43.0,36.0,39.0,41.0,36.0,29.0,34.0,25.0,25.0,32.0,35.0,27.0,26.0,22.0,23.0,30.0,26.0,24.0,31.0,29.0,29.0,44.0,35.0,31.0,16.0,37.0,29.0,24.0,38.0,40.0,32.0,34.0,29.0,28.0,27.0,26.0,35.0,27.0,23.0,32.0,25.0,22.0,22.0,33.0,26.0,18.0,23.0,16.0,23.0,18.0,23.0,13.0,21.0,19.0,17.0,14.0,16.0,10.0,9.0,12.0,12.0,10.0,7.0,9.0,9.0,10.0,7.0,6.0,3.0,3.0,6.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,550,1578,399,0,177,182,191,216,182,165,145,125,168,137,173,143,124,116,98,76,50,41,16,2,0,0,2469,11,15,32,0,2470,13,12,32,0,609,13,214,407,110,22,602,550,0,1448,1052,27,0,0,298,10,0,0,0,1,0,3,0,2215,0,29,19,47,5,13,2,20,2392,0,202,522,113,9,3,1678,0,2.456872037914692,0.0,3.377564979480164,0.0,7.6086268302334785,9,6,19,2,6,0,7,795,0,51,81,63,117,144,135,62,56,52,26,28,9,9,4,2,5,812,32,666,178,657,187,183,661,422,422,38,806,539,305,46,798,767,77,655,189,163,492,214,630,520,324,271,573,393,451,413,431,12,832,198,401,227,18,0,596,248,0,0,69,4,0,0,0,1,0,1,0,769,0,1.5130331753554502,1.481042654028436,1.0,1.0178571428571428,1.0178571428571428,56.30924170616114 +40508,Chiriquí,Bugaba,Santa Marta,1570,8,41,0,0,0,0,0,0,0,0,0,0,0,0,7,1197,86,26,1246,44,7,2,0,17,0,1277,0,0,7,0,4,27,0,1,256,370,458,9,218,0,5,1266,24,4,0,0,22,1316,1,108,53,25,82,34,0,35,107,1043,128,3,0,1236,45,0,8,26,1,0,1316,0,0,0,0,0,0,497,771,2,45,1,0,818,134,0,278,40,3,0,0,0,32,10,1,1056,563,5.894957983193278,16.12920168067227,5.970588235294118,15.747899159663865,1.0151975683890575,3.492401215805471,2.310790273556231,1336,692,1375,120,334,43,51,45,13,47,13,10,21,6,84,37,14,27,34,13,21,3224,630,0,1060,2794,0,2864,990,0,3546,308,0,1047,2807,0,920,127,2597,210,0,216,24,72,3,99,110,153,115,127,660,0,1,5,112,141,298,132,163,769,3,16,56,78,125,117,157,39,16,4,41,0,0,1,1,0,1425,69,1939,0,0,35,6,254,637,843,61,144,725,105,240,50,188,9,154,0,16,2051,2055,221,625,63,506,36,10,5,21,16,169,17,1608,7,0,0,2004,973,5,23,88,281,16,42,1,0,20,46,118,93,54,335,116,222,152,338,2189,343,161,215,270,303,262,125,125,64,20,8,9,2,3,7,50.0,69.0,71.0,62.0,64.0,68.0,66.0,73.0,70.0,80.0,62.0,74.0,45.0,64.0,57.0,59.0,63.0,55.0,67.0,77.0,40.0,73.0,73.0,61.0,68.0,48.0,66.0,57.0,65.0,51.0,51.0,49.0,72.0,47.0,41.0,44.0,52.0,43.0,58.0,51.0,45.0,30.0,44.0,51.0,51.0,41.0,36.0,50.0,49.0,56.0,57.0,48.0,53.0,53.0,45.0,50.0,50.0,49.0,48.0,40.0,45.0,36.0,41.0,46.0,28.0,39.0,30.0,37.0,33.0,28.0,25.0,26.0,19.0,23.0,26.0,22.0,26.0,20.0,36.0,14.0,18.0,18.0,16.0,13.0,11.0,13.0,8.0,11.0,8.0,8.0,6.0,7.0,6.0,4.0,0.0,1.0,3.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,975,2573,558,0,316,357,302,321,315,287,260,248,221,232,256,237,196,167,119,118,76,48,23,6,1,0,4041,25,16,24,0,4041,26,15,24,0,923,59,391,701,170,41,846,975,0,2398,1679,29,0,3,422,11,1,0,0,2,0,1,0,3666,0,31,94,163,8,2,2,633,3173,0,554,950,245,27,4,2326,0,2.2466627974463145,0.0,2.9911075181891675,0.0,8.101558694593278,13,31,83,5,0,0,216,988,0,125,102,55,124,164,169,161,100,151,75,49,22,26,4,6,3,1299,37,1191,145,1140,196,254,1082,1048,288,205,1131,756,580,90,1246,1226,110,1143,193,692,451,401,935,1003,333,487,849,405,931,448,888,18,1318,274,690,347,25,0,853,483,0,1,88,4,1,0,0,1,0,1,0,1240,0,1.535179640718563,1.5381736526946108,1.3125,1.0454545454545454,1.0454545454545454,54.22305389221557 +40509,Chiriquí,Bugaba,Santa Rosa,743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,479,60,14,536,5,3,0,0,10,1,504,0,4,12,1,4,28,0,2,53,113,272,9,106,0,2,530,18,1,0,0,6,555,0,74,29,8,39,38,0,5,17,470,63,0,0,472,68,0,3,12,0,0,551,2,0,0,1,1,0,156,358,0,33,8,0,0,447,41,50,3,5,0,3,0,0,6,0,0,743,5.237704918032787,14.182377049180328,6.98155737704918,23.8094262295082,1.0216216216216216,3.5981981981981983,2.347747747747748,567,305,554,42,122,18,10,11,5,21,4,6,12,0,34,13,1,8,16,4,7,1168,414,0,213,1369,0,412,1170,0,1431,151,0,376,1206,0,309,67,1097,109,0,110,7,25,5,65,59,66,49,54,370,0,0,4,58,63,105,57,57,267,0,13,9,20,26,49,20,10,3,0,10,0,0,0,1,0,630,46,754,0,6,15,10,63,231,366,42,52,178,55,96,34,37,3,254,2,1,857,820,53,381,35,152,12,0,26,1,5,106,15,521,18,0,0,998,314,4,14,18,68,3,10,1,0,1,15,27,27,16,86,71,70,33,330,827,163,76,117,196,134,61,36,26,6,10,2,2,0,3,18,25.0,24.0,27.0,19.0,30.0,26.0,25.0,31.0,21.0,19.0,27.0,26.0,30.0,25.0,27.0,23.0,23.0,31.0,23.0,26.0,18.0,18.0,34.0,29.0,31.0,28.0,20.0,27.0,23.0,23.0,22.0,16.0,23.0,27.0,20.0,20.0,10.0,25.0,16.0,16.0,15.0,15.0,22.0,20.0,15.0,17.0,16.0,21.0,19.0,20.0,20.0,35.0,19.0,18.0,14.0,23.0,22.0,20.0,22.0,22.0,20.0,13.0,15.0,15.0,9.0,22.0,18.0,14.0,16.0,11.0,16.0,8.0,8.0,11.0,11.0,10.0,14.0,9.0,10.0,13.0,7.0,4.0,2.0,5.0,4.0,6.0,3.0,6.0,6.0,4.0,2.0,4.0,2.0,1.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,382,1039,254,2,125,122,135,126,130,121,108,87,87,93,106,109,72,81,54,56,22,25,10,4,2,2,1650,9,5,13,0,1650,9,5,13,0,450,24,80,244,64,7,426,382,0,862,795,20,0,1,230,0,0,1,0,0,0,0,0,1445,0,1,7,24,5,0,0,30,1610,0,180,387,54,6,9,1041,0,2.3956204379562043,0.0,3.230452674897119,0.0,7.102564102564102,0,5,13,1,0,0,17,531,0,31,44,27,58,96,111,56,44,50,23,12,3,3,1,3,5,549,18,463,104,443,124,107,460,290,277,16,551,345,222,7,560,505,62,437,130,86,351,112,455,257,310,185,382,175,392,211,356,5,562,137,306,115,9,0,418,149,1,0,62,0,0,0,0,0,0,0,0,505,0,1.5114638447971782,1.4462081128747797,1.0,1.0952380952380951,1.0952380952380951,54.30212014134276 +40510,Chiriquí,Bugaba,Santo Domingo,1501,7,28,0,0,0,0,0,0,0,0,0,0,0,0,2,967,136,86,1079,26,64,9,0,13,0,1118,0,0,8,3,7,46,0,9,40,328,684,18,118,0,3,1102,68,3,0,0,18,1191,2,109,46,34,80,74,0,164,89,855,82,1,0,1061,46,2,10,66,6,0,1177,0,0,1,2,11,0,450,623,0,108,9,1,365,191,158,328,106,0,0,4,0,34,4,1,0,1536,6.284313725490196,18.33893557422969,6.358543417366946,18.759103641456583,1.00671704450042,3.4340890008396308,2.3005877413937865,1199,629,1358,171,232,40,41,22,10,47,8,8,47,2,90,41,10,22,22,8,11,2737,802,0,779,2760,0,1689,1850,0,3187,352,0,1100,2439,0,999,101,2189,250,0,253,26,64,7,86,115,150,105,144,560,0,0,4,149,178,269,108,163,692,2,6,43,50,116,95,95,38,5,0,13,1,0,1,1,0,1193,135,1769,0,4,55,17,162,716,739,103,49,638,51,124,41,128,6,260,1,34,1899,1915,224,657,50,288,18,0,7,39,28,141,15,1399,10,0,0,1933,858,4,10,80,192,5,14,1,0,41,48,80,70,35,316,74,152,124,388,2197,268,140,198,250,234,233,108,122,35,12,2,2,2,1,10,61.0,70.0,73.0,71.0,76.0,77.0,83.0,56.0,81.0,69.0,75.0,100.0,59.0,74.0,66.0,74.0,64.0,69.0,74.0,44.0,56.0,59.0,61.0,68.0,58.0,49.0,78.0,57.0,58.0,64.0,55.0,50.0,57.0,59.0,47.0,58.0,47.0,53.0,50.0,49.0,51.0,57.0,40.0,37.0,32.0,44.0,31.0,35.0,26.0,37.0,31.0,38.0,28.0,42.0,37.0,40.0,35.0,41.0,36.0,34.0,33.0,27.0,24.0,30.0,21.0,26.0,17.0,20.0,19.0,14.0,28.0,20.0,14.0,17.0,22.0,13.0,17.0,13.0,21.0,19.0,9.0,10.0,9.0,8.0,7.0,16.0,4.0,6.0,4.0,6.0,2.0,2.0,7.0,3.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1091,2345,378,0,351,366,374,325,302,306,268,257,217,173,176,186,135,96,101,83,43,36,18,1,0,0,3692,34,26,62,0,3693,35,24,62,0,976,46,309,524,130,27,712,1090,0,1865,1893,56,0,3,718,4,1,0,0,0,0,1,0,3087,0,104,164,294,19,1,3,519,2710,0,537,831,154,15,1,2276,0,2.2852604828462515,0.0,3.211753731343284,0.0,7.528054535920294,27,46,122,6,1,2,197,798,0,122,75,40,105,179,162,143,98,152,54,37,13,10,3,2,4,1119,80,996,203,940,259,203,996,907,292,201,998,700,499,85,1114,1069,130,973,226,436,537,310,889,676,523,406,793,448,751,419,780,6,1193,257,658,251,33,0,765,434,0,1,173,3,1,0,0,0,0,1,0,1020,0,1.5838198498748957,1.597164303586322,1.5,1.0277777777777777,1.0277777777777777,49.28940783986656 +40511,Chiriquí,Bugaba,Sortová,1140,10,1,0,1,0,0,0,0,0,0,4,0,0,0,1,767,133,34,875,26,5,3,0,26,0,853,0,2,13,4,10,51,0,2,286,74,441,29,93,0,12,863,39,4,0,0,29,935,7,87,47,22,41,12,0,29,52,711,132,11,0,798,64,1,4,51,14,3,926,1,2,0,0,2,4,261,588,0,72,12,2,539,259,14,18,80,7,0,0,0,1,15,2,0,1156,6.761083743842365,22.348522167487683,6.91256157635468,23.45320197044335,1.0160427807486632,3.247058823529412,2.106951871657754,954,475,957,99,177,26,30,29,10,29,8,8,45,3,50,28,6,36,24,9,17,2074,604,0,567,2111,0,1710,968,0,2417,261,0,720,1958,0,613,107,1762,196,0,196,14,37,8,57,83,113,82,96,624,0,2,3,79,107,196,58,91,450,3,53,32,47,34,75,80,20,11,0,26,0,0,0,1,0,1084,78,1276,0,12,31,17,95,462,550,79,90,444,103,137,72,57,13,330,0,2,1466,1384,137,635,81,250,26,2,25,2,11,224,24,938,49,0,0,1603,570,3,48,15,165,9,24,1,0,2,34,91,46,33,203,100,134,76,443,1434,253,85,138,351,215,162,62,51,34,8,1,4,1,2,49,46.0,41.0,38.0,47.0,51.0,32.0,48.0,36.0,33.0,40.0,47.0,42.0,55.0,48.0,42.0,45.0,53.0,52.0,44.0,57.0,52.0,46.0,47.0,43.0,36.0,47.0,46.0,36.0,32.0,42.0,45.0,32.0,35.0,36.0,37.0,33.0,31.0,34.0,24.0,43.0,34.0,40.0,35.0,16.0,34.0,36.0,44.0,34.0,47.0,33.0,30.0,33.0,43.0,26.0,32.0,20.0,40.0,29.0,32.0,30.0,34.0,24.0,27.0,18.0,20.0,16.0,19.0,19.0,21.0,17.0,16.0,17.0,23.0,18.0,27.0,20.0,15.0,19.0,14.0,13.0,6.0,17.0,14.0,13.0,11.0,9.0,8.0,5.0,4.0,5.0,5.0,3.0,2.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,646,1819,385,0,223,189,234,251,224,203,185,165,159,194,164,151,123,92,101,81,61,31,14,2,3,0,2750,31,31,38,0,2752,33,27,38,0,738,31,70,376,84,26,879,646,0,1693,1116,41,0,2,323,22,2,0,0,0,0,0,0,2501,0,26,31,95,8,0,0,252,2438,0,353,683,85,11,6,1712,0,2.2348936170212768,0.0,3.170610211706102,0.0,7.490175438596491,13,15,31,0,0,0,97,798,0,89,69,20,77,163,139,113,92,83,42,23,16,8,1,3,12,906,48,751,203,719,235,131,823,545,409,83,871,488,466,67,887,839,115,731,223,303,428,233,721,598,356,289,665,336,618,429,525,21,933,227,507,191,29,1,665,289,0,1,90,4,2,0,0,0,0,0,0,857,0,1.5350785340314137,1.449214659685864,1.5,1.0789473684210529,1.0789473684210529,53.142557651991616 +40513,Chiriquí,Bugaba,El Bongo,731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,444,95,18,518,25,0,0,0,18,0,477,0,0,6,0,44,34,0,0,0,40,354,12,152,0,3,520,37,1,0,0,3,561,2,77,25,0,45,21,0,2,21,447,90,1,0,480,46,0,3,26,6,0,556,0,0,0,1,0,4,98,405,0,44,11,3,244,234,12,8,26,28,0,2,0,2,4,1,0,731,6.095918367346939,17.195918367346938,6.751020408163265,22.59591836734694,1.0160427807486632,3.0231729055258465,1.9429590017825311,570,290,642,23,83,16,21,17,7,22,1,1,13,0,43,1,3,3,19,0,4,1224,379,0,176,1427,0,836,767,0,1392,211,0,385,1218,0,329,56,1072,146,0,148,24,25,0,51,58,85,55,73,329,0,0,0,43,63,123,48,80,202,1,6,21,26,30,47,45,4,4,1,10,0,0,0,1,0,566,82,780,0,23,44,7,48,240,442,46,4,229,69,129,11,24,3,170,0,0,914,792,61,330,10,227,3,1,3,0,16,124,3,629,46,0,0,1030,267,0,14,16,86,5,9,1,0,0,17,45,28,15,69,118,72,24,260,927,173,58,114,151,96,62,34,26,8,8,1,2,0,0,46,26.0,31.0,16.0,30.0,32.0,35.0,27.0,36.0,20.0,25.0,28.0,32.0,22.0,29.0,28.0,24.0,21.0,28.0,30.0,19.0,17.0,26.0,28.0,26.0,28.0,19.0,25.0,26.0,31.0,22.0,24.0,31.0,20.0,24.0,22.0,26.0,22.0,20.0,21.0,20.0,25.0,13.0,17.0,22.0,20.0,25.0,16.0,21.0,19.0,14.0,18.0,16.0,22.0,22.0,17.0,20.0,24.0,15.0,14.0,14.0,14.0,26.0,10.0,18.0,14.0,8.0,11.0,10.0,21.0,13.0,12.0,17.0,7.0,20.0,8.0,9.0,10.0,7.0,7.0,7.0,8.0,8.0,6.0,10.0,5.0,3.0,3.0,2.0,2.0,4.0,1.0,4.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,417,1056,233,0,135,143,139,122,125,123,121,109,97,95,95,87,82,63,64,40,37,14,7,3,5,0,1657,13,11,25,0,1657,14,10,25,0,471,1,1,226,31,5,554,417,0,1041,638,27,0,0,283,4,0,0,0,0,0,0,0,1419,0,6,13,4,1,0,0,7,1675,0,215,361,46,4,2,1078,0,2.441717791411043,0.0,3.290948275862069,0.0,6.897420867526377,3,5,2,1,0,0,4,555,0,52,62,22,60,114,89,53,34,40,14,6,4,5,1,1,13,553,17,391,179,381,189,83,487,264,306,17,553,299,271,7,563,452,118,387,183,70,317,92,478,208,362,149,421,183,387,158,412,2,568,149,293,117,11,0,397,173,0,0,65,2,0,0,0,0,0,0,0,503,0,1.6035087719298249,1.3894736842105264,1.2,1.0,1.0,52.84736842105263 +40514,Chiriquí,Bugaba,Solano,1789,1,74,0,0,0,0,0,0,0,0,0,0,0,0,13,1397,28,1,1429,9,0,0,0,1,0,1421,0,1,6,0,2,3,0,6,901,461,51,5,18,0,3,1409,5,10,0,1,14,1439,6,87,79,116,80,57,0,60,259,1047,69,4,0,1418,16,0,1,1,3,0,1424,4,3,0,6,0,2,668,761,1,8,0,1,1385,11,25,3,9,0,0,0,0,2,2,2,1864,0,6.911330049261084,23.557353976073188,6.976073187895848,23.87262491203378,1.0208478109798471,3.701876302988186,2.353022932592078,1469,734,1653,82,391,47,62,51,10,84,12,14,29,5,76,26,12,43,29,8,11,3813,589,0,1508,2894,0,3408,994,0,4104,298,0,1322,3080,0,1105,217,2951,129,0,139,69,91,24,95,109,130,94,100,509,0,1,15,139,190,357,147,206,1022,16,65,71,106,118,294,137,51,47,3,51,0,2,1,3,0,1657,134,2127,0,7,57,25,264,780,978,68,37,1097,111,249,44,232,5,32,0,4,2270,2373,348,748,54,541,57,4,17,5,1,134,11,1636,487,0,0,1913,1358,15,68,58,414,39,48,5,0,5,102,198,149,95,440,41,305,163,293,2363,261,110,173,247,312,319,134,122,61,28,12,7,6,1,487,48.0,65.0,61.0,67.0,71.0,86.0,91.0,72.0,83.0,81.0,67.0,72.0,86.0,70.0,82.0,63.0,62.0,72.0,62.0,67.0,80.0,77.0,70.0,81.0,56.0,69.0,63.0,77.0,72.0,66.0,74.0,71.0,59.0,67.0,71.0,52.0,55.0,45.0,47.0,62.0,55.0,54.0,58.0,47.0,53.0,45.0,57.0,55.0,46.0,40.0,70.0,55.0,54.0,62.0,69.0,63.0,47.0,58.0,60.0,55.0,65.0,43.0,56.0,41.0,43.0,42.0,27.0,38.0,34.0,22.0,39.0,24.0,26.0,21.0,35.0,20.0,16.0,15.0,18.0,12.0,18.0,20.0,10.0,16.0,15.0,14.0,11.0,8.0,8.0,5.0,9.0,3.0,4.0,5.0,2.0,4.0,2.0,2.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1102,2991,550,0,312,413,377,326,364,347,342,261,267,243,310,283,248,163,145,81,79,46,23,8,5,0,4572,21,40,10,0,4572,27,34,10,0,927,39,24,881,135,26,1509,1102,0,2037,2576,30,0,6,155,3,0,0,0,0,0,1,0,4478,0,58,14,48,6,2,8,43,4464,0,833,1269,284,17,4,2236,0,2.0853174603174605,0.0,2.9132321041214757,0.0,9.008184363558044,24,7,22,6,2,4,18,1386,0,165,81,30,80,123,155,173,106,166,88,49,22,27,5,9,190,1451,18,1371,98,1339,130,240,1229,1313,156,349,1120,797,672,234,1235,1367,102,1263,206,785,478,592,877,1121,348,609,860,159,1310,154,1315,18,1451,311,761,368,29,0,920,549,0,1,39,1,0,0,0,0,0,1,0,1427,0,1.5452688904016338,1.6153846153846154,1.1363636363636365,1.048780487804878,1.048780487804878,53.44860449285228 +40515,Chiriquí,Bugaba,San Isidro,2671,11,38,2,0,0,0,0,0,0,0,0,2,0,0,18,1769,222,61,1951,58,5,1,0,55,0,2001,0,6,7,7,18,27,0,4,92,243,1357,59,293,15,11,1941,84,9,0,0,36,2070,0,145,142,82,175,108,0,41,113,1724,186,4,2,1837,193,0,12,24,3,1,2063,3,0,0,1,3,0,613,1325,0,113,19,0,286,822,48,596,232,9,0,4,0,59,14,0,0,2724,5.275086505190312,11.66089965397924,6.724048442906574,17.192906574394463,1.017391304347826,3.208695652173913,2.11256038647343,2108,1157,2475,155,392,51,63,54,14,92,18,13,34,3,136,30,13,52,29,25,23,4909,1279,0,906,5282,0,3245,2943,0,5612,576,0,1750,4438,0,1592,158,4073,365,0,371,57,117,11,176,205,315,225,192,1288,0,0,0,241,275,479,217,263,1121,7,18,89,114,117,127,89,28,17,3,19,0,1,0,6,0,2283,203,3026,0,9,96,39,229,1118,1436,181,62,1095,250,283,74,443,8,275,1,4,3314,3315,205,1104,79,965,49,1,26,4,32,310,28,2179,6,0,0,3755,1398,0,28,71,221,13,20,6,0,3,56,109,82,212,601,259,310,162,692,3713,490,239,390,544,461,362,153,156,62,23,9,11,2,8,6,105.0,116.0,112.0,108.0,111.0,117.0,118.0,105.0,110.0,115.0,131.0,120.0,128.0,120.0,97.0,122.0,124.0,119.0,121.0,110.0,127.0,114.0,129.0,120.0,80.0,110.0,112.0,90.0,86.0,88.0,92.0,106.0,82.0,99.0,85.0,75.0,99.0,80.0,92.0,72.0,79.0,81.0,73.0,75.0,52.0,83.0,57.0,67.0,86.0,69.0,67.0,64.0,71.0,66.0,74.0,72.0,77.0,66.0,79.0,56.0,62.0,59.0,55.0,54.0,49.0,57.0,36.0,41.0,33.0,50.0,36.0,34.0,38.0,40.0,38.0,25.0,29.0,23.0,19.0,19.0,25.0,16.0,13.0,14.0,15.0,15.0,15.0,13.0,11.0,8.0,3.0,3.0,4.0,4.0,4.0,1.0,2.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1713,4227,689,0,552,565,596,596,570,486,464,418,360,362,342,350,279,217,186,115,83,62,18,6,2,0,6405,93,75,56,0,6409,95,69,56,0,1703,94,715,976,208,34,1186,1713,0,4012,2509,108,0,2,371,35,0,0,1,1,1,3,0,6215,0,164,47,257,14,1,15,369,5762,0,726,1311,215,29,7,4341,0,2.2964585615188025,0.0,3.248785752833244,0.0,7.187207723638558,54,23,104,8,1,3,148,1767,0,144,141,101,202,368,297,255,153,229,95,51,27,24,6,11,2,2027,81,1834,274,1772,336,342,1766,1714,394,247,1861,1108,1000,65,2043,1921,187,1712,396,750,962,410,1698,1110,998,664,1444,557,1551,504,1604,23,2085,427,1190,460,31,0,1418,690,0,2,97,7,0,0,1,1,0,3,0,1997,0,1.5721062618595825,1.5725806451612905,1.1333333333333333,1.0823529411764703,1.0823529411764703,51.11527514231499 +40601,Chiriquí,David,David,5595,15,1613,54,1,1,0,3,0,0,1,3,8,2,0,1433,4075,75,22,5486,97,2,2,0,15,3,5568,0,1,6,1,16,3,0,10,5557,23,15,3,6,1,0,5392,13,115,0,0,85,5605,142,315,56,505,561,93,0,518,1443,3312,261,43,28,5515,34,13,27,7,8,1,5269,39,252,22,14,4,5,3863,1697,3,34,6,2,5515,8,20,8,2,2,0,2,0,34,8,6,6982,314,6.490709002345301,20.67959588670395,6.666245715316616,21.521558722713333,1.0173059768064228,3.996966993755575,2.456021409455843,5713,2512,4773,135,1125,282,369,206,95,240,62,88,327,124,288,112,52,113,109,44,111,13778,1711,0,8050,7439,0,12158,3331,0,14914,575,0,4003,11486,0,2614,1389,11121,365,0,408,124,175,18,197,219,321,236,243,1436,3,3,52,282,412,886,351,485,3458,19,109,310,401,533,1083,1760,710,305,32,767,6,16,25,104,0,6579,614,7327,0,20,216,140,2164,2466,2032,316,349,4817,568,686,287,559,25,138,4,30,7688,8363,1477,3082,318,1844,301,3,49,40,29,338,49,5074,1353,0,0,4803,4839,61,118,277,3268,269,774,111,0,47,803,1574,819,423,1337,152,732,334,972,6194,754,336,554,1061,1280,1355,743,905,573,338,145,172,87,201,1353,137.0,128.0,149.0,148.0,151.0,166.0,147.0,178.0,155.0,172.0,173.0,179.0,177.0,189.0,214.0,194.0,177.0,199.0,222.0,214.0,223.0,233.0,250.0,264.0,252.0,241.0,234.0,207.0,260.0,210.0,215.0,191.0,207.0,177.0,199.0,181.0,189.0,180.0,170.0,150.0,168.0,182.0,187.0,189.0,170.0,202.0,180.0,199.0,187.0,186.0,215.0,208.0,211.0,203.0,213.0,220.0,196.0,226.0,226.0,223.0,189.0,223.0,241.0,208.0,192.0,168.0,182.0,183.0,178.0,160.0,160.0,171.0,147.0,164.0,136.0,162.0,134.0,147.0,104.0,134.0,109.0,88.0,88.0,87.0,79.0,70.0,72.0,49.0,48.0,36.0,44.0,36.0,24.0,42.0,20.0,15.0,16.0,11.0,6.0,6.0,11.0,2.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9,2463,10283,3296,9,713,818,932,1006,1222,1152,989,870,896,954,1050,1091,1053,871,778,681,451,275,166,54,20,9,14859,677,478,37,0,14884,761,369,37,0,2385,218,189,3753,833,312,5899,2462,0,5478,9910,663,0,33,1005,43,3,5,0,2,0,1,0,14959,0,265,251,401,36,9,26,779,14284,0,3462,3053,2396,141,51,6948,0,1.794109947643979,0.0,2.596146283916634,0.0,11.270388137810729,110,103,172,19,4,11,314,4980,0,368,177,95,189,383,531,576,393,723,468,366,198,244,157,300,534,5607,106,5357,356,5125,588,1178,4535,5220,493,2861,2852,3234,2479,2003,3710,5418,295,5166,547,3786,1380,3136,2577,4783,930,3122,2591,584,5129,386,5327,68,5645,1403,2560,1484,266,8,3227,2486,0,8,320,14,1,1,0,0,0,0,0,5369,0,1.3438210103128825,1.461807376332809,1.2314814814814814,1.0528052805280528,1.0528052805280528,57.00560126028356 +40602,Chiriquí,David,Bijagual,402,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,54,11,252,24,0,2,0,9,0,239,0,0,11,0,1,35,0,1,0,37,165,1,84,0,0,251,30,0,0,0,6,287,0,31,28,2,15,41,0,4,4,224,50,5,0,264,11,0,6,6,0,0,287,0,0,0,0,0,0,53,213,0,19,2,0,1,222,33,17,8,0,0,3,0,0,3,0,0,404,6.5703125,21.578125,6.92578125,23.5546875,1.0348432055749128,2.8815331010452963,1.843205574912892,297,153,287,32,48,7,14,8,3,12,2,6,9,0,8,2,1,2,8,2,12,666,159,0,139,686,0,503,322,0,730,95,0,197,628,0,171,26,545,83,0,84,2,6,0,23,29,39,31,34,184,0,0,1,30,47,47,27,20,94,0,5,12,15,15,22,12,24,9,1,12,0,0,0,0,0,273,74,388,0,4,20,4,34,127,178,45,4,129,13,45,12,21,0,113,0,0,460,418,61,186,12,63,11,0,0,0,7,42,8,309,0,0,0,513,149,1,5,6,43,6,12,0,0,0,13,15,11,15,52,37,42,13,149,445,120,33,29,95,60,46,18,15,9,2,2,2,1,1,0,14.0,13.0,17.0,9.0,16.0,22.0,14.0,12.0,14.0,12.0,19.0,12.0,15.0,10.0,14.0,10.0,12.0,11.0,16.0,10.0,17.0,12.0,18.0,19.0,18.0,16.0,9.0,12.0,10.0,11.0,16.0,15.0,14.0,12.0,11.0,9.0,7.0,11.0,14.0,4.0,12.0,6.0,8.0,9.0,4.0,9.0,8.0,13.0,15.0,9.0,12.0,7.0,15.0,6.0,13.0,14.0,6.0,10.0,10.0,8.0,12.0,6.0,7.0,13.0,4.0,5.0,6.0,9.0,4.0,3.0,4.0,5.0,7.0,4.0,8.0,3.0,9.0,5.0,3.0,2.0,2.0,1.0,3.0,5.0,2.0,3.0,2.0,4.0,6.0,4.0,2.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,213,550,115,0,69,74,70,59,84,58,68,45,39,54,53,48,42,27,28,22,13,19,6,0,0,0,866,5,0,7,0,866,5,0,7,0,276,9,89,85,30,0,176,213,0,489,379,10,0,0,131,0,0,0,0,0,0,0,0,747,0,0,1,4,0,0,0,27,846,0,124,169,35,2,1,547,0,2.146627565982405,0.0,3.1145374449339207,0.0,7.187927107061504,0,0,3,0,0,0,9,285,0,30,31,12,22,46,53,31,22,19,11,6,6,6,1,1,0,264,33,208,89,182,115,26,271,189,108,24,273,151,146,1,296,261,36,198,99,70,128,60,237,207,90,88,209,151,146,163,134,4,293,79,149,60,9,0,212,85,0,0,33,0,0,0,0,0,0,0,0,264,0,1.5488215488215489,1.4074074074074074,3.0,1.0,1.0,51.87542087542087 +40603,Chiriquí,David,Cochea,1192,8,7,0,0,0,0,0,0,0,0,0,2,0,0,1,752,159,24,895,17,5,0,0,16,3,872,0,1,17,0,6,40,0,0,0,269,508,13,141,0,5,878,40,1,0,0,17,936,0,83,38,5,96,49,0,9,33,825,67,1,1,817,25,32,16,26,20,0,928,0,2,0,1,0,5,191,704,0,36,4,1,0,833,30,60,4,0,0,3,0,1,5,0,0,1209,6.945538818076478,19.93974507531865,6.9768250289687135,22.281575898030127,1.0224358974358974,3.251068376068376,2.176282051282051,959,535,1083,111,177,23,36,36,14,39,10,5,8,0,59,23,9,20,17,16,26,2370,479,0,708,2141,0,2050,799,0,2593,256,0,820,2029,0,746,74,1877,152,0,154,15,61,11,64,87,134,130,92,615,0,2,1,80,124,198,92,113,476,0,5,52,62,40,73,76,55,8,4,22,0,0,1,2,0,985,78,1485,0,14,32,19,172,536,696,76,5,495,40,226,52,69,6,173,0,1,1558,1478,162,479,63,341,9,0,7,1,19,157,26,888,4,0,0,1670,642,1,7,16,183,6,21,2,0,1,30,87,53,58,131,143,197,62,301,1354,477,85,148,258,284,237,58,70,43,11,3,2,2,0,4,56.0,51.0,42.0,38.0,41.0,52.0,55.0,49.0,50.0,54.0,58.0,60.0,55.0,45.0,50.0,49.0,48.0,58.0,40.0,59.0,47.0,47.0,47.0,52.0,47.0,39.0,39.0,49.0,33.0,32.0,42.0,34.0,35.0,42.0,35.0,38.0,38.0,40.0,30.0,35.0,38.0,33.0,35.0,37.0,37.0,41.0,37.0,45.0,39.0,35.0,36.0,35.0,38.0,31.0,28.0,40.0,39.0,38.0,33.0,27.0,25.0,31.0,27.0,20.0,20.0,17.0,28.0,20.0,19.0,31.0,17.0,23.0,24.0,15.0,14.0,19.0,20.0,12.0,13.0,27.0,10.0,7.0,13.0,4.0,9.0,3.0,3.0,1.0,4.0,8.0,5.0,3.0,4.0,0.0,1.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,756,1900,380,0,228,260,268,254,240,192,188,181,180,197,168,177,123,115,93,91,43,19,13,6,0,0,2952,28,30,26,0,2953,34,23,26,0,780,18,292,449,113,8,620,756,0,1687,1292,57,0,0,318,19,3,13,0,0,0,0,0,2683,0,16,21,37,1,1,1,27,2932,0,435,640,142,26,20,1773,0,2.16347687400319,0.0,3.1666666666666665,0.0,7.556324110671936,4,11,19,0,0,1,10,914,0,28,73,29,63,134,178,146,91,91,53,31,12,19,6,2,1,924,35,799,160,756,203,150,809,714,245,98,861,468,491,42,917,849,110,776,183,399,377,243,716,675,284,368,591,400,559,486,473,8,951,205,531,215,8,0,676,283,0,0,67,4,2,2,0,0,0,0,0,884,0,1.6246089676746611,1.54118873826903,1.0,1.0408163265306123,1.0408163265306123,52.94994786235662 +40604,Chiriquí,David,Chiriquí,1906,6,40,0,0,0,42,0,2,0,0,16,1,0,0,20,1221,214,21,1406,49,7,1,0,12,1,1389,0,1,28,0,9,45,0,4,976,86,353,2,53,0,6,1399,51,7,0,0,19,1476,0,118,108,115,104,31,0,48,113,1189,116,7,3,1373,78,0,3,15,6,1,1467,0,1,0,3,3,2,558,862,0,49,6,1,834,425,86,9,4,19,0,12,10,59,18,0,1045,968,4.786617100371747,10.24460966542751,5.211895910780669,12.409665427509294,1.0311653116531163,3.5257452574525745,2.1795392953929538,1539,836,1565,149,295,45,58,44,25,79,18,15,2033,2,123,53,18,36,50,28,25,3756,2687,0,1157,5286,0,2768,3675,0,6030,413,0,1511,4932,0,1324,187,4679,253,0,259,47,66,7,127,168,202,175,173,1090,2,2,10,318,394,644,268,314,1162,3,45,80,118,135,238,169,81,78,2,61,0,0,0,5,0,1726,230,4061,0,5,88,56,307,1036,806,152,1760,1063,95,266,84,190,3,181,53,0,4397,2306,474,776,87,554,31,0,13,0,8,209,14,2783,11,0,0,3829,1495,10,48,71,439,59,61,5,0,0,68,251,104,75,356,116,287,169,530,4287,418,174,244,382,339,321,170,193,106,25,10,12,6,5,11,63.0,53.0,74.0,70.0,76.0,69.0,64.0,62.0,85.0,70.0,73.0,67.0,58.0,66.0,78.0,79.0,72.0,76.0,93.0,95.0,99.0,135.0,158.0,182.0,149.0,170.0,181.0,171.0,147.0,139.0,149.0,126.0,144.0,143.0,132.0,106.0,99.0,105.0,115.0,109.0,94.0,101.0,98.0,88.0,75.0,94.0,101.0,77.0,82.0,65.0,73.0,85.0,60.0,77.0,88.0,66.0,73.0,72.0,63.0,55.0,62.0,57.0,57.0,46.0,45.0,31.0,47.0,43.0,45.0,30.0,34.0,32.0,36.0,30.0,26.0,28.0,34.0,29.0,26.0,15.0,17.0,18.0,20.0,13.0,7.0,16.0,8.0,9.0,11.0,5.0,12.0,11.0,2.0,4.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1028,5028,647,0,336,350,342,415,723,808,694,534,456,419,383,329,267,196,158,132,75,49,31,5,1,0,6546,108,26,23,0,6548,111,21,23,0,1690,68,859,846,184,54,1975,1027,0,2674,3926,103,0,3,726,39,4,2,1,1,2,0,0,5925,0,175,80,430,45,8,6,405,5554,0,878,1148,312,27,6,4332,0,2.117290192113246,0.0,2.9330882352941177,0.0,8.491869312248246,41,21,100,11,0,3,159,1204,0,124,95,54,106,187,193,162,119,222,102,60,33,42,9,13,1,1481,58,1316,223,1250,289,229,1310,1272,267,322,1217,863,676,225,1314,1375,164,1293,246,699,594,535,1004,952,587,584,955,500,1039,461,1078,13,1526,320,802,369,48,44,1061,478,0,0,123,3,0,0,1,1,0,0,0,1411,0,2.77763739734681,1.4567277321541376,1.0,1.0273972602739727,1.0273972602739727,53.33723196881092 +40605,Chiriquí,David,Guacá,1024,0,9,0,0,0,0,0,14,0,0,0,0,0,0,1,717,47,36,751,14,12,1,0,20,3,718,0,1,8,2,11,51,0,10,10,348,302,11,117,1,12,729,48,2,0,0,22,801,0,71,60,6,72,23,0,6,29,691,72,3,0,714,42,0,8,14,23,0,796,0,1,0,3,0,1,184,559,0,40,17,1,1,396,388,7,0,0,0,1,0,4,3,1,0,1047,6.735031847133758,20.85859872611465,6.93375796178344,22.259872611464967,1.0199750312109863,3.2771535580524342,1.961298377028714,826,449,947,89,110,12,31,17,8,35,9,5,26,1,47,39,6,20,18,13,30,1850,525,0,380,1995,0,1480,895,0,2102,273,0,625,1750,0,549,76,1552,198,0,199,19,31,6,59,97,118,104,78,525,0,0,1,88,99,165,57,84,374,1,16,36,44,36,55,53,10,3,2,15,0,0,0,0,0,823,123,1193,0,9,80,21,77,426,532,66,92,346,113,215,31,126,2,88,0,1,1327,1238,93,359,43,372,32,2,17,4,7,161,20,971,9,0,0,1493,497,1,18,2,110,3,15,0,0,4,13,53,44,24,136,106,237,72,257,1296,424,74,108,208,170,159,41,54,16,4,1,0,0,1,9,47.0,37.0,49.0,57.0,49.0,46.0,31.0,38.0,40.0,32.0,44.0,41.0,42.0,59.0,44.0,36.0,39.0,42.0,45.0,47.0,53.0,51.0,43.0,45.0,35.0,36.0,39.0,49.0,39.0,34.0,35.0,30.0,21.0,39.0,25.0,36.0,28.0,33.0,44.0,30.0,32.0,24.0,41.0,32.0,22.0,33.0,22.0,31.0,32.0,24.0,34.0,33.0,38.0,32.0,26.0,25.0,23.0,24.0,17.0,26.0,11.0,23.0,23.0,16.0,14.0,16.0,13.0,17.0,14.0,14.0,6.0,16.0,14.0,11.0,11.0,15.0,13.0,12.0,21.0,19.0,11.0,12.0,13.0,7.0,3.0,8.0,3.0,8.0,3.0,0.0,1.0,4.0,4.0,3.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,656,1612,297,0,239,187,230,209,227,197,150,171,151,142,163,115,87,74,58,80,46,22,14,2,1,0,2498,17,18,32,0,2500,20,13,32,0,664,11,32,363,62,16,761,656,0,1420,1126,19,0,2,330,5,0,0,0,0,0,0,0,2228,0,14,27,171,20,0,2,212,2119,0,305,472,71,14,3,1700,0,2.1598837209302326,0.0,3.1904761904761907,0.0,6.886549707602339,5,7,71,5,0,0,97,641,0,64,87,31,80,120,134,124,51,62,27,18,9,5,1,1,3,776,50,650,176,603,223,94,732,465,361,66,760,455,371,15,811,721,105,597,229,127,470,163,663,493,333,293,533,321,505,317,509,34,792,193,475,142,16,5,627,199,0,0,75,2,0,0,0,0,0,0,0,749,0,1.5968712394705171,1.489771359807461,1.0,1.032258064516129,1.032258064516129,51.65617433414044 +40606,Chiriquí,David,Las Lomas,9349,22,341,10,0,2,0,0,1,0,1,0,10,0,0,938,6325,443,50,7521,185,2,0,0,39,9,7675,0,8,9,4,23,21,0,16,4878,2240,521,18,78,1,20,7522,91,41,1,0,101,7756,0,477,315,237,874,63,0,2070,868,4404,357,15,42,7286,85,241,56,28,60,0,7677,5,62,1,8,2,1,4307,3301,0,145,2,1,4492,2525,362,63,19,1,2,1,6,248,32,5,8945,791,6.053530288657,13.267651443285,6.400325247323486,16.697248949722184,1.017276946879835,3.414388860237236,2.2372356884992266,7900,4231,9130,657,1497,331,386,276,97,356,98,109,200,29,489,181,77,201,116,165,125,21001,2778,0,9846,13933,0,19731,4048,0,22227,1552,0,8136,15643,0,6823,1313,14915,728,0,804,307,408,43,528,559,675,593,600,2541,3,4,24,773,998,1816,807,1165,4759,53,251,586,788,955,1368,1282,414,186,47,397,3,11,7,24,0,9815,1052,10432,0,73,376,199,1157,4955,3400,481,439,7051,565,1467,384,1020,25,140,33,25,12325,12972,2383,4907,449,2727,144,4,59,37,51,557,108,8204,434,0,0,10137,7188,27,262,401,2707,153,392,32,0,36,488,1429,996,664,2482,176,1703,848,2045,12052,2084,751,1064,1535,1828,2146,1138,1228,600,236,67,65,28,41,434,348.0,367.0,423.0,380.0,418.0,423.0,412.0,413.0,425.0,389.0,439.0,460.0,396.0,410.0,424.0,407.0,423.0,412.0,439.0,403.0,427.0,437.0,459.0,449.0,398.0,436.0,458.0,432.0,456.0,424.0,435.0,395.0,410.0,382.0,369.0,347.0,354.0,356.0,352.0,343.0,317.0,315.0,337.0,343.0,330.0,326.0,311.0,315.0,323.0,292.0,340.0,244.0,296.0,264.0,279.0,251.0,254.0,265.0,237.0,219.0,213.0,208.0,185.0,212.0,158.0,166.0,144.0,133.0,125.0,129.0,107.0,114.0,101.0,108.0,83.0,90.0,84.0,65.0,82.0,66.0,68.0,55.0,59.0,49.0,45.0,36.0,42.0,26.0,34.0,18.0,18.0,13.0,18.0,20.0,8.0,6.0,5.0,5.0,3.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6127,17037,2133,0,1936,2062,2129,2084,2170,2206,1991,1752,1642,1567,1423,1226,976,697,513,387,276,156,77,20,7,0,24855,232,171,39,0,24862,257,139,39,0,6347,293,2006,3624,599,192,6112,6124,0,10780,14288,229,0,46,3602,81,19,11,0,4,10,5,0,21519,0,876,638,1450,118,22,24,1936,20233,0,5685,6346,1193,119,14,11940,0,1.8177697189483228,0.0,2.685433669940517,0.0,9.246985808593903,283,238,612,49,9,13,797,5899,0,462,335,206,408,709,882,1048,731,1277,719,412,227,218,84,79,93,7763,137,7296,604,7049,851,1195,6705,7176,724,2447,5453,4294,3606,1401,6499,7452,448,7193,707,4599,2594,3719,4181,6191,1709,3405,4495,1195,6705,797,7103,77,7823,1317,4500,1914,169,4,4754,3146,0,13,997,18,5,8,0,1,4,3,0,6851,0,1.559337044534413,1.6411943319838056,1.2156862745098038,1.0145772594752187,1.0145772594752187,48.40974683544304 +40607,Chiriquí,David,Pedregal,5620,69,263,29,0,0,0,1,0,0,0,1,1,0,0,68,4622,379,94,4920,149,3,0,1,73,17,5083,0,5,35,2,11,20,0,7,4543,324,257,11,17,4,7,5009,42,21,0,0,91,5163,1,217,99,182,268,51,0,102,576,4071,356,10,48,4989,61,4,85,13,10,1,5145,1,4,0,2,8,3,2060,2960,1,131,7,4,4660,101,183,56,60,7,0,0,10,43,43,0,5896,88,6.413632686084142,20.024271844660195,6.656957928802589,21.80056634304207,1.0230486151462328,3.4989347278713927,2.2159597133449545,5284,2628,6184,360,1415,219,227,184,52,273,57,54,136,5,373,145,52,128,175,25,51,13846,2315,0,4673,11488,0,12237,3924,0,15129,1032,0,4972,11189,0,4427,545,10580,609,0,646,183,270,60,342,433,559,447,445,2036,0,2,46,606,863,1469,630,894,3708,5,109,193,297,317,496,529,319,110,9,129,1,1,2,5,0,5944,797,7756,0,65,359,127,1076,3139,2865,371,305,3264,430,663,268,1315,18,48,582,51,8293,8785,1003,2426,238,2824,74,3,20,51,45,576,87,4990,159,0,0,8217,4508,47,120,180,1211,78,131,5,0,52,169,573,430,311,1706,589,1240,456,1215,7997,2076,576,895,1167,1267,1460,529,525,235,117,30,27,6,12,159,204.0,218.0,253.0,242.0,282.0,286.0,249.0,286.0,284.0,277.0,303.0,288.0,251.0,271.0,311.0,278.0,322.0,294.0,311.0,293.0,309.0,288.0,336.0,297.0,277.0,263.0,256.0,246.0,213.0,203.0,234.0,215.0,197.0,205.0,209.0,199.0,191.0,207.0,192.0,183.0,200.0,215.0,193.0,218.0,202.0,197.0,197.0,208.0,202.0,176.0,191.0,210.0,192.0,197.0,195.0,191.0,193.0,213.0,182.0,186.0,200.0,161.0,179.0,153.0,184.0,172.0,126.0,136.0,127.0,116.0,99.0,103.0,99.0,103.0,103.0,73.0,82.0,74.0,62.0,67.0,49.0,42.0,56.0,51.0,41.0,35.0,38.0,27.0,25.0,20.0,11.0,18.0,16.0,8.0,7.0,9.0,5.0,4.0,6.0,1.0,3.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4005,11053,2020,0,1199,1382,1424,1498,1507,1181,1060,972,1028,980,985,965,877,677,507,358,239,145,60,25,9,0,16873,75,101,29,0,16878,88,83,29,0,3990,365,1944,2342,637,208,3590,4002,0,7518,9441,119,0,27,875,25,1,5,2,7,0,4,0,16132,0,451,478,1699,144,18,26,2040,12222,0,2522,3512,1068,140,8,9828,0,2.1405102177106987,0.0,3.0627233028979752,0.0,8.50550415739548,160,175,612,52,7,15,747,3516,0,246,320,213,399,599,713,754,466,702,362,197,116,95,37,31,32,5160,124,4836,448,4725,559,872,4412,4971,313,1340,3944,3116,2168,919,4365,4940,344,4837,447,3120,1717,1840,3444,3905,1379,1866,3418,668,4616,368,4916,39,5245,960,2659,1555,110,1,2927,2357,0,11,286,18,0,4,2,4,0,2,0,4957,0,1.5691579943235572,1.6622516556291391,1.2727272727272727,1.0354609929078014,1.0354609929078014,52.28046934140802 +40608,Chiriquí,David,San Carlos,2235,5,2,0,1,1,0,1,5,0,0,0,1,0,0,23,1549,150,21,1689,33,7,0,0,12,2,1657,0,16,14,5,9,42,0,0,750,639,276,4,63,1,10,1683,39,3,0,0,18,1743,32,116,83,76,127,65,0,352,103,1200,80,8,0,1672,47,1,9,11,3,0,1738,2,1,1,1,0,0,1049,644,0,40,10,0,703,747,160,89,24,1,0,7,0,7,2,3,942,1309,6.6472049689441,21.063975155279504,6.952173913043478,22.849068322981367,1.0114744693057949,3.987951807228916,2.4738955823293174,1764,990,1894,54,219,82,62,33,32,61,13,13,81,8,105,37,14,22,46,14,34,4350,732,0,2347,2735,0,3574,1508,0,4748,334,0,1448,3634,0,937,511,3391,243,0,248,58,56,10,97,150,183,129,123,765,0,1,7,118,147,269,117,155,766,17,29,78,113,156,276,477,198,85,7,211,0,1,6,29,0,1960,107,2536,0,5,44,30,340,922,1029,96,149,1407,150,228,57,95,11,78,1,25,2619,2687,549,828,76,516,44,0,8,31,16,223,32,1801,284,0,0,2146,1153,8,28,92,885,68,194,29,0,44,190,477,203,92,339,82,236,95,309,2363,337,131,166,264,356,401,172,306,198,135,44,71,25,53,284,47.0,52.0,57.0,68.0,83.0,73.0,62.0,79.0,97.0,85.0,80.0,76.0,87.0,71.0,81.0,71.0,59.0,74.0,85.0,89.0,61.0,78.0,82.0,69.0,77.0,56.0,71.0,68.0,43.0,58.0,68.0,68.0,64.0,65.0,70.0,66.0,75.0,61.0,73.0,73.0,84.0,78.0,90.0,80.0,80.0,68.0,91.0,85.0,86.0,84.0,87.0,60.0,62.0,70.0,65.0,65.0,63.0,67.0,67.0,62.0,64.0,59.0,67.0,45.0,44.0,51.0,39.0,37.0,43.0,27.0,43.0,26.0,50.0,29.0,26.0,28.0,29.0,30.0,29.0,28.0,16.0,23.0,22.0,18.0,13.0,14.0,10.0,11.0,11.0,13.0,11.0,5.0,8.0,7.0,3.0,3.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1098,3497,711,0,307,396,395,378,367,296,335,348,412,414,344,324,279,197,174,144,92,59,34,9,2,0,5105,119,76,6,0,5108,134,58,6,0,988,32,69,1266,187,45,1621,1098,0,2755,2450,101,0,0,817,2,0,0,0,0,0,0,0,4487,0,62,30,62,8,2,3,579,4560,0,1162,1337,328,33,8,2438,0,1.8472990216928968,0.0,2.700127877237852,0.0,9.730870712401057,27,20,21,5,0,1,178,1512,0,191,117,46,89,114,149,163,114,194,139,106,70,115,52,92,12,1732,32,1620,144,1548,216,325,1439,1427,337,737,1027,1142,622,434,1330,1583,181,1561,203,1050,511,911,853,1246,518,1016,748,393,1371,357,1407,27,1737,351,1062,326,25,8,1213,551,0,0,250,0,0,0,0,0,0,0,0,1514,0,1.4779909706546277,1.516365688487585,1.0909090909090908,1.0759493670886076,1.0759493670886076,53.37528344671202 +40609,Chiriquí,David,San Pablo Nuevo,1220,4,5,0,0,0,0,0,0,0,0,15,0,0,0,5,780,31,13,797,19,4,2,0,7,0,809,0,0,4,0,1,14,0,1,14,538,230,5,41,0,1,811,7,5,0,0,6,829,2,121,141,18,100,18,0,166,47,580,30,6,0,817,8,0,2,2,0,0,826,0,0,0,0,3,0,400,415,0,10,4,0,2,774,37,9,2,1,0,3,0,0,1,0,0,1244,6.986469864698647,21.993849938499384,6.985239852398524,22.44649446494465,1.0180940892641737,3.675512665862485,2.316043425814234,859,526,1007,21,141,37,25,35,8,33,8,13,16,2,56,23,8,2,15,0,18,2282,296,0,1162,1416,0,1721,857,0,2404,174,0,805,1773,0,657,148,1657,116,0,119,27,51,3,65,87,105,78,76,327,0,1,1,90,92,181,83,105,385,1,6,41,78,95,111,125,148,31,4,58,0,1,0,3,0,980,109,1178,0,14,47,35,119,479,469,47,64,733,48,120,26,101,2,43,0,1,1334,1397,294,496,32,243,5,0,2,2,4,56,8,962,3,0,0,1179,583,1,11,56,349,27,57,4,0,2,50,209,104,70,162,35,131,107,219,1464,137,47,89,157,183,245,110,153,86,33,6,12,5,1,3,30.0,39.0,35.0,49.0,55.0,44.0,45.0,49.0,61.0,57.0,49.0,46.0,30.0,55.0,38.0,30.0,59.0,36.0,47.0,36.0,41.0,44.0,45.0,46.0,46.0,36.0,32.0,35.0,42.0,40.0,40.0,37.0,45.0,53.0,49.0,40.0,53.0,31.0,52.0,25.0,38.0,41.0,45.0,36.0,29.0,41.0,39.0,33.0,43.0,29.0,34.0,22.0,25.0,29.0,24.0,31.0,30.0,32.0,31.0,23.0,25.0,25.0,26.0,19.0,17.0,27.0,18.0,13.0,11.0,18.0,14.0,11.0,13.0,8.0,13.0,15.0,8.0,7.0,7.0,10.0,6.0,4.0,4.0,1.0,5.0,4.0,3.0,5.0,1.0,4.0,2.0,1.0,2.0,2.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,682,1807,242,0,208,256,218,208,222,185,224,201,189,185,134,147,112,87,59,47,20,17,7,4,1,0,2683,32,13,3,0,2683,37,8,3,0,646,20,85,575,60,17,646,682,0,1277,1436,18,0,2,207,5,0,0,0,0,0,0,0,2517,0,35,41,376,14,3,4,103,2155,0,656,764,105,24,2,1180,0,1.8550474547023297,0.0,2.6775032509752927,0.0,8.952032222629073,13,14,149,5,1,2,48,627,0,63,35,20,34,67,88,112,70,133,87,55,32,29,13,6,0,849,10,787,72,749,110,158,701,766,93,289,570,539,320,130,729,816,43,767,92,485,282,406,453,547,312,485,374,57,802,77,782,13,846,161,508,177,13,0,582,277,0,0,57,2,0,0,0,0,0,0,0,800,0,1.5529685681024448,1.6263096623981377,1.0,1.0303030303030305,1.0303030303030305,48.91036088474971 +40610,Chiriquí,David,San Pablo Viejo,7300,21,35,0,0,0,0,0,7,0,0,0,5,0,0,485,4502,84,18,5020,51,9,1,0,5,3,5035,0,6,4,1,5,32,0,6,1955,2549,435,8,100,2,40,5005,45,20,0,0,19,5089,495,692,249,183,473,175,0,2549,425,1982,116,10,7,5037,17,0,11,5,19,0,4647,42,388,0,4,2,6,4200,854,0,33,2,0,455,3813,627,43,19,3,0,4,1,117,3,4,4020,3348,6.602247191011236,20.38753830439224,6.938304392236977,22.745250255362613,1.0106111220279033,3.7606602475928472,2.4613873059540183,5148,3191,5681,347,556,259,164,114,100,159,53,50,155,64,169,77,35,95,77,39,38,13855,1317,0,9547,5625,0,13174,1998,0,14391,781,0,5236,9936,0,3126,2110,9506,430,0,458,185,237,37,312,342,445,347,375,1206,1,1,40,355,433,764,378,505,2834,13,88,215,337,523,918,1435,976,344,36,911,4,12,6,99,0,7111,424,6103,0,24,178,63,712,3071,1938,251,131,5616,404,582,155,515,23,145,8,19,7634,8407,2486,2961,196,1625,150,1,22,26,11,204,41,4853,1659,0,0,4844,3871,44,97,293,3214,298,871,106,0,26,661,2248,1064,315,1194,152,737,406,732,6882,502,243,333,497,773,1032,987,1190,864,448,172,217,97,145,1659,204.0,219.0,207.0,239.0,263.0,236.0,255.0,268.0,249.0,263.0,271.0,263.0,271.0,258.0,226.0,252.0,263.0,209.0,233.0,237.0,214.0,230.0,229.0,238.0,241.0,257.0,226.0,196.0,233.0,261.0,267.0,241.0,290.0,272.0,271.0,275.0,324.0,285.0,257.0,262.0,253.0,289.0,288.0,259.0,271.0,226.0,289.0,240.0,253.0,196.0,221.0,181.0,173.0,187.0,178.0,166.0,135.0,159.0,152.0,146.0,139.0,139.0,123.0,115.0,98.0,105.0,89.0,92.0,92.0,83.0,61.0,51.0,84.0,62.0,49.0,40.0,44.0,42.0,34.0,24.0,28.0,20.0,28.0,28.0,23.0,22.0,22.0,16.0,10.0,9.0,9.0,8.0,7.0,6.0,6.0,2.0,5.0,1.0,1.0,4.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3692,11139,1210,0,1132,1271,1289,1194,1152,1173,1341,1403,1360,1204,940,758,614,461,307,184,127,79,36,13,3,0,15272,380,336,53,0,15282,472,234,53,0,3261,159,229,3892,331,187,4290,3692,0,4693,10974,374,0,9,847,21,3,1,0,2,1,1,0,15156,0,395,202,288,35,18,21,1056,14026,0,4838,4499,698,63,32,5911,0,1.5385147282533536,0.0,2.3738297409100806,0.0,10.650395860607194,139,69,134,15,7,11,421,4352,0,324,105,69,120,210,248,373,383,691,573,491,301,403,180,266,406,5105,43,4991,157,4846,302,866,4282,4661,487,3173,1975,3082,2066,1581,3567,4993,155,4909,239,3856,1053,3531,1617,4524,624,3768,1380,772,4376,497,4651,77,5071,769,3301,931,147,7,3417,1731,0,4,238,9,1,0,0,0,0,1,0,4895,0,1.4808923375363725,1.6308438409311348,1.1785714285714286,1.0595238095238095,1.0595238095238095,47.56351981351981 +40611,Chiriquí,David,David Este,9821,104,706,23,1,1,0,1,0,0,0,0,2,0,0,2026,6488,187,42,8556,145,2,4,0,29,7,8703,0,7,4,1,9,7,0,12,8528,120,43,8,15,3,26,8523,33,61,0,0,126,8743,20,349,212,491,632,207,0,1411,1350,5434,351,62,135,8548,59,19,102,3,11,1,8662,18,40,12,10,0,1,5359,3269,1,106,4,4,8404,242,44,13,1,0,0,0,0,14,24,1,10647,12,6.778711162255466,19.04476409666283,6.909090909090909,21.163521288837742,1.01749971405696,3.698616035685691,2.369324030653094,8898,4264,8671,532,2321,449,491,401,129,415,95,112,335,32,595,220,108,225,201,79,178,22515,3363,0,10667,15211,0,19627,6251,0,24541,1337,0,7533,18345,0,6145,1388,17601,744,0,774,246,418,68,449,559,679,570,566,2500,7,11,72,699,988,1905,796,1182,5923,26,295,584,814,926,1262,1738,985,230,34,507,0,7,9,49,0,10135,1266,12143,0,44,479,206,2761,4508,3880,595,399,7144,774,1508,264,1387,35,58,36,27,12937,14208,2578,4596,278,3562,143,3,40,33,24,806,129,8251,216,0,0,10024,8436,77,323,448,3478,206,500,52,0,33,558,1740,1132,830,2617,148,1866,791,1686,11996,1967,769,1259,2063,2472,2689,1228,1287,639,269,91,100,37,63,216,281.0,308.0,342.0,336.0,358.0,370.0,400.0,368.0,447.0,391.0,392.0,408.0,376.0,340.0,343.0,373.0,363.0,403.0,377.0,390.0,407.0,430.0,459.0,433.0,400.0,416.0,424.0,378.0,389.0,373.0,397.0,372.0,395.0,372.0,354.0,330.0,337.0,312.0,344.0,333.0,315.0,305.0,356.0,315.0,310.0,331.0,304.0,312.0,307.0,283.0,279.0,329.0,283.0,295.0,331.0,290.0,328.0,332.0,345.0,307.0,350.0,319.0,317.0,306.0,319.0,304.0,287.0,276.0,278.0,250.0,242.0,236.0,241.0,211.0,204.0,181.0,179.0,137.0,122.0,129.0,99.0,105.0,92.0,92.0,82.0,65.0,61.0,51.0,58.0,50.0,49.0,32.0,40.0,27.0,17.0,17.0,12.0,10.0,4.0,6.0,2.0,2.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5460,17429,4256,0,1625,1976,1859,1906,2129,1980,1890,1656,1601,1537,1517,1602,1611,1395,1134,748,470,285,165,49,10,0,26547,352,212,34,0,26560,386,165,34,0,5516,388,3081,4786,1111,447,6358,5458,0,10065,16762,318,0,42,1590,35,4,4,0,0,1,1,0,25468,0,1135,714,1426,113,33,36,2294,21394,0,5566,6027,2929,202,37,12384,0,1.9428525563849424,0.0,2.717093023255814,0.0,9.867599926321606,423,263,589,68,19,21,902,6613,0,583,387,223,432,785,999,1137,828,1440,781,494,271,278,106,124,28,8746,152,8372,526,8124,774,1599,7299,8428,470,3301,5597,5218,3680,2155,6743,8352,546,8261,637,5493,2768,3948,4950,6903,1995,4024,4874,838,8060,407,8491,126,8772,1752,4145,2755,246,3,4905,3993,0,15,537,18,2,4,0,0,1,1,0,8320,0,1.4534321986293677,1.5962251432423322,1.148936170212766,1.0417495029821071,1.0417495029821071,54.2093728927849 +40612,Chiriquí,David,David Sur,11219,223,1610,129,0,3,4,4,1,0,1,3,6,0,0,2520,7994,228,17,10576,166,1,2,0,11,3,10739,0,4,2,0,3,5,0,6,9241,1299,184,14,10,0,11,10560,23,75,2,0,99,10759,8,712,145,636,771,150,0,2646,1871,5742,271,70,159,10508,51,17,165,5,13,0,10583,25,119,11,18,1,2,7245,3319,0,188,5,2,10528,143,2,7,0,0,0,0,0,72,7,0,13195,8,6.925887754145976,22.591867328773542,6.965707860957556,23.07214466410569,1.0203550515847195,3.790315085045079,2.433869318709917,10987,5333,11586,723,2205,517,505,416,160,484,101,138,449,63,551,177,106,241,215,62,136,29317,2802,0,15941,16178,0,27639,4480,0,30618,1501,0,9954,22165,0,7801,2153,21342,823,0,869,315,414,67,575,649,853,670,688,2769,1,10,80,898,1109,2224,948,1365,7472,10,215,615,844,1153,1707,2372,1531,446,77,1029,5,26,17,96,0,13796,1236,14346,0,52,557,183,2880,6254,4221,469,522,9976,966,1621,404,1612,68,131,12,25,15877,17790,3702,6111,463,4096,318,5,75,45,53,672,141,8909,329,0,0,11652,10196,85,250,543,5112,397,1031,112,0,48,1023,2809,1747,948,3146,212,1973,986,2140,13216,2173,1030,1681,2419,2831,3486,1897,2136,1184,605,206,202,99,173,329,349.0,398.0,410.0,391.0,431.0,438.0,436.0,477.0,458.0,501.0,506.0,497.0,476.0,488.0,508.0,528.0,519.0,580.0,576.0,537.0,582.0,555.0,628.0,556.0,518.0,556.0,559.0,487.0,446.0,442.0,453.0,429.0,460.0,419.0,378.0,403.0,417.0,433.0,439.0,431.0,451.0,431.0,430.0,433.0,430.0,418.0,447.0,427.0,447.0,407.0,467.0,456.0,443.0,436.0,431.0,391.0,367.0,407.0,418.0,407.0,429.0,362.0,372.0,361.0,258.0,327.0,289.0,274.0,248.0,269.0,229.0,219.0,191.0,211.0,181.0,177.0,149.0,160.0,145.0,123.0,141.0,101.0,103.0,99.0,79.0,74.0,59.0,56.0,47.0,50.0,56.0,38.0,28.0,43.0,19.0,14.0,9.0,9.0,7.0,11.0,2.0,3.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6764,22657,4246,0,1979,2310,2475,2740,2839,2490,2139,2123,2175,2146,2233,1990,1782,1407,1031,754,523,286,184,50,11,0,32634,569,432,32,0,32648,639,348,32,0,6657,468,2083,6125,1166,551,9855,6762,0,9828,23360,479,0,54,2204,37,6,11,2,5,2,3,0,31343,0,1108,650,1143,144,152,56,2399,28015,0,7882,7659,3078,176,38,14834,0,1.7900203925567169,0.0,2.6273980526366527,0.0,10.287432797695072,412,232,453,58,48,27,870,8887,0,343,299,188,445,819,1063,1348,1035,1799,1208,787,531,513,233,334,33,10858,129,10446,541,10218,769,2001,8986,10421,566,4999,5988,6940,4047,2787,8200,10624,363,10305,682,7591,2714,5931,5056,9253,1734,5824,5163,1977,9010,779,10208,239,10748,2089,5733,2852,313,13,5940,5047,0,15,625,13,3,3,2,1,2,2,0,10321,0,1.4433636363636364,1.6172727272727272,1.144927536231884,1.0489795918367346,1.0489795918367346,52.4518976972786 +40701,Chiriquí,Dolega,Dolega,1820,3,73,2,2,0,0,1,4,0,0,1,5,0,0,6,1421,26,21,1428,25,3,1,0,15,2,1429,0,3,8,1,7,18,0,8,699,654,93,5,14,0,9,1435,21,5,0,0,13,1474,2,128,111,85,60,38,0,76,181,1123,81,8,5,1430,8,0,27,7,1,1,1469,0,2,0,2,0,1,694,750,0,29,0,1,1000,404,21,40,3,1,1,1,0,1,1,1,969,942,6.887017543859649,20.02175438596491,6.922105263157895,22.534736842105264,1.012890094979647,3.7116689280868393,2.48236092265943,1499,803,1748,55,325,54,68,59,22,96,20,11,75,3,87,50,19,27,20,84,53,3976,591,0,2042,2525,0,3628,939,0,4243,324,0,1319,3248,0,1052,267,3034,214,0,219,31,59,8,85,120,155,95,129,569,0,0,3,108,143,295,134,184,1007,2,23,81,130,192,210,155,270,36,10,96,0,1,1,16,0,1831,166,2157,0,4,84,44,370,843,752,149,43,1252,123,359,53,125,4,48,0,2,2353,2485,444,822,73,589,29,0,7,2,5,154,20,1740,7,0,0,1919,1407,4,33,100,550,32,93,16,0,2,102,299,225,115,342,57,364,171,320,2375,299,132,199,340,316,414,304,246,90,53,13,17,14,19,7,62.0,62.0,64.0,83.0,67.0,79.0,60.0,62.0,68.0,77.0,79.0,84.0,65.0,60.0,78.0,85.0,76.0,74.0,63.0,64.0,76.0,68.0,77.0,81.0,75.0,77.0,82.0,70.0,67.0,73.0,61.0,58.0,70.0,57.0,64.0,57.0,68.0,65.0,70.0,54.0,52.0,48.0,77.0,62.0,60.0,53.0,57.0,64.0,67.0,51.0,50.0,72.0,43.0,66.0,58.0,53.0,59.0,51.0,49.0,49.0,42.0,57.0,61.0,52.0,48.0,37.0,50.0,38.0,37.0,32.0,35.0,38.0,34.0,27.0,24.0,25.0,32.0,24.0,25.0,17.0,22.0,7.0,16.0,19.0,15.0,18.0,7.0,9.0,7.0,10.0,11.0,9.0,2.0,6.0,4.0,2.0,4.0,2.0,5.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1050,3133,655,0,338,346,366,362,377,369,310,314,299,292,289,261,260,194,158,123,79,51,32,15,3,0,4720,55,41,22,0,4723,68,25,22,0,1082,54,211,914,184,57,1286,1050,0,2355,2408,75,0,4,449,26,0,2,0,0,1,0,0,4356,0,119,71,159,9,3,6,209,4262,0,995,1199,380,15,23,2226,0,1.8955916473317864,0.0,2.7914625612316306,0.0,9.384456386936751,37,22,72,1,1,2,87,1277,0,104,68,36,78,140,158,157,152,235,135,84,46,43,21,36,0,1469,30,1366,133,1311,188,314,1185,1212,287,356,1143,898,601,233,1266,1398,101,1335,164,885,450,703,796,1176,323,781,718,360,1139,344,1155,20,1479,282,788,387,42,7,914,585,0,0,108,6,0,1,0,0,0,0,0,1384,0,1.5624169986719787,1.650066401062417,1.2222222222222223,1.03921568627451,1.03921568627451,54.03202134756504 +40702,Chiriquí,Dolega,Dos Ríos,748,0,5,1,0,0,0,0,0,0,0,0,1,0,0,2,577,14,14,590,3,3,2,0,3,6,584,0,0,13,0,5,5,0,0,532,7,26,8,31,0,3,592,8,2,0,0,5,607,0,55,22,18,35,17,0,4,36,538,27,2,0,585,6,6,4,5,1,0,606,0,0,0,1,0,0,241,357,0,9,0,0,18,578,0,9,0,0,0,1,0,1,0,0,0,755,6.936241610738255,14.031879194630871,6.959731543624161,22.421140939597315,1.013179571663921,3.642504118616145,2.359143327841845,616,328,658,22,115,27,32,13,3,25,5,5,8,0,32,17,10,11,15,2,10,1466,282,0,535,1213,0,1218,530,0,1634,114,0,461,1287,0,393,68,1210,77,0,77,11,21,2,34,48,63,59,38,214,0,0,0,52,52,112,49,69,410,3,52,37,46,49,102,85,22,19,1,19,1,0,0,1,0,594,38,965,0,0,8,28,170,303,396,51,45,363,37,125,20,32,0,38,0,1,961,896,153,252,25,165,8,1,10,2,4,94,10,736,0,0,0,749,561,1,45,18,187,15,20,1,0,2,32,78,65,31,113,33,116,43,119,983,142,44,76,119,126,166,77,67,27,15,5,4,0,6,0,29.0,29.0,21.0,30.0,38.0,20.0,19.0,32.0,17.0,25.0,26.0,21.0,24.0,31.0,26.0,29.0,26.0,18.0,34.0,28.0,31.0,30.0,32.0,37.0,26.0,34.0,24.0,36.0,29.0,17.0,21.0,24.0,25.0,25.0,16.0,16.0,14.0,17.0,17.0,17.0,20.0,23.0,24.0,24.0,23.0,20.0,21.0,28.0,21.0,21.0,36.0,21.0,25.0,23.0,22.0,20.0,22.0,22.0,21.0,20.0,26.0,19.0,21.0,17.0,17.0,15.0,22.0,14.0,11.0,12.0,16.0,16.0,11.0,9.0,14.0,9.0,13.0,11.0,14.0,11.0,7.0,14.0,11.0,4.0,10.0,12.0,3.0,5.0,3.0,6.0,1.0,3.0,4.0,1.0,0.0,1.0,0.0,0.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,388,1180,289,0,147,113,128,135,156,140,111,81,114,111,127,105,100,74,66,58,46,29,9,7,0,0,1799,16,19,23,0,1799,25,10,23,0,455,16,29,300,57,7,605,388,0,1230,594,33,0,1,139,4,0,0,0,0,0,0,0,1713,0,6,11,8,5,0,0,25,1802,0,314,465,150,15,14,899,0,2.210459183673469,0.0,3.043875685557587,0.0,9.093699515347334,2,3,3,2,0,0,13,593,0,75,38,17,36,61,76,77,48,76,45,28,13,13,5,7,0,603,13,557,59,531,85,109,507,513,103,122,494,396,220,128,488,561,55,549,67,338,211,247,369,381,235,275,341,283,333,163,453,11,605,121,344,143,8,0,382,234,0,0,38,2,0,0,0,0,0,0,0,576,0,1.5600649350649352,1.4545454545454546,1.0,1.0555555555555556,1.0555555555555556,55.16396103896104 +40703,Chiriquí,Dolega,Los Anastacios,1726,2,35,0,0,0,0,0,0,0,0,0,0,0,0,238,1134,11,11,1375,8,1,0,0,6,4,1379,0,1,2,0,1,6,0,5,61,1296,16,4,7,0,10,1359,8,2,0,1,24,1394,2,122,96,43,82,24,0,233,150,975,33,3,0,1377,7,1,3,3,2,1,1386,0,6,0,1,1,0,830,555,0,7,2,0,31,1336,13,3,1,1,0,0,0,6,1,2,1356,407,6.926811594202898,23.560144927536232,6.9543478260869565,23.76014492753623,1.01506456241033,3.5107604017216643,2.2962697274031565,1415,767,1487,81,261,45,53,32,12,64,14,10,18,3,82,24,17,21,25,2,11,3579,437,0,1910,2106,0,3276,740,0,3821,195,0,1200,2816,0,1015,185,2670,146,0,147,33,61,6,75,102,128,98,116,486,1,0,4,93,137,311,116,184,911,0,20,80,104,118,181,337,45,45,4,71,0,1,0,1,0,1716,165,1747,0,21,89,35,248,706,686,64,43,1163,114,288,66,194,4,32,0,4,2113,2149,356,827,84,578,11,0,5,4,3,113,19,1616,19,0,0,1699,1210,5,39,56,509,39,69,2,0,4,99,246,161,103,377,53,384,139,315,2042,219,102,185,286,310,480,209,217,109,47,12,11,4,10,19,64.0,55.0,69.0,58.0,62.0,63.0,63.0,64.0,70.0,66.0,51.0,74.0,61.0,64.0,65.0,45.0,69.0,68.0,68.0,60.0,56.0,67.0,60.0,71.0,69.0,67.0,67.0,81.0,71.0,57.0,79.0,61.0,70.0,62.0,57.0,65.0,58.0,66.0,63.0,63.0,60.0,58.0,51.0,60.0,56.0,59.0,52.0,62.0,45.0,40.0,67.0,51.0,45.0,56.0,42.0,39.0,42.0,52.0,41.0,51.0,42.0,27.0,42.0,34.0,35.0,32.0,36.0,32.0,34.0,35.0,37.0,31.0,28.0,26.0,21.0,22.0,11.0,17.0,11.0,4.0,14.0,7.0,8.0,12.0,8.0,4.0,6.0,10.0,6.0,7.0,5.0,6.0,5.0,3.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,949,2829,484,0,308,326,315,310,323,343,329,315,285,258,261,225,180,169,143,65,49,33,20,3,2,0,4193,32,32,5,0,4193,36,28,5,0,1067,34,68,749,121,31,1244,948,0,2049,2184,29,0,3,178,32,0,0,0,0,0,5,0,4044,0,90,42,39,6,0,1,128,3956,0,935,1135,257,17,6,1912,0,1.8539630836047771,0.0,2.62589928057554,0.0,9.298451431252932,26,15,19,5,0,0,60,1290,0,95,58,35,59,115,151,220,131,222,137,78,35,45,13,16,5,1386,29,1326,89,1286,129,207,1208,1211,204,387,1028,880,535,218,1197,1316,99,1277,138,826,451,660,755,1085,330,758,657,253,1162,200,1215,14,1401,279,828,288,20,0,914,501,0,0,46,7,0,0,0,0,0,2,0,1360,0,1.493286219081272,1.5187279151943462,1.0666666666666669,1.0212765957446808,1.0212765957446808,50.78374558303887 +40704,Chiriquí,Dolega,Potrerillos,887,6,11,0,0,0,0,0,32,0,1,1,3,0,0,3,462,91,7,545,11,0,2,0,5,0,471,0,0,32,0,9,41,0,10,210,158,132,7,52,0,4,513,40,3,0,0,7,563,1,159,34,11,78,58,0,1,45,400,109,0,8,462,74,0,20,2,5,0,554,0,6,0,1,0,2,206,289,0,36,32,0,339,132,88,1,1,1,0,0,0,0,1,0,0,941,6.976744186046512,23.894454382826478,6.996422182468694,23.96779964221825,1.0124333925399644,3.1563055062166963,1.8614564831261105,574,306,546,24,79,11,21,17,8,25,10,8,249,2,40,25,9,4,8,33,16,1318,426,0,432,1312,0,1166,578,0,1606,138,0,369,1375,0,326,43,1241,134,0,136,13,15,2,43,51,76,65,53,355,0,1,3,54,75,141,51,60,345,1,15,10,7,9,34,30,59,5,0,34,0,0,0,1,0,675,27,854,0,1,14,4,135,232,355,54,78,259,49,70,22,52,2,234,0,9,1016,864,70,270,29,239,58,0,22,9,4,67,5,751,18,0,0,1003,377,3,12,10,113,4,33,1,0,3,29,44,38,17,48,162,106,33,222,1012,93,37,75,183,158,108,60,61,28,27,5,11,0,4,18,38.0,40.0,32.0,26.0,38.0,39.0,24.0,28.0,27.0,32.0,31.0,27.0,18.0,26.0,23.0,30.0,28.0,32.0,24.0,30.0,26.0,37.0,35.0,40.0,27.0,35.0,25.0,24.0,24.0,30.0,26.0,24.0,35.0,27.0,21.0,22.0,16.0,18.0,14.0,19.0,16.0,25.0,18.0,14.0,17.0,16.0,13.0,15.0,24.0,24.0,27.0,20.0,19.0,27.0,29.0,25.0,15.0,20.0,26.0,19.0,14.0,14.0,15.0,16.0,19.0,14.0,11.0,19.0,19.0,10.0,19.0,10.0,14.0,7.0,14.0,7.0,11.0,12.0,6.0,12.0,12.0,10.0,10.0,8.0,3.0,5.0,6.0,5.0,10.0,1.0,7.0,4.0,3.0,2.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,449,1156,275,0,174,150,125,144,165,138,133,89,90,92,122,105,78,73,64,48,43,27,17,3,0,0,1791,24,45,20,0,1791,35,34,20,0,547,14,133,235,67,6,430,448,0,749,1080,51,0,0,581,13,0,1,0,3,1,0,0,1281,0,21,24,63,1,4,1,44,1722,0,211,325,125,5,18,1196,0,2.1732954545454546,0.0,3.109278350515464,0.0,7.510106382978724,4,6,19,1,1,1,13,529,0,66,24,15,37,92,65,50,43,69,36,30,13,12,5,8,5,550,24,449,125,431,143,125,449,164,410,23,551,315,259,13,561,509,65,432,142,214,218,187,387,444,130,277,297,225,349,252,322,8,566,157,285,111,21,33,448,126,0,0,107,5,0,0,0,1,1,0,0,460,0,1.6738056013179572,1.4233937397034595,1.2,1.0,1.0,55.12369337979094 +40705,Chiriquí,Dolega,Potrerillos Abajo,914,3,11,7,0,0,0,0,23,0,0,0,2,0,0,4,602,36,8,609,33,1,0,0,7,0,628,0,2,9,0,1,9,0,1,473,87,36,1,50,0,3,639,4,1,0,0,6,650,4,129,59,36,26,31,0,23,74,461,92,0,0,603,12,0,28,3,4,0,650,0,0,0,0,0,0,326,309,0,12,2,1,95,484,36,23,6,0,0,2,0,4,0,0,0,960,6.871544715447154,23.346341463414635,6.878048780487805,23.40487804878049,1.015384615384615,3.301538461538461,2.170769230769231,662,381,714,25,103,19,33,19,14,26,9,3,142,3,22,41,10,10,4,6,15,1730,295,0,612,1413,0,1489,536,0,1845,180,0,567,1458,0,480,87,1309,149,0,149,13,32,4,50,58,77,63,60,263,0,0,1,62,63,158,47,75,380,0,27,35,48,46,113,106,15,21,0,48,1,0,2,8,0,801,59,959,0,3,16,9,202,358,331,47,21,487,40,161,11,66,0,73,2,1,1077,1076,134,403,30,251,19,0,3,1,3,43,13,734,6,0,0,967,521,1,20,15,218,19,50,8,0,1,56,116,60,36,102,58,109,78,244,1078,85,56,80,149,189,149,169,95,29,27,14,7,7,13,6,30.0,42.0,27.0,29.0,44.0,35.0,32.0,38.0,29.0,28.0,32.0,39.0,31.0,40.0,29.0,44.0,38.0,36.0,28.0,34.0,36.0,43.0,28.0,33.0,26.0,27.0,25.0,34.0,39.0,36.0,21.0,33.0,28.0,37.0,24.0,29.0,24.0,34.0,36.0,27.0,27.0,18.0,25.0,27.0,20.0,23.0,21.0,20.0,19.0,19.0,25.0,22.0,23.0,25.0,24.0,21.0,15.0,30.0,22.0,21.0,19.0,14.0,24.0,24.0,22.0,26.0,18.0,14.0,18.0,12.0,18.0,10.0,19.0,12.0,7.0,11.0,11.0,15.0,15.0,13.0,10.0,8.0,7.0,8.0,5.0,5.0,7.0,3.0,6.0,3.0,5.0,2.0,3.0,1.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,505,1350,298,0,172,162,171,180,166,161,143,150,117,102,119,109,103,88,66,65,38,24,12,4,1,0,2054,25,56,18,0,2057,36,42,18,0,517,19,156,419,96,18,423,505,0,938,1152,63,0,2,451,5,0,0,0,0,0,0,0,1695,0,7,3,28,2,0,1,7,2105,0,423,517,193,8,25,987,0,1.981601731601732,0.0,2.959663865546218,0.0,8.556432884347423,4,2,8,1,0,1,6,640,0,41,19,17,32,59,77,75,75,95,40,55,22,20,15,17,1,653,9,581,81,550,112,150,512,361,301,83,579,439,223,33,629,623,39,550,112,282,268,290,372,519,143,371,291,314,348,271,391,12,650,149,364,137,12,23,469,193,0,1,77,1,0,0,0,0,0,0,0,583,0,1.5722627737226278,1.570802919708029,1.5384615384615383,1.1290322580645162,1.1290322580645162,54.19939577039275 +40706,Chiriquí,Dolega,Rovira,933,5,14,0,0,0,0,0,3,0,0,0,1,0,0,3,636,64,9,681,22,2,0,0,7,0,667,0,0,16,1,6,21,0,1,411,151,80,0,69,0,1,687,17,4,0,0,4,712,0,107,31,22,57,23,0,3,46,583,79,1,0,623,52,0,14,2,21,0,711,1,0,0,0,0,0,229,431,0,30,22,0,0,657,51,1,1,0,0,0,0,2,0,0,0,956,6.956214689265536,23.661016949152543,6.981638418079096,23.824858757062145,1.021067415730337,3.157303370786517,2.0463483146067416,728,398,804,86,127,23,34,9,10,24,6,8,28,0,33,18,12,15,11,40,13,1768,380,0,549,1599,0,1474,674,0,1929,219,0,581,1567,0,519,62,1421,146,0,147,28,30,2,66,72,100,81,68,393,0,0,0,62,116,171,64,91,327,0,6,38,70,46,56,77,10,13,1,10,2,0,1,0,0,813,56,1045,0,1,29,5,113,358,489,30,55,371,78,136,46,73,0,146,1,0,1174,1111,76,373,50,342,6,0,4,0,6,81,18,838,7,0,0,1256,486,1,4,22,122,10,13,0,0,0,21,46,38,25,116,77,242,78,226,1222,128,57,92,204,218,162,95,64,18,9,5,1,2,1,7,41.0,35.0,26.0,35.0,42.0,46.0,44.0,39.0,24.0,39.0,37.0,33.0,35.0,46.0,42.0,47.0,33.0,50.0,35.0,32.0,43.0,52.0,29.0,45.0,31.0,49.0,18.0,37.0,29.0,27.0,31.0,37.0,25.0,32.0,29.0,23.0,23.0,31.0,31.0,32.0,37.0,30.0,27.0,28.0,20.0,22.0,33.0,21.0,29.0,22.0,20.0,25.0,25.0,23.0,16.0,29.0,20.0,22.0,22.0,26.0,21.0,18.0,24.0,18.0,21.0,13.0,22.0,19.0,20.0,17.0,17.0,14.0,18.0,13.0,7.0,14.0,5.0,10.0,11.0,11.0,5.0,5.0,7.0,2.0,8.0,6.0,3.0,3.0,3.0,3.0,0.0,3.0,2.0,2.0,2.0,0.0,1.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,564,1450,271,0,179,192,193,197,200,160,154,140,142,127,109,119,102,91,69,51,27,18,9,4,2,0,2238,14,12,21,0,2239,15,10,21,0,523,32,134,397,82,9,544,564,0,1153,1113,19,0,1,410,8,0,2,0,0,0,0,0,1864,0,11,1,24,2,0,1,42,2204,0,337,491,111,10,7,1329,0,2.1140065146579805,0.0,2.9983922829581995,0.0,7.508096280087527,4,1,9,0,0,0,17,697,0,63,31,10,38,82,133,112,73,83,49,23,19,5,1,2,3,714,14,613,115,598,130,153,575,315,413,27,701,423,305,18,710,684,44,550,178,174,376,195,533,514,214,313,415,329,399,279,449,9,719,169,394,155,10,3,538,190,0,0,91,1,0,0,0,0,0,0,0,636,0,1.6060191518467852,1.5198358413132695,1.5,1.03125,1.03125,51.46153846153846 +40707,Chiriquí,Dolega,Tinajas,778,4,2,0,0,0,0,0,0,0,0,0,2,0,0,1,576,44,8,597,24,2,1,0,5,0,607,0,1,3,0,3,15,0,0,5,348,165,4,97,1,9,596,21,1,0,0,11,629,0,48,46,6,40,15,0,26,37,530,36,0,0,594,24,0,3,4,4,0,627,1,0,0,0,1,0,210,402,0,15,2,0,0,603,10,5,3,0,0,1,0,5,2,0,0,786,6.923327895595432,21.709624796084828,6.955954323001631,23.758564437194128,1.0254372019077902,3.3465818759936408,2.201907790143084,647,371,707,64,118,22,21,14,10,35,11,9,21,3,46,48,16,13,27,62,8,1572,336,0,519,1389,0,1292,616,0,1691,217,0,545,1363,0,473,72,1239,124,0,128,22,30,0,56,92,82,81,72,332,0,0,0,59,76,178,68,80,260,2,17,34,51,49,75,28,7,10,2,16,0,0,0,1,0,817,41,852,0,1,9,3,69,324,383,68,8,325,100,128,41,88,6,163,0,0,1059,994,87,275,46,398,12,0,32,1,6,107,14,687,2,0,0,1156,393,1,16,19,103,7,14,1,0,1,28,50,49,25,125,113,236,59,172,1041,156,50,114,192,144,168,80,56,29,14,3,0,0,4,2,36.0,29.0,40.0,40.0,32.0,38.0,26.0,32.0,37.0,33.0,28.0,42.0,33.0,27.0,29.0,48.0,29.0,38.0,32.0,40.0,27.0,46.0,37.0,37.0,31.0,26.0,24.0,30.0,30.0,30.0,29.0,27.0,31.0,30.0,26.0,27.0,17.0,29.0,27.0,22.0,25.0,20.0,23.0,26.0,19.0,17.0,29.0,19.0,29.0,30.0,28.0,20.0,23.0,27.0,27.0,20.0,22.0,24.0,21.0,19.0,20.0,14.0,18.0,16.0,20.0,9.0,17.0,9.0,16.0,8.0,5.0,12.0,10.0,10.0,7.0,13.0,11.0,12.0,11.0,10.0,5.0,10.0,6.0,4.0,6.0,3.0,3.0,5.0,4.0,3.0,5.0,2.0,4.0,0.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,502,1326,225,0,177,166,159,187,178,140,143,122,113,124,125,106,88,59,44,57,31,18,12,4,0,0,2006,10,17,20,0,2006,13,14,20,0,593,32,128,305,68,25,400,502,0,1153,885,15,0,0,245,12,0,0,0,0,0,0,0,1796,0,14,24,89,1,1,7,527,1390,0,245,394,78,9,4,1323,0,2.157641395908544,0.0,3.092198581560284,0.0,7.302484169508037,2,7,33,0,1,5,190,409,0,25,33,14,43,94,96,81,71,96,41,24,12,8,2,4,1,633,14,557,90,532,115,77,570,430,217,76,571,372,275,28,619,608,39,508,139,197,311,172,475,458,189,303,344,336,311,293,354,5,642,134,337,157,19,0,490,157,0,0,46,1,0,0,0,0,0,0,0,600,0,1.6367851622874807,1.536321483771252,1.0,1.1111111111111112,1.1111111111111112,51.43585780525503 +40708,Chiriquí,Dolega,Los Algarrobos,7324,2,54,6,0,0,4,0,0,0,0,0,1,0,0,1130,4707,22,18,5842,17,3,1,0,14,0,5850,0,1,5,2,1,10,0,8,3183,2407,131,24,57,0,75,5806,15,32,2,0,22,5877,24,606,259,228,317,75,0,3339,716,1718,97,6,1,5809,20,2,3,4,39,0,5729,14,132,0,1,0,1,5244,617,1,14,1,0,2498,2663,616,13,2,1,0,0,0,75,9,0,6516,875,6.842305694997403,20.35520166176216,6.92314350008655,21.1005712307426,1.0093585162497871,3.751403777437468,2.383188701718564,5933,3470,6377,473,623,273,222,165,128,151,82,70,338,45,243,122,53,86,92,43,49,16124,1299,0,11142,6281,0,15626,1797,0,16528,895,0,6139,11284,0,4131,2008,10805,479,0,506,195,251,16,347,390,465,363,398,1042,3,1,24,397,483,868,504,701,3592,9,118,482,592,811,1332,1969,380,308,94,696,7,11,12,56,0,8294,595,6770,0,47,295,55,896,3661,1744,225,244,6656,432,828,165,570,10,113,12,4,8616,9734,2491,3932,210,1901,207,0,32,17,5,249,50,5323,140,0,0,5149,5488,28,152,359,3453,283,684,63,0,20,811,2116,1222,495,1793,112,950,550,820,8063,613,433,510,842,1172,1904,1258,1469,961,462,171,176,69,107,140,203.0,216.0,237.0,271.0,302.0,279.0,275.0,287.0,311.0,310.0,302.0,323.0,286.0,286.0,308.0,284.0,317.0,310.0,298.0,278.0,275.0,292.0,299.0,292.0,261.0,270.0,288.0,290.0,276.0,232.0,283.0,312.0,305.0,344.0,336.0,333.0,353.0,327.0,326.0,298.0,300.0,300.0,313.0,272.0,291.0,299.0,253.0,246.0,241.0,230.0,243.0,224.0,217.0,210.0,187.0,185.0,195.0,191.0,163.0,168.0,153.0,144.0,114.0,120.0,113.0,123.0,119.0,81.0,88.0,81.0,68.0,59.0,75.0,63.0,65.0,54.0,54.0,39.0,51.0,28.0,36.0,25.0,26.0,19.0,16.0,15.0,22.0,15.0,21.0,11.0,9.0,12.0,6.0,2.0,3.0,3.0,4.0,3.0,5.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4196,12851,1303,0,1229,1462,1505,1487,1419,1356,1580,1637,1476,1269,1081,902,644,492,330,226,122,84,32,16,1,0,17580,310,432,28,0,17600,377,345,28,0,3912,218,526,3933,377,249,4942,4193,0,4145,13922,283,0,36,849,44,8,2,1,8,1,1,0,17400,0,656,253,510,67,11,34,1881,14938,0,5495,5254,893,85,49,6574,0,1.5283603431839847,0.0,2.343305908750935,0.0,10.696403269754768,244,91,194,29,4,13,750,4608,0,199,95,70,119,236,375,608,511,1034,853,593,403,407,174,212,43,5899,34,5783,150,5671,262,942,4991,5387,546,3396,2537,3647,2286,1611,4322,5763,170,5610,323,4528,1082,4058,1875,5232,701,4164,1769,1497,4436,693,5240,170,5763,965,3723,1076,169,4,3800,2133,0,10,282,9,1,1,1,2,1,0,0,5626,0,1.4512379989893889,1.639548593565774,1.2625,1.0416666666666667,1.0416666666666667,47.03303556379572 +40801,Chiriquí,Gualaca,Gualaca,2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1615,115,16,1684,48,2,0,0,13,1,1670,0,0,41,0,6,31,0,0,1096,237,227,7,51,0,130,1663,51,1,0,0,33,1748,0,207,41,39,52,66,0,17,123,1509,92,7,0,1583,90,31,5,9,30,0,1737,2,2,0,4,0,3,668,994,0,63,23,0,110,1368,189,1,17,48,0,6,0,3,6,0,1191,962,6.943011397720456,22.280743851229754,6.997600479904019,23.346730653869223,1.0183066361556063,3.7133867276887873,2.382151029748284,1780,1042,2173,159,379,50,84,38,21,95,16,11,30,1,123,38,19,48,37,14,20,4802,758,0,1573,3987,0,4073,1487,0,5107,453,0,1592,3968,0,1433,159,3633,335,0,347,35,86,13,121,156,185,154,135,1049,1,4,10,156,212,484,147,210,986,5,81,92,126,141,175,207,151,30,2,54,1,2,0,2,0,2003,282,2771,0,7,149,26,293,1042,1277,92,67,1207,146,281,112,212,0,252,8,0,2961,2918,436,1000,117,588,45,0,31,1,10,255,60,1820,39,0,0,2991,1373,10,72,63,471,21,52,3,0,2,77,191,140,90,412,120,421,162,670,3175,450,219,255,408,372,398,199,190,93,39,11,19,5,7,39,77.0,86.0,82.0,74.0,77.0,79.0,90.0,91.0,81.0,86.0,87.0,82.0,79.0,98.0,100.0,106.0,101.0,101.0,108.0,97.0,121.0,82.0,116.0,101.0,96.0,98.0,87.0,111.0,71.0,70.0,85.0,68.0,82.0,72.0,65.0,71.0,58.0,73.0,81.0,89.0,80.0,85.0,77.0,82.0,60.0,77.0,75.0,85.0,73.0,76.0,91.0,69.0,81.0,77.0,63.0,68.0,58.0,77.0,50.0,59.0,69.0,42.0,58.0,49.0,42.0,55.0,43.0,42.0,39.0,45.0,36.0,34.0,27.0,35.0,28.0,31.0,19.0,25.0,21.0,22.0,22.0,11.0,16.0,16.0,11.0,11.0,21.0,8.0,7.0,9.0,8.0,7.0,7.0,7.0,2.0,5.0,2.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1269,3933,677,0,396,427,446,513,516,437,372,372,384,386,381,312,260,224,160,118,76,56,31,10,2,0,5798,45,19,17,0,5798,45,19,17,0,1509,56,558,935,201,27,1324,1269,0,3489,2347,43,0,8,250,10,3,0,0,0,0,0,0,5608,0,46,137,234,14,2,3,261,5182,0,939,1468,294,32,5,3141,0,2.0676,0.0,2.986252241482367,0.0,8.259908147644158,18,35,74,5,1,3,98,1546,0,97,106,78,142,232,218,213,158,238,115,69,46,38,10,17,3,1722,58,1576,204,1551,229,280,1500,1445,335,343,1437,1022,758,157,1623,1631,149,1525,255,1014,511,657,1123,1239,541,628,1152,611,1169,597,1183,9,1771,280,1022,451,27,0,1232,548,0,3,58,4,0,0,0,0,0,0,0,1715,0,1.6634831460674158,1.6393258426966293,1.0,1.0795454545454546,1.0795454545454546,52.90393258426966 +40803,Chiriquí,Gualaca,Los Ángeles,274,4,0,0,0,0,0,0,2,0,0,0,1,0,0,1,115,63,5,175,4,2,0,0,3,0,134,0,4,12,2,1,28,0,3,52,2,94,8,26,1,1,159,23,0,0,0,2,184,0,38,5,0,41,10,0,0,3,165,16,0,0,143,30,0,0,2,9,0,180,0,1,0,2,0,1,38,120,0,22,4,0,0,128,43,0,0,10,0,0,0,1,2,0,0,281,6.514619883040936,20.24561403508772,7.0,24.0,1.0054347826086956,3.4239130434782608,2.391304347826087,186,130,247,20,44,4,6,4,0,16,4,1,6,0,14,3,3,3,2,1,4,385,239,0,57,567,0,310,314,0,537,87,0,165,459,0,154,11,410,49,0,49,5,6,2,18,30,34,23,31,176,0,0,0,24,21,50,19,27,65,0,4,3,4,8,21,2,0,1,0,1,0,0,0,0,0,233,4,319,0,0,2,0,7,111,191,9,1,41,4,12,1,13,1,165,0,0,361,307,20,113,2,81,1,0,20,0,5,38,5,249,5,0,0,447,77,0,4,4,23,0,1,0,0,0,9,4,5,6,16,70,12,16,99,392,63,43,32,46,40,19,8,11,6,1,0,1,0,1,5,10.0,6.0,14.0,14.0,13.0,7.0,12.0,9.0,18.0,9.0,9.0,16.0,9.0,14.0,11.0,14.0,14.0,13.0,6.0,10.0,12.0,9.0,19.0,11.0,8.0,7.0,9.0,8.0,10.0,10.0,7.0,6.0,3.0,9.0,5.0,10.0,6.0,10.0,8.0,12.0,11.0,9.0,12.0,7.0,9.0,5.0,7.0,8.0,11.0,9.0,7.0,7.0,9.0,6.0,8.0,6.0,4.0,4.0,3.0,6.0,6.0,2.0,5.0,4.0,6.0,6.0,5.0,6.0,7.0,5.0,6.0,7.0,2.0,3.0,7.0,7.0,5.0,3.0,1.0,3.0,2.0,2.0,2.0,1.0,1.0,0.0,2.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,171,407,90,0,57,55,59,57,59,44,30,46,48,40,37,23,23,29,25,19,8,4,4,1,0,0,658,1,0,9,0,658,1,0,9,0,195,0,38,116,16,2,130,171,0,476,192,0,0,0,102,0,0,0,0,0,0,0,0,566,0,3,22,13,1,0,0,14,615,0,44,79,8,3,0,534,0,2.4865900383141764,0.0,3.680473372781065,0.0,6.311377245508982,2,1,8,0,0,0,4,171,0,6,10,12,24,35,38,21,12,15,7,1,1,0,0,2,1,173,13,128,58,122,64,30,156,98,88,5,181,108,78,5,181,152,34,113,73,27,86,19,167,113,73,45,141,124,62,136,50,1,185,28,112,42,4,2,149,37,0,0,18,0,0,0,0,0,0,0,0,168,0,1.9202127659574468,1.6329787234042554,0.0,1.0,1.0,53.73118279569893 +40804,Chiriquí,Gualaca,Paja de Sombrero,349,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,62,26,205,10,14,0,0,12,0,148,0,1,39,1,0,52,0,0,106,3,64,7,61,0,0,214,26,0,0,0,1,241,0,64,11,3,9,25,0,2,3,211,24,1,0,182,55,0,2,0,2,0,239,0,0,0,1,0,1,6,198,0,13,24,0,0,182,41,0,0,14,0,2,0,1,1,0,0,353,6.632286995515695,22.77130044843049,6.986547085201794,23.90134529147982,1.004149377593361,3.1701244813278007,2.033195020746888,242,99,198,19,27,9,10,5,2,6,0,4,12,0,14,20,4,9,6,4,24,456,148,0,70,534,0,266,338,0,535,69,0,127,477,0,112,15,411,66,0,67,4,5,0,16,42,35,27,26,167,0,0,0,18,23,38,19,19,58,1,0,3,4,6,9,9,5,1,0,2,0,0,0,0,0,293,3,259,0,0,1,0,7,72,125,46,9,58,16,39,10,13,0,160,0,0,360,273,13,114,10,85,1,0,72,1,7,62,11,162,0,0,0,457,74,0,0,4,18,0,2,0,0,1,4,4,7,4,22,104,29,12,109,337,91,36,35,37,38,28,12,11,5,2,0,1,0,0,0,9.0,7.0,5.0,8.0,7.0,12.0,6.0,5.0,12.0,7.0,5.0,11.0,6.0,6.0,11.0,13.0,7.0,8.0,7.0,6.0,13.0,11.0,6.0,10.0,6.0,6.0,11.0,5.0,7.0,4.0,6.0,6.0,6.0,6.0,7.0,8.0,10.0,7.0,7.0,15.0,9.0,3.0,9.0,7.0,10.0,10.0,7.0,9.0,9.0,10.0,12.0,7.0,13.0,7.0,13.0,7.0,10.0,7.0,11.0,5.0,9.0,3.0,6.0,2.0,5.0,7.0,7.0,5.0,5.0,4.0,3.0,10.0,4.0,3.0,5.0,7.0,5.0,2.0,5.0,5.0,5.0,4.0,5.0,3.0,2.0,6.0,2.0,4.0,6.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,117,398,118,0,36,42,39,41,46,33,31,47,38,45,52,40,25,28,25,24,19,19,2,1,0,0,624,4,2,3,0,624,4,2,3,0,168,1,48,77,29,3,190,117,0,342,285,6,0,0,38,2,0,0,0,0,0,0,0,593,0,1,9,0,0,0,0,7,616,0,50,110,13,3,3,454,0,2.7735042735042734,0.0,3.911392405063291,0.0,6.06003159557662,1,1,0,0,0,0,3,237,0,19,29,25,43,34,31,24,11,10,7,3,2,3,1,0,0,234,8,125,117,139,103,32,210,73,169,1,241,154,88,4,238,198,44,128,114,21,107,26,216,129,113,51,191,182,60,139,103,1,241,81,105,47,9,0,181,61,0,0,8,2,0,0,0,0,0,0,0,232,0,1.487603305785124,1.128099173553719,1.0,1.0714285714285714,1.0714285714285714,56.36776859504132 +40805,Chiriquí,Gualaca,Rincón,586,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,372,75,11,426,21,3,2,0,5,1,415,0,0,20,1,2,15,0,5,271,7,136,9,33,0,2,431,23,1,0,0,3,458,0,73,7,4,25,19,0,1,9,409,39,0,0,416,30,0,2,5,5,0,455,0,2,0,0,1,0,124,301,0,27,6,0,2,346,90,12,1,0,0,2,0,2,3,0,0,589,5.792237442922374,16.12785388127854,6.1826484018264845,18.605022831050228,1.0131004366812226,3.5458515283842797,2.334061135371179,466,249,560,20,100,13,16,5,2,27,3,3,12,0,12,12,5,7,13,0,3,1134,261,0,172,1223,0,744,651,0,1255,140,0,347,1048,0,317,30,946,102,0,103,11,18,5,26,48,48,37,52,290,0,2,3,43,70,148,37,61,221,0,3,24,26,27,19,29,30,5,0,9,0,0,0,0,0,505,28,739,0,0,21,6,79,230,409,10,11,241,39,77,38,40,0,95,0,0,759,717,88,245,38,127,18,0,13,1,11,77,6,483,0,0,0,876,291,3,6,17,68,3,8,0,0,1,9,41,20,7,101,45,96,38,175,765,147,48,104,124,103,86,47,32,10,5,1,3,1,0,0,15.0,19.0,23.0,24.0,24.0,19.0,21.0,19.0,20.0,20.0,23.0,28.0,23.0,22.0,24.0,26.0,24.0,17.0,23.0,29.0,24.0,21.0,29.0,26.0,23.0,29.0,23.0,24.0,20.0,27.0,12.0,14.0,17.0,13.0,15.0,15.0,17.0,19.0,16.0,24.0,26.0,15.0,18.0,23.0,22.0,23.0,15.0,17.0,20.0,23.0,12.0,14.0,25.0,10.0,17.0,20.0,17.0,19.0,12.0,17.0,16.0,16.0,15.0,22.0,15.0,9.0,7.0,11.0,9.0,9.0,5.0,13.0,11.0,4.0,16.0,4.0,9.0,3.0,4.0,3.0,6.0,10.0,5.0,4.0,4.0,3.0,4.0,4.0,3.0,3.0,1.0,0.0,7.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,324,976,176,0,105,99,120,119,123,123,71,91,104,98,78,85,84,45,49,23,29,17,11,2,0,0,1448,5,2,21,0,1448,5,2,21,0,374,18,159,217,64,7,313,324,0,936,537,3,0,0,60,6,0,0,0,0,0,0,0,1410,0,6,7,45,1,1,0,6,1410,0,190,339,72,15,1,859,0,2.416387959866221,0.0,3.2673031026252985,0.0,7.505420054200542,1,2,17,1,0,0,2,443,0,19,40,19,54,70,66,61,41,51,22,4,7,4,5,1,0,449,17,377,89,373,93,64,402,351,115,46,420,262,204,12,454,405,61,383,83,187,196,78,388,299,167,130,336,150,316,196,270,4,462,87,247,124,8,1,317,149,0,0,12,1,0,0,0,0,0,0,0,453,0,1.6252676659528908,1.5353319057815846,1.0,1.0434782608695652,1.0434782608695652,53.512875536480685 +40901,Chiriquí,Remedios,Remedios,369,1,1,0,0,0,0,1,0,0,0,0,1,0,0,4,217,32,10,250,3,6,0,0,4,0,247,0,0,3,0,0,13,0,0,226,4,23,2,7,1,0,243,13,0,0,0,7,263,0,56,11,7,30,4,0,1,15,215,29,0,3,256,3,0,2,2,0,0,261,0,2,0,0,0,0,107,150,0,6,0,0,248,0,4,5,1,3,0,0,0,0,1,1,0,373,6.98015873015873,23.63095238095238,6.992063492063492,23.761904761904763,1.0076045627376429,4.239543726235741,2.547528517110266,266,112,271,14,100,5,24,12,2,17,4,6,10,1,12,0,2,4,6,0,2,657,151,0,225,583,0,532,276,0,757,51,0,223,585,0,209,14,558,27,0,31,8,10,2,14,19,24,13,21,107,0,0,0,29,24,70,28,31,169,0,8,14,19,29,26,36,56,8,0,12,0,0,0,0,0,222,32,480,0,16,9,5,75,141,251,12,1,177,17,18,2,6,2,19,8,0,432,412,112,73,2,50,7,0,3,2,0,31,7,416,0,0,0,357,226,0,11,13,111,5,11,0,0,2,22,56,21,18,34,18,14,14,55,484,48,32,22,51,56,46,40,42,16,6,1,0,0,0,0,7.0,16.0,8.0,5.0,9.0,16.0,8.0,10.0,18.0,13.0,8.0,13.0,18.0,9.0,13.0,10.0,12.0,12.0,15.0,17.0,17.0,12.0,5.0,6.0,10.0,13.0,11.0,10.0,11.0,10.0,17.0,12.0,6.0,14.0,9.0,13.0,16.0,10.0,10.0,3.0,12.0,7.0,10.0,15.0,9.0,11.0,9.0,6.0,11.0,5.0,12.0,13.0,8.0,11.0,13.0,11.0,11.0,9.0,5.0,7.0,12.0,15.0,9.0,13.0,11.0,11.0,7.0,13.0,8.0,9.0,10.0,5.0,6.0,7.0,6.0,3.0,2.0,1.0,2.0,4.0,4.0,7.0,3.0,3.0,4.0,5.0,2.0,3.0,2.0,2.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,171,536,137,0,45,65,61,66,50,55,58,52,53,42,57,43,60,48,34,12,21,14,6,2,0,0,832,3,9,0,0,832,3,9,0,0,213,13,37,103,39,8,260,171,0,602,234,8,0,0,41,0,0,0,0,8,0,0,2,793,0,20,3,40,1,0,1,61,718,0,154,176,76,3,0,435,0,2.2366197183098597,0.0,2.9683794466403164,0.0,9.502369668246445,5,2,17,1,0,0,23,218,0,47,16,10,6,28,25,24,20,42,23,13,3,5,2,1,0,248,18,229,37,226,40,47,219,225,41,69,197,155,111,4,262,236,30,220,46,110,110,77,189,132,134,86,180,19,247,26,240,1,265,58,105,96,7,1,154,112,0,0,14,0,0,0,0,2,0,0,0,250,0,1.6179775280898876,1.5430711610486891,1.75,1.0,1.0,57.642857142857146 +40902,Chiriquí,Remedios,El Nancito,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,80,3,165,3,0,0,0,3,0,133,0,2,16,1,1,15,0,3,59,3,77,17,13,0,2,142,27,0,1,0,1,171,0,52,13,0,3,15,0,0,2,138,30,1,0,128,24,0,2,12,5,0,163,0,1,0,2,5,0,20,119,0,30,2,0,0,112,21,7,1,16,0,9,0,0,5,0,0,254,4.977443609022556,12.887218045112782,5.676691729323308,15.300751879699249,1.0058479532163742,3.134502923976608,1.8421052631578947,172,77,220,16,50,8,10,13,0,9,3,3,11,1,4,4,2,1,0,0,2,350,193,0,71,472,0,148,395,0,487,56,0,176,367,0,166,10,325,42,0,43,3,8,0,21,25,29,19,23,106,0,0,1,16,19,44,22,16,71,0,1,11,13,7,4,12,21,4,0,4,0,0,0,0,0,131,5,347,0,2,2,0,19,122,140,43,23,49,11,18,11,17,0,29,0,1,298,295,29,49,12,38,4,0,3,1,16,44,3,281,0,0,0,334,110,1,2,2,28,2,4,0,0,1,4,12,5,4,20,16,26,4,44,384,79,25,19,33,15,8,8,12,2,5,0,2,0,1,0,13.0,12.0,14.0,11.0,13.0,9.0,12.0,13.0,5.0,8.0,6.0,14.0,8.0,6.0,12.0,11.0,19.0,7.0,17.0,12.0,11.0,7.0,8.0,9.0,10.0,11.0,8.0,11.0,3.0,9.0,10.0,6.0,7.0,7.0,3.0,9.0,2.0,3.0,8.0,5.0,0.0,9.0,5.0,5.0,4.0,9.0,4.0,4.0,7.0,9.0,5.0,7.0,5.0,6.0,13.0,6.0,5.0,8.0,5.0,5.0,5.0,3.0,6.0,8.0,6.0,3.0,4.0,2.0,7.0,2.0,4.0,3.0,3.0,6.0,1.0,2.0,2.0,6.0,4.0,3.0,2.0,1.0,3.0,3.0,1.0,3.0,0.0,2.0,2.0,1.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,156,362,75,0,63,47,46,66,45,42,33,27,23,33,36,29,28,18,17,17,10,8,4,1,0,0,584,3,6,0,0,584,3,6,0,0,160,1,5,56,16,1,198,156,0,352,236,5,0,0,194,14,0,0,0,8,0,0,0,377,0,4,9,26,1,1,0,32,520,0,37,61,21,1,0,473,0,2.684873949579832,0.0,3.86624203821656,0.0,6.994940978077572,1,5,11,0,1,0,16,138,0,30,17,8,22,31,23,10,5,16,2,3,1,2,1,1,0,148,24,107,65,96,76,49,123,93,79,18,154,85,87,8,164,126,46,105,67,46,59,26,146,62,110,25,147,61,111,93,79,3,169,47,72,44,9,0,117,55,0,0,30,4,0,0,0,1,0,0,0,137,0,1.7325581395348837,1.7151162790697674,1.0,1.0,1.0,55.20348837209303 +40903,Chiriquí,Remedios,El Porvenir,530,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6,304,91,4,397,4,2,0,0,2,0,391,0,0,5,1,3,4,0,1,332,3,59,1,10,0,0,382,18,0,0,0,5,405,1,56,12,16,37,7,0,1,25,373,5,1,0,392,6,1,0,5,1,0,402,1,0,1,1,0,0,80,316,0,8,1,0,203,178,13,0,0,9,0,0,0,1,1,0,0,534,6.637055837563452,18.16243654822335,6.873096446700508,19.66751269035533,1.0074074074074073,3.8469135802469134,2.5530864197530865,408,249,649,33,133,14,19,7,4,32,2,4,14,0,18,8,6,8,5,0,8,1201,237,0,316,1122,0,1109,329,0,1317,121,0,509,929,0,471,38,857,72,0,75,19,25,4,50,47,68,50,47,166,0,0,0,39,67,102,36,68,272,1,2,31,37,53,27,40,75,20,1,14,0,0,0,2,0,391,84,785,0,26,40,10,47,330,359,43,6,258,21,57,8,64,3,17,30,3,798,770,168,107,11,166,5,0,1,3,2,48,12,911,14,0,0,685,378,0,4,34,129,14,14,2,0,3,27,94,20,15,101,47,44,35,89,990,112,40,57,60,75,68,42,53,37,10,3,3,0,4,14,36.0,40.0,27.0,27.0,25.0,35.0,26.0,35.0,27.0,30.0,27.0,27.0,17.0,30.0,29.0,32.0,27.0,33.0,21.0,29.0,30.0,33.0,27.0,27.0,29.0,21.0,24.0,21.0,27.0,22.0,25.0,15.0,25.0,23.0,22.0,22.0,18.0,17.0,22.0,16.0,24.0,23.0,16.0,20.0,15.0,21.0,12.0,18.0,16.0,12.0,23.0,12.0,18.0,17.0,14.0,20.0,10.0,14.0,14.0,9.0,12.0,9.0,14.0,13.0,7.0,11.0,10.0,9.0,3.0,6.0,8.0,10.0,5.0,7.0,5.0,5.0,2.0,8.0,5.0,7.0,7.0,4.0,6.0,3.0,4.0,5.0,2.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,438,991,139,0,155,153,130,142,146,115,110,95,98,79,84,67,55,39,35,27,24,10,3,1,0,0,1553,5,9,1,0,1553,5,9,1,0,466,10,36,158,47,7,407,437,0,1024,538,6,0,0,283,1,0,0,0,1,1,0,4,1278,0,15,13,151,8,0,0,220,1161,0,235,339,45,3,0,946,0,2.3701923076923075,0.0,3.4085510688836105,0.0,8.176020408163266,5,7,35,1,0,0,64,296,0,66,32,9,34,42,47,28,29,45,23,18,9,14,3,7,2,395,13,354,54,349,59,61,347,345,63,67,341,216,192,11,397,366,42,345,63,141,204,122,286,283,125,135,273,65,343,62,346,6,402,51,243,104,10,0,220,188,0,0,55,0,0,0,0,0,0,0,0,353,0,1.9558823529411764,1.8872549019607845,1.0,1.0526315789473684,1.0526315789473684,51.13970588235294 +40904,Chiriquí,Remedios,El Puerto,259,0,2,0,0,0,0,0,2,0,0,0,0,0,0,1,64,129,14,172,22,1,0,0,13,0,188,0,1,2,0,1,15,0,1,175,1,27,0,4,1,0,185,11,0,0,0,12,208,0,35,2,2,11,3,0,0,9,191,8,0,0,195,7,0,1,4,1,0,203,0,1,0,0,4,0,47,151,0,10,0,0,3,149,40,11,0,0,0,1,0,1,1,2,0,263,3.0260416666666665,5.90625,3.0260416666666665,6.432291666666667,1.0528846153846154,3.6009615384615383,2.581730769230769,219,127,279,22,74,2,15,12,2,19,4,2,22,0,7,6,6,1,2,0,0,519,215,0,122,612,0,444,290,0,648,86,0,232,502,0,219,13,442,60,0,66,4,14,2,24,19,32,30,36,112,0,0,0,33,30,50,34,35,126,0,0,10,2,15,9,13,30,6,0,2,0,0,0,0,0,244,30,388,0,1,10,2,17,154,163,14,40,155,12,14,1,20,56,7,3,3,428,371,41,111,2,89,5,2,0,21,5,41,8,457,0,0,0,449,155,0,0,8,45,3,2,0,0,21,8,22,12,7,34,57,14,11,88,518,67,35,56,51,30,14,12,7,6,1,0,1,1,0,0,18.0,16.0,15.0,16.0,14.0,7.0,15.0,16.0,14.0,6.0,12.0,16.0,8.0,16.0,16.0,12.0,22.0,15.0,17.0,14.0,17.0,10.0,14.0,15.0,19.0,15.0,13.0,13.0,14.0,6.0,12.0,10.0,12.0,7.0,18.0,10.0,12.0,4.0,13.0,9.0,8.0,13.0,14.0,14.0,6.0,6.0,10.0,11.0,7.0,8.0,11.0,2.0,10.0,8.0,5.0,5.0,4.0,8.0,8.0,8.0,5.0,10.0,9.0,4.0,6.0,5.0,6.0,1.0,13.0,4.0,3.0,7.0,4.0,2.0,1.0,3.0,1.0,1.0,3.0,3.0,3.0,1.0,2.0,0.0,0.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,205,523,71,0,79,58,68,80,75,61,59,48,55,42,36,33,34,29,17,11,6,7,1,0,0,0,798,1,0,0,0,798,1,0,0,0,255,3,81,74,15,1,166,204,0,480,318,1,0,0,140,1,0,0,0,0,0,0,1,657,0,2,6,291,14,0,0,355,131,0,66,74,17,1,0,641,0,2.228013029315961,0.0,3.2745098039215685,0.0,7.171464330413016,1,2,97,3,0,0,87,29,0,36,25,18,28,29,34,18,6,11,8,2,0,3,0,1,0,200,19,165,54,171,48,23,196,166,53,29,190,92,127,2,217,172,47,153,66,115,38,52,167,120,99,45,174,25,194,32,187,2,217,46,95,73,5,2,154,65,0,0,37,0,0,0,0,0,0,0,0,182,0,1.9366515837104072,1.6787330316742082,0.0,1.0,1.0,51.64383561643836 +40905,Chiriquí,Remedios,Santa Lucía,182,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,84,57,1,135,7,1,0,0,0,0,122,0,0,9,0,2,8,0,2,104,2,29,2,6,0,0,123,13,1,0,0,6,143,0,20,2,1,12,4,0,0,3,124,16,0,0,131,4,0,2,4,2,0,141,0,2,0,0,0,0,25,112,0,6,0,0,4,120,12,0,2,3,0,2,0,0,0,0,0,183,5.169117647058823,9.926470588235292,5.661764705882353,12.375,1.041958041958042,4.062937062937063,2.6713286713286712,149,77,225,11,86,3,4,9,3,12,1,0,3,1,1,1,0,3,0,0,2,414,121,0,146,389,0,340,195,0,490,45,0,207,328,0,193,14,301,27,0,27,9,12,3,14,15,28,23,29,79,0,0,0,21,29,38,19,15,89,0,1,11,19,14,8,10,15,5,0,2,0,0,0,0,0,141,28,299,0,0,9,12,24,137,119,13,6,97,8,13,6,6,16,14,5,0,311,273,48,64,6,35,10,0,2,0,7,12,3,322,49,0,0,294,128,0,5,10,26,3,2,0,0,0,7,20,7,12,20,28,19,7,49,348,27,16,20,36,38,25,12,7,6,0,0,0,0,0,49,13.0,11.0,14.0,11.0,11.0,17.0,8.0,11.0,9.0,11.0,10.0,16.0,11.0,12.0,12.0,11.0,11.0,7.0,13.0,12.0,12.0,10.0,11.0,10.0,12.0,10.0,9.0,10.0,8.0,2.0,5.0,11.0,12.0,8.0,4.0,6.0,8.0,8.0,3.0,6.0,1.0,12.0,7.0,8.0,5.0,5.0,6.0,6.0,8.0,10.0,5.0,3.0,4.0,1.0,10.0,3.0,3.0,10.0,8.0,5.0,4.0,4.0,1.0,4.0,3.0,4.0,3.0,6.0,4.0,3.0,4.0,3.0,2.0,6.0,1.0,5.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,177,355,52,0,60,56,61,54,55,39,40,31,33,35,23,29,16,20,16,10,3,1,1,0,1,0,581,1,1,1,0,581,1,1,1,0,165,1,18,43,10,3,167,177,0,423,159,2,0,0,159,0,0,0,0,0,0,0,0,425,0,0,0,24,3,0,0,276,281,0,68,119,20,3,1,373,0,2.403587443946188,0.0,3.366013071895425,0.0,7.39554794520548,0,0,10,1,0,0,87,51,0,17,7,5,10,17,22,16,11,15,7,5,1,0,0,0,16,139,10,103,46,103,46,31,118,117,32,11,138,78,71,2,147,120,29,94,55,55,39,48,101,63,86,23,126,43,106,51,98,0,149,26,66,54,3,1,104,45,0,0,21,0,0,0,0,0,0,0,0,128,0,2.0733333333333333,1.82,0.0,1.0,1.0,52.69798657718121 +41003,Chiriquí,Renacimiento,Cañas Gordas,940,5,0,0,0,0,0,0,76,0,0,31,0,0,0,0,296,335,20,594,37,8,0,0,10,2,576,0,0,18,0,13,40,0,4,102,4,434,7,104,0,0,606,32,2,0,0,11,651,2,85,27,5,123,52,0,1,22,531,91,6,0,447,172,0,13,11,8,0,643,1,5,0,1,1,0,145,383,1,59,63,0,1,271,95,215,53,2,0,7,0,1,4,2,0,1052,5.768392370572207,17.059945504087192,5.907356948228883,17.438692098092645,1.015360983102919,3.152073732718894,1.978494623655914,712,390,804,64,137,19,31,24,8,17,15,7,280,0,58,19,10,5,17,8,19,1533,778,0,171,2140,0,1170,1141,0,1990,321,0,611,1700,0,588,23,1461,239,0,239,11,46,5,81,111,123,100,119,547,0,0,0,64,88,175,75,85,317,1,2,25,23,13,20,12,19,6,1,3,0,0,0,0,0,913,61,1060,0,9,28,10,25,349,571,59,56,123,42,25,11,27,2,732,0,4,1365,1143,42,538,13,203,107,1,55,7,16,144,30,941,13,0,0,1591,370,0,2,16,49,3,3,0,0,8,3,15,8,13,71,275,30,20,531,1507,239,99,196,248,75,62,21,27,10,1,3,2,0,5,13,57.0,50.0,42.0,48.0,43.0,39.0,52.0,57.0,48.0,38.0,61.0,45.0,33.0,43.0,39.0,44.0,62.0,51.0,51.0,45.0,45.0,55.0,48.0,26.0,45.0,42.0,29.0,42.0,35.0,29.0,24.0,29.0,29.0,25.0,20.0,36.0,37.0,27.0,33.0,33.0,31.0,23.0,30.0,29.0,22.0,19.0,27.0,22.0,17.0,37.0,30.0,20.0,27.0,32.0,30.0,21.0,32.0,17.0,20.0,24.0,17.0,14.0,19.0,18.0,15.0,18.0,16.0,14.0,12.0,16.0,12.0,18.0,19.0,19.0,15.0,11.0,10.0,11.0,11.0,5.0,11.0,4.0,5.0,6.0,7.0,5.0,5.0,4.0,3.0,2.0,6.0,2.0,2.0,3.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,695,1535,278,0,240,234,221,253,219,177,127,166,135,122,139,114,83,76,83,48,33,19,15,3,1,0,2267,71,59,111,0,2267,78,52,111,0,633,23,132,359,59,15,593,694,0,1161,1285,62,0,1,660,73,0,0,0,0,0,0,0,1774,0,9,14,122,10,0,3,89,2261,0,129,270,24,3,1,2081,0,2.741900647948164,0.0,3.8864,0.0,6.023524720893142,4,10,57,4,0,2,32,603,0,72,71,50,85,141,78,65,28,34,12,6,7,4,0,5,3,682,30,489,223,501,211,139,573,191,521,7,705,432,280,10,702,607,105,463,249,151,312,84,628,402,310,199,513,343,369,374,338,10,702,184,364,155,9,56,573,139,0,0,123,9,0,0,0,0,0,0,0,580,0,1.77734375,1.48828125,1.25,1.103448275862069,1.103448275862069,52.1376404494382 +41004,Chiriquí,Renacimiento,Monte Lirio,983,8,0,0,0,0,0,0,187,0,0,36,0,0,0,1,471,237,26,648,61,8,1,0,17,0,660,0,1,22,2,9,36,0,5,173,2,351,45,156,2,6,695,26,2,1,0,11,735,0,112,36,4,72,32,0,7,18,624,84,2,0,605,97,0,10,22,1,0,733,2,0,0,0,0,0,186,457,0,63,29,0,11,667,9,7,6,21,0,2,0,0,9,3,0,1214,6.889374090247452,22.512372634643377,6.912663755458516,23.355167394468705,1.0095238095238095,3.269387755102041,2.070748299319728,815,452,1032,92,153,15,13,21,11,34,13,3,823,0,44,21,11,17,24,7,3,2015,1095,0,303,2807,0,1160,1950,0,2524,586,0,799,2311,0,760,39,1825,486,0,491,30,60,2,144,137,160,144,142,668,0,0,0,127,132,201,72,85,334,0,8,16,19,31,23,23,42,7,1,10,0,0,0,1,0,1233,24,1404,0,0,13,6,23,486,734,69,92,162,77,54,9,50,1,899,2,2,1878,1599,70,664,11,341,66,1,98,5,23,114,25,1331,215,0,0,2146,405,0,7,18,70,4,10,1,0,4,14,24,15,15,77,364,70,48,626,2034,251,163,179,327,114,75,29,44,18,12,2,5,6,3,215,83.0,105.0,86.0,93.0,73.0,87.0,77.0,92.0,69.0,51.0,76.0,69.0,67.0,68.0,74.0,67.0,80.0,63.0,63.0,62.0,70.0,63.0,68.0,65.0,60.0,48.0,50.0,56.0,57.0,37.0,46.0,37.0,34.0,37.0,43.0,34.0,33.0,45.0,51.0,34.0,36.0,29.0,38.0,37.0,39.0,32.0,37.0,33.0,29.0,26.0,33.0,37.0,29.0,28.0,29.0,29.0,24.0,31.0,25.0,26.0,32.0,20.0,21.0,27.0,22.0,18.0,15.0,23.0,15.0,12.0,7.0,19.0,11.0,10.0,14.0,7.0,7.0,10.0,6.0,8.0,5.0,5.0,11.0,8.0,6.0,6.0,7.0,3.0,5.0,3.0,2.0,2.0,3.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1170,2052,255,0,440,376,354,335,326,248,197,197,179,157,156,135,122,83,61,38,35,24,9,4,1,0,3138,25,25,289,0,3139,25,24,289,0,953,28,337,389,71,7,524,1168,0,1844,1596,37,0,2,1161,74,0,11,0,1,0,0,0,2228,0,20,76,65,2,0,0,159,3155,0,139,308,22,1,6,3001,0,2.751040799333889,0.0,3.7266272189349112,0.0,5.3347713546160485,5,25,32,0,0,0,60,693,0,93,70,55,90,145,69,67,36,54,22,8,7,10,7,5,4,763,52,553,262,572,243,178,637,223,592,17,798,470,345,9,806,702,113,561,254,341,220,144,671,380,435,249,566,394,421,271,544,14,801,183,437,164,31,150,627,188,0,1,114,1,0,0,0,1,0,0,0,698,0,1.9461139896373056,1.6569948186528498,1.0,1.0,1.0,51.099386503067485 +41005,Chiriquí,Renacimiento,Plaza Caisán,1248,4,12,16,0,2,0,0,26,0,0,30,2,0,0,0,700,177,63,832,45,16,5,0,41,1,793,0,3,25,3,21,79,0,16,317,9,436,24,152,0,2,848,62,1,1,0,28,940,5,137,37,26,78,57,0,13,54,709,156,7,1,722,157,0,13,23,24,1,923,0,1,0,8,2,6,213,615,0,62,49,1,1,404,41,261,103,58,0,8,0,37,25,2,0,1340,5.186098654708521,13.762331838565023,6.520179372197309,22.757847533632287,1.0095744680851064,3.2074468085106385,1.9702127659574469,989,598,1222,145,233,15,35,35,6,41,10,6,183,0,71,30,8,17,19,3,6,2242,957,0,467,2732,0,1703,1496,0,2672,527,0,870,2329,0,796,74,1920,409,0,410,32,59,2,118,158,178,137,138,661,0,0,1,113,137,239,92,93,381,1,5,40,59,41,39,30,15,9,0,10,0,0,0,1,0,1332,41,1386,0,4,17,9,27,478,753,95,33,249,102,66,36,22,6,886,0,6,1856,1662,64,334,38,752,44,0,135,6,31,175,43,1315,6,0,0,2127,512,1,10,20,71,7,10,1,0,6,24,38,25,12,94,786,101,26,261,2208,289,124,174,328,154,65,43,64,25,11,6,11,2,8,6,85.0,87.0,60.0,87.0,67.0,83.0,88.0,68.0,80.0,54.0,64.0,70.0,65.0,60.0,62.0,47.0,74.0,55.0,72.0,71.0,69.0,60.0,55.0,66.0,52.0,64.0,47.0,59.0,54.0,40.0,60.0,35.0,44.0,33.0,43.0,35.0,43.0,46.0,31.0,26.0,45.0,27.0,40.0,45.0,40.0,25.0,52.0,38.0,43.0,43.0,32.0,34.0,25.0,48.0,27.0,20.0,37.0,35.0,37.0,26.0,32.0,25.0,22.0,27.0,22.0,18.0,20.0,18.0,15.0,17.0,14.0,16.0,18.0,19.0,13.0,15.0,12.0,8.0,12.0,17.0,10.0,12.0,5.0,5.0,7.0,7.0,3.0,5.0,3.0,2.0,3.0,2.0,5.0,3.0,2.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1080,2128,310,0,386,373,321,319,302,264,215,181,197,201,166,155,128,88,80,64,39,20,15,4,0,0,3291,13,26,188,0,3291,16,23,188,0,927,25,88,541,70,19,769,1079,0,1678,1799,41,0,3,699,22,1,1,0,0,0,0,0,2792,0,13,27,252,9,0,2,218,2997,0,196,479,34,2,1,2806,0,2.670489296636086,0.0,3.710789766407119,0.0,5.848493462194429,4,5,93,2,0,2,80,803,0,125,64,61,97,168,152,70,42,78,34,21,6,13,6,8,4,934,55,688,301,681,308,229,760,358,631,14,975,541,448,8,981,880,109,658,331,187,471,181,808,584,405,298,691,486,503,449,540,7,982,198,580,192,19,20,781,208,0,0,134,9,1,1,0,0,0,0,0,844,0,1.8394449950445984,1.647175421209118,1.0,1.0256410256410255,1.0256410256410255,50.442871587462086 +41006,Chiriquí,Renacimiento,Santa Cruz,812,4,0,2,0,0,0,0,0,0,0,1,0,0,0,3,383,193,18,572,7,5,3,0,9,1,533,0,2,19,1,10,31,0,1,3,4,432,28,124,0,6,542,41,1,0,0,13,597,0,107,22,5,41,46,0,1,22,515,57,2,0,472,94,0,3,16,11,1,592,0,1,0,1,1,2,105,415,0,55,22,0,3,315,116,130,6,12,0,4,0,9,1,1,0,819,5.963133640552996,17.387096774193548,6.762672811059908,21.557603686635943,1.015075376884422,3.457286432160804,2.229480737018425,607,308,635,51,174,12,20,24,7,23,4,5,9,1,32,9,5,17,9,1,22,1317,445,0,271,1491,0,830,932,0,1574,188,0,476,1286,0,437,39,1159,127,0,138,10,26,0,53,79,92,79,56,435,0,0,1,66,76,151,51,73,198,0,9,19,26,23,23,11,50,6,0,9,0,0,0,2,0,608,25,940,0,1,11,5,27,294,447,93,79,132,83,47,17,42,4,306,0,2,947,933,68,184,22,278,41,0,30,10,141,188,15,557,42,0,0,1196,272,1,9,10,69,5,9,2,0,10,13,35,13,5,81,261,49,23,143,1123,259,73,105,94,58,43,29,24,15,6,2,5,1,1,42,28.0,29.0,28.0,33.0,35.0,29.0,29.0,36.0,31.0,29.0,26.0,30.0,25.0,25.0,34.0,36.0,42.0,31.0,31.0,38.0,28.0,25.0,31.0,27.0,28.0,24.0,23.0,27.0,17.0,24.0,32.0,25.0,17.0,12.0,30.0,20.0,23.0,21.0,30.0,21.0,22.0,24.0,18.0,21.0,21.0,12.0,29.0,21.0,17.0,25.0,18.0,22.0,25.0,16.0,24.0,29.0,20.0,18.0,26.0,20.0,12.0,14.0,19.0,12.0,18.0,13.0,8.0,12.0,10.0,15.0,14.0,16.0,9.0,9.0,15.0,9.0,14.0,9.0,15.0,9.0,16.0,10.0,9.0,3.0,6.0,6.0,5.0,7.0,2.0,3.0,4.0,6.0,3.0,3.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,447,1166,267,0,153,154,140,178,139,115,116,115,106,104,105,113,75,58,63,56,44,23,17,5,1,0,1858,6,6,10,0,1859,6,5,10,0,471,21,19,260,51,1,611,446,0,1108,764,8,0,0,195,0,0,0,0,1,0,0,0,1684,0,1,1,22,6,0,0,10,1840,0,133,317,28,7,2,1393,0,2.653896961690885,0.0,3.6064030131826734,0.0,6.752659574468085,0,0,14,3,0,0,4,586,0,83,82,49,92,92,64,39,31,31,17,9,1,10,3,1,2,581,26,459,148,443,164,122,485,265,342,12,595,275,332,8,599,515,92,444,163,88,356,90,517,218,389,150,457,311,296,327,280,13,594,150,302,145,10,0,431,176,0,0,39,0,0,0,0,1,0,0,0,567,0,1.5601317957166392,1.5370675453047775,1.3333333333333333,1.105263157894737,1.105263157894737,54.71334431630972 +41007,Chiriquí,Renacimiento,Dominical,419,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,127,124,11,245,6,5,0,0,5,1,164,0,9,51,2,2,34,0,0,0,0,204,6,44,0,8,215,42,0,0,0,5,262,1,49,13,6,30,60,0,0,3,226,33,0,0,182,73,0,1,3,3,0,262,0,0,0,0,0,0,47,179,0,17,19,0,0,69,76,42,6,62,0,5,0,0,1,1,0,422,6.972413793103448,21.317241379310342,7.0,21.717241379310344,1.0,3.2748091603053435,1.950381679389313,262,158,273,32,45,6,10,9,1,9,1,5,11,0,13,5,2,5,5,1,8,537,227,0,41,723,0,414,350,0,663,101,0,178,586,0,174,4,506,80,0,88,3,10,4,22,27,48,45,39,223,0,0,1,27,34,56,17,16,65,1,3,4,8,6,3,3,6,2,0,2,0,0,0,1,0,250,39,400,0,2,23,8,5,126,192,73,4,44,63,14,7,9,2,144,0,1,454,368,12,61,7,180,13,0,10,1,19,44,5,360,14,0,0,584,87,1,1,1,10,2,2,1,0,1,3,6,3,3,15,173,24,5,56,591,78,19,33,33,25,12,3,7,4,1,0,0,1,1,14,16.0,13.0,17.0,12.0,14.0,12.0,14.0,12.0,10.0,13.0,17.0,14.0,18.0,15.0,13.0,17.0,10.0,22.0,16.0,14.0,9.0,11.0,11.0,9.0,13.0,11.0,12.0,9.0,13.0,8.0,7.0,15.0,8.0,11.0,8.0,11.0,13.0,14.0,10.0,9.0,9.0,9.0,12.0,8.0,9.0,7.0,12.0,10.0,8.0,10.0,10.0,10.0,8.0,6.0,14.0,9.0,10.0,9.0,6.0,10.0,7.0,11.0,11.0,6.0,7.0,9.0,3.0,8.0,3.0,6.0,4.0,5.0,7.0,7.0,3.0,5.0,3.0,4.0,4.0,1.0,0.0,5.0,1.0,3.0,3.0,1.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,210,519,93,0,72,61,77,79,53,53,49,57,47,47,48,44,42,29,26,17,12,7,2,0,0,0,812,6,0,4,0,812,6,0,4,0,265,0,2,100,9,1,236,209,0,480,338,4,0,0,102,2,0,0,0,0,0,0,0,718,0,0,0,15,1,0,1,1,804,0,38,96,4,1,0,683,0,2.960912052117264,0.0,4.027906976744186,0.0,5.655717761557177,0,0,5,1,0,1,0,255,0,70,42,24,36,28,23,18,2,8,4,2,2,0,1,1,1,245,17,132,130,152,110,40,222,89,173,2,260,146,116,0,262,219,43,142,120,24,118,14,248,158,104,56,206,146,116,129,133,0,262,63,144,51,4,1,227,35,0,0,16,0,0,0,0,0,0,0,0,246,0,1.726235741444867,1.3992395437262355,1.0,1.0666666666666669,1.0666666666666669,52.74809160305343 +41008,Chiriquí,Renacimiento,Santa Clara,825,7,0,3,0,0,0,0,266,0,0,53,0,0,0,5,444,89,13,509,29,5,0,0,8,0,447,0,9,45,1,21,24,0,4,212,13,215,7,99,0,5,528,19,0,0,0,4,551,0,123,37,19,63,42,0,2,22,466,60,1,0,400,133,0,5,12,1,0,548,0,0,0,3,0,0,146,309,0,34,62,0,4,463,63,8,0,10,0,2,0,0,1,0,0,1154,6.966037735849056,23.845283018867924,6.973584905660378,23.947169811320755,1.009074410163339,3.328493647912885,2.0326678765880217,678,413,1004,49,186,17,14,37,4,37,9,7,1014,1,31,16,5,8,6,0,18,1889,1200,0,317,2772,0,1218,1871,0,2356,733,0,814,2275,0,774,40,1583,692,0,696,18,52,1,113,104,171,160,142,445,0,1,0,118,135,211,75,90,307,3,8,25,29,46,17,25,71,4,1,21,0,0,0,0,0,1272,42,1297,0,8,20,4,22,481,648,49,97,236,48,37,17,61,2,904,0,5,1865,1605,66,794,19,270,89,7,56,9,34,87,5,1563,4,0,0,2053,407,1,7,18,100,4,21,0,0,9,35,27,33,26,73,261,49,65,736,2182,197,127,230,379,146,77,30,41,26,13,2,9,2,5,4,104.0,86.0,113.0,78.0,80.0,94.0,89.0,72.0,64.0,79.0,70.0,88.0,69.0,73.0,68.0,60.0,84.0,71.0,62.0,65.0,70.0,72.0,59.0,67.0,50.0,53.0,57.0,42.0,56.0,52.0,43.0,58.0,43.0,41.0,46.0,38.0,35.0,33.0,36.0,47.0,33.0,33.0,31.0,37.0,25.0,34.0,28.0,36.0,30.0,29.0,42.0,23.0,25.0,26.0,34.0,23.0,27.0,27.0,23.0,26.0,23.0,16.0,18.0,20.0,15.0,17.0,17.0,14.0,14.0,11.0,8.0,16.0,12.0,9.0,13.0,8.0,10.0,8.0,11.0,8.0,7.0,2.0,5.0,2.0,1.0,1.0,4.0,4.0,3.0,3.0,2.0,2.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1227,2024,219,0,461,398,368,342,318,260,231,189,159,157,150,126,92,73,58,45,17,15,8,1,2,0,3155,15,19,281,0,3159,17,13,281,0,1071,41,172,345,74,18,524,1225,0,1444,1984,42,0,1,1880,56,0,0,0,0,0,0,0,1533,0,23,51,41,5,2,1,84,3263,0,287,378,18,7,2,2778,0,2.442581726739313,0.0,3.577070063694268,0.0,5.231412103746398,6,13,15,2,1,0,17,624,0,66,37,33,53,74,81,59,30,51,25,21,6,8,1,10,1,632,46,405,273,420,258,179,499,113,565,13,665,369,309,9,669,584,94,407,271,200,207,143,535,389,289,232,446,303,375,317,361,7,671,129,365,172,12,197,528,150,0,0,175,8,0,0,0,0,0,0,0,495,0,2.1314285714285712,1.8342857142857143,1.0,1.0454545454545454,1.0454545454545454,50.18436578171092 +41101,Chiriquí,San Félix,Las Lajas,759,10,2,3,0,0,0,0,3,0,0,2,11,0,0,5,365,117,5,466,21,0,0,0,4,1,468,0,0,7,2,0,15,0,0,311,1,113,2,64,0,1,455,29,4,0,0,4,492,1,141,17,42,65,16,0,10,39,392,49,2,0,359,24,84,6,4,15,0,485,1,4,0,0,1,1,161,304,0,27,0,0,442,0,0,14,1,1,0,0,0,28,6,0,0,790,5.375565610859729,16.46153846153846,5.002262443438914,15.210407239819004,1.0020325203252032,3.6260162601626016,2.532520325203252,507,251,449,47,110,28,38,21,2,28,7,5,25,3,46,16,6,3,12,0,3,1135,313,0,380,1068,0,915,533,0,1344,104,0,373,1075,0,319,54,999,76,0,78,17,18,1,27,35,32,34,43,193,0,0,8,50,84,119,30,68,281,2,15,23,37,46,63,86,13,25,0,19,0,0,0,1,0,554,65,704,0,14,33,11,144,226,242,40,52,357,29,115,14,45,1,44,5,3,764,757,155,221,18,157,44,0,15,3,7,71,15,463,39,0,0,702,370,9,19,31,157,17,17,1,0,2,53,75,55,33,88,43,73,31,166,714,121,63,90,132,133,68,58,49,24,21,5,2,1,1,39,14.0,21.0,14.0,24.0,28.0,22.0,22.0,14.0,19.0,20.0,13.0,28.0,15.0,25.0,23.0,20.0,18.0,25.0,19.0,22.0,20.0,25.0,16.0,17.0,15.0,13.0,21.0,18.0,19.0,16.0,18.0,13.0,15.0,18.0,11.0,14.0,18.0,21.0,21.0,18.0,18.0,16.0,16.0,16.0,10.0,24.0,20.0,13.0,18.0,17.0,25.0,15.0,20.0,14.0,25.0,25.0,24.0,18.0,16.0,21.0,21.0,23.0,22.0,16.0,14.0,20.0,16.0,16.0,20.0,12.0,16.0,19.0,17.0,24.0,11.0,11.0,8.0,10.0,14.0,9.0,10.0,2.0,9.0,8.0,4.0,2.0,6.0,5.0,6.0,6.0,6.0,0.0,2.0,3.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,302,918,301,0,101,97,104,104,93,87,75,92,76,92,99,104,96,84,87,52,33,25,12,4,4,0,1455,22,37,7,0,1455,27,32,7,0,422,14,48,225,68,10,432,302,0,669,802,50,0,1,203,6,0,0,0,0,0,0,15,1296,0,20,30,89,4,10,2,138,1228,0,228,268,151,10,6,858,0,2.085457271364318,0.0,2.920704845814978,0.0,8.948717948717949,9,9,38,2,1,1,59,388,0,48,25,19,29,67,68,45,36,63,24,22,14,11,6,2,14,496,11,437,70,420,87,100,407,427,80,107,400,270,237,50,457,446,61,415,92,172,243,153,354,360,147,173,334,185,322,180,327,6,501,116,233,141,17,2,308,199,0,1,44,3,0,0,0,0,0,0,5,454,0,1.50098231827112,1.487229862475442,1.0,1.0,1.0,58.04733727810651 +41102,Chiriquí,San Félix,Juay,272,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,166,3,162,14,0,0,0,3,0,120,0,0,24,0,5,30,0,0,70,1,84,0,24,0,0,131,48,0,0,0,0,179,8,60,3,12,16,8,0,0,6,154,17,1,1,129,44,0,3,2,1,0,178,0,0,0,0,1,0,14,121,0,39,5,0,0,25,2,134,3,0,0,15,0,0,0,0,0,286,3.1481481481481484,7.0,4.777777777777778,13.148148148148149,1.0167597765363128,3.1396648044692737,2.0,182,97,221,15,71,6,10,8,1,14,1,2,5,0,9,14,1,3,1,4,1,394,196,0,57,533,0,193,397,0,498,92,0,176,414,0,168,8,327,87,0,87,1,5,0,16,22,31,25,31,81,0,1,0,18,25,58,18,30,76,1,0,7,10,11,9,16,9,1,0,1,0,0,0,0,0,151,27,322,0,5,12,3,13,121,157,24,7,81,20,25,2,17,1,22,8,1,319,314,35,82,2,37,4,0,16,1,0,29,3,317,14,0,0,346,106,3,1,11,31,1,1,0,0,1,6,13,8,3,29,40,23,8,47,393,66,23,30,45,28,17,5,4,3,4,0,0,0,1,14,13.0,9.0,10.0,11.0,18.0,16.0,14.0,12.0,12.0,18.0,9.0,13.0,8.0,8.0,18.0,14.0,11.0,17.0,7.0,11.0,11.0,9.0,13.0,8.0,4.0,6.0,12.0,7.0,8.0,10.0,14.0,6.0,15.0,6.0,4.0,6.0,11.0,5.0,7.0,8.0,8.0,5.0,5.0,7.0,9.0,1.0,9.0,5.0,5.0,7.0,6.0,9.0,7.0,5.0,6.0,3.0,6.0,5.0,10.0,3.0,8.0,9.0,4.0,6.0,3.0,5.0,4.0,4.0,5.0,6.0,2.0,2.0,5.0,3.0,2.0,2.0,2.0,2.0,1.0,3.0,1.0,1.0,3.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,189,381,63,0,61,72,56,60,45,43,45,37,34,27,33,27,30,24,14,10,10,1,3,1,0,0,625,2,1,5,0,625,2,1,5,0,199,2,11,54,17,2,159,189,0,369,260,4,0,0,284,0,0,0,0,0,0,0,3,346,0,0,2,14,0,0,0,1,616,0,51,95,11,3,0,473,0,2.4417670682730925,0.0,3.3430232558139537,0.0,6.631911532385466,0,0,5,0,0,0,1,176,0,34,19,7,14,25,34,13,12,13,1,3,2,1,0,1,3,150,32,107,75,99,83,31,151,106,76,14,168,63,119,7,175,132,50,97,85,25,72,27,155,52,130,28,154,53,129,33,149,1,181,35,99,44,4,0,111,71,0,0,70,0,0,0,0,0,0,0,0,112,0,1.7527472527472527,1.7252747252747254,0.0,1.1428571428571428,1.1428571428571428,51.84065934065934 +41103,Chiriquí,San Félix,Lajas Adentro,396,2,0,0,0,0,0,0,0,0,0,1,0,0,0,2,206,56,0,262,2,0,0,0,0,0,245,0,0,6,0,1,12,0,0,160,2,54,0,48,0,0,246,16,2,0,0,0,264,0,62,10,27,18,17,0,6,23,208,25,1,1,213,6,35,2,3,5,0,257,1,4,0,0,2,0,102,150,0,11,1,0,251,0,3,2,0,1,0,0,0,6,1,0,0,399,5.933070866141732,15.543307086614174,4.751968503937008,12.047244094488187,1.0,3.5681818181818183,2.484848484848485,265,135,326,9,69,7,8,14,1,18,6,2,7,1,16,9,4,3,2,0,1,679,131,0,250,560,0,460,350,0,762,48,0,254,556,0,230,24,520,36,0,37,9,18,1,10,17,24,18,33,109,0,0,0,26,45,46,16,39,197,1,3,5,8,24,24,58,25,5,0,10,0,0,0,2,0,267,34,432,0,2,8,20,63,182,150,7,30,183,29,43,6,20,0,9,1,0,440,428,99,99,8,64,13,1,7,0,5,32,4,368,20,0,0,371,218,0,7,21,102,2,10,2,0,1,23,43,26,16,38,31,44,15,64,484,60,15,39,43,51,68,22,33,16,13,1,3,0,0,20,15.0,14.0,16.0,13.0,15.0,15.0,16.0,11.0,9.0,11.0,12.0,21.0,7.0,16.0,24.0,11.0,9.0,13.0,14.0,18.0,20.0,14.0,21.0,14.0,13.0,14.0,9.0,14.0,10.0,12.0,7.0,14.0,3.0,14.0,9.0,12.0,12.0,15.0,8.0,6.0,6.0,7.0,9.0,9.0,8.0,8.0,9.0,13.0,16.0,4.0,9.0,12.0,10.0,10.0,12.0,6.0,8.0,9.0,8.0,8.0,7.0,9.0,8.0,4.0,17.0,7.0,9.0,8.0,6.0,4.0,4.0,7.0,10.0,5.0,4.0,3.0,1.0,6.0,2.0,6.0,4.0,10.0,1.0,0.0,3.0,5.0,3.0,1.0,3.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,215,532,121,0,73,62,80,65,82,59,47,53,39,50,53,39,45,34,30,18,18,12,4,4,1,0,843,10,14,1,0,843,12,12,1,0,216,11,22,140,36,6,223,214,0,422,424,22,0,1,173,0,0,0,0,1,0,0,1,692,0,5,4,35,1,3,0,63,757,0,142,182,59,4,2,479,0,2.013736263736264,0.0,2.9173553719008263,0.0,8.83294930875576,2,2,15,0,2,0,23,221,0,22,18,8,22,21,32,30,18,27,21,19,7,5,3,0,11,255,10,232,33,224,41,60,205,230,35,53,212,153,112,17,248,241,24,215,50,88,127,96,169,167,98,110,155,87,178,84,181,1,264,57,139,64,5,0,172,93,0,0,28,0,0,0,0,0,0,0,0,237,0,1.660377358490566,1.6150943396226416,1.0,1.125,1.125,55.97735849056604 +41104,Chiriquí,San Félix,San Félix,1464,6,35,12,0,0,0,2,4,0,0,0,10,0,0,4,757,198,2,853,106,0,1,0,1,0,892,0,0,22,3,7,37,0,0,730,3,181,11,32,0,4,892,51,1,0,0,17,961,4,153,24,313,40,22,0,13,184,702,58,4,0,845,37,52,13,11,2,1,958,0,1,0,2,0,0,329,583,1,46,2,0,910,0,8,3,3,23,0,6,0,1,7,0,473,1060,5.738562091503268,17.618736383442265,5.186274509803922,15.811546840958606,1.0062434963579605,3.439125910509885,2.267429760665973,978,490,1185,79,314,35,38,62,5,72,8,18,46,3,34,31,10,18,10,4,11,2425,665,0,900,2190,0,1785,1305,0,2841,249,0,1059,2031,0,951,108,1839,192,0,195,44,58,8,79,98,100,85,95,320,2,0,4,95,124,226,89,147,552,6,72,70,79,86,64,141,176,23,3,44,0,1,0,4,0,1189,148,1393,0,7,90,18,128,643,518,63,41,765,97,153,27,190,7,64,5,1,1673,1660,439,379,36,387,40,1,25,2,16,116,20,1155,47,0,0,1405,816,4,82,27,331,15,45,5,0,2,80,230,101,62,256,45,190,116,255,1822,203,110,133,224,191,200,97,159,84,36,6,11,4,6,47,54.0,51.0,64.0,74.0,65.0,68.0,58.0,55.0,68.0,46.0,64.0,73.0,57.0,54.0,50.0,53.0,50.0,50.0,55.0,71.0,53.0,56.0,71.0,65.0,50.0,51.0,55.0,47.0,54.0,44.0,61.0,52.0,37.0,46.0,45.0,35.0,39.0,43.0,40.0,35.0,47.0,39.0,47.0,62.0,35.0,37.0,34.0,30.0,26.0,40.0,34.0,42.0,43.0,33.0,24.0,36.0,23.0,17.0,37.0,25.0,27.0,22.0,21.0,33.0,24.0,21.0,22.0,29.0,18.0,24.0,17.0,19.0,15.0,11.0,13.0,10.0,14.0,12.0,12.0,8.0,13.0,8.0,4.0,11.0,2.0,10.0,6.0,8.0,4.0,8.0,4.0,2.0,1.0,2.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,901,2096,336,0,308,295,298,279,295,251,241,192,230,167,176,138,127,114,75,56,38,36,11,4,2,0,3250,16,54,13,0,3251,19,50,13,0,897,33,278,404,116,16,688,901,0,1676,1620,37,0,11,1215,20,3,0,0,1,0,0,10,2073,0,14,105,100,8,6,7,197,2896,0,519,655,136,14,2,2007,0,2.051449275362319,0.0,2.963243243243243,0.0,8.594359435943595,4,38,36,6,2,5,77,810,0,84,45,38,68,104,96,114,78,123,73,44,25,34,11,15,15,933,45,750,228,733,245,238,740,802,176,182,796,527,451,24,954,867,111,724,254,411,313,369,609,673,305,312,666,243,735,314,664,7,971,203,454,292,29,5,611,367,0,2,285,1,1,0,0,1,0,0,1,687,0,1.7019328585961342,1.688708036622584,1.0,1.0576923076923077,1.0576923076923077,51.04498977505112 +41105,Chiriquí,San Félix,Santa Cruz,244,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,100,64,0,164,0,0,0,0,0,0,150,0,0,2,0,2,8,0,2,47,0,99,1,17,0,0,142,20,0,0,0,2,164,2,65,5,0,0,8,0,1,6,148,9,0,0,138,5,16,3,1,1,0,164,0,0,0,0,0,0,27,130,0,7,0,0,2,160,0,1,0,0,0,0,0,0,0,1,0,245,6.728395061728395,8.574074074074074,6.969135802469136,10.660493827160494,1.0060975609756098,3.4939024390243905,2.3536585365853657,166,92,185,10,45,8,4,3,2,8,2,0,1,0,15,7,4,4,5,0,3,384,113,0,109,388,0,307,190,0,458,39,0,140,357,0,123,17,323,34,0,35,5,4,0,10,14,23,11,22,82,0,0,1,17,27,54,12,24,117,0,2,0,1,11,7,7,9,1,0,1,0,0,0,0,0,118,31,295,0,0,12,17,26,98,127,22,22,79,8,20,1,25,0,5,4,0,276,250,34,53,2,51,1,0,1,0,0,41,11,213,6,0,0,286,119,1,2,14,20,1,1,0,0,0,7,9,7,6,25,19,29,6,41,324,59,7,13,23,25,31,18,10,5,2,2,0,0,1,6,8.0,9.0,6.0,6.0,12.0,9.0,5.0,11.0,3.0,13.0,7.0,4.0,5.0,8.0,12.0,10.0,9.0,6.0,11.0,12.0,14.0,11.0,10.0,11.0,12.0,3.0,5.0,8.0,5.0,7.0,3.0,6.0,5.0,8.0,3.0,4.0,7.0,8.0,5.0,3.0,8.0,6.0,8.0,7.0,9.0,8.0,3.0,7.0,11.0,5.0,10.0,3.0,10.0,2.0,5.0,7.0,8.0,6.0,5.0,6.0,3.0,3.0,6.0,6.0,6.0,0.0,2.0,4.0,1.0,4.0,5.0,2.0,5.0,1.0,5.0,0.0,2.0,1.0,4.0,1.0,0.0,3.0,4.0,2.0,3.0,3.0,2.0,0.0,0.0,5.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,118,344,64,0,41,41,36,48,58,28,25,27,38,34,30,32,24,11,18,8,12,10,3,2,0,0,526,0,0,0,0,526,0,0,0,0,175,2,23,53,15,6,134,118,0,297,227,2,0,0,45,2,0,0,0,0,0,0,2,477,0,15,0,16,0,15,0,48,432,0,57,109,24,2,0,334,0,2.456730769230769,0.0,3.286666666666666,0.0,7.623574144486692,3,0,5,0,3,0,22,133,0,29,18,9,11,18,15,17,18,14,7,4,1,2,0,2,0,153,13,126,40,127,39,26,140,138,28,11,155,102,64,0,166,138,28,135,31,44,91,39,127,109,57,54,112,77,89,73,93,0,166,35,90,40,1,0,109,57,0,0,8,2,0,0,0,0,0,0,0,156,0,1.6626506024096386,1.5060240963855422,0.0,1.0,1.0,54.72289156626506 +41201,Chiriquí,San Lorenzo,Horconcitos,519,4,0,0,0,0,0,0,2,0,0,0,1,0,0,1,256,84,7,321,20,2,0,0,5,0,325,0,0,4,1,5,12,0,1,235,73,34,5,1,0,0,324,21,0,0,0,3,348,3,91,23,15,35,8,0,1,34,274,35,3,1,296,17,21,5,4,4,1,343,2,0,0,2,0,1,107,222,0,17,2,0,326,5,7,4,1,3,0,0,0,0,2,0,0,526,6.819526627218935,18.36390532544379,6.967455621301776,20.40532544378698,1.0172413793103448,3.560344827586207,2.0373563218390807,355,176,349,35,68,9,20,9,0,11,2,4,14,0,23,24,9,6,5,0,8,765,220,0,171,814,0,474,511,0,889,96,0,264,721,0,242,22,655,66,0,66,5,14,1,29,35,50,33,46,161,0,0,1,40,39,77,31,45,169,0,1,5,18,30,26,43,13,1,0,5,0,0,0,1,0,328,42,520,0,0,12,25,53,168,231,58,10,174,34,49,13,20,0,39,28,1,532,520,45,189,16,98,6,0,3,1,16,62,6,363,85,0,0,577,209,1,7,14,76,0,5,1,0,0,20,22,28,9,53,32,66,18,122,561,92,41,37,87,60,51,21,9,7,1,0,0,0,0,85,8.0,17.0,17.0,25.0,15.0,14.0,15.0,18.0,15.0,18.0,21.0,14.0,12.0,19.0,14.0,17.0,18.0,18.0,18.0,17.0,14.0,18.0,15.0,18.0,9.0,21.0,18.0,20.0,20.0,10.0,13.0,12.0,19.0,11.0,13.0,8.0,10.0,8.0,14.0,18.0,12.0,11.0,14.0,12.0,8.0,14.0,9.0,9.0,20.0,12.0,13.0,7.0,11.0,11.0,13.0,11.0,7.0,13.0,13.0,9.0,19.0,10.0,9.0,8.0,12.0,9.0,11.0,12.0,8.0,5.0,5.0,7.0,5.0,7.0,7.0,3.0,6.0,3.0,6.0,2.0,6.0,1.0,1.0,3.0,8.0,3.0,3.0,5.0,5.0,4.0,3.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,242,664,146,0,82,80,80,88,74,89,68,58,57,64,55,53,58,45,31,20,19,20,7,3,1,0,1037,7,2,6,0,1037,8,1,6,0,307,8,27,113,31,4,320,242,0,672,371,9,0,5,152,12,0,0,0,1,0,0,0,882,0,11,62,81,9,0,4,63,822,0,141,177,52,5,0,677,0,2.0542986425339365,0.0,3.024137931034483,0.0,7.611216730038023,5,31,27,2,0,3,29,258,0,41,27,25,24,58,40,40,22,25,7,6,2,1,0,0,36,342,13,301,54,288,67,65,290,297,58,39,316,201,154,10,345,313,42,290,65,77,213,92,263,194,161,90,265,41,314,50,305,2,353,76,186,86,7,2,248,107,0,0,38,3,0,0,0,0,0,0,0,314,0,1.4901960784313726,1.4565826330532212,1.3333333333333333,1.1,1.1,53.03380281690141 +41202,Chiriquí,San Lorenzo,Boca Chica,444,6,0,0,0,0,0,0,3,0,0,6,3,0,0,1,141,60,8,171,31,4,0,0,3,1,151,0,10,22,0,2,24,0,1,90,43,69,6,0,0,2,186,20,3,0,0,1,210,3,125,15,21,54,22,0,1,16,133,56,4,0,164,21,0,7,9,8,1,165,3,29,3,1,8,1,86,92,0,26,6,0,0,80,70,22,16,8,0,0,0,11,1,2,0,462,6.98,23.76,7.0,24.0,1.0095238095238095,2.8190476190476192,1.3523809523809525,221,103,151,9,20,2,4,1,3,4,0,0,29,6,2,2,3,3,1,0,1,448,75,0,156,367,0,378,145,0,461,62,0,108,415,0,97,11,357,58,0,58,2,5,2,14,21,18,14,21,63,0,0,0,21,31,29,8,20,70,0,2,3,12,19,40,18,9,2,0,18,0,0,0,3,0,244,7,221,0,0,6,0,55,64,93,9,0,116,9,26,7,12,0,31,45,1,297,256,7,130,12,92,5,0,0,1,3,11,0,132,17,0,0,276,91,0,2,11,70,2,17,3,0,1,22,4,31,7,47,38,12,5,84,211,27,9,26,58,70,53,11,20,9,16,6,7,8,5,17,8.0,6.0,8.0,8.0,8.0,5.0,8.0,11.0,16.0,3.0,8.0,5.0,7.0,9.0,5.0,9.0,5.0,8.0,7.0,7.0,12.0,4.0,9.0,10.0,5.0,7.0,11.0,11.0,7.0,9.0,5.0,9.0,7.0,12.0,1.0,7.0,5.0,4.0,8.0,9.0,12.0,7.0,9.0,9.0,5.0,10.0,6.0,5.0,3.0,8.0,9.0,9.0,6.0,11.0,4.0,3.0,9.0,4.0,9.0,8.0,16.0,4.0,8.0,5.0,9.0,6.0,2.0,7.0,6.0,2.0,5.0,0.0,4.0,1.0,2.0,3.0,4.0,2.0,1.0,3.0,1.0,3.0,3.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,115,376,62,0,38,43,34,36,40,45,34,33,42,32,39,33,42,23,12,13,7,4,2,0,1,0,448,32,65,8,0,448,36,61,8,0,173,6,12,100,8,7,132,115,0,194,260,99,0,0,148,6,0,0,0,0,0,0,1,398,0,8,21,82,10,0,1,35,396,0,107,50,9,1,49,337,0,1.9661835748792271,0.0,2.91044776119403,0.0,8.204339963833634,5,11,24,5,0,0,17,159,0,5,7,3,14,31,53,25,10,15,8,9,2,7,8,8,7,211,10,147,74,137,84,29,192,163,58,69,152,108,113,7,214,202,19,134,87,70,64,78,143,157,64,81,140,63,158,51,170,3,218,86,108,18,9,3,179,42,0,0,60,3,0,0,0,0,0,0,1,157,0,1.3258928571428572,1.1428571428571428,1.5,1.0,1.0,50.79185520361991 +41203,Chiriquí,San Lorenzo,Boca del Monte,1044,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,369,26,576,25,21,0,0,3,2,422,0,3,47,0,0,147,0,8,183,3,403,3,32,3,0,494,132,0,0,0,1,627,31,85,15,7,242,46,0,0,11,532,82,2,0,463,124,0,8,30,2,0,616,0,0,0,0,10,1,91,379,0,151,6,0,203,262,15,20,58,45,0,13,0,5,2,4,0,1053,5.6125,16.335416666666667,6.816666666666666,21.45,1.009569377990431,3.145135566188198,1.977671451355662,633,327,748,46,183,33,27,15,7,34,5,2,10,1,38,27,8,1,9,2,6,1267,666,0,186,1747,0,804,1129,0,1657,276,0,513,1420,0,484,29,1192,228,0,228,17,30,1,41,80,131,107,96,394,0,1,1,64,70,161,53,83,263,2,15,4,8,12,26,17,19,5,0,4,0,0,0,0,0,539,106,1076,0,5,39,52,47,344,583,24,78,145,36,71,22,69,3,239,37,3,1076,995,72,335,28,149,30,0,8,3,30,122,7,947,18,0,0,1345,300,1,11,8,49,3,4,0,0,2,19,31,20,10,95,98,56,27,287,1271,273,61,90,155,81,54,23,33,8,3,0,0,0,1,18,39.0,38.0,30.0,31.0,34.0,40.0,38.0,27.0,39.0,34.0,47.0,41.0,31.0,40.0,37.0,28.0,37.0,33.0,42.0,47.0,28.0,25.0,26.0,27.0,27.0,39.0,23.0,29.0,29.0,22.0,24.0,20.0,20.0,22.0,10.0,26.0,29.0,27.0,29.0,23.0,19.0,23.0,20.0,23.0,28.0,22.0,25.0,35.0,19.0,32.0,17.0,22.0,22.0,16.0,29.0,22.0,22.0,25.0,19.0,17.0,22.0,22.0,25.0,22.0,18.0,17.0,14.0,14.0,15.0,10.0,12.0,8.0,20.0,11.0,11.0,18.0,10.0,13.0,14.0,14.0,9.0,9.0,8.0,6.0,4.0,5.0,3.0,3.0,6.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,546,1258,267,0,172,178,196,187,133,142,96,134,113,133,106,105,109,70,62,69,36,19,6,2,3,0,2036,13,2,20,0,2036,13,2,20,0,685,5,26,177,60,10,562,546,0,1272,788,11,0,2,654,7,0,1,0,0,0,0,0,1407,0,7,28,186,12,0,0,224,1614,0,182,327,43,5,1,1513,0,2.686369119420989,0.0,3.6237113402061856,0.0,6.15210043457267,2,7,74,7,0,0,81,462,0,113,88,23,62,106,89,48,32,37,15,8,2,5,0,1,4,547,86,381,252,362,271,126,507,331,302,26,607,331,302,8,625,472,161,362,271,160,202,92,541,209,424,113,520,280,353,303,330,6,627,158,301,164,10,0,453,180,0,0,136,3,0,0,0,0,0,0,0,494,0,1.6998420221169035,1.5718799368088467,0.0,1.05,1.05,54.21484992101106 +41204,Chiriquí,San Lorenzo,San Juan,758,4,0,0,0,0,0,0,0,0,0,0,1,0,0,1,335,138,10,447,27,3,0,0,7,0,436,0,0,10,1,7,30,0,0,288,3,166,5,22,0,0,442,31,1,0,1,9,484,31,100,31,38,12,66,0,4,22,441,17,0,0,451,27,0,4,2,0,0,484,0,0,0,0,0,0,105,352,0,23,3,1,3,338,52,10,33,32,0,0,0,13,3,0,0,763,5.033078880407125,4.356234096692112,5.043256997455471,4.340966921119593,1.008264462809917,3.5144628099173554,2.291322314049587,489,260,603,44,145,12,25,24,4,39,5,7,14,1,55,24,7,11,1,0,3,1165,382,0,238,1309,0,780,767,0,1368,179,0,473,1074,0,422,51,964,110,0,114,17,26,1,47,73,88,61,63,280,0,0,1,47,63,125,33,53,311,3,7,9,14,20,27,38,16,2,1,6,0,0,1,0,0,456,61,844,0,6,16,31,56,300,394,44,50,222,29,29,5,142,0,59,16,0,825,847,91,194,6,192,12,0,6,1,15,82,15,685,16,0,0,905,352,1,10,14,71,2,6,0,0,1,9,35,20,15,105,76,67,44,145,1086,132,50,89,91,71,61,32,20,17,4,2,1,0,0,16,37.0,27.0,32.0,29.0,31.0,34.0,28.0,28.0,37.0,28.0,24.0,32.0,29.0,26.0,30.0,28.0,26.0,20.0,25.0,32.0,35.0,27.0,46.0,20.0,21.0,32.0,19.0,23.0,19.0,22.0,19.0,17.0,26.0,33.0,16.0,11.0,22.0,26.0,16.0,21.0,18.0,12.0,17.0,18.0,12.0,16.0,17.0,18.0,14.0,17.0,21.0,20.0,22.0,14.0,20.0,18.0,20.0,14.0,17.0,18.0,21.0,21.0,15.0,8.0,17.0,11.0,13.0,9.0,8.0,12.0,6.0,8.0,15.0,11.0,6.0,16.0,5.0,8.0,8.0,8.0,5.0,2.0,8.0,6.0,3.0,5.0,2.0,2.0,2.0,3.0,0.0,3.0,0.0,1.0,4.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,452,1027,193,0,156,155,141,131,149,115,111,96,77,82,97,87,82,53,46,45,24,14,8,1,2,0,1606,18,7,41,0,1607,19,5,41,0,529,5,12,146,49,3,476,452,0,1045,612,15,0,0,297,7,0,0,0,0,0,0,0,1368,0,7,49,16,0,0,0,24,1576,0,171,280,50,8,1,1162,0,2.520408163265306,0.0,3.440501043841336,0.0,6.9509569377990434,1,19,4,0,0,0,12,453,0,89,46,26,69,70,55,27,35,33,14,8,10,3,1,1,1,457,32,381,108,377,112,71,418,366,123,55,434,253,236,13,476,386,103,365,124,104,261,96,393,230,259,98,391,109,380,133,356,2,487,95,255,130,9,0,308,181,0,0,62,1,0,0,0,0,0,0,0,426,0,1.687116564417178,1.7321063394683027,1.0,1.0454545454545454,1.0454545454545454,54.01840490797546 +41205,Chiriquí,San Lorenzo,San Lorenzo,1130,30,0,0,0,0,0,0,17,0,0,0,6,0,0,1,372,397,32,646,124,11,0,0,20,1,660,0,2,24,0,5,109,0,2,402,118,246,4,32,0,0,678,100,1,0,0,23,802,17,130,34,51,63,63,0,1,105,630,66,0,0,618,117,11,23,33,0,0,797,2,2,0,0,1,0,131,535,0,132,4,0,517,156,30,6,44,1,0,28,0,0,20,0,0,1183,6.650071123755335,19.44381223328592,6.95448079658606,22.533428165007116,1.0236907730673317,3.134663341645885,1.9788029925187032,827,431,982,59,173,26,34,28,3,45,7,10,58,0,58,37,4,7,10,4,9,1730,758,0,372,2116,0,1212,1276,0,2190,298,0,705,1783,0,638,67,1560,223,0,226,13,37,1,83,91,113,88,87,421,0,1,0,95,137,218,86,125,380,2,15,47,37,31,57,44,35,8,0,10,0,0,0,0,0,871,124,1234,0,6,46,31,70,476,576,72,40,496,67,96,16,50,4,227,15,0,1393,1290,117,533,18,213,19,0,69,2,17,99,10,1125,295,0,0,1563,507,0,21,11,112,7,8,0,0,2,37,52,37,22,143,98,124,52,428,1606,156,72,77,185,109,68,38,31,25,9,4,5,1,2,295,58.0,39.0,52.0,46.0,51.0,56.0,36.0,38.0,34.0,44.0,42.0,46.0,41.0,41.0,54.0,41.0,57.0,43.0,63.0,58.0,60.0,57.0,46.0,45.0,37.0,43.0,45.0,33.0,45.0,39.0,41.0,32.0,36.0,37.0,40.0,30.0,32.0,30.0,30.0,28.0,46.0,28.0,30.0,27.0,31.0,31.0,26.0,28.0,34.0,30.0,32.0,29.0,25.0,23.0,35.0,27.0,22.0,30.0,23.0,26.0,28.0,24.0,22.0,22.0,21.0,20.0,16.0,19.0,18.0,12.0,15.0,6.0,10.0,13.0,6.0,7.0,11.0,14.0,8.0,6.0,11.0,13.0,5.0,6.0,5.0,5.0,5.0,6.0,3.0,4.0,2.0,3.0,2.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,678,1748,257,0,246,208,224,262,245,205,186,150,162,149,144,128,117,85,50,46,40,23,9,3,1,0,2560,18,12,93,0,2560,19,11,93,0,857,11,54,237,70,15,761,678,0,1332,1326,25,0,1,651,14,0,0,0,1,0,1,0,2015,0,11,36,208,10,1,4,117,2296,0,414,503,74,10,1,1681,0,2.303655107778819,0.0,3.2024793388429758,0.0,7.049944092433843,2,9,93,2,0,2,44,675,0,174,57,35,59,111,90,49,36,44,18,10,4,4,2,3,125,739,88,526,301,537,290,133,694,578,249,52,775,429,398,12,815,661,166,497,330,176,321,174,653,443,384,158,669,231,596,263,564,8,819,197,429,191,10,17,583,244,0,0,172,6,0,0,0,0,0,1,0,648,0,1.650473933649289,1.528436018957346,1.0,1.0357142857142858,1.0357142857142858,49.847642079806526 +41301,Chiriquí,Tolé,Tolé,1454,9,1,0,0,0,0,1,0,0,0,0,1,0,0,9,722,251,17,948,34,2,0,0,14,1,920,0,0,30,2,9,30,0,8,476,71,351,9,15,1,76,896,79,2,0,0,22,999,1,146,38,82,151,47,0,2,108,815,72,1,1,891,47,2,11,8,40,0,992,2,1,0,1,2,1,275,671,0,46,6,1,858,34,39,5,5,24,0,14,0,10,9,1,1274,192,6.505907626208378,18.741138560687432,6.638023630504834,20.16111707841031,1.014014014014014,3.894894894894895,2.558558558558558,1014,509,1230,74,289,34,48,35,2,47,14,11,56,9,54,16,10,13,11,0,10,2659,533,0,906,2286,0,1971,1221,0,2869,323,0,1080,2112,0,947,133,1893,219,0,221,29,46,5,94,118,132,85,92,403,0,1,1,91,124,192,106,132,591,0,7,71,82,79,95,124,62,156,4,46,1,0,1,1,0,1056,208,1596,0,47,83,26,206,666,595,83,46,697,77,149,50,155,0,96,0,8,1650,1722,437,314,54,369,38,0,8,12,32,138,19,1642,8,0,0,1539,833,1,13,34,309,85,45,1,0,12,69,267,53,49,235,43,152,90,294,1912,267,104,159,223,159,155,83,108,129,40,8,8,2,7,8,37.0,47.0,44.0,52.0,51.0,51.0,47.0,76.0,49.0,58.0,46.0,56.0,53.0,53.0,64.0,52.0,60.0,56.0,65.0,59.0,72.0,58.0,65.0,58.0,36.0,50.0,42.0,45.0,44.0,39.0,43.0,35.0,32.0,40.0,43.0,40.0,41.0,45.0,43.0,48.0,43.0,53.0,40.0,41.0,30.0,26.0,30.0,43.0,35.0,46.0,38.0,32.0,44.0,43.0,29.0,31.0,35.0,40.0,40.0,29.0,30.0,35.0,31.0,31.0,27.0,29.0,26.0,26.0,27.0,25.0,22.0,25.0,19.0,28.0,20.0,16.0,19.0,21.0,15.0,22.0,23.0,12.0,17.0,13.0,11.0,4.0,6.0,8.0,5.0,9.0,5.0,6.0,5.0,3.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,784,2113,475,0,231,281,272,292,289,220,193,217,207,180,186,175,154,133,114,93,76,32,23,3,1,0,3301,24,34,13,0,3301,29,29,13,0,758,15,53,490,131,17,1125,783,0,1553,1788,31,0,6,695,16,0,0,0,0,0,0,0,2655,0,13,24,143,14,1,3,100,3074,0,547,728,202,23,1,1871,0,2.2197430696416496,0.0,3.231404958677686,0.0,8.612692763938316,8,13,50,5,1,2,38,897,0,128,88,49,92,112,89,78,65,94,85,48,24,29,17,14,1,964,50,825,189,792,222,239,775,734,280,160,854,498,516,42,972,938,76,778,236,487,291,372,642,674,340,348,666,259,755,331,683,6,1008,184,518,269,43,1,633,381,0,0,162,7,0,0,0,0,0,0,0,845,0,1.625615763546798,1.696551724137931,1.25,1.0425531914893618,1.0425531914893618,55.24063116370809 +41302,Chiriquí,Tolé,Bella Vista,323,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,120,5,209,17,1,0,0,4,0,133,0,1,23,6,3,61,0,4,0,24,196,3,7,1,0,107,120,0,0,0,4,231,0,41,9,0,26,31,0,0,4,210,9,0,8,109,75,0,3,11,26,7,218,0,0,0,0,12,1,27,134,0,66,3,1,0,40,132,1,0,52,0,2,0,0,2,2,0,338,6.476744186046512,21.24418604651163,6.965116279069767,23.75581395348837,1.0043290043290043,2.6666666666666665,1.5757575757575757,232,126,303,14,40,9,7,11,1,5,1,4,5,1,15,7,6,9,1,0,0,479,224,0,57,646,0,211,492,0,591,112,0,191,512,0,178,13,407,105,0,105,2,7,0,22,33,35,33,28,164,0,0,0,24,22,49,28,25,87,0,0,3,8,7,5,8,1,6,0,1,0,0,0,0,0,130,17,485,0,3,3,5,15,142,258,47,23,49,16,3,3,29,2,43,0,0,397,362,22,72,3,47,0,0,1,0,30,53,3,336,1,0,0,506,107,0,0,2,12,4,1,0,0,0,5,5,4,2,26,6,26,10,63,566,77,28,22,30,16,8,2,5,3,1,0,0,0,0,1,20.0,12.0,13.0,11.0,15.0,11.0,8.0,14.0,12.0,11.0,14.0,13.0,11.0,13.0,16.0,26.0,17.0,17.0,18.0,16.0,13.0,8.0,12.0,13.0,11.0,11.0,12.0,10.0,9.0,8.0,11.0,11.0,12.0,5.0,6.0,8.0,5.0,10.0,9.0,11.0,13.0,13.0,8.0,11.0,5.0,7.0,6.0,3.0,7.0,6.0,10.0,4.0,7.0,8.0,4.0,11.0,4.0,6.0,10.0,7.0,4.0,3.0,8.0,9.0,7.0,5.0,7.0,5.0,4.0,6.0,2.0,4.0,1.0,5.0,9.0,1.0,3.0,6.0,3.0,1.0,4.0,4.0,4.0,1.0,4.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,194,470,95,0,71,56,67,94,57,50,45,43,50,29,33,38,31,27,21,14,17,9,6,1,0,0,725,1,1,32,0,725,1,1,32,0,222,1,19,66,33,0,224,194,0,467,289,3,0,0,70,1,0,0,0,0,0,0,0,688,0,0,0,3,0,0,0,73,683,0,31,88,15,1,0,624,0,2.8766233766233764,0.0,4.221105527638191,0.0,5.872200263504611,0,0,3,0,0,0,26,203,0,70,36,21,25,37,19,10,3,6,3,1,0,1,0,0,0,156,76,109,123,108,124,29,203,84,148,7,225,65,167,1,231,157,75,87,145,46,41,27,205,20,212,24,208,95,137,46,186,2,230,46,134,47,5,0,156,76,0,0,12,0,0,0,0,0,0,0,0,220,0,1.7112068965517242,1.5603448275862069,0.0,1.0625,1.0625,52.56896551724138 +41303,Chiriquí,Tolé,Cerro Viejo,765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,449,38,458,21,15,0,0,22,1,207,0,4,88,10,1,201,1,5,0,4,477,15,14,4,3,217,298,1,0,0,1,517,3,110,24,1,91,19,0,0,6,503,3,0,5,253,127,38,65,31,1,2,506,4,0,0,1,6,0,40,239,5,228,4,1,0,237,94,23,29,121,1,2,0,2,5,3,0,765,4.516616314199395,11.413897280966768,5.722054380664653,18.17824773413897,1.001934235976789,2.9110251450676983,1.7988394584139265,518,288,817,57,245,18,31,13,4,35,2,3,26,0,9,16,4,13,3,6,1,1061,842,0,202,1701,0,744,1159,0,1577,326,0,692,1211,0,678,14,937,274,0,277,24,27,0,51,88,98,113,97,320,0,0,0,62,92,136,58,95,225,1,3,19,16,25,22,17,19,9,1,7,0,0,0,1,0,449,26,1179,0,3,15,7,33,470,558,35,83,128,23,26,3,20,0,266,4,0,1079,978,59,170,6,223,4,0,8,0,115,139,12,711,18,0,0,1289,289,0,3,12,46,7,7,1,0,0,9,29,11,12,56,137,39,9,173,1557,218,48,55,50,29,31,14,19,12,3,1,2,0,0,18,32.0,37.0,47.0,38.0,45.0,37.0,38.0,43.0,47.0,39.0,64.0,50.0,43.0,49.0,50.0,41.0,44.0,50.0,44.0,38.0,46.0,34.0,28.0,33.0,25.0,22.0,25.0,23.0,21.0,27.0,19.0,17.0,16.0,28.0,19.0,20.0,18.0,19.0,33.0,22.0,18.0,26.0,20.0,15.0,24.0,19.0,17.0,17.0,23.0,15.0,19.0,21.0,21.0,15.0,19.0,16.0,13.0,17.0,17.0,11.0,18.0,17.0,12.0,16.0,17.0,16.0,12.0,16.0,18.0,8.0,14.0,13.0,9.0,8.0,6.0,10.0,8.0,11.0,11.0,10.0,8.0,8.0,8.0,4.0,11.0,7.0,5.0,2.0,5.0,4.0,4.0,2.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,659,1155,243,0,199,204,256,217,166,118,99,112,103,91,95,74,80,70,50,50,39,23,10,1,0,0,2026,1,0,30,0,2026,1,0,30,0,607,6,144,131,79,4,432,654,0,1408,649,0,0,0,1009,9,0,0,0,0,0,0,0,1039,0,0,16,16,0,0,0,4,2021,0,45,149,33,3,0,1827,0,2.907828282828283,0.0,4.355102040816327,0.0,5.995624696159456,0,6,5,0,0,0,3,504,0,101,81,48,77,91,40,23,11,19,9,4,5,5,3,0,1,385,133,142,376,153,365,111,407,122,396,8,510,193,325,9,509,335,183,140,378,84,56,46,472,207,311,33,485,279,239,277,241,5,513,100,246,160,12,0,371,147,0,0,235,2,0,0,0,0,0,0,0,281,0,2.083011583011583,1.888030888030888,1.0,1.037037037037037,1.037037037037037,54.318532818532816 +41304,Chiriquí,Tolé,El Cristo,511,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,270,115,259,27,100,4,0,9,2,139,0,0,96,5,1,159,1,0,0,0,370,19,11,1,0,83,318,0,0,0,0,401,2,21,12,0,66,12,0,0,1,389,11,0,0,80,230,17,43,29,1,1,395,0,1,0,2,3,0,6,127,10,252,6,0,1,148,30,6,3,212,0,1,0,0,0,0,0,514,4.893854748603352,13.430167597765363,5.994413407821229,18.033519553072622,1.0,2.7855361596009973,1.5187032418952615,401,253,988,46,259,24,21,15,2,26,1,6,0,1,7,1,2,4,3,0,3,563,1251,0,41,1773,0,153,1661,0,1415,399,0,713,1101,0,706,7,728,373,0,375,20,15,3,60,98,126,98,91,253,0,0,1,74,107,119,63,54,175,0,0,18,13,13,2,14,21,0,0,1,0,0,0,0,0,266,31,1172,0,3,11,15,6,481,580,42,63,53,47,36,6,8,0,129,0,0,1003,1040,25,78,8,142,5,1,20,0,178,90,4,821,9,0,0,1211,224,1,0,0,32,0,1,0,0,0,2,13,5,2,35,102,48,8,82,1728,158,33,28,38,14,13,8,8,4,1,1,0,0,0,9,53.0,56.0,54.0,66.0,60.0,56.0,55.0,64.0,58.0,52.0,59.0,61.0,45.0,50.0,60.0,53.0,52.0,50.0,44.0,38.0,32.0,35.0,28.0,29.0,29.0,24.0,27.0,26.0,27.0,24.0,25.0,26.0,25.0,26.0,13.0,16.0,15.0,20.0,18.0,16.0,25.0,19.0,17.0,16.0,12.0,16.0,17.0,14.0,14.0,12.0,10.0,11.0,16.0,9.0,15.0,12.0,8.0,12.0,12.0,8.0,12.0,12.0,8.0,10.0,7.0,6.0,21.0,10.0,11.0,12.0,12.0,7.0,13.0,2.0,7.0,7.0,4.0,5.0,4.0,5.0,2.0,1.0,3.0,3.0,1.0,3.0,1.0,2.0,3.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,849,1042,152,0,289,285,275,237,153,128,115,85,89,73,61,52,49,60,41,25,10,10,3,3,0,0,1977,0,1,65,0,1977,0,1,65,0,614,4,78,77,55,3,363,849,0,1679,364,0,0,1,1663,8,0,0,0,0,0,0,0,371,0,246,50,3,0,0,1,17,1726,0,29,75,6,0,0,1933,0,2.9031413612565444,0.0,4.699316628701594,0.0,4.922173274596182,49,11,0,0,0,0,4,337,0,98,46,39,65,82,19,17,12,10,8,3,1,1,0,0,0,245,156,78,323,58,343,181,220,54,347,2,399,133,268,7,394,192,209,60,341,41,19,10,391,7,394,6,395,326,75,86,315,4,397,39,207,154,1,0,282,119,0,0,320,0,0,0,0,0,0,0,0,81,0,2.501246882793017,2.5935162094763093,1.0,1.1111111111111112,1.1111111111111112,49.30922693266833 +41305,Chiriquí,Tolé,Justo Fidel Palacios,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,145,35,145,5,23,0,0,7,5,88,0,0,15,0,1,81,0,0,1,0,163,8,11,2,0,43,138,0,0,0,4,185,0,17,11,0,22,8,0,0,0,184,1,0,0,100,24,14,24,5,18,0,183,0,0,0,0,0,2,4,98,1,82,0,0,0,114,8,9,2,48,0,2,0,0,2,0,0,243,4.819672131147541,15.4672131147541,6.901639344262295,23.81967213114754,1.0,2.9675675675675675,1.648648648648649,185,100,390,8,86,3,13,9,1,11,0,1,1,0,1,2,1,1,6,0,3,296,439,0,22,713,0,159,576,0,607,128,0,263,472,0,261,2,373,99,0,99,6,12,0,26,40,40,37,28,175,0,0,0,35,31,49,18,31,70,1,0,4,7,8,5,3,9,1,0,0,0,0,0,0,0,137,6,467,0,2,1,2,7,174,265,11,10,37,10,12,5,1,0,74,1,1,410,398,12,40,5,69,1,0,13,1,46,31,2,221,25,0,0,502,85,0,1,6,15,1,0,0,0,2,2,6,3,1,17,61,14,1,36,646,53,32,14,16,8,6,3,5,0,0,0,0,0,0,25,9.0,29.0,19.0,16.0,31.0,18.0,14.0,21.0,25.0,16.0,21.0,18.0,17.0,29.0,10.0,21.0,22.0,17.0,21.0,18.0,16.0,14.0,14.0,15.0,15.0,14.0,6.0,17.0,4.0,10.0,10.0,5.0,10.0,7.0,10.0,6.0,10.0,10.0,10.0,9.0,10.0,2.0,6.0,9.0,7.0,10.0,6.0,2.0,7.0,9.0,7.0,7.0,5.0,7.0,7.0,5.0,6.0,2.0,1.0,6.0,2.0,2.0,2.0,9.0,2.0,2.0,6.0,5.0,7.0,5.0,7.0,1.0,5.0,4.0,4.0,4.0,3.0,0.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,293,449,66,0,104,94,95,99,74,51,42,45,34,34,33,20,17,25,21,9,4,4,2,1,0,0,801,0,0,7,0,801,0,0,7,0,243,0,51,33,19,0,169,293,0,680,128,0,0,0,339,3,0,0,0,0,0,0,0,466,0,0,1,21,1,0,0,45,740,0,18,41,5,2,0,742,0,2.841584158415841,0.0,4.525714285714286,0.0,5.512376237623762,0,0,5,0,0,0,10,170,0,47,13,24,26,39,17,6,3,8,0,1,0,0,0,0,1,117,68,27,158,29,156,42,143,26,159,1,184,76,109,1,184,88,97,37,148,5,32,5,180,15,170,4,181,118,67,117,68,6,179,35,94,55,1,0,123,62,0,0,71,1,0,0,0,0,0,0,0,113,0,2.216216216216216,2.151351351351351,1.0,1.125,1.125,50.63243243243243 +41306,Chiriquí,Tolé,Lajas de Tolé,324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,85,8,200,8,1,0,0,7,0,154,0,0,35,1,4,22,0,0,0,5,174,3,34,0,0,168,45,0,0,0,3,216,0,53,7,1,24,23,0,0,1,198,16,0,1,181,33,0,0,2,0,0,212,0,0,0,1,3,0,19,181,1,13,2,0,2,180,23,1,1,6,1,1,0,0,1,0,0,324,4.317073170731708,9.663414634146342,4.804878048780488,13.86829268292683,1.0,3.2731481481481484,2.236111111111111,216,134,259,22,68,4,5,1,3,10,1,0,2,0,17,12,4,5,3,1,9,417,265,0,68,614,0,236,446,0,593,89,0,154,528,0,148,6,458,70,0,70,2,4,1,23,45,40,29,29,181,0,0,1,16,23,42,13,25,84,0,2,4,7,10,12,7,8,1,0,3,0,0,0,0,0,151,17,458,0,0,8,5,18,107,305,26,2,85,18,16,3,15,0,26,4,0,384,341,34,80,6,43,4,0,0,0,12,92,9,368,3,0,0,487,105,1,3,4,22,1,3,0,0,0,13,15,9,2,17,15,21,6,70,472,119,22,20,39,11,13,5,14,4,1,0,1,0,1,3,12.0,9.0,11.0,11.0,10.0,10.0,9.0,9.0,11.0,7.0,15.0,10.0,10.0,8.0,11.0,12.0,17.0,10.0,17.0,11.0,6.0,11.0,11.0,9.0,13.0,11.0,6.0,15.0,7.0,5.0,2.0,7.0,11.0,4.0,10.0,4.0,9.0,10.0,11.0,6.0,6.0,8.0,15.0,7.0,9.0,8.0,12.0,6.0,12.0,8.0,6.0,7.0,7.0,11.0,4.0,7.0,5.0,7.0,10.0,5.0,6.0,7.0,7.0,7.0,4.0,4.0,7.0,2.0,5.0,7.0,12.0,4.0,10.0,9.0,3.0,10.0,6.0,7.0,5.0,4.0,4.0,3.0,8.0,7.0,3.0,4.0,3.0,1.0,6.0,3.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,153,426,146,0,53,46,54,67,50,44,34,40,45,46,35,34,31,25,38,32,25,17,4,4,1,0,718,0,1,6,0,718,0,1,6,0,216,2,49,85,34,3,183,153,0,485,239,1,0,1,102,0,0,0,0,0,0,0,0,622,0,0,1,26,0,0,0,41,657,0,49,106,17,1,0,552,0,3.0174216027874565,0.0,4.218274111675127,0.0,6.259310344827586,0,1,13,0,0,0,20,182,0,45,37,17,27,38,12,10,5,13,6,2,3,0,0,1,0,202,14,132,84,121,95,39,177,97,119,6,210,115,101,3,213,168,48,130,86,47,83,22,194,74,142,31,185,95,121,102,114,0,216,38,125,51,2,0,178,38,0,0,28,0,0,0,0,0,0,0,0,188,0,1.7777777777777777,1.5787037037037035,0.0,1.0,1.0,59.78703703703704 +41307,Chiriquí,Tolé,Potrero de Caña,148,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,105,12,71,36,4,1,0,5,2,48,0,1,26,3,2,36,1,2,2,0,116,1,0,0,0,42,74,0,0,0,3,119,0,15,2,0,6,7,0,0,0,117,2,0,0,31,52,0,10,26,0,0,118,0,0,0,0,1,0,4,43,2,68,1,1,1,34,5,3,2,57,0,14,0,1,0,2,0,149,4.65,21.8,6.95,23.45,1.0252100840336134,2.571428571428572,1.4621848739495795,122,63,224,16,62,3,4,2,0,6,0,0,0,0,1,2,1,3,0,1,4,207,243,0,38,412,0,82,368,0,362,88,0,182,268,0,180,2,211,57,0,58,7,12,0,31,28,33,25,16,64,1,0,0,15,20,28,16,17,50,0,0,3,6,2,5,5,7,0,0,1,0,0,0,0,0,113,1,244,0,0,1,0,7,103,116,12,6,22,3,9,6,12,0,61,0,0,250,252,12,36,6,53,1,0,5,0,27,21,9,218,19,0,0,278,70,0,0,1,8,0,1,0,0,0,1,3,1,3,18,42,8,2,36,395,29,7,22,14,3,9,3,0,0,1,0,0,0,0,19,12.0,11.0,17.0,12.0,19.0,12.0,17.0,14.0,15.0,15.0,12.0,11.0,18.0,9.0,8.0,10.0,11.0,10.0,5.0,13.0,6.0,8.0,13.0,5.0,5.0,8.0,7.0,10.0,10.0,7.0,8.0,8.0,4.0,4.0,5.0,8.0,6.0,3.0,7.0,0.0,5.0,3.0,2.0,3.0,3.0,3.0,2.0,5.0,2.0,5.0,3.0,3.0,1.0,4.0,4.0,3.0,2.0,5.0,3.0,3.0,4.0,4.0,3.0,4.0,3.0,1.0,0.0,5.0,3.0,0.0,1.0,2.0,1.0,2.0,3.0,0.0,1.0,4.0,2.0,3.0,1.0,0.0,1.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,202,263,37,0,71,73,58,49,37,42,29,24,16,17,15,16,18,9,9,10,4,3,1,0,1,0,484,1,0,17,0,484,1,0,17,0,153,3,18,15,16,0,95,202,0,351,151,0,0,0,426,3,0,0,0,0,0,0,0,73,0,0,6,2,0,1,0,1,492,0,10,28,8,0,0,456,0,3.016949152542373,0.0,4.321739130434783,0.0,5.348605577689243,0,1,1,0,0,0,0,120,0,41,12,12,15,14,7,12,5,2,0,1,0,0,0,0,1,68,54,37,85,25,97,28,94,20,102,2,120,54,68,1,121,71,51,34,88,13,21,7,115,20,102,5,117,58,64,46,76,0,122,21,64,37,0,0,78,44,0,0,100,1,0,0,0,0,0,0,0,21,0,2.0491803278688523,2.065573770491804,1.0,1.0,1.0,49.27049180327869 +41308,Chiriquí,Tolé,Quebrada de Piedra,388,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,154,108,16,253,9,9,0,0,6,1,189,0,0,29,3,2,48,0,7,0,35,212,20,11,0,0,210,68,0,0,0,0,278,0,50,19,2,27,14,0,0,5,260,12,0,1,202,57,0,3,13,3,0,271,0,0,0,0,7,0,24,187,0,66,0,1,1,197,42,3,5,18,0,10,0,0,2,0,0,392,5.579166666666667,6.770833333333333,6.6625,20.570833333333333,1.0215827338129495,3.4100719424460437,2.370503597122302,284,167,414,17,97,13,11,2,4,23,1,3,5,0,35,12,3,5,2,2,1,522,446,0,81,887,0,445,523,0,856,112,0,252,716,0,235,17,643,73,0,73,10,15,1,31,31,54,50,47,213,0,2,0,27,44,92,35,40,126,0,1,11,16,4,5,8,24,6,0,2,0,0,0,0,0,291,12,568,0,1,6,2,19,175,339,25,10,113,26,19,2,27,0,61,48,3,539,502,33,140,5,108,8,0,2,3,13,65,8,504,3,0,0,668,156,0,1,4,35,5,2,0,0,2,12,17,7,2,41,60,36,12,114,697,107,52,43,60,36,4,12,13,8,3,1,2,0,0,3,18.0,15.0,27.0,13.0,19.0,14.0,17.0,15.0,20.0,12.0,11.0,23.0,20.0,14.0,20.0,21.0,22.0,22.0,19.0,31.0,18.0,16.0,22.0,15.0,11.0,14.0,10.0,14.0,13.0,12.0,16.0,10.0,13.0,9.0,15.0,12.0,7.0,14.0,8.0,13.0,10.0,6.0,11.0,15.0,10.0,10.0,13.0,16.0,11.0,12.0,20.0,15.0,15.0,15.0,10.0,15.0,10.0,12.0,8.0,6.0,8.0,5.0,8.0,4.0,7.0,3.0,6.0,12.0,9.0,10.0,7.0,6.0,10.0,5.0,5.0,7.0,7.0,4.0,6.0,2.0,4.0,6.0,5.0,3.0,0.0,1.0,2.0,3.0,2.0,3.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,258,649,134,0,92,78,88,115,82,63,63,54,52,62,75,51,32,40,33,26,18,11,4,0,2,0,1028,6,1,6,0,1028,6,1,6,0,336,7,67,77,45,1,250,258,0,669,367,5,0,0,26,0,0,0,0,0,0,0,0,1015,0,7,13,18,1,2,0,5,995,0,56,115,17,1,2,850,0,2.8058252427184467,0.0,3.985507246376812,0.0,6.626320845341018,3,2,10,0,1,0,5,263,0,56,26,22,40,47,37,9,16,8,11,6,2,3,0,0,1,259,25,181,103,178,106,47,237,164,120,18,266,174,110,0,284,195,89,172,112,97,75,45,239,145,139,48,236,81,203,66,218,3,281,50,143,88,3,2,207,77,0,0,10,0,0,0,0,0,0,0,0,274,0,1.8846153846153848,1.7552447552447552,1.0,1.0,1.0,55.478873239436616 +41309,Chiriquí,Tolé,Veladero,733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,364,152,6,500,20,0,0,0,6,0,488,0,1,15,5,4,13,0,0,150,54,292,13,17,0,0,453,69,0,0,0,4,526,0,123,22,4,22,36,0,2,16,472,35,0,1,447,53,1,12,7,6,0,522,0,0,1,1,1,1,58,410,0,57,1,0,200,269,9,12,0,33,0,3,0,0,0,0,0,733,6.167364016736402,17.85774058577406,6.7719665271966525,22.338912133891213,1.0247148288973384,3.758555133079848,2.387832699619772,539,260,749,16,217,9,33,20,2,28,3,3,7,0,21,12,10,7,8,5,5,1337,410,0,258,1489,0,662,1085,0,1561,186,0,562,1185,0,543,19,1048,137,0,140,10,34,8,61,65,90,74,63,268,0,0,1,57,63,118,51,77,290,0,4,28,39,25,38,59,56,12,2,13,0,0,0,1,0,495,30,1004,0,5,2,19,74,358,503,42,27,226,27,83,17,97,3,60,0,2,927,959,158,182,20,136,15,0,2,2,21,113,9,824,3,0,0,958,402,2,5,10,131,9,11,1,0,1,15,74,19,21,100,22,106,35,132,1208,168,62,88,111,67,40,47,59,15,9,3,3,3,0,3,34.0,28.0,34.0,43.0,37.0,35.0,33.0,39.0,29.0,45.0,38.0,19.0,34.0,38.0,27.0,28.0,34.0,33.0,37.0,37.0,28.0,29.0,30.0,36.0,26.0,37.0,34.0,28.0,27.0,29.0,22.0,25.0,21.0,16.0,18.0,17.0,18.0,20.0,20.0,16.0,23.0,12.0,22.0,21.0,22.0,17.0,17.0,22.0,19.0,21.0,12.0,19.0,21.0,27.0,20.0,11.0,19.0,12.0,24.0,25.0,15.0,13.0,10.0,11.0,19.0,17.0,15.0,11.0,10.0,9.0,13.0,9.0,19.0,10.0,9.0,14.0,9.0,12.0,5.0,13.0,7.0,8.0,6.0,4.0,14.0,2.0,5.0,5.0,2.0,3.0,6.0,3.0,1.0,3.0,2.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,513,1120,253,0,176,181,156,169,149,155,102,91,100,96,99,91,68,62,60,53,39,17,15,5,2,0,1864,2,1,19,0,1864,2,1,19,0,498,6,152,183,86,3,445,513,0,1281,603,2,0,1,514,2,0,0,0,0,0,0,0,1369,0,3,8,63,0,0,0,569,1243,0,202,329,67,8,1,1279,0,2.5330788804071247,0.0,3.627151051625239,0.0,7.422587486744432,1,2,14,0,0,0,192,330,0,70,54,37,63,88,61,35,27,41,26,16,4,11,4,2,0,497,42,400,139,399,140,145,394,327,212,31,508,301,238,16,523,465,74,370,169,174,196,124,415,187,352,107,432,46,493,44,495,12,527,99,279,154,7,0,311,228,0,0,112,0,0,0,0,0,0,0,0,427,0,1.719851576994434,1.7792207792207793,1.0,1.0,1.0,55.319109461966605 +41401,Chiriquí,Tierras Altas,Volcán,2780,22,166,22,0,0,0,0,5,0,0,1,6,0,0,33,1962,96,33,1990,101,7,2,0,21,3,2030,3,1,26,1,18,26,0,19,1789,182,106,3,31,0,13,2074,27,6,0,0,17,2124,4,427,87,199,99,50,0,177,500,1252,164,11,20,1949,106,0,37,2,30,0,2099,10,6,0,7,1,1,1083,972,2,28,39,0,1908,35,111,16,6,14,0,4,0,15,4,11,2751,251,6.881207400194742,22.40506329113924,6.962512171372931,23.77458617332035,1.0254237288135593,3.5706214689265536,2.230225988700565,2185,1170,2446,197,479,90,110,69,32,95,26,17,157,4,168,55,32,44,27,38,27,5595,1024,0,2507,4112,0,4766,1853,0,6117,502,0,2061,4558,0,1603,458,4215,343,0,358,75,112,8,184,181,205,195,214,780,1,1,3,214,274,559,198,310,1128,3,30,155,214,193,134,333,399,46,6,91,0,2,1,12,0,2916,146,2825,0,43,47,15,370,1209,998,118,130,1633,266,466,83,208,14,362,1,12,3511,3566,356,1465,103,1006,62,1,27,25,7,169,28,2029,109,0,0,3134,1759,4,46,63,732,44,92,13,0,25,171,283,190,147,522,307,407,215,795,3320,354,188,322,665,771,571,209,281,137,79,23,26,9,13,109,97.0,116.0,118.0,127.0,113.0,134.0,118.0,136.0,129.0,102.0,131.0,132.0,124.0,112.0,109.0,115.0,119.0,119.0,114.0,114.0,128.0,118.0,115.0,123.0,116.0,112.0,131.0,116.0,97.0,99.0,94.0,101.0,106.0,123.0,86.0,87.0,107.0,87.0,83.0,71.0,96.0,73.0,95.0,86.0,90.0,95.0,80.0,77.0,72.0,76.0,96.0,64.0,89.0,84.0,82.0,81.0,71.0,78.0,70.0,45.0,64.0,47.0,60.0,57.0,51.0,62.0,48.0,37.0,45.0,43.0,42.0,35.0,41.0,36.0,27.0,23.0,33.0,29.0,23.0,18.0,26.0,22.0,16.0,14.0,13.0,7.0,16.0,9.0,9.0,10.0,6.0,3.0,6.0,4.0,3.0,5.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1798,4560,719,0,571,619,608,581,600,555,510,435,440,400,415,345,279,235,181,126,91,51,22,12,1,0,6739,145,102,91,0,6744,150,92,91,0,1742,101,421,1136,215,66,1598,1798,0,2952,3896,229,0,2,1138,21,1,1,1,0,0,3,0,5910,0,97,103,406,25,14,9,483,5940,0,1286,1524,334,22,48,3863,0,2.024907438572871,0.0,2.883605745418524,0.0,8.74169845979935,33,39,149,8,5,5,176,1770,0,73,59,36,112,241,327,299,210,362,141,108,74,54,27,28,27,2154,31,1907,278,1841,344,465,1720,368,1817,32,2153,1176,1009,410,1775,2062,123,1867,318,1168,699,985,1200,1681,504,1081,1104,315,1870,362,1823,71,2114,428,1212,501,44,5,1453,732,0,1,286,7,1,0,1,0,0,1,0,1888,0,1.6031963470319637,1.628310502283105,1.2040816326530612,1.0112359550561798,1.0112359550561798,50.3070938215103 +41402,Chiriquí,Tierras Altas,Cerro Punta,1232,9,1,15,0,0,0,0,333,0,0,92,14,0,0,12,710,190,20,762,150,9,5,0,3,3,813,8,7,16,1,47,39,0,1,220,358,315,7,27,0,5,915,4,6,0,0,7,932,2,185,30,44,44,20,0,13,158,527,226,8,0,660,235,0,25,0,12,0,916,1,3,4,8,0,0,301,440,0,30,161,0,205,272,304,12,1,22,29,1,18,57,9,2,388,1308,6.855313700384123,23.40460947503201,6.893725992317542,23.528809218950062,1.0354077253218883,3.256437768240344,2.022532188841202,1143,614,1342,91,226,22,57,67,7,38,28,13,1179,1,37,19,6,7,6,0,13,3042,1313,0,777,3578,0,2099,2256,0,3675,680,0,1139,3216,0,942,197,2648,568,0,574,23,72,0,161,170,203,166,197,714,1,2,1,185,230,380,149,169,564,1,9,37,50,58,53,82,76,6,1,18,0,0,1,2,0,2078,58,1666,0,12,32,7,47,675,833,50,61,288,76,82,28,78,9,1558,0,1,2731,2097,44,1391,30,525,84,2,43,1,11,80,4,2069,138,0,0,2841,710,2,12,30,183,6,16,2,0,0,53,44,19,33,173,479,54,47,1234,2562,151,65,148,1039,387,115,53,85,26,25,3,11,3,17,138,133.0,111.0,119.0,110.0,101.0,99.0,103.0,97.0,83.0,70.0,91.0,80.0,79.0,71.0,78.0,103.0,90.0,86.0,123.0,101.0,109.0,107.0,112.0,99.0,95.0,97.0,75.0,76.0,72.0,82.0,77.0,77.0,89.0,65.0,71.0,54.0,59.0,65.0,42.0,52.0,58.0,54.0,51.0,53.0,49.0,51.0,46.0,44.0,57.0,48.0,40.0,41.0,55.0,40.0,37.0,29.0,35.0,40.0,35.0,43.0,24.0,41.0,29.0,23.0,22.0,15.0,28.0,11.0,14.0,15.0,20.0,13.0,14.0,11.0,9.0,16.0,7.0,6.0,10.0,14.0,10.0,6.0,10.0,8.0,7.0,4.0,9.0,3.0,9.0,0.0,2.0,2.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1425,3123,280,0,574,452,399,503,522,402,379,272,265,246,213,182,139,83,67,53,41,25,9,1,1,0,4470,35,28,295,0,4472,37,24,295,0,1534,16,224,560,90,49,934,1421,0,1731,3042,55,0,1,2497,42,0,2,0,0,0,0,0,2286,0,24,106,58,8,0,2,139,4491,0,519,603,44,3,6,3653,0,2.121766561514196,0.0,3.0412371134020617,0.0,6.235501242750622,3,26,19,4,0,1,45,1045,0,51,24,22,38,206,162,117,74,87,50,21,9,18,8,17,61,1130,13,714,429,693,450,213,930,20,1123,6,1137,532,611,120,1023,982,161,712,431,561,151,335,808,635,508,458,685,436,707,166,977,77,1066,300,553,247,43,261,909,234,0,0,418,7,0,0,0,0,0,0,0,718,0,1.9451566951566952,1.4935897435897436,1.2,1.0,1.0,47.38145231846019 +41403,Chiriquí,Tierras Altas,Cuesta de Piedra,341,3,1,0,0,0,0,0,6,0,0,5,1,0,0,1,227,22,4,227,23,1,0,0,3,0,240,3,0,4,0,1,4,0,2,29,142,43,4,34,0,2,243,4,4,0,0,3,254,0,35,9,1,36,10,0,1,13,130,109,1,0,233,19,0,2,0,0,0,252,0,1,0,1,0,0,75,170,0,3,6,0,1,221,20,3,0,4,0,0,0,4,1,0,0,357,6.991735537190083,23.950413223140497,6.991735537190083,23.950413223140497,1.062992125984252,3.3346456692913384,2.251968503937008,276,152,310,21,87,8,15,20,1,11,7,4,43,0,12,7,3,7,3,5,6,637,242,0,157,722,0,251,628,0,718,161,0,223,656,0,201,22,529,127,0,127,3,16,2,33,44,34,32,35,154,0,0,0,29,40,53,21,24,117,1,4,8,13,18,26,29,6,2,0,8,0,0,0,0,0,326,20,406,0,2,12,5,69,135,147,15,40,99,17,40,6,16,0,164,0,2,516,439,29,231,10,58,9,0,4,3,2,20,3,353,1,0,0,519,158,1,5,8,51,2,8,0,0,3,15,19,12,3,35,25,25,22,187,510,38,20,36,113,127,47,25,16,9,5,2,4,1,1,1,20.0,15.0,11.0,30.0,16.0,23.0,25.0,22.0,28.0,13.0,17.0,21.0,15.0,11.0,15.0,25.0,12.0,14.0,15.0,11.0,18.0,17.0,17.0,16.0,16.0,19.0,13.0,17.0,16.0,6.0,16.0,10.0,15.0,11.0,16.0,16.0,7.0,4.0,12.0,6.0,5.0,9.0,11.0,12.0,14.0,12.0,8.0,8.0,10.0,5.0,6.0,9.0,7.0,12.0,11.0,12.0,9.0,6.0,13.0,10.0,6.0,6.0,5.0,11.0,7.0,5.0,3.0,6.0,8.0,4.0,6.0,2.0,6.0,8.0,0.0,8.0,5.0,4.0,7.0,6.0,5.0,1.0,4.0,3.0,2.0,1.0,2.0,0.0,1.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,282,569,104,0,92,111,79,77,84,71,68,45,51,43,45,50,35,26,22,30,15,6,4,1,0,0,901,10,12,32,0,902,11,10,32,0,256,14,44,148,22,4,185,282,0,372,559,24,0,1,339,0,0,0,0,0,0,0,0,615,0,5,13,41,0,0,1,47,848,0,182,211,55,3,13,491,0,2.224719101123596,0.0,3.2683982683982684,0.0,6.458638743455498,2,4,19,0,0,0,16,235,0,9,10,4,9,44,73,37,20,26,13,9,5,4,4,3,0,272,4,212,64,199,77,72,204,63,213,4,272,162,114,9,267,258,18,208,68,168,40,77,199,169,107,77,199,52,224,88,188,3,273,74,124,75,3,6,225,51,0,1,76,0,0,0,0,0,0,0,0,199,0,1.8297872340425527,1.5567375886524824,1.3333333333333333,1.0,1.0,51.48550724637681 +41404,Chiriquí,Tierras Altas,Nueva California,2249,17,136,4,0,0,0,0,40,0,0,17,6,0,0,28,1634,66,12,1656,72,3,1,0,6,2,1646,12,7,21,0,10,34,0,10,1243,359,95,9,14,0,20,1703,13,11,0,0,13,1740,2,304,56,140,103,61,0,95,339,1079,218,8,1,1635,79,0,23,1,2,0,1732,3,3,0,2,0,0,808,874,1,22,35,0,1004,489,186,4,0,0,0,1,0,55,1,0,2103,366,6.8237045860631325,21.11792733770101,6.959499702203693,23.617033948779035,1.0241379310344827,3.5080459770114945,2.1517241379310343,1805,979,2038,119,219,54,62,58,10,36,16,13,583,3,79,33,21,18,40,17,37,4665,913,0,1711,3867,0,4101,1477,0,5011,567,0,1701,3877,0,1396,305,3406,471,0,474,71,98,10,128,151,216,164,187,682,0,0,5,163,229,461,160,238,999,6,11,110,129,144,101,243,245,49,10,79,0,5,0,10,0,2453,141,2373,0,13,37,44,277,970,970,105,51,1143,183,327,114,199,4,597,3,1,3071,2924,255,1305,127,814,31,2,34,3,6,157,28,1735,251,0,0,2817,1393,5,16,86,516,42,81,11,0,4,125,217,139,91,394,234,413,162,815,2746,314,200,294,620,569,370,233,185,80,61,16,25,9,22,251,123.0,94.0,93.0,107.0,100.0,127.0,116.0,83.0,91.0,94.0,114.0,121.0,102.0,85.0,107.0,106.0,96.0,88.0,111.0,124.0,117.0,124.0,136.0,133.0,104.0,114.0,89.0,105.0,87.0,78.0,85.0,84.0,81.0,75.0,92.0,78.0,68.0,81.0,62.0,65.0,87.0,56.0,58.0,85.0,64.0,68.0,85.0,65.0,76.0,74.0,81.0,55.0,62.0,66.0,49.0,53.0,57.0,43.0,39.0,44.0,45.0,44.0,43.0,46.0,50.0,42.0,34.0,33.0,46.0,42.0,32.0,35.0,31.0,42.0,22.0,26.0,19.0,19.0,9.0,20.0,11.0,11.0,9.0,10.0,12.0,12.0,5.0,6.0,7.0,3.0,6.0,3.0,2.0,3.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1557,3878,560,0,517,511,529,525,614,473,417,354,350,368,313,236,228,197,162,93,53,33,16,4,2,0,5528,94,107,266,0,5531,101,97,266,0,1472,66,211,1001,146,56,1487,1556,0,2673,3146,176,0,12,1471,35,2,2,0,2,0,1,0,4470,0,54,160,293,26,9,4,546,4903,0,963,1233,259,19,40,3481,0,2.0429096853289743,0.0,3.055345911949685,0.0,8.163469557964971,19,60,99,7,5,0,198,1417,0,59,69,49,91,206,256,231,157,230,135,85,42,41,14,31,86,1779,26,1566,239,1505,300,380,1425,278,1527,32,1773,930,875,289,1516,1699,106,1556,249,1002,554,768,1037,1391,414,836,969,246,1559,347,1458,36,1769,401,1070,311,23,40,1220,585,0,1,289,8,0,1,0,1,0,0,0,1505,0,1.6644986449864498,1.5848238482384824,1.25,1.0461538461538462,1.0461538461538462,49.53240997229917 +41405,Chiriquí,Tierras Altas,Paso Ancho,1706,25,47,40,0,0,0,0,110,0,0,0,3,0,0,24,1103,190,6,969,348,1,0,0,4,1,1259,8,4,12,1,10,17,0,12,382,708,190,7,29,1,6,1299,14,3,1,0,6,1323,2,237,67,45,106,38,0,3,478,738,101,3,0,1085,134,2,87,1,14,0,1310,1,3,0,9,0,0,423,801,0,46,51,2,20,1191,68,14,0,0,1,4,2,19,1,3,0,1931,6.194683346364347,20.843627834245503,6.503518373729476,22.27130570758405,1.0113378684807257,3.104308390022676,1.8314436885865455,1341,702,1517,129,255,38,77,57,14,53,29,39,417,2,61,30,13,11,10,14,21,3103,1175,0,852,3426,0,2172,2106,0,3623,655,0,1167,3111,0,1009,158,2523,588,0,595,19,63,4,150,159,204,203,170,603,8,4,22,169,199,312,135,153,572,3,14,43,58,58,46,55,221,12,3,20,0,0,0,1,0,1752,97,1860,0,18,50,13,122,723,861,55,99,522,72,155,54,47,10,970,1,3,2439,2231,99,1196,63,376,68,0,29,3,7,110,7,1788,300,0,0,2581,745,23,18,35,272,14,20,1,0,3,70,71,52,47,190,296,122,61,937,2390,191,75,197,696,394,159,90,78,45,26,8,11,7,3,300,93.0,102.0,106.0,91.0,102.0,111.0,94.0,93.0,84.0,85.0,84.0,98.0,92.0,93.0,70.0,90.0,92.0,77.0,108.0,91.0,115.0,107.0,102.0,99.0,85.0,90.0,79.0,85.0,67.0,81.0,67.0,73.0,66.0,58.0,68.0,60.0,55.0,57.0,51.0,58.0,48.0,43.0,60.0,53.0,49.0,38.0,41.0,34.0,32.0,45.0,47.0,41.0,36.0,36.0,33.0,40.0,29.0,37.0,25.0,28.0,23.0,29.0,27.0,36.0,25.0,24.0,23.0,25.0,26.0,20.0,17.0,15.0,19.0,22.0,12.0,18.0,19.0,17.0,9.0,11.0,17.0,4.0,6.0,4.0,10.0,4.0,8.0,3.0,1.0,5.0,3.0,3.0,5.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1398,2916,356,0,494,467,437,458,508,402,332,281,253,190,193,159,140,118,85,74,41,21,13,4,0,0,4189,73,47,361,0,4190,85,34,361,0,1356,43,308,511,91,25,939,1397,0,2152,2406,112,0,3,1993,47,0,0,0,1,1,0,0,2625,0,34,48,100,5,1,3,395,4084,0,471,653,96,3,34,3413,0,2.1460609545715927,0.0,3.19647577092511,0.0,6.629122055674518,11,18,44,4,0,2,129,1133,0,76,53,26,59,281,237,185,91,120,54,42,21,18,6,7,62,1324,17,863,478,820,521,231,1110,80,1261,9,1332,626,715,158,1183,1145,196,894,447,573,321,373,968,775,566,477,864,235,1106,120,1221,37,1304,307,679,296,59,110,964,377,0,0,486,9,0,0,0,0,1,0,0,845,0,1.6809097174362508,1.5375603032391454,1.6153846153846154,1.1363636363636365,1.1363636363636365,45.44593586875466 +50103,Darién,Chepigana,Chepigana,276,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,67,89,96,7,57,5,19,7,1,61,0,0,85,26,3,11,0,6,52,0,126,3,9,1,1,174,17,0,0,0,1,192,1,41,16,0,15,12,0,0,3,184,5,0,0,45,138,1,1,1,0,6,178,0,0,0,0,13,1,8,52,0,8,123,1,0,121,1,0,0,0,0,69,0,0,1,0,0,277,6.573770491803279,10.688524590163937,6.934426229508197,11.852459016393444,1.0,2.953125,1.7083333333333333,192,130,355,21,60,2,2,4,0,15,3,0,12,0,13,6,0,0,3,1,1,288,413,0,17,684,0,188,513,0,585,116,0,260,441,0,248,12,354,87,0,87,3,24,1,29,30,36,40,36,170,0,0,0,40,28,50,28,29,56,0,0,3,2,3,1,1,4,0,0,0,0,0,0,0,0,280,0,288,0,0,0,0,10,140,117,10,11,38,18,5,0,11,0,158,50,0,418,378,28,26,1,200,2,0,23,0,34,34,6,282,0,0,0,498,64,0,0,1,5,0,0,0,0,0,6,8,5,4,22,145,13,33,44,522,40,34,65,55,24,19,5,17,6,5,2,2,0,0,0,28.0,27.0,23.0,17.0,30.0,20.0,23.0,24.0,18.0,18.0,22.0,17.0,14.0,20.0,14.0,13.0,17.0,15.0,21.0,18.0,8.0,15.0,15.0,11.0,13.0,9.0,15.0,6.0,9.0,9.0,6.0,11.0,7.0,8.0,7.0,9.0,9.0,6.0,13.0,6.0,8.0,4.0,4.0,6.0,8.0,3.0,5.0,5.0,8.0,3.0,8.0,5.0,6.0,5.0,10.0,7.0,6.0,7.0,6.0,4.0,9.0,5.0,5.0,3.0,5.0,5.0,3.0,5.0,5.0,2.0,5.0,3.0,4.0,4.0,3.0,2.0,1.0,5.0,1.0,6.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,315,421,60,0,125,103,87,84,62,48,39,43,30,24,34,30,27,20,19,15,3,3,0,0,0,0,775,3,1,17,0,775,3,1,17,0,252,1,20,56,11,0,141,315,0,601,190,5,0,1,3,0,0,0,0,506,4,0,4,278,0,5,36,155,43,0,0,41,516,0,27,41,12,0,0,716,0,3.167315175097276,0.0,4.610778443113772,0.0,5.023869346733668,2,23,38,18,0,0,14,97,0,6,5,14,28,39,28,15,12,23,7,9,3,3,0,0,0,180,12,69,123,66,126,19,173,65,127,9,183,29,163,3,189,83,109,54,138,52,2,3,189,43,149,8,184,112,80,73,119,2,190,36,113,38,5,0,163,29,0,0,2,0,0,0,0,93,1,0,1,95,0,2.177083333333333,1.96875,1.0,1.0,1.0,49.364583333333336 +50105,Darién,Chepigana,Jaqué,687,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,324,32,51,350,6,21,16,0,14,0,267,18,1,79,16,1,22,1,2,0,36,194,100,67,9,1,306,95,1,0,0,5,407,0,66,45,5,145,29,0,0,11,349,47,0,0,194,182,2,5,13,0,11,376,4,20,2,0,5,0,57,175,1,3,170,1,0,364,0,0,0,0,0,42,0,0,1,0,0,697,6.678571428571429,20.244505494505493,6.9423076923076925,22.76098901098901,1.0024570024570023,3.11056511056511,2.0442260442260443,408,267,683,85,206,8,10,15,4,35,1,3,13,0,18,8,5,5,9,7,16,815,732,0,95,1452,0,563,984,0,1154,393,0,496,1051,0,492,4,745,306,0,307,8,21,1,77,92,104,103,116,175,0,0,2,111,92,99,28,60,135,0,1,4,6,0,2,1,0,1,0,1,0,0,0,0,0,527,3,740,0,0,1,1,11,319,334,31,45,142,35,46,4,32,0,170,100,0,879,859,57,69,4,354,7,1,37,0,54,68,10,348,8,0,0,1117,145,2,1,0,4,0,1,0,0,0,5,8,21,13,72,254,60,9,88,1286,154,87,64,47,25,32,9,16,2,4,2,1,0,1,8,56.0,51.0,37.0,47.0,47.0,38.0,60.0,49.0,39.0,44.0,42.0,50.0,40.0,34.0,43.0,46.0,31.0,36.0,33.0,23.0,16.0,26.0,22.0,29.0,18.0,32.0,23.0,27.0,28.0,20.0,15.0,20.0,11.0,13.0,20.0,19.0,19.0,20.0,18.0,12.0,16.0,15.0,23.0,13.0,16.0,17.0,13.0,19.0,11.0,14.0,10.0,13.0,11.0,10.0,13.0,8.0,11.0,17.0,10.0,8.0,11.0,13.0,14.0,14.0,9.0,9.0,16.0,8.0,8.0,7.0,4.0,1.0,13.0,17.0,10.0,7.0,8.0,5.0,4.0,6.0,3.0,1.0,5.0,4.0,6.0,1.0,1.0,3.0,3.0,0.0,0.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,677,906,155,0,238,230,209,169,111,130,79,88,83,74,57,54,61,48,45,30,19,8,4,1,0,0,1499,150,75,14,0,1504,152,68,14,0,599,6,55,47,34,0,322,675,0,1252,237,249,0,1,1,0,0,0,1,1021,157,0,1,556,0,15,16,127,51,1,6,308,1214,0,59,106,12,0,0,1561,0,3.308196721311476,0.0,4.53125,0.0,4.5080552359033375,10,8,48,32,1,2,72,235,0,44,31,51,61,91,52,25,13,13,9,10,1,3,0,1,3,349,59,222,186,229,179,24,384,181,227,15,393,121,287,0,408,248,160,212,196,189,23,15,393,9,399,4,404,180,228,167,241,2,406,73,199,127,9,0,327,81,0,1,0,0,0,0,1,194,29,0,0,183,0,2.1544117647058822,2.105392156862745,1.5,1.0,1.0,51.09558823529412 +50106,Darién,Chepigana,Puerto Piña,353,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,217,15,28,225,7,2,0,0,23,3,213,9,4,22,1,4,5,0,2,175,24,45,5,10,0,1,230,26,2,0,0,2,260,0,37,23,8,13,12,0,0,18,225,15,2,0,165,75,1,3,11,2,3,225,10,21,0,0,3,1,24,168,0,1,65,2,0,257,0,0,0,0,0,1,0,0,2,0,0,361,6.178988326848249,19.85214007782101,6.863813229571984,23.51750972762646,1.0,2.9346153846153844,1.823076923076923,260,184,469,30,85,6,21,10,3,34,11,3,23,0,5,2,3,2,2,3,7,704,323,0,76,951,0,255,772,0,837,190,0,364,663,0,359,5,546,117,0,117,16,30,7,41,77,62,65,60,109,0,1,0,70,58,72,24,64,117,1,1,5,3,3,3,1,16,4,0,0,0,0,0,0,0,381,12,455,0,0,8,4,7,201,216,11,20,289,18,6,2,10,0,51,12,0,585,554,30,254,2,83,4,0,15,0,34,7,4,445,141,0,0,694,132,0,2,3,16,1,0,0,0,0,14,11,18,8,74,60,88,33,87,745,25,10,37,35,72,30,17,15,5,2,2,1,2,0,141,29.0,31.0,23.0,29.0,32.0,30.0,27.0,35.0,33.0,22.0,26.0,21.0,24.0,28.0,21.0,25.0,27.0,15.0,29.0,23.0,22.0,18.0,25.0,20.0,19.0,19.0,21.0,11.0,17.0,16.0,18.0,7.0,14.0,14.0,8.0,9.0,22.0,11.0,14.0,13.0,16.0,12.0,12.0,8.0,11.0,7.0,9.0,14.0,9.0,9.0,12.0,9.0,11.0,11.0,17.0,5.0,7.0,4.0,6.0,7.0,7.0,4.0,9.0,7.0,9.0,8.0,8.0,3.0,4.0,5.0,6.0,1.0,5.0,3.0,2.0,4.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,411,669,59,0,144,147,120,119,104,84,61,69,59,48,60,29,36,28,17,7,4,2,0,0,1,0,945,135,28,31,0,945,139,24,31,0,398,2,7,90,12,3,217,410,0,702,243,194,0,4,1,0,0,1,0,802,119,0,1,211,0,24,27,75,15,3,1,129,865,0,147,130,8,0,0,854,0,2.976923076923077,0.0,4.070631970260223,0.0,5.409130816505707,4,5,25,7,2,1,39,177,0,46,14,13,19,14,33,29,16,21,10,5,4,1,0,1,34,251,9,186,74,191,69,45,215,165,95,21,239,61,199,3,257,207,53,148,112,133,15,15,245,10,250,2,258,112,148,92,168,1,259,33,141,78,8,8,178,82,0,1,1,0,0,1,0,166,23,0,0,68,0,2.1828358208955225,2.067164179104477,1.0,1.0,1.0,46.19615384615385 +50109,Darién,Chepigana,Sambú,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,124,16,212,13,7,1,0,8,0,226,0,0,1,4,4,6,0,0,0,0,232,1,5,3,0,222,18,0,1,0,0,241,0,57,18,0,6,10,0,0,10,217,13,0,1,57,182,0,1,0,0,1,233,0,1,0,0,7,0,16,88,0,11,126,0,0,206,15,1,5,1,2,4,0,0,7,0,0,332,3.769230769230769,11.34841628959276,3.656108597285068,11.072398190045249,1.016597510373444,2.9377593360995853,1.829875518672199,245,149,283,23,100,10,6,6,0,18,3,1,12,0,26,9,1,1,3,1,1,528,271,0,60,739,0,473,326,0,679,120,0,281,518,0,266,15,429,89,0,90,13,19,1,28,24,35,31,38,112,0,0,0,43,45,61,22,35,132,0,0,10,8,17,11,12,10,1,0,1,0,0,0,0,0,342,11,342,0,0,5,4,14,167,132,23,6,88,47,18,0,13,0,168,14,0,450,406,69,51,0,217,4,0,7,0,54,49,7,221,0,0,0,493,155,0,1,15,29,1,1,0,0,0,7,20,13,11,43,137,40,9,73,530,88,51,50,36,20,36,11,17,7,6,3,0,0,1,0,11.0,14.0,16.0,16.0,14.0,13.0,24.0,19.0,15.0,19.0,21.0,17.0,27.0,19.0,20.0,14.0,20.0,14.0,14.0,12.0,13.0,3.0,11.0,9.0,7.0,14.0,14.0,11.0,9.0,4.0,14.0,6.0,9.0,13.0,11.0,8.0,11.0,11.0,17.0,7.0,9.0,12.0,6.0,5.0,8.0,8.0,17.0,4.0,10.0,13.0,8.0,5.0,5.0,13.0,9.0,8.0,13.0,8.0,9.0,7.0,7.0,8.0,5.0,10.0,8.0,4.0,9.0,5.0,7.0,4.0,7.0,8.0,7.0,5.0,6.0,2.0,0.0,6.0,4.0,2.0,0.0,1.0,3.0,2.0,4.0,2.0,1.0,0.0,4.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,491,100,0,71,90,104,74,43,52,53,54,40,52,40,45,38,29,33,14,10,7,3,2,2,0,821,2,21,12,0,821,2,21,12,0,252,6,19,100,8,0,206,265,0,433,404,19,0,1,19,2,0,0,0,399,6,0,4,425,0,47,6,58,22,12,1,103,607,0,68,108,16,0,0,664,0,2.6246246246246248,0.0,3.621739130434783,0.0,6.614485981308412,16,3,22,15,4,1,28,156,0,21,17,25,29,47,19,24,16,16,15,10,3,0,2,1,0,234,11,176,69,171,74,29,216,183,62,10,235,64,181,0,245,208,37,168,77,157,11,28,217,174,71,15,230,150,95,105,140,1,244,39,127,69,10,0,191,54,0,1,9,0,0,0,0,85,3,0,2,145,0,1.836734693877551,1.6571428571428573,0.0,1.0,1.0,53.11020408163265 +50110,Darién,Chepigana,Setegantí,254,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,57,14,158,5,1,1,0,11,1,171,0,0,2,0,1,3,0,0,155,1,20,0,1,0,0,167,8,0,0,0,2,177,0,41,9,1,11,16,0,0,3,163,11,0,0,64,111,0,2,0,0,0,174,1,0,0,0,2,0,30,102,1,19,25,0,0,171,2,1,0,0,0,2,0,0,1,0,0,255,7.0,14.341040462427744,7.0,14.578034682080926,1.0,3.6610169491525424,2.440677966101695,177,117,201,32,32,4,5,6,2,6,4,2,1,0,2,2,0,3,1,0,1,465,71,0,63,473,0,366,170,0,475,61,0,164,372,0,151,13,343,29,0,29,10,11,0,22,31,18,19,26,110,1,0,0,24,33,37,22,14,82,0,0,8,4,6,8,3,16,0,0,2,0,0,0,0,0,258,14,184,0,2,6,4,3,79,84,14,4,92,23,11,1,19,0,118,2,0,317,272,75,39,1,135,2,0,14,0,16,32,4,129,0,0,0,327,100,0,0,3,24,0,2,0,0,1,7,13,11,23,37,81,18,13,68,277,45,42,39,49,19,45,21,22,11,8,2,8,1,0,0,13.0,14.0,8.0,18.0,13.0,14.0,12.0,22.0,12.0,7.0,13.0,15.0,4.0,17.0,6.0,11.0,6.0,8.0,13.0,7.0,11.0,7.0,3.0,13.0,6.0,6.0,6.0,11.0,10.0,4.0,7.0,12.0,4.0,12.0,9.0,4.0,3.0,3.0,5.0,5.0,4.0,7.0,5.0,5.0,6.0,6.0,7.0,9.0,7.0,6.0,11.0,9.0,8.0,7.0,7.0,10.0,4.0,5.0,7.0,4.0,5.0,6.0,3.0,6.0,2.0,4.0,1.0,4.0,5.0,4.0,4.0,4.0,3.0,3.0,1.0,1.0,3.0,4.0,4.0,2.0,1.0,3.0,1.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,188,342,59,0,66,67,55,45,40,37,44,20,27,35,42,30,22,18,15,14,6,4,2,0,0,0,584,3,1,1,0,584,3,1,1,0,196,3,17,60,13,4,108,188,0,365,222,2,0,2,5,3,0,1,0,110,1,0,8,459,0,32,45,137,38,0,2,155,180,0,69,100,4,1,0,415,0,2.6681614349775784,0.0,3.5632911392405062,0.0,6.606112054329372,6,16,42,11,0,0,62,40,0,8,8,5,10,17,24,20,18,24,15,10,7,4,4,3,0,173,4,150,27,150,27,25,152,148,29,15,162,91,86,0,177,153,24,127,50,116,11,19,158,131,46,40,137,79,98,102,75,2,175,30,108,38,1,0,145,32,0,1,2,0,0,0,0,20,0,0,3,151,0,1.7909604519774012,1.536723163841808,1.0,1.0,1.0,51.067796610169495 +50111,Darién,Chepigana,Taimatí,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,70,38,98,3,19,0,1,17,1,0,0,3,116,4,5,10,0,1,0,0,103,34,1,0,1,123,12,1,1,0,2,139,0,36,11,9,9,16,0,0,3,133,2,1,0,14,119,1,1,3,0,1,129,4,0,0,0,6,0,1,71,0,1,65,1,0,131,0,0,0,0,0,7,0,0,1,0,0,220,5.877862595419847,21.541984732824428,6.793893129770993,23.85496183206107,1.0,2.762589928057554,1.6474820143884892,139,99,278,29,47,2,2,3,1,13,1,1,3,0,10,10,1,0,0,0,5,271,285,0,27,529,0,63,493,0,440,116,0,249,307,0,235,14,253,54,0,55,19,20,0,31,37,43,32,42,99,0,0,0,36,24,30,19,21,41,0,1,0,2,1,0,1,2,0,0,0,0,0,0,0,0,243,2,204,0,0,0,2,2,116,58,16,12,27,40,2,0,4,0,134,37,0,339,279,15,8,0,201,0,1,19,0,18,15,2,157,0,0,0,401,45,0,0,0,3,0,0,0,0,0,1,3,4,1,18,164,37,2,15,529,35,15,4,9,6,7,6,4,1,2,0,0,0,0,0,12.0,17.0,19.0,14.0,16.0,20.0,15.0,20.0,18.0,18.0,19.0,20.0,25.0,12.0,14.0,12.0,9.0,10.0,11.0,11.0,13.0,14.0,3.0,11.0,9.0,11.0,6.0,6.0,5.0,6.0,3.0,4.0,2.0,7.0,6.0,4.0,3.0,7.0,3.0,7.0,5.0,7.0,10.0,6.0,11.0,6.0,4.0,6.0,4.0,3.0,10.0,3.0,3.0,4.0,4.0,4.0,3.0,3.0,7.0,3.0,6.0,3.0,8.0,4.0,3.0,4.0,1.0,2.0,2.0,2.0,2.0,4.0,6.0,0.0,4.0,2.0,2.0,1.0,0.0,2.0,0.0,1.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,259,313,46,0,78,91,90,53,50,34,22,24,39,23,24,20,24,11,16,7,6,5,1,0,0,0,597,5,8,8,0,597,5,8,8,0,184,0,36,53,14,0,73,258,0,457,152,9,0,1,4,0,0,0,0,149,250,0,28,186,0,29,20,61,19,0,1,78,410,0,16,27,2,0,0,573,0,3.6,0.0,4.985185185185185,0.0,4.697411003236246,8,5,21,5,0,0,23,77,0,40,12,14,18,24,9,8,5,3,3,3,0,0,0,0,0,127,12,27,112,46,93,18,121,13,126,0,139,26,113,2,137,90,49,43,96,25,18,8,131,9,130,4,135,103,36,63,76,3,136,21,80,35,3,0,124,15,0,1,2,0,0,0,0,23,48,0,1,64,0,2.4388489208633093,2.0071942446043165,0.0,1.0,1.0,51.60431654676259 +50112,Darién,Chepigana,Tucutí,349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,79,24,136,115,3,2,124,0,10,0,119,0,1,78,28,1,26,0,1,8,0,114,11,12,11,98,165,86,0,0,0,3,254,0,5,5,1,75,9,0,0,7,239,8,0,0,60,173,0,2,16,0,3,221,0,0,0,0,33,0,11,64,0,1,165,13,111,46,6,0,0,0,0,91,0,0,0,0,0,349,6.969325153374233,14.1840490797546,6.969325153374233,14.153374233128837,1.0,2.8346456692913384,1.7834645669291338,254,163,474,19,142,5,21,8,0,26,7,1,4,0,18,9,2,2,6,0,2,236,781,0,12,1005,0,21,996,0,819,198,0,418,599,0,414,4,468,131,0,131,34,23,1,36,56,70,56,58,164,0,0,0,52,63,83,34,47,99,0,2,2,3,1,0,0,1,0,0,1,0,0,0,0,0,367,16,441,0,1,2,13,4,241,143,20,33,148,10,12,0,9,1,192,2,1,578,546,17,16,0,324,4,0,13,1,38,17,0,706,11,0,0,715,107,0,0,0,1,0,1,0,0,2,7,4,3,2,26,255,8,5,71,740,197,85,37,24,8,7,5,8,2,0,0,0,0,0,11,22.0,26.0,34.0,25.0,29.0,33.0,32.0,27.0,44.0,28.0,41.0,34.0,31.0,29.0,28.0,24.0,24.0,16.0,21.0,27.0,19.0,17.0,18.0,12.0,8.0,14.0,14.0,9.0,11.0,18.0,11.0,15.0,12.0,14.0,10.0,12.0,7.0,8.0,13.0,12.0,18.0,9.0,9.0,5.0,10.0,7.0,13.0,11.0,6.0,13.0,7.0,8.0,17.0,9.0,11.0,3.0,3.0,8.0,6.0,6.0,8.0,6.0,7.0,3.0,8.0,8.0,2.0,7.0,4.0,2.0,6.0,6.0,10.0,7.0,7.0,4.0,4.0,2.0,0.0,2.0,1.0,1.0,3.0,1.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,463,577,84,0,136,164,163,112,74,66,62,52,51,50,52,26,32,23,36,12,6,4,2,0,1,0,1107,15,2,0,0,1107,16,1,0,0,334,2,2,89,17,2,216,462,0,1034,75,15,0,0,0,0,0,0,0,879,20,0,3,222,0,104,14,62,31,0,0,27,886,0,26,44,5,0,0,1049,0,3.3402061855670104,0.0,4.670498084291188,0.0,5.040035587188612,37,8,20,11,0,0,4,174,0,22,51,42,41,47,25,8,4,8,4,1,0,0,0,0,1,183,71,82,172,68,186,18,236,85,169,5,249,34,220,1,253,61,193,80,174,66,14,4,250,2,252,1,253,212,42,87,167,6,248,39,127,85,3,0,188,66,0,0,0,0,0,0,0,170,6,0,0,78,0,2.2755905511811023,2.1496062992125986,0.0,1.0,1.0,49.57086614173228 +50201,Darién,Pinogana,El Real de Santa María,436,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,98,148,48,238,8,26,3,0,15,4,214,0,2,40,1,15,19,0,3,150,0,105,36,2,0,1,290,3,0,0,0,1,294,0,75,22,0,21,25,0,1,14,269,9,0,1,88,205,0,0,0,0,1,262,2,0,0,27,3,0,65,61,0,11,157,0,222,0,0,0,0,0,0,66,0,2,2,2,0,438,6.9774774774774775,23.83783783783784,6.9774774774774775,23.81981981981982,1.010204081632653,3.336734693877551,2.1496598639455784,298,175,444,11,93,9,9,6,0,22,2,1,8,0,21,5,2,2,7,0,1,672,330,0,59,943,0,631,371,0,866,136,0,334,668,0,314,20,571,97,0,100,14,19,0,31,42,47,48,46,197,0,0,0,42,45,135,19,46,130,1,6,2,1,5,4,11,9,0,0,2,0,0,0,0,0,345,1,514,0,0,0,1,38,201,262,6,7,132,36,10,5,12,1,140,9,0,572,506,90,48,4,185,5,1,12,0,50,32,4,346,0,0,0,689,138,0,6,3,22,0,2,0,0,0,6,29,21,10,45,140,31,18,46,707,108,31,36,33,38,54,22,26,12,4,3,4,0,0,0,13.0,19.0,14.0,30.0,21.0,26.0,22.0,21.0,33.0,19.0,23.0,34.0,23.0,25.0,23.0,24.0,24.0,13.0,20.0,19.0,22.0,16.0,22.0,16.0,10.0,12.0,19.0,11.0,8.0,12.0,11.0,9.0,9.0,21.0,9.0,9.0,11.0,13.0,16.0,13.0,14.0,8.0,11.0,13.0,8.0,9.0,8.0,13.0,12.0,10.0,7.0,11.0,11.0,7.0,11.0,13.0,7.0,13.0,4.0,9.0,10.0,9.0,9.0,7.0,8.0,10.0,11.0,13.0,7.0,3.0,7.0,4.0,6.0,5.0,3.0,2.0,8.0,6.0,4.0,2.0,4.0,2.0,2.0,1.0,2.0,2.0,3.0,1.0,5.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,346,611,121,0,97,121,128,100,86,62,59,62,54,52,47,46,43,44,25,22,11,13,4,1,1,0,1020,39,10,9,0,1020,41,8,9,0,356,1,2,78,14,0,281,346,0,778,252,48,0,68,2,0,0,0,0,362,19,0,10,617,0,52,21,131,133,13,3,166,559,0,93,107,39,1,1,837,0,3.0126582278481013,0.0,4.151079136690647,0.0,6.1688311688311686,24,10,39,48,5,1,49,122,0,39,16,15,38,38,35,35,26,24,9,7,5,5,4,1,0,292,6,186,112,195,103,52,246,198,100,22,276,156,142,25,273,204,94,170,128,167,3,38,260,191,107,23,275,113,185,64,234,2,296,64,165,64,5,0,193,105,0,11,1,0,0,0,0,77,4,0,2,203,0,1.919463087248322,1.6979865771812082,0.0,1.0,1.0,52.14093959731544 +50202,Darién,Pinogana,Boca de Cupe,357,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,114,113,147,12,44,18,0,50,1,175,0,3,36,2,1,54,0,1,0,0,116,141,9,6,0,233,30,0,0,0,9,272,0,35,10,25,7,9,0,0,14,241,15,1,1,28,228,1,6,1,1,7,255,0,3,0,0,14,0,9,81,0,2,178,2,0,0,0,0,0,0,8,246,0,18,0,0,0,358,0.0,0.0,0.0,0.0,1.0,2.9705882352941178,1.8198529411764703,272,173,474,37,112,1,5,5,3,21,8,4,2,0,24,7,4,1,5,0,4,488,527,0,37,978,0,320,695,0,767,248,0,363,652,0,360,3,503,149,0,149,20,28,0,58,65,104,64,58,151,0,0,0,48,64,61,28,42,55,0,0,4,5,6,1,1,0,1,0,2,0,0,0,0,0,400,0,423,0,0,0,0,4,203,195,7,14,70,14,4,0,16,0,285,11,0,592,525,52,68,0,240,6,0,34,0,58,21,11,328,0,0,0,748,67,0,1,2,3,0,2,0,0,0,7,8,10,9,39,225,5,7,90,765,83,62,41,58,31,31,15,12,9,6,1,2,1,0,0,27.0,26.0,26.0,23.0,30.0,47.0,24.0,28.0,29.0,34.0,27.0,42.0,25.0,32.0,26.0,23.0,16.0,25.0,18.0,16.0,20.0,16.0,14.0,19.0,14.0,15.0,15.0,9.0,18.0,10.0,15.0,14.0,8.0,12.0,13.0,6.0,14.0,16.0,9.0,14.0,12.0,8.0,15.0,10.0,9.0,15.0,15.0,8.0,8.0,6.0,14.0,6.0,8.0,6.0,8.0,14.0,9.0,6.0,5.0,5.0,7.0,3.0,13.0,10.0,6.0,6.0,8.0,2.0,8.0,4.0,7.0,2.0,4.0,6.0,4.0,3.0,3.0,1.0,2.0,1.0,1.0,1.0,3.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,446,595,76,0,132,162,152,98,83,67,62,59,54,52,42,39,39,28,23,10,7,6,1,1,0,0,928,71,81,37,0,928,71,81,37,0,380,0,65,39,13,0,174,446,0,717,254,146,0,15,0,0,0,0,0,521,105,0,18,458,0,22,34,124,108,7,0,195,627,0,43,61,7,1,0,1005,0,3.150259067357513,0.0,4.419607843137255,0.0,4.525514771709937,7,15,31,50,2,0,51,116,0,27,20,30,22,50,36,24,14,19,11,11,4,2,2,0,0,252,20,136,136,131,141,15,257,131,141,7,265,88,184,0,272,165,107,140,132,121,19,10,262,5,267,8,264,214,58,78,194,2,270,54,142,74,2,0,220,52,0,1,0,0,0,0,0,98,21,0,5,147,0,2.176470588235294,1.9301470588235292,1.3333333333333333,1.0555555555555556,1.0555555555555556,49.8235294117647 +50203,Darién,Pinogana,Paya,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,104,33,7,32,50,0,22,0,0,0,16,49,1,5,72,0,1,0,0,62,49,19,13,1,69,75,0,0,0,0,144,4,10,2,0,5,0,0,0,0,139,5,0,0,0,122,0,4,3,4,11,118,0,1,0,0,16,9,1,3,0,12,123,5,0,0,0,0,0,0,30,114,0,0,0,0,0,165,0.0,0.0,0.0,0.0,1.0,2.1597222222222223,1.0902777777777777,144,110,451,23,70,4,6,11,1,26,5,7,4,0,8,2,4,0,0,0,3,262,455,0,21,696,0,113,604,0,519,198,0,311,406,0,307,4,273,133,0,135,15,35,0,28,35,69,44,53,92,0,0,0,40,37,63,17,25,26,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,258,2,305,0,1,0,1,0,151,136,3,15,17,5,0,0,0,0,236,1,0,459,403,15,37,0,150,0,0,57,0,42,13,2,361,1,0,0,536,27,0,0,0,2,0,0,0,0,0,3,3,2,2,8,200,0,0,42,721,39,33,16,17,8,11,7,4,2,0,0,2,1,0,1,36.0,45.0,30.0,34.0,30.0,24.0,28.0,17.0,23.0,30.0,24.0,30.0,29.0,18.0,19.0,19.0,18.0,22.0,19.0,14.0,19.0,17.0,12.0,9.0,12.0,9.0,12.0,8.0,16.0,6.0,11.0,11.0,11.0,8.0,7.0,7.0,6.0,14.0,11.0,9.0,3.0,9.0,4.0,9.0,6.0,6.0,5.0,7.0,4.0,5.0,5.0,7.0,5.0,5.0,2.0,2.0,3.0,4.0,3.0,1.0,3.0,3.0,5.0,4.0,3.0,1.0,0.0,3.0,3.0,1.0,1.0,4.0,2.0,4.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,417,420,25,0,175,122,120,92,69,51,48,47,31,27,24,13,18,8,14,1,0,0,0,2,0,0,701,86,11,64,0,701,89,8,64,0,285,0,9,6,9,0,137,416,0,659,89,114,0,344,0,0,0,0,0,174,14,0,287,43,0,3,24,1,7,0,1,10,816,0,7,9,1,0,0,845,0,3.517509727626459,0.0,5.011764705882353,0.0,3.766821345707657,2,5,1,2,0,0,2,132,0,24,9,15,25,23,10,7,17,8,2,1,0,2,1,0,0,106,38,19,125,10,134,7,137,7,137,0,144,22,122,0,144,53,91,24,120,12,12,3,141,2,142,1,143,132,12,68,76,3,141,8,86,46,4,0,124,20,0,54,0,0,0,0,0,28,6,0,44,12,0,3.1875,2.798611111111111,1.0,1.1,1.1,43.84722222222222 +50204,Darién,Pinogana,Pinogana,172,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,100,13,100,0,3,2,0,8,0,108,0,0,2,0,1,2,0,0,76,0,29,3,2,3,0,110,3,0,0,0,0,113,0,35,14,0,6,4,0,0,4,105,4,0,0,44,67,0,0,0,0,2,113,0,0,0,0,0,0,17,69,0,1,26,0,0,0,0,0,0,0,16,52,0,6,39,0,0,173,0.0,0.0,0.0,0.0,1.0176991150442478,3.752212389380531,2.707964601769912,116,75,176,14,70,0,1,0,1,14,2,2,6,0,13,6,0,1,12,1,0,340,103,0,47,396,0,270,173,0,366,77,0,154,289,0,138,16,272,17,0,28,11,18,4,19,22,18,22,26,89,0,0,0,25,27,37,18,19,48,0,0,1,1,6,1,1,2,0,0,0,0,0,0,0,0,163,9,206,0,1,2,1,5,82,98,10,11,42,6,8,0,15,0,94,3,0,253,224,37,13,0,107,4,1,6,0,23,33,0,164,0,0,0,318,55,0,0,1,4,0,0,0,0,0,5,7,8,1,18,92,11,5,25,310,47,11,28,22,11,26,6,6,7,2,1,0,0,0,0,12.0,8.0,6.0,8.0,10.0,11.0,12.0,13.0,11.0,8.0,12.0,11.0,8.0,9.0,9.0,14.0,9.0,11.0,3.0,9.0,9.0,9.0,10.0,9.0,8.0,7.0,6.0,8.0,7.0,5.0,6.0,4.0,8.0,7.0,5.0,8.0,6.0,8.0,6.0,1.0,5.0,2.0,9.0,1.0,6.0,7.0,2.0,1.0,6.0,3.0,5.0,7.0,3.0,2.0,1.0,7.0,3.0,3.0,2.0,3.0,6.0,2.0,3.0,3.0,2.0,4.0,1.0,2.0,5.0,7.0,1.0,2.0,3.0,4.0,2.0,0.0,4.0,3.0,3.0,1.0,4.0,1.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,148,277,52,0,44,55,49,46,45,33,30,29,23,19,18,18,16,19,12,11,7,2,1,0,0,0,445,8,22,2,0,446,9,20,2,0,171,1,3,23,5,0,126,148,0,335,107,35,0,3,0,1,0,0,0,52,78,0,3,340,0,22,25,163,49,0,0,104,114,0,31,75,6,0,0,365,0,3.1666666666666665,0.0,4.039370078740157,0.0,5.752620545073375,10,5,41,18,0,0,23,19,0,10,4,4,12,21,19,15,6,12,5,3,2,2,0,0,0,113,3,94,22,90,26,10,106,93,23,7,109,47,69,0,116,99,17,98,18,97,1,8,108,77,39,10,106,59,57,60,56,0,116,22,50,39,5,0,86,30,0,2,0,1,0,0,0,6,13,0,1,93,0,2.181034482758621,1.9310344827586208,1.0,1.0,1.0,51.741379310344826 +50205,Darién,Pinogana,Púcuro,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,10,50,7,2,2,0,6,0,0,0,7,47,0,1,10,0,2,0,0,25,31,11,0,0,28,39,0,0,0,0,67,1,6,4,0,0,0,0,0,0,66,1,0,0,1,63,0,0,2,0,1,58,0,0,0,0,5,4,0,24,0,6,37,0,0,0,0,1,0,0,4,62,0,0,0,0,0,78,0.0,0.0,0.0,0.0,1.0149253731343284,4.313432835820896,2.776119402985074,68,57,186,14,77,0,2,3,1,16,1,2,0,0,2,0,0,1,1,0,0,196,180,0,17,359,0,141,235,0,308,68,0,137,239,0,137,0,198,41,0,41,11,9,0,13,20,30,23,22,64,0,0,0,8,13,76,10,15,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,152,0,0,0,0,0,62,83,2,5,12,0,3,0,0,0,134,0,0,222,205,11,7,0,99,0,0,32,0,47,17,4,58,0,0,0,280,21,0,0,0,0,0,0,0,0,0,3,1,1,1,0,130,1,1,11,279,44,20,32,21,12,14,4,1,0,0,0,0,0,0,0,14.0,18.0,9.0,10.0,17.0,13.0,10.0,12.0,15.0,8.0,13.0,13.0,9.0,8.0,5.0,12.0,7.0,6.0,7.0,14.0,6.0,9.0,11.0,7.0,7.0,5.0,3.0,7.0,3.0,8.0,5.0,5.0,6.0,5.0,7.0,3.0,4.0,1.0,2.0,5.0,6.0,4.0,2.0,3.0,3.0,2.0,2.0,5.0,3.0,3.0,3.0,5.0,5.0,4.0,5.0,3.0,1.0,4.0,2.0,2.0,1.0,2.0,1.0,2.0,1.0,1.0,3.0,2.0,3.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,174,229,24,0,68,58,48,46,40,26,28,15,18,15,22,12,7,9,7,4,1,2,1,0,0,0,403,11,5,8,0,403,13,3,8,0,146,0,25,6,4,0,72,174,0,329,83,15,0,401,4,0,0,0,0,7,0,0,0,15,0,0,0,9,6,0,0,16,396,0,5,4,1,0,0,417,0,3.8308823529411766,0.0,5.114583333333333,0.0,4.894613583138173,0,0,2,3,0,0,2,61,0,1,2,3,4,8,12,8,10,19,0,1,0,0,0,0,0,61,7,13,55,19,49,27,41,9,59,1,67,21,47,0,68,52,16,36,32,28,8,2,66,2,66,0,68,66,2,33,35,1,67,3,30,35,0,0,63,5,0,60,0,0,0,0,0,1,0,0,0,7,0,3.264705882352941,3.014705882352941,1.0,1.0,1.0,51.39705882352941 +50207,Darién,Pinogana,Yaviza,1911,30,139,10,0,0,0,0,0,0,0,2,0,0,0,313,324,581,129,1125,93,44,5,0,77,3,1181,2,4,49,21,20,59,0,11,580,30,680,34,19,2,2,1292,33,1,0,0,21,1347,0,433,104,33,85,88,0,1,84,1109,149,3,1,700,636,0,5,1,2,3,1267,1,3,19,24,31,2,206,633,0,157,351,0,752,192,0,21,12,7,25,46,72,11,205,4,0,2092,4.1599576271186445,5.291313559322034,4.932203389830509,7.240466101694915,1.0066815144766148,3.207126948775056,2.089829250185597,1358,782,1817,243,327,30,53,58,22,53,26,10,45,0,56,27,19,24,24,4,20,2974,1418,0,430,3962,0,2202,2190,0,3693,699,0,1633,2759,0,1480,153,2334,425,0,432,87,91,12,147,184,223,201,220,642,0,0,3,207,267,339,143,214,678,3,3,43,40,33,56,57,35,17,3,12,0,0,0,0,0,1705,83,1943,0,0,30,27,52,915,762,51,163,573,111,89,15,197,2,729,27,0,2486,2338,298,466,12,840,48,0,79,0,223,193,33,1520,6,0,0,2748,797,3,6,16,143,6,12,0,0,0,53,95,53,35,326,498,125,87,516,3128,336,178,269,232,206,167,99,90,67,30,3,9,2,2,6,99.0,103.0,101.0,129.0,121.0,110.0,92.0,108.0,108.0,122.0,100.0,125.0,128.0,120.0,93.0,82.0,97.0,97.0,81.0,73.0,92.0,66.0,86.0,67.0,62.0,66.0,74.0,49.0,78.0,67.0,60.0,57.0,76.0,56.0,56.0,65.0,48.0,70.0,57.0,39.0,73.0,53.0,40.0,55.0,49.0,43.0,42.0,47.0,36.0,41.0,44.0,47.0,41.0,39.0,43.0,48.0,42.0,36.0,41.0,27.0,28.0,29.0,40.0,33.0,26.0,30.0,30.0,21.0,24.0,23.0,21.0,23.0,21.0,18.0,20.0,22.0,18.0,12.0,16.0,13.0,10.0,10.0,7.0,8.0,6.0,9.0,10.0,8.0,2.0,5.0,1.0,0.0,1.0,0.0,3.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0,1659,2764,401,0,553,540,566,430,373,334,305,279,270,209,214,194,156,128,103,81,41,34,5,7,2,0,4611,40,92,81,0,4615,42,86,81,0,1449,40,322,398,106,12,839,1658,0,2130,2606,88,0,19,274,4,0,1,0,1540,242,0,24,2720,0,254,240,367,300,13,20,710,2920,0,364,604,61,4,1,3790,0,2.7042175360710323,0.0,3.804578904333606,0.0,6.287935323383085,76,72,121,129,4,10,191,755,0,159,76,87,141,195,183,145,100,118,70,34,16,19,8,4,1,1321,37,932,426,950,408,177,1181,1008,350,75,1283,420,938,17,1341,1079,279,690,668,631,59,184,1174,825,533,199,1159,597,761,518,840,7,1351,286,734,304,34,0,988,370,0,8,69,1,0,1,0,314,52,0,10,903,0,1.830633284241532,1.7216494845360826,1.0,1.0285714285714285,1.0285714285714285,48.66642120765832 +50307,Darién,Santa Fe,Río Congo,601,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,24,240,105,242,22,63,4,7,30,1,0,0,19,226,29,3,91,0,1,0,3,341,16,7,2,0,334,33,0,0,0,2,369,0,173,24,1,11,23,0,2,3,324,40,0,0,18,345,0,2,1,0,3,334,0,0,0,0,35,0,3,163,0,71,132,0,0,125,47,56,32,29,2,75,0,0,3,0,0,604,5.017441860465116,17.1453488372093,6.255813953488372,21.05813953488372,1.005420054200542,3.037940379403794,1.867208672086721,372,267,598,47,69,10,6,12,2,26,1,1,17,1,17,28,15,9,9,1,6,650,637,0,50,1237,0,258,1029,0,1060,227,0,377,910,0,365,12,727,183,0,185,19,19,0,35,80,77,78,66,347,1,2,1,37,59,87,25,39,94,0,2,5,6,8,6,3,3,0,0,3,0,0,0,0,0,536,6,567,0,0,0,5,2,208,290,21,46,69,15,17,3,12,0,341,85,0,786,643,28,136,4,316,32,0,25,1,54,73,10,311,0,0,0,969,124,1,2,1,10,0,2,0,0,3,8,4,6,12,30,260,14,8,197,933,132,63,70,95,55,25,19,12,7,6,1,5,4,2,0,41.0,31.0,33.0,37.0,30.0,24.0,38.0,27.0,32.0,27.0,28.0,35.0,30.0,27.0,22.0,25.0,27.0,32.0,27.0,22.0,24.0,20.0,24.0,27.0,21.0,20.0,19.0,27.0,22.0,17.0,18.0,14.0,29.0,24.0,16.0,13.0,12.0,18.0,10.0,11.0,21.0,16.0,14.0,15.0,13.0,18.0,13.0,11.0,11.0,20.0,18.0,17.0,16.0,17.0,18.0,7.0,16.0,14.0,17.0,6.0,6.0,8.0,8.0,10.0,3.0,5.0,3.0,11.0,6.0,4.0,10.0,6.0,6.0,9.0,8.0,4.0,2.0,5.0,4.0,3.0,5.0,2.0,6.0,2.0,4.0,2.0,2.0,2.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,462,852,115,0,172,148,142,133,116,105,101,64,79,73,86,60,35,29,39,18,19,6,4,0,0,0,1393,5,0,31,0,1393,5,0,31,0,460,0,11,162,15,1,318,462,0,681,739,9,0,0,40,5,0,0,1,448,121,1,7,806,0,2,44,160,15,1,3,603,601,0,24,85,2,0,0,1318,0,3.218683651804671,0.0,4.4875,0.0,4.941217634709587,2,13,46,8,1,1,155,146,0,37,24,35,41,65,59,34,21,19,12,8,2,7,5,2,0,354,18,64,308,99,273,37,335,39,333,0,372,90,282,0,372,166,206,83,289,45,38,13,359,20,352,32,340,242,130,189,183,4,368,63,224,74,11,2,342,30,0,0,16,3,0,0,0,87,30,0,2,234,0,2.1016042780748663,1.7192513368983957,1.0,1.0,1.0,49.803763440860216 +50314,Darién,Santa Fe,Cucunatí,548,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,97,205,44,274,28,28,1,0,14,1,195,0,3,56,4,2,86,0,0,0,11,328,0,6,0,1,330,11,0,0,0,5,346,0,134,22,0,37,14,0,0,3,287,56,0,0,77,268,0,0,0,0,1,318,0,1,0,0,27,0,14,191,0,23,118,0,1,223,64,0,4,5,2,45,0,2,0,0,0,553,4.881944444444445,14.9375,6.729166666666667,23.041666666666668,1.0,3.078034682080925,2.0260115606936417,346,213,466,37,69,4,7,4,4,18,2,0,20,0,10,13,9,0,12,4,9,591,492,0,48,1035,0,405,678,0,894,189,0,303,780,0,287,16,641,139,0,140,12,19,4,49,44,65,50,62,224,0,0,0,55,58,84,22,29,114,1,0,9,11,15,7,8,1,0,0,0,0,0,0,0,0,528,3,387,0,1,0,0,3,153,196,33,2,102,48,13,4,22,0,259,83,0,652,538,38,179,2,271,9,0,32,0,39,50,3,183,0,0,0,752,145,0,0,7,14,0,0,0,0,0,4,9,9,4,69,196,26,3,211,670,107,51,132,103,60,26,10,13,9,6,2,0,1,0,0,23.0,25.0,31.0,28.0,34.0,29.0,23.0,31.0,24.0,24.0,31.0,32.0,23.0,23.0,20.0,19.0,24.0,25.0,22.0,21.0,20.0,19.0,20.0,18.0,24.0,12.0,21.0,14.0,20.0,19.0,18.0,17.0,14.0,17.0,9.0,14.0,24.0,16.0,11.0,19.0,7.0,13.0,15.0,12.0,15.0,13.0,9.0,12.0,13.0,8.0,14.0,8.0,13.0,8.0,10.0,8.0,9.0,12.0,7.0,10.0,6.0,7.0,7.0,5.0,9.0,4.0,4.0,4.0,6.0,5.0,5.0,3.0,3.0,5.0,3.0,3.0,6.0,2.0,4.0,4.0,2.0,3.0,7.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,401,707,82,0,141,131,129,111,101,86,75,84,62,55,53,46,34,23,19,19,12,4,5,0,0,0,1168,3,7,12,0,1168,3,7,12,0,340,8,77,149,26,0,189,401,0,526,657,7,0,1,36,4,0,0,0,230,21,0,12,886,0,0,63,98,6,0,0,274,749,0,49,73,6,0,0,1062,0,3.0397022332506203,0.0,4.147887323943662,0.0,5.439495798319328,0,17,33,2,0,0,80,214,0,14,17,20,50,63,76,33,18,26,15,5,6,2,1,0,0,334,12,170,176,174,172,46,300,160,186,6,340,166,180,0,346,230,116,137,209,122,15,25,321,48,298,38,308,183,163,203,143,1,345,81,181,71,13,0,290,56,0,1,11,1,0,0,0,54,5,0,3,271,0,1.884393063583815,1.5549132947976878,0.0,1.0,1.0,47.21387283236994 +50315,Darién,Santa Fe,Río Congo Arriba,990,0,5,2,0,0,0,0,0,0,0,0,0,0,0,0,217,388,54,577,28,28,0,0,26,0,369,0,5,168,6,1,108,0,2,0,11,619,20,7,2,0,617,38,0,0,0,4,659,0,183,49,1,42,63,0,0,19,571,69,0,0,189,462,1,2,0,5,0,636,0,0,0,0,23,0,48,425,1,154,31,0,0,427,162,6,9,8,0,42,0,3,2,0,0,997,6.604414261460102,22.95755517826825,6.913412563667233,23.73005093378608,1.0091047040971168,3.138088012139605,1.9969650986342944,665,428,723,95,95,12,14,7,6,24,5,3,25,0,38,27,5,7,15,13,7,1292,628,0,135,1785,0,713,1207,0,1674,246,0,507,1413,0,480,27,1199,214,0,219,17,16,1,69,82,124,98,108,465,0,0,1,63,109,121,64,61,181,2,5,17,21,21,20,22,9,1,1,2,0,0,0,0,0,873,22,795,0,2,11,6,7,270,447,28,43,137,34,28,11,66,1,606,6,2,1148,954,60,327,11,236,15,0,240,2,62,108,15,809,3,0,0,1387,241,1,6,8,44,1,2,0,0,3,14,23,18,17,61,322,43,42,352,1369,215,113,105,82,77,59,24,19,21,11,2,2,0,0,3,51.0,45.0,42.0,44.0,32.0,38.0,36.0,45.0,38.0,41.0,37.0,44.0,27.0,35.0,31.0,36.0,42.0,35.0,29.0,35.0,28.0,35.0,36.0,35.0,31.0,30.0,36.0,43.0,33.0,42.0,38.0,27.0,24.0,23.0,23.0,28.0,30.0,36.0,26.0,16.0,26.0,27.0,32.0,23.0,22.0,22.0,23.0,22.0,20.0,24.0,24.0,24.0,22.0,23.0,26.0,17.0,22.0,23.0,21.0,21.0,18.0,17.0,12.0,11.0,14.0,6.0,10.0,16.0,11.0,11.0,9.0,6.0,9.0,9.0,13.0,7.0,13.0,5.0,11.0,6.0,9.0,5.0,3.0,3.0,1.0,6.0,1.0,2.0,2.0,1.0,3.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,586,1333,183,0,214,198,174,177,165,184,135,136,130,111,119,104,72,54,46,42,21,12,5,3,0,0,2082,8,4,8,0,2082,8,4,8,0,712,7,32,233,39,5,488,586,0,667,1429,6,0,1,39,3,0,0,0,210,2,0,4,1843,0,16,127,190,10,11,2,378,1368,0,82,170,9,0,0,1841,0,2.6386666666666665,0.0,3.467391304347826,0.0,5.747383444338725,4,49,63,3,5,1,130,410,0,125,73,67,92,90,72,45,28,24,14,18,10,6,0,0,1,650,15,330,335,414,251,115,550,330,335,22,643,175,490,0,665,474,191,248,417,195,53,74,591,197,468,152,513,413,252,450,215,6,659,150,405,93,17,0,545,120,0,0,11,0,0,0,0,37,1,0,3,613,0,1.7263157894736842,1.4345864661654135,0.0,1.0,1.0,49.609022556390975 +50316,Darién,Santa Fe,Santa Fe,2287,42,103,17,0,0,0,0,2,0,0,0,7,0,0,3,681,860,135,1444,100,74,1,0,59,1,1316,107,5,132,5,14,100,0,0,586,42,936,95,14,0,6,1614,41,2,0,0,22,1679,0,366,134,86,109,75,0,6,72,1472,129,0,0,914,732,0,22,0,3,8,1592,2,14,1,0,70,0,263,957,0,258,201,0,620,805,65,2,2,16,47,37,1,65,17,2,0,2458,3.706040268456376,16.265771812080537,5.373154362416107,21.508724832214764,1.004764740917213,3.0655151876116737,1.8302561048243,1694,998,2190,210,342,26,44,46,17,80,20,12,68,0,48,18,15,22,23,2,26,4052,1244,0,949,4347,0,2795,2501,0,4564,732,0,1858,3438,0,1740,118,2933,505,0,514,79,111,7,211,245,274,234,240,893,0,0,3,261,270,420,143,198,687,2,6,79,72,89,81,82,62,7,1,23,0,0,1,1,0,2147,143,2221,0,4,33,25,37,1021,955,98,110,806,160,211,26,125,6,895,17,0,3038,2709,353,689,22,998,110,1,73,0,119,244,22,1825,9,0,0,3313,909,4,13,56,189,7,19,1,0,0,49,117,113,96,309,660,253,112,581,3626,419,254,293,330,247,207,130,116,56,29,8,14,3,6,9,112.0,112.0,118.0,109.0,129.0,131.0,115.0,141.0,147.0,122.0,121.0,112.0,127.0,112.0,99.0,119.0,104.0,107.0,92.0,95.0,93.0,102.0,113.0,99.0,90.0,90.0,79.0,104.0,81.0,110.0,92.0,85.0,80.0,98.0,66.0,72.0,74.0,66.0,67.0,75.0,75.0,67.0,61.0,67.0,61.0,69.0,45.0,63.0,54.0,58.0,58.0,48.0,67.0,47.0,35.0,44.0,41.0,36.0,38.0,46.0,36.0,25.0,45.0,38.0,32.0,43.0,30.0,32.0,39.0,17.0,33.0,19.0,21.0,19.0,15.0,26.0,14.0,13.0,19.0,12.0,11.0,14.0,9.0,5.0,12.0,7.0,6.0,5.0,1.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1807,3509,431,0,580,656,571,517,497,464,421,354,331,289,255,205,176,161,107,84,51,19,5,4,0,0,5640,42,14,51,0,5642,46,8,51,0,1650,33,259,613,134,15,1236,1807,0,2251,3441,55,0,24,117,8,0,1,0,845,608,0,23,4121,0,87,315,385,101,7,5,474,4373,0,515,679,45,1,2,4505,0,2.675355450236967,0.0,3.605104096709201,0.0,6.36923612319471,34,106,102,38,2,3,168,1241,0,187,130,135,188,266,207,161,100,143,62,47,23,10,16,11,1,1650,44,1137,557,1207,487,167,1527,1182,512,140,1554,585,1109,27,1667,1422,272,899,795,700,199,313,1381,813,881,346,1348,731,963,595,1099,4,1690,330,1028,296,40,2,1199,495,0,4,23,2,0,0,0,179,128,0,7,1351,0,1.7912735849056605,1.5972877358490567,1.0,1.0535714285714286,1.0535714285714286,47.26918536009445 +60101,Herrera,Chitré,Chitré,3748,23,291,10,4,1,0,3,0,0,0,0,4,0,0,2543,631,15,4,3159,30,1,0,0,3,0,3171,0,4,15,0,0,3,0,0,2787,375,22,0,1,1,7,3089,6,34,0,0,64,3193,5,348,94,198,201,33,0,818,684,1614,68,7,2,3161,5,6,16,0,5,0,2584,84,511,8,4,0,2,2794,382,4,10,2,1,3100,0,0,0,0,0,0,0,0,90,2,1,3969,115,6.7941935483870965,22.988064516129032,6.794838709677419,23.07483870967742,1.0075164422173504,4.286877544628876,2.6761666144691514,3221,1669,2625,117,455,182,112,114,62,129,39,50,197,50,213,63,40,59,67,78,44,8004,741,0,4975,3770,0,7301,1444,0,8399,346,0,2356,6389,0,1498,858,6217,172,0,192,117,91,29,112,149,168,140,145,743,2,4,109,173,271,530,215,300,1427,3,34,196,250,470,631,1114,444,185,16,425,0,1,5,54,0,4104,242,3812,0,6,95,43,1292,1384,906,146,84,2967,287,356,106,471,15,88,4,4,4234,4788,1320,1457,132,1170,172,0,25,22,4,185,20,2270,184,0,0,2786,2310,120,53,258,1980,169,427,55,0,22,507,1024,550,274,796,93,412,203,465,3051,402,219,351,665,793,954,569,700,388,244,144,146,66,146,184,74.0,48.0,76.0,79.0,83.0,121.0,86.0,93.0,120.0,84.0,123.0,96.0,109.0,100.0,117.0,111.0,108.0,91.0,96.0,87.0,141.0,122.0,131.0,132.0,136.0,165.0,122.0,136.0,129.0,98.0,134.0,122.0,140.0,116.0,117.0,135.0,120.0,105.0,131.0,98.0,107.0,131.0,130.0,128.0,90.0,104.0,128.0,114.0,113.0,95.0,101.0,118.0,134.0,103.0,126.0,137.0,111.0,127.0,129.0,105.0,106.0,97.0,104.0,111.0,127.0,113.0,120.0,103.0,99.0,96.0,109.0,94.0,76.0,71.0,68.0,66.0,66.0,77.0,58.0,61.0,31.0,44.0,46.0,37.0,44.0,47.0,27.0,28.0,27.0,19.0,19.0,11.0,20.0,10.0,5.0,3.0,5.0,1.0,3.0,4.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1409,5899,1714,0,360,504,545,493,662,650,629,589,586,554,582,609,545,531,418,328,202,148,65,16,6,0,8329,303,384,6,0,8345,430,241,6,0,1454,136,103,2472,412,155,2882,1408,0,1928,6679,415,0,18,89,7,0,0,0,2,0,0,81,8825,0,318,228,274,13,21,14,960,7194,0,2525,2096,1350,65,23,2963,0,1.5757575757575757,0.0,2.261031907671419,0.0,11.380846818887164,137,95,123,6,10,10,411,2429,0,94,60,41,92,191,265,344,251,497,333,222,192,205,141,240,49,3154,67,3105,116,2986,235,639,2582,3049,172,2094,1127,1918,1303,1363,1858,3097,124,3004,217,2457,547,1945,1276,2677,544,2196,1025,422,2799,311,2910,40,3181,722,1584,770,145,8,1879,1342,0,8,24,2,0,0,0,1,0,0,28,3158,0,1.3112418705481572,1.482812016104057,1.0869565217391304,1.0410958904109588,1.0410958904109588,55.040981061782055 +60102,Herrera,Chitré,La Arena,3457,17,299,3,0,0,0,0,0,0,0,1,0,0,0,1657,1241,36,4,2903,31,1,0,0,3,0,2924,0,1,4,0,1,8,0,0,2643,251,32,2,9,0,1,2883,16,7,0,0,32,2938,0,317,93,134,254,40,0,640,510,1649,134,5,0,2869,5,32,22,0,7,3,2596,58,263,18,0,0,3,1925,984,2,26,1,0,2886,0,12,2,0,0,0,0,0,33,4,1,3344,433,6.898550724637682,22.16149068322981,6.916149068322981,22.41407867494824,1.0197413206262764,3.706943498978897,2.426140231449966,2996,1757,2637,237,503,118,115,91,56,113,26,22,104,5,163,92,28,57,54,37,39,7485,915,0,3388,5012,0,6430,1970,0,7955,445,0,2397,6003,0,1871,526,5835,168,0,185,122,123,42,160,161,186,195,167,1432,1,5,41,213,379,597,242,382,1461,8,64,177,214,350,389,505,304,107,18,159,1,3,1,6,0,3965,245,3448,0,3,113,35,634,1412,1166,159,77,2706,374,485,142,337,16,106,8,0,4230,4550,984,1697,149,1274,47,0,20,3,4,265,36,2034,59,0,0,3844,2158,42,87,191,1058,109,161,8,0,3,227,569,367,254,861,83,877,318,651,3366,653,251,431,662,798,1083,431,471,305,121,43,57,16,33,59,92.0,86.0,89.0,113.0,122.0,129.0,131.0,125.0,123.0,112.0,141.0,124.0,97.0,105.0,122.0,110.0,106.0,115.0,132.0,118.0,120.0,137.0,151.0,125.0,131.0,185.0,131.0,124.0,132.0,107.0,124.0,111.0,129.0,140.0,123.0,143.0,112.0,139.0,117.0,116.0,110.0,117.0,127.0,111.0,104.0,121.0,120.0,112.0,100.0,112.0,111.0,119.0,124.0,121.0,109.0,109.0,122.0,98.0,107.0,105.0,118.0,97.0,103.0,95.0,94.0,84.0,75.0,75.0,79.0,60.0,70.0,47.0,58.0,55.0,65.0,64.0,59.0,36.0,33.0,35.0,33.0,24.0,18.0,27.0,24.0,14.0,19.0,15.0,11.0,7.0,7.0,9.0,5.0,5.0,2.0,5.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1711,5944,1125,0,502,620,589,581,664,679,627,627,569,565,584,541,507,373,295,227,126,66,28,6,4,0,8570,111,89,10,0,8578,127,65,10,0,2042,138,286,1942,275,111,2276,1710,0,4450,4216,114,0,60,218,23,0,2,0,5,0,0,87,8385,0,196,178,891,71,12,5,1419,6008,0,2238,2524,693,44,16,3265,0,1.63615903975994,0.0,2.2690246516613075,0.0,9.490660592255123,71,74,361,38,7,3,512,1930,0,111,87,41,115,253,307,400,261,545,328,182,107,122,54,68,15,2955,41,2860,136,2813,183,529,2467,2857,139,1327,1669,1947,1049,895,2101,2833,163,2783,213,1830,953,1365,1631,2232,764,1594,1402,73,2923,106,2890,20,2976,538,1712,664,82,1,1955,1041,0,11,51,6,0,1,0,0,0,0,23,2904,0,1.4114114114114114,1.5181848515181848,1.1176470588235294,1.0551181102362204,1.0551181102362204,51.56542056074766 +60103,Herrera,Chitré,Monagrillo,7438,37,72,6,1,0,0,2,0,0,0,0,5,0,0,5212,875,290,24,6276,101,1,0,0,19,4,6367,0,4,8,2,3,16,0,1,5207,1083,88,7,2,0,14,6300,10,23,1,0,67,6401,0,442,175,276,206,53,0,2830,784,2711,66,8,2,6262,25,12,81,0,21,0,5064,55,1258,20,1,0,3,5103,1245,1,50,0,2,6323,0,2,2,0,0,0,0,9,49,14,2,7396,165,6.653596837944664,19.44300395256917,6.71905138339921,19.96584980237154,1.0110920168723636,3.7473832213716607,2.4158725199187625,6477,3838,6256,555,919,295,234,152,119,227,63,71,176,37,329,111,98,107,96,69,68,16648,1717,0,8745,9620,0,15041,3324,0,17340,1025,0,5823,12542,0,4628,1195,12232,310,0,344,330,301,56,367,398,566,433,470,2168,0,3,33,554,784,1234,451,739,3307,3,214,349,463,830,1366,1450,526,176,47,383,1,1,2,16,0,9022,448,7084,0,22,184,89,1117,3284,2172,343,168,6409,529,956,266,847,15,138,213,21,9327,10092,2683,3628,286,2595,125,2,49,26,13,546,64,4655,24,0,0,7384,4804,35,235,477,3054,166,382,17,0,25,648,1547,1018,697,1987,367,1364,656,1161,7706,1320,683,879,1176,1357,2307,1142,1354,762,354,102,138,52,63,24,246.0,258.0,289.0,261.0,269.0,297.0,308.0,297.0,310.0,330.0,299.0,303.0,222.0,292.0,280.0,273.0,260.0,265.0,274.0,269.0,278.0,270.0,297.0,275.0,245.0,311.0,330.0,293.0,272.0,310.0,285.0,331.0,339.0,337.0,350.0,310.0,371.0,345.0,364.0,332.0,331.0,293.0,311.0,276.0,266.0,256.0,272.0,238.0,250.0,238.0,224.0,244.0,249.0,219.0,194.0,197.0,211.0,185.0,195.0,198.0,177.0,149.0,158.0,144.0,161.0,141.0,118.0,128.0,121.0,109.0,101.0,99.0,94.0,102.0,110.0,80.0,90.0,69.0,78.0,62.0,69.0,48.0,47.0,25.0,33.0,33.0,28.0,32.0,28.0,13.0,15.0,15.0,15.0,8.0,4.0,4.0,4.0,3.0,6.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4261,13222,1936,0,1323,1542,1396,1341,1365,1516,1642,1722,1477,1254,1130,986,789,617,506,379,222,134,57,18,3,0,18950,337,120,12,0,18956,349,102,12,0,4738,280,1294,3963,517,278,4089,4260,0,8008,11170,241,0,67,198,21,0,0,1,8,2,2,173,18947,0,473,630,1398,75,128,41,2474,14200,0,5588,5871,1179,94,7,6680,0,1.5949717448967824,0.0,2.256097560975609,0.0,9.715175858695092,163,226,618,33,64,20,970,4383,0,189,165,114,255,428,565,813,579,1054,822,532,327,332,138,152,7,6399,78,6240,237,6145,332,928,5549,6156,321,3600,2877,4108,2369,2153,4324,6175,302,6208,269,4744,1464,3358,3119,4930,1547,4082,2395,537,5940,607,5870,75,6402,1065,3845,1396,171,3,4129,2348,0,12,47,3,0,0,1,3,1,0,69,6341,0,1.4393518518518518,1.5574074074074074,1.1333333333333333,1.037914691943128,1.037914691943128,48.710668519376256 +60104,Herrera,Chitré,Llano Bonito,3898,23,462,17,0,0,3,3,0,0,1,0,0,0,0,3396,305,60,17,3673,88,1,0,0,10,6,3762,0,1,0,0,3,11,0,1,3029,681,49,0,4,0,15,3654,24,26,0,0,74,3778,0,217,62,131,168,44,0,1025,720,1904,102,16,11,3628,41,10,85,0,14,0,3386,21,346,20,1,0,4,2676,1036,1,52,7,6,3763,0,0,0,0,0,0,0,0,5,3,7,4336,71,6.808397555142173,20.35423863938347,6.8192931171937285,20.60669678448047,1.0076760190577023,3.456855479089465,2.266278454208576,3807,1935,3363,245,687,161,160,125,51,141,31,51,169,12,168,67,61,70,85,43,50,9421,1045,0,4269,6197,0,8793,1673,0,9927,539,0,3057,7409,0,2545,512,7165,244,0,265,155,133,44,162,205,285,241,252,1472,0,2,63,366,516,858,299,451,1821,9,109,241,298,435,618,551,338,52,20,194,0,0,0,11,0,4993,293,4314,0,7,96,55,877,1800,1256,219,162,3360,433,574,223,511,21,39,88,7,5309,5629,1308,2006,241,1656,27,1,9,8,2,363,58,2399,99,0,0,4838,2816,65,124,222,1278,52,194,11,0,9,268,612,505,385,1254,143,854,368,888,3986,870,415,609,915,997,1326,613,596,293,127,37,32,9,14,99,123.0,112.0,113.0,124.0,143.0,142.0,126.0,138.0,143.0,174.0,139.0,170.0,137.0,148.0,151.0,159.0,147.0,174.0,161.0,166.0,183.0,198.0,170.0,183.0,167.0,205.0,168.0,168.0,158.0,143.0,171.0,151.0,169.0,150.0,112.0,167.0,161.0,140.0,150.0,142.0,163.0,147.0,137.0,145.0,165.0,142.0,158.0,143.0,141.0,122.0,123.0,139.0,151.0,136.0,153.0,130.0,137.0,133.0,138.0,117.0,138.0,117.0,111.0,110.0,109.0,93.0,97.0,86.0,84.0,69.0,71.0,81.0,68.0,73.0,73.0,55.0,67.0,52.0,58.0,47.0,46.0,28.0,38.0,34.0,36.0,18.0,21.0,16.0,17.0,11.0,13.0,12.0,7.0,2.0,1.0,4.0,1.0,1.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2083,7468,1387,0,615,723,745,807,901,842,753,760,757,706,702,655,585,429,366,279,182,83,35,10,3,0,10672,172,85,9,0,10675,192,62,9,0,2459,178,932,2020,384,170,2714,2081,0,3189,7665,84,0,198,119,11,0,0,0,3,2,0,82,10523,0,146,108,665,45,14,11,1179,8770,0,2685,2945,907,70,7,4324,0,1.739209726443769,0.0,2.436607403089478,0.0,9.470012799414883,63,42,270,24,9,4,469,2926,0,93,121,89,186,297,434,531,397,659,444,206,140,116,43,37,14,3723,84,3592,215,3535,272,577,3230,3598,209,1633,2174,2253,1554,1137,2670,3624,183,3562,245,2545,1017,1670,2137,3132,675,1927,1880,266,3541,250,3557,36,3771,810,1967,933,97,7,2195,1612,0,39,31,3,0,0,0,0,2,0,25,3707,0,1.391976927110645,1.4758783429470372,1.0,1.0789473684210529,1.0789473684210529,51.35434725505648 +60105,Herrera,Chitré,San Juan Bautista,4973,3,686,28,0,0,0,0,0,0,0,0,0,1,0,3949,553,30,7,4470,62,0,0,0,7,0,4515,0,1,15,0,6,2,0,0,3836,679,16,2,1,0,5,4432,9,23,0,0,75,4539,0,336,132,279,321,83,0,1219,940,2240,129,10,1,4469,5,38,23,0,4,0,3829,48,651,8,2,0,1,3573,950,2,12,2,0,4375,1,4,0,0,3,0,0,0,151,5,0,5667,24,6.653652968036529,19.273059360730592,6.674200913242009,19.419406392694064,1.010795329367702,3.980832782551223,2.5686274509803924,4588,2312,3886,205,715,236,165,112,74,178,47,73,166,41,268,71,54,80,66,86,49,11242,1057,0,6396,5903,0,10270,2029,0,11728,571,0,3540,8759,0,2626,914,8538,221,0,258,119,186,23,176,224,277,256,242,1311,1,2,98,263,461,819,301,450,2213,3,141,258,354,626,1088,1062,370,192,20,481,0,4,0,20,0,5798,557,5006,0,11,218,114,1310,2092,1262,237,105,4252,478,649,178,548,29,73,22,6,6028,6770,1915,2198,195,1663,167,0,90,7,10,395,41,2937,54,0,0,4429,3360,99,172,354,2258,187,481,21,0,7,522,1209,664,482,1273,111,800,364,923,4615,884,401,546,911,1107,1433,738,858,515,310,119,140,65,102,54,117.0,121.0,136.0,125.0,134.0,151.0,160.0,146.0,175.0,172.0,190.0,175.0,146.0,149.0,149.0,179.0,161.0,142.0,196.0,163.0,187.0,203.0,220.0,203.0,214.0,209.0,190.0,164.0,178.0,176.0,175.0,169.0,162.0,171.0,147.0,156.0,170.0,157.0,193.0,157.0,148.0,165.0,148.0,215.0,165.0,209.0,180.0,163.0,144.0,153.0,153.0,201.0,195.0,188.0,164.0,160.0,173.0,164.0,161.0,175.0,131.0,122.0,147.0,139.0,129.0,134.0,113.0,117.0,109.0,131.0,128.0,96.0,110.0,91.0,76.0,81.0,89.0,71.0,63.0,89.0,52.0,53.0,57.0,39.0,52.0,38.0,44.0,33.0,27.0,21.0,23.0,18.0,18.0,11.0,13.0,8.0,3.0,2.0,4.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2246,8534,2018,0,633,804,809,841,1027,917,824,833,841,849,901,833,668,604,501,393,253,163,83,17,4,0,12236,283,272,7,0,12243,323,225,7,0,2505,167,138,2905,546,187,4104,2246,0,2895,9694,209,0,109,124,24,1,2,0,9,1,1,174,12353,0,302,364,854,55,32,19,2330,8842,0,3577,3529,1449,59,20,4164,0,1.6444188722669737,0.0,2.3067938021454117,0.0,10.617205813408344,117,158,359,27,14,11,915,2987,0,131,114,73,160,340,434,536,434,755,483,333,197,269,122,196,11,4509,79,4436,152,4300,288,826,3762,4383,205,2582,2006,2782,1806,1743,2845,4393,195,4349,239,3124,1225,2422,2166,3755,833,2714,1874,381,4207,343,4245,45,4543,963,2427,1036,162,1,2644,1944,0,21,37,9,1,1,0,3,1,0,63,4452,0,1.3135759424711266,1.475266942689039,1.180327868852459,1.062015503875969,1.062015503875969,53.29577157802965 +60201,Herrera,Las Minas,Las Minas,969,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,516,186,3,687,15,1,0,0,2,0,683,0,2,6,0,2,10,0,2,423,8,206,35,24,0,9,656,42,0,0,0,7,705,0,149,26,27,42,24,0,14,45,612,32,2,0,617,11,11,7,0,59,0,702,2,0,0,0,1,0,212,473,0,19,0,1,405,256,35,0,0,3,0,0,0,0,3,3,0,974,6.280172413793103,20.74712643678161,6.537356321839081,21.66522988505747,1.004255319148936,3.706382978723404,2.4567375886524823,708,370,623,41,107,26,25,22,8,26,5,7,18,2,49,20,9,6,23,52,27,1585,313,0,472,1426,0,1034,864,0,1712,186,0,518,1380,0,446,72,1271,109,0,110,25,29,2,55,64,88,58,67,384,0,0,0,51,63,130,58,78,321,3,16,36,34,73,69,54,7,7,2,13,0,0,1,0,0,876,27,830,0,0,18,2,117,292,257,40,124,362,109,128,22,74,3,200,0,0,993,995,252,238,27,307,20,0,54,0,15,160,25,322,2,0,0,1097,442,0,19,49,107,6,13,0,0,0,35,64,55,49,167,115,116,67,235,880,238,139,138,125,104,149,69,78,33,24,6,3,0,0,2,23.0,18.0,24.0,25.0,31.0,25.0,28.0,21.0,28.0,32.0,36.0,30.0,27.0,28.0,23.0,27.0,21.0,27.0,28.0,25.0,29.0,32.0,32.0,25.0,35.0,16.0,35.0,24.0,23.0,39.0,16.0,19.0,19.0,29.0,20.0,32.0,28.0,17.0,33.0,16.0,25.0,17.0,23.0,25.0,17.0,23.0,18.0,22.0,22.0,26.0,23.0,32.0,26.0,21.0,28.0,25.0,22.0,26.0,25.0,21.0,30.0,29.0,30.0,17.0,18.0,25.0,26.0,13.0,24.0,21.0,12.0,22.0,6.0,17.0,13.0,14.0,14.0,13.0,14.0,11.0,11.0,11.0,12.0,9.0,9.0,11.0,9.0,6.0,7.0,4.0,2.0,1.0,3.0,2.0,4.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,399,1238,351,0,121,134,144,128,153,137,103,126,107,111,130,119,124,109,70,66,52,37,12,5,0,0,1962,4,21,1,0,1962,10,15,1,0,521,32,65,339,117,14,501,399,0,972,1010,6,0,5,13,0,0,0,0,2,0,1,49,1918,0,9,43,135,8,1,1,508,1283,0,320,533,122,9,6,998,0,2.393023255813953,0.0,3.222405271828665,0.0,7.8174044265593565,4,20,53,1,1,0,175,454,0,42,51,43,66,106,75,73,43,95,33,35,15,22,7,0,2,691,17,642,66,622,86,103,605,542,166,51,657,411,297,50,658,636,72,572,136,311,261,159,549,408,300,220,488,323,385,290,418,17,691,173,352,168,15,1,486,222,0,1,1,0,0,0,0,0,0,0,19,687,0,1.4005641748942173,1.4033850493653033,1.0,1.0638297872340423,1.0638297872340423,56.425141242937855 +60202,Herrera,Las Minas,Chepo,680,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,219,11,413,12,6,0,0,5,0,143,0,3,220,2,0,66,0,2,73,5,268,34,56,0,0,282,149,0,0,0,5,436,0,112,31,9,39,56,0,0,9,417,9,1,0,241,151,1,1,2,40,0,425,0,3,0,0,8,0,23,303,0,107,3,0,0,298,73,1,0,48,0,10,0,0,5,1,0,683,6.118598382749326,19.221024258760107,6.894878706199461,23.442048517520217,1.0022935779816513,3.26605504587156,2.162844036697248,437,260,457,39,50,12,11,1,5,4,2,5,6,0,24,13,2,8,7,21,19,729,476,0,119,1086,0,353,852,0,954,251,0,336,869,0,316,20,712,157,0,158,21,23,0,46,68,66,57,71,219,0,0,0,39,58,97,37,47,142,0,4,8,15,4,8,4,8,1,0,3,0,0,0,1,0,528,19,533,0,0,11,5,3,190,265,42,33,77,58,24,8,41,0,334,0,3,715,574,70,137,11,276,8,0,40,3,100,103,11,302,3,0,0,882,166,0,4,7,17,1,2,1,0,3,8,18,8,4,58,242,40,14,152,885,170,63,48,33,20,34,13,6,5,3,2,3,0,1,3,21.0,24.0,21.0,18.0,21.0,22.0,26.0,11.0,21.0,24.0,20.0,16.0,16.0,24.0,22.0,30.0,37.0,26.0,33.0,28.0,17.0,15.0,22.0,22.0,20.0,9.0,15.0,17.0,18.0,20.0,19.0,22.0,22.0,11.0,14.0,10.0,13.0,22.0,13.0,22.0,14.0,22.0,15.0,22.0,11.0,13.0,6.0,21.0,13.0,15.0,17.0,19.0,13.0,14.0,10.0,11.0,12.0,16.0,9.0,14.0,20.0,15.0,15.0,6.0,13.0,9.0,10.0,12.0,5.0,6.0,7.0,4.0,8.0,3.0,5.0,7.0,3.0,7.0,5.0,6.0,3.0,3.0,5.0,4.0,4.0,4.0,2.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,307,853,129,0,105,104,98,154,96,79,88,80,84,68,73,62,69,42,27,28,19,12,1,0,0,0,1285,3,0,1,0,1285,3,0,1,0,373,10,44,171,33,3,348,307,0,665,624,0,0,1,8,0,0,0,0,0,0,0,5,1275,0,0,4,28,3,0,1,68,1185,0,76,159,3,0,0,1051,0,2.942796610169492,0.0,4.045045045045045,0.0,5.701318851823118,0,4,9,1,0,1,35,387,0,82,66,55,64,67,29,28,14,15,3,7,1,3,0,2,1,384,53,138,299,226,211,42,395,53,384,2,435,241,196,4,433,239,198,161,276,127,34,25,412,99,338,51,386,287,150,333,104,6,431,122,241,68,6,0,362,75,0,0,2,0,0,0,0,0,0,0,3,432,0,1.6361556064073226,1.3135011441647595,1.5,1.1538461538461535,1.1538461538461535,50.045766590389015 +60203,Herrera,Las Minas,Chumical,324,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,211,39,1,248,2,0,0,0,0,1,239,0,1,1,0,0,8,0,2,128,2,77,28,16,0,0,247,4,0,0,0,0,251,0,36,3,5,27,2,0,2,7,233,8,1,0,234,4,0,2,0,11,0,249,0,2,0,0,0,0,49,195,0,6,0,1,0,246,1,1,0,1,0,0,0,0,0,2,0,325,6.801619433198381,12.663967611336032,6.874493927125506,14.663967611336032,1.0079681274900398,3.537848605577689,1.9760956175298805,253,147,189,10,37,6,6,0,3,13,1,2,6,0,7,5,1,3,3,10,7,522,122,0,116,528,0,181,463,0,584,60,0,135,509,0,117,18,480,29,0,30,7,6,0,17,23,47,24,20,158,0,0,0,21,38,44,12,20,98,0,0,15,14,8,23,10,1,3,1,4,0,0,0,0,0,298,6,286,0,0,1,2,21,73,160,17,15,98,25,26,14,26,0,115,0,0,364,309,47,141,14,93,4,0,5,0,2,68,5,111,0,0,0,413,141,0,1,5,23,3,4,0,0,0,7,13,6,9,50,41,22,26,130,316,68,50,56,65,39,38,12,16,10,2,0,1,0,0,0,7.0,6.0,9.0,7.0,12.0,7.0,6.0,11.0,5.0,13.0,5.0,9.0,4.0,7.0,7.0,11.0,8.0,6.0,5.0,7.0,11.0,12.0,8.0,8.0,6.0,12.0,11.0,10.0,11.0,10.0,10.0,11.0,11.0,11.0,11.0,12.0,6.0,6.0,11.0,8.0,9.0,3.0,5.0,7.0,7.0,14.0,7.0,6.0,8.0,6.0,8.0,13.0,13.0,4.0,19.0,6.0,10.0,6.0,7.0,12.0,6.0,6.0,7.0,10.0,8.0,7.0,8.0,6.0,8.0,8.0,6.0,9.0,5.0,4.0,5.0,7.0,6.0,3.0,4.0,9.0,2.0,1.0,2.0,7.0,4.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,115,440,118,0,41,42,32,37,45,54,54,43,31,41,57,41,37,37,29,29,16,3,4,0,0,0,664,2,7,0,0,664,6,3,0,0,215,7,27,129,23,1,156,115,0,343,324,6,0,0,20,3,0,0,0,0,0,0,13,637,0,6,18,61,4,3,0,220,361,0,91,168,20,3,0,391,0,2.3358208955223883,0.0,2.9320388349514563,0.0,7.331352154531946,0,9,32,2,1,0,75,134,0,25,19,18,20,49,44,22,11,22,11,3,5,3,0,1,0,249,4,220,33,214,39,34,219,204,49,33,220,134,119,0,253,229,24,210,43,88,122,28,225,36,217,78,175,105,148,91,162,0,253,58,146,44,5,1,183,70,0,0,4,0,0,0,0,0,0,0,4,245,0,1.4330708661417322,1.2165354330708662,0.0,1.0,1.0,53.719367588932805 +60204,Herrera,Las Minas,El Toro,331,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,138,5,227,0,2,0,0,3,0,97,0,2,104,0,0,28,0,1,0,0,191,25,15,0,1,153,78,0,0,0,1,232,0,51,6,0,25,19,0,0,1,229,2,0,0,131,50,0,2,0,49,0,231,0,0,0,0,0,1,14,185,0,31,2,0,0,183,12,0,0,21,0,14,0,0,2,0,0,333,6.17948717948718,20.71794871794872,6.830769230769231,22.77435897435897,1.0043103448275863,3.086206896551724,1.9698275862068968,233,134,197,5,28,9,3,1,1,5,1,1,1,0,11,9,1,5,7,1,5,316,269,0,29,556,0,157,428,0,471,114,0,116,469,0,108,8,369,100,0,102,3,3,0,18,11,36,31,20,168,0,0,0,17,18,41,13,18,57,1,0,5,4,3,5,5,5,0,0,1,0,0,0,0,0,225,4,321,0,0,2,1,6,76,158,22,59,33,17,3,1,5,0,167,0,1,341,278,22,78,1,72,1,0,52,1,43,98,9,184,0,0,0,464,71,0,0,1,13,0,1,0,0,1,5,8,3,0,12,96,15,3,86,421,98,28,19,9,13,16,5,3,4,2,1,0,0,0,0,12.0,7.0,11.0,4.0,6.0,4.0,6.0,9.0,6.0,4.0,7.0,6.0,2.0,13.0,10.0,13.0,12.0,13.0,11.0,10.0,8.0,16.0,8.0,6.0,8.0,5.0,1.0,3.0,4.0,5.0,8.0,5.0,5.0,4.0,9.0,10.0,8.0,5.0,15.0,7.0,8.0,7.0,12.0,7.0,7.0,11.0,8.0,7.0,4.0,6.0,6.0,13.0,6.0,10.0,9.0,7.0,8.0,2.0,8.0,12.0,10.0,7.0,7.0,6.0,6.0,3.0,4.0,8.0,5.0,9.0,10.0,7.0,10.0,7.0,7.0,8.0,3.0,4.0,6.0,2.0,1.0,6.0,8.0,1.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,107,393,119,0,40,29,38,59,46,18,31,45,41,36,44,37,36,29,41,23,16,6,4,0,0,0,616,2,1,0,0,616,2,1,0,0,180,3,6,119,42,2,160,107,0,396,220,3,0,0,0,3,0,0,0,0,1,0,1,614,0,0,1,29,1,0,0,63,525,0,26,126,5,1,0,461,0,3.195020746887967,0.0,3.914438502673797,0.0,5.618739903069467,0,0,19,1,0,0,26,187,0,68,39,22,34,27,9,13,6,7,3,4,0,0,1,0,0,212,21,82,151,95,138,20,213,57,176,4,229,103,130,1,232,112,121,66,167,28,38,10,223,49,184,17,216,173,60,166,67,0,233,64,131,37,1,0,202,31,0,0,0,0,0,0,0,0,1,0,0,232,0,1.463519313304721,1.1931330472103003,0.0,1.0,1.0,57.0 +60205,Herrera,Las Minas,Leones,349,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,59,171,1,231,0,1,0,0,0,0,167,2,2,14,3,3,40,0,1,0,4,201,9,18,0,0,180,51,0,0,0,1,232,0,60,11,0,9,43,0,0,1,222,9,0,0,178,17,3,6,1,27,0,229,0,2,0,0,1,0,27,170,0,35,0,0,0,161,54,0,0,13,0,3,0,0,0,1,0,355,5.074418604651163,12.297674418604652,6.525581395348837,17.50232558139535,1.012931034482759,3.237068965517241,2.056034482758621,235,123,210,8,25,6,11,9,3,4,0,6,0,0,29,8,3,3,2,0,8,363,247,0,39,571,0,122,488,0,464,146,0,127,483,0,118,9,351,132,0,133,4,5,0,17,17,35,34,27,141,0,0,0,17,27,38,22,16,60,0,0,2,4,2,4,2,2,0,0,1,0,0,0,0,0,251,9,308,0,0,7,2,7,88,159,27,27,33,10,9,13,6,0,189,0,0,354,286,22,141,13,47,0,0,37,0,39,82,11,134,1,0,0,491,65,0,0,2,9,0,1,0,0,0,2,5,5,1,23,71,14,3,136,384,98,50,28,29,13,24,2,8,1,2,0,0,0,0,1,10.0,6.0,9.0,5.0,6.0,7.0,7.0,10.0,6.0,6.0,9.0,7.0,7.0,11.0,5.0,11.0,14.0,15.0,9.0,10.0,9.0,11.0,11.0,12.0,10.0,3.0,6.0,7.0,10.0,7.0,5.0,4.0,6.0,4.0,2.0,8.0,7.0,4.0,6.0,11.0,6.0,6.0,11.0,7.0,8.0,8.0,14.0,8.0,5.0,7.0,13.0,11.0,8.0,9.0,5.0,11.0,9.0,9.0,14.0,3.0,8.0,9.0,12.0,10.0,4.0,6.0,8.0,7.0,9.0,7.0,6.0,6.0,4.0,3.0,5.0,4.0,10.0,4.0,3.0,5.0,4.0,2.0,3.0,2.0,4.0,2.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,111,417,112,0,36,36,39,59,53,33,21,36,38,42,46,46,43,37,24,26,15,5,5,0,0,0,633,5,2,0,0,633,5,2,0,0,184,4,17,81,35,3,205,111,0,405,230,5,0,0,2,1,0,0,0,1,0,0,0,636,0,2,5,32,6,0,0,65,530,0,27,80,6,1,0,526,0,3.0199203187251,0.0,4.011173184357542,0.0,5.20625,2,2,22,2,0,0,25,182,0,31,37,28,34,42,20,15,9,12,5,2,0,0,0,0,0,208,27,132,103,141,94,14,221,82,153,5,230,156,79,4,231,138,97,120,115,16,104,6,229,17,218,17,218,169,66,137,98,2,233,61,131,43,0,0,182,53,0,0,1,1,0,0,0,1,0,0,0,232,0,1.5063829787234042,1.2170212765957449,1.0,1.0,1.0,55.56170212765957 +60206,Herrera,Las Minas,Quebrada del Rosario,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,161,4,260,2,1,0,0,3,0,244,0,0,1,3,0,16,0,2,0,0,202,53,11,0,0,201,56,0,0,0,9,266,0,70,11,1,20,15,0,0,0,264,2,0,0,165,26,2,6,1,66,0,260,0,2,0,0,4,0,14,222,0,30,0,0,1,236,21,0,0,7,0,0,0,0,1,0,0,383,6.503875968992248,23.093023255813957,6.895348837209302,23.65116279069768,1.0,3.1390977443609023,1.6203007518796992,266,132,197,39,25,7,7,3,0,5,0,0,1,0,24,20,18,0,4,27,0,330,311,0,17,624,0,109,532,0,509,132,0,133,508,0,126,7,396,112,0,112,3,4,0,15,35,43,43,43,174,0,0,0,12,28,37,9,8,60,4,1,2,3,1,3,0,1,0,0,0,0,0,0,0,0,230,17,344,0,0,9,8,4,93,179,61,7,36,36,10,6,5,0,152,0,0,376,306,28,33,6,174,1,0,3,0,28,94,10,127,0,0,0,516,70,0,1,0,4,0,0,0,0,0,2,2,2,3,13,150,21,5,49,452,111,37,28,12,15,15,5,5,2,0,0,0,0,0,0,12.0,12.0,9.0,8.0,10.0,6.0,7.0,7.0,7.0,13.0,20.0,9.0,10.0,9.0,10.0,12.0,8.0,6.0,12.0,5.0,12.0,8.0,9.0,10.0,11.0,6.0,5.0,6.0,6.0,10.0,4.0,6.0,7.0,8.0,9.0,8.0,10.0,15.0,7.0,14.0,5.0,9.0,8.0,7.0,4.0,9.0,10.0,5.0,10.0,7.0,5.0,8.0,6.0,5.0,9.0,9.0,7.0,13.0,8.0,4.0,13.0,9.0,10.0,11.0,5.0,9.0,9.0,4.0,7.0,3.0,7.0,4.0,8.0,4.0,3.0,7.0,3.0,6.0,1.0,9.0,5.0,3.0,5.0,4.0,2.0,3.0,4.0,1.0,2.0,2.0,0.0,2.0,2.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,149,410,123,0,51,40,58,43,50,33,34,54,33,41,33,41,48,32,26,26,19,12,5,3,0,0,681,0,0,1,0,681,0,0,1,0,176,6,23,120,30,0,178,149,0,451,231,0,0,0,1,0,0,0,0,0,0,0,3,678,0,2,77,115,11,0,0,177,300,0,24,122,5,1,0,530,0,2.9731800766283527,0.0,3.973404255319149,0.0,4.983870967741935,1,31,59,1,0,0,67,107,0,49,57,31,54,24,13,16,12,6,4,0,0,0,0,0,0,245,21,197,69,212,54,14,252,118,148,3,263,194,72,0,266,147,119,182,84,70,112,3,263,53,213,13,253,171,95,195,71,4,262,81,149,35,1,0,207,59,0,0,0,0,0,0,0,0,0,0,0,266,0,1.413533834586466,1.150375939849624,1.0,1.0,1.0,56.57142857142857 +60207,Herrera,Las Minas,Quebrada El Ciprián,355,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,224,15,235,18,8,0,0,4,3,109,0,1,64,5,0,88,0,1,1,0,212,40,15,0,0,141,122,0,0,0,5,268,0,44,7,0,24,14,0,0,0,266,2,0,0,118,66,0,0,4,80,0,252,0,0,0,0,16,0,7,195,1,65,0,0,0,137,60,0,1,57,0,4,0,0,8,1,0,357,5.309644670050761,18.781725888324875,5.6395939086294415,19.898477157360407,1.0149253731343284,2.970149253731343,1.835820895522388,272,170,242,20,23,7,7,2,4,2,0,0,2,0,15,12,8,3,8,7,10,358,352,0,20,690,0,154,556,0,587,123,0,148,562,0,148,0,458,104,0,106,11,6,4,18,31,37,33,49,168,0,0,0,22,34,59,19,20,76,0,1,7,2,0,1,2,1,1,0,2,0,0,0,0,0,280,10,369,0,0,4,4,5,102,202,40,20,35,31,10,3,3,0,205,0,0,396,355,27,48,3,176,3,0,30,0,51,86,13,140,1,0,0,566,87,0,1,0,3,0,2,0,0,0,0,4,2,5,22,190,10,3,54,552,95,28,20,15,6,15,11,4,2,2,0,0,0,0,1,13.0,13.0,5.0,10.0,10.0,5.0,11.0,9.0,12.0,4.0,8.0,10.0,12.0,16.0,9.0,18.0,10.0,19.0,15.0,16.0,14.0,11.0,11.0,17.0,15.0,8.0,8.0,7.0,9.0,5.0,6.0,10.0,6.0,8.0,6.0,14.0,9.0,9.0,14.0,6.0,9.0,7.0,8.0,8.0,11.0,8.0,8.0,2.0,6.0,7.0,11.0,14.0,9.0,5.0,6.0,11.0,15.0,4.0,10.0,6.0,10.0,8.0,6.0,8.0,8.0,5.0,12.0,12.0,6.0,7.0,9.0,3.0,9.0,2.0,6.0,7.0,4.0,6.0,3.0,3.0,6.0,3.0,7.0,0.0,5.0,6.0,1.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,147,476,128,0,51,41,55,78,68,37,36,52,43,31,45,46,40,42,29,23,21,11,2,0,0,0,750,1,0,0,0,750,1,0,0,0,231,4,17,138,38,0,176,147,0,478,272,1,0,0,6,0,0,0,0,2,0,0,11,732,0,1,8,326,7,1,0,89,319,0,28,97,5,0,0,621,0,3.019933554817276,0.0,4.004524886877828,0.0,5.479360852197071,0,4,119,1,1,0,34,113,0,75,42,40,40,31,9,16,3,9,3,2,1,1,0,0,0,238,34,83,189,122,150,20,252,47,225,0,272,108,164,2,270,139,133,87,185,22,65,2,270,14,258,2,270,200,72,214,58,0,272,69,162,39,2,0,225,47,0,0,0,0,0,0,0,0,0,0,2,270,0,1.4558823529411764,1.3051470588235294,0.0,1.0,1.0,53.4264705882353 +60301,Herrera,Los Pozos,Los Pozos,1016,4,17,3,0,0,0,0,0,0,0,1,0,0,0,0,559,227,16,774,12,0,0,0,16,0,793,0,0,1,4,0,4,0,0,473,38,228,40,21,0,2,758,27,1,0,0,16,802,0,112,13,21,79,13,0,2,45,726,28,0,1,756,8,13,23,0,2,0,783,5,10,1,0,3,0,280,478,0,43,1,0,437,334,17,1,0,3,0,0,0,0,6,4,0,1041,5.435279187817259,13.08502538071066,6.267766497461929,18.034263959390863,1.0087281795511225,3.598503740648379,2.335411471321696,810,434,600,82,147,22,24,16,4,29,4,3,42,1,88,58,24,17,20,4,44,1712,414,0,449,1677,0,1459,667,0,1889,237,0,541,1585,0,489,52,1434,151,0,160,21,30,6,43,62,104,61,67,527,0,0,1,62,92,158,61,67,338,2,11,18,29,41,73,56,14,5,2,15,0,0,0,0,0,824,79,1038,0,1,36,16,141,324,401,113,59,452,49,99,36,65,0,185,0,0,1129,1089,209,374,47,225,22,0,7,2,7,198,27,402,4,0,0,1336,436,1,11,23,115,4,15,0,0,2,27,50,47,38,191,34,127,67,320,900,284,136,137,192,145,186,83,90,28,17,6,7,0,3,4,22.0,21.0,25.0,24.0,34.0,27.0,27.0,35.0,28.0,34.0,37.0,28.0,26.0,30.0,29.0,24.0,29.0,30.0,22.0,26.0,30.0,40.0,26.0,37.0,33.0,22.0,33.0,23.0,25.0,27.0,37.0,26.0,26.0,32.0,22.0,23.0,25.0,28.0,27.0,19.0,27.0,38.0,27.0,17.0,22.0,19.0,28.0,14.0,21.0,23.0,36.0,35.0,32.0,25.0,30.0,44.0,30.0,29.0,31.0,28.0,29.0,22.0,24.0,26.0,34.0,22.0,31.0,16.0,27.0,14.0,21.0,20.0,20.0,25.0,13.0,16.0,20.0,25.0,13.0,19.0,11.0,15.0,15.0,9.0,9.0,8.0,7.0,4.0,7.0,3.0,2.0,5.0,3.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,427,1383,408,0,126,151,150,131,166,130,143,122,131,105,158,162,135,110,99,93,59,29,15,2,1,0,2198,11,8,1,0,2199,12,6,1,0,508,27,59,495,122,14,566,427,0,1212,999,7,0,6,29,3,0,0,0,0,1,2,4,2173,0,76,33,160,18,34,0,334,1563,0,347,636,134,17,0,1084,0,2.3528183716075155,0.0,3.082975679542203,0.0,7.422903516681695,30,11,62,5,10,0,139,553,0,25,65,34,85,110,98,102,62,91,59,32,17,22,3,3,1,794,16,733,77,729,81,132,678,659,151,103,707,532,278,80,730,724,86,684,126,303,381,182,628,575,235,262,548,396,414,432,378,6,804,201,413,163,33,0,580,230,0,2,7,1,0,0,0,0,1,0,2,797,0,1.3938271604938273,1.3444444444444446,1.0,1.1020408163265305,1.1020408163265305,56.54074074074074 +60302,Herrera,Los Pozos,El Capurí,207,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,110,56,4,162,4,0,0,0,4,0,161,0,0,0,0,1,8,0,0,97,7,53,5,4,0,4,154,13,0,0,0,3,170,0,19,12,0,6,3,0,0,0,150,20,0,0,163,3,0,2,0,2,0,163,0,5,0,1,1,0,18,136,0,16,0,0,0,149,13,2,0,3,0,1,0,0,0,2,0,211,6.549382716049383,22.83333333333333,6.691358024691358,23.8641975308642,1.011764705882353,3.570588235294118,2.429411764705882,173,100,153,14,10,1,5,3,1,5,1,2,3,0,8,4,7,1,1,2,5,323,118,0,70,371,0,238,203,0,379,62,0,114,327,0,106,8,290,37,0,40,6,5,0,14,20,13,15,15,130,0,0,1,11,17,28,12,13,49,2,1,6,6,8,13,7,6,0,0,3,0,0,0,0,0,159,10,233,0,3,3,1,10,69,126,8,20,53,12,8,5,34,0,56,0,1,260,211,33,88,5,35,1,0,6,1,4,48,3,142,2,0,0,300,72,1,1,2,23,0,3,0,0,1,3,8,7,3,26,7,16,9,89,247,59,27,23,41,25,25,6,8,5,3,0,0,0,0,2,10.0,5.0,5.0,10.0,6.0,11.0,2.0,8.0,5.0,7.0,5.0,12.0,1.0,6.0,5.0,6.0,7.0,8.0,6.0,6.0,10.0,10.0,6.0,7.0,7.0,6.0,9.0,7.0,3.0,6.0,5.0,9.0,6.0,3.0,3.0,6.0,5.0,6.0,8.0,6.0,1.0,7.0,8.0,11.0,4.0,8.0,7.0,12.0,3.0,12.0,5.0,4.0,4.0,6.0,4.0,1.0,6.0,2.0,3.0,3.0,8.0,4.0,10.0,1.0,7.0,3.0,5.0,2.0,7.0,0.0,2.0,4.0,7.0,4.0,7.0,5.0,4.0,4.0,1.0,3.0,0.0,3.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,98,302,71,0,36,33,29,33,40,31,26,31,31,42,23,15,30,17,24,17,6,1,6,0,0,0,468,1,0,2,0,468,1,0,2,0,152,6,6,67,22,1,119,98,0,279,191,1,0,0,19,2,3,0,0,0,0,0,12,435,0,0,6,91,2,2,0,263,107,0,45,102,9,2,0,313,0,2.593220338983051,0.0,3.2666666666666666,0.0,6.687898089171974,0,1,35,0,2,0,95,40,0,11,27,16,17,34,16,23,5,9,7,2,3,2,0,0,0,171,2,148,25,148,25,18,155,119,54,7,166,120,53,5,168,141,32,135,38,51,84,31,142,81,92,37,136,114,59,105,68,2,171,47,100,25,1,0,140,33,0,0,3,1,2,0,0,0,0,0,3,164,0,1.5028901734104043,1.2196531791907514,1.0,1.0,1.0,53.861271676300575 +60303,Herrera,Los Pozos,El Calabacito,259,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,83,2,205,1,0,0,0,2,0,199,0,0,0,0,0,3,0,6,98,1,98,8,3,0,0,189,16,0,0,0,3,208,0,34,8,0,8,5,0,3,0,195,10,0,0,197,4,4,3,0,0,0,194,7,7,0,0,0,0,26,172,0,10,0,0,0,183,20,0,1,2,0,0,0,0,0,2,0,263,6.783251231527093,16.61576354679803,6.921182266009852,22.039408866995075,1.0096153846153846,3.802884615384616,2.1586538461538463,210,128,143,10,41,9,2,2,5,11,2,1,4,0,16,3,3,3,1,2,7,392,155,0,60,487,0,258,289,0,466,81,0,99,448,0,86,13,411,37,0,38,3,9,1,20,22,31,28,18,172,0,0,0,10,13,45,14,7,64,2,4,3,7,8,15,7,3,0,1,2,0,0,0,0,0,206,3,311,0,0,2,1,16,66,151,21,57,73,11,21,4,14,0,85,0,0,301,267,24,98,4,78,4,0,0,0,0,90,4,104,2,0,0,404,85,0,4,2,23,0,2,0,0,0,5,2,9,7,41,32,35,6,72,280,104,31,33,26,34,26,12,13,4,2,0,1,0,0,2,5.0,7.0,6.0,3.0,3.0,4.0,11.0,2.0,4.0,3.0,8.0,6.0,9.0,3.0,7.0,10.0,9.0,3.0,5.0,8.0,4.0,5.0,1.0,10.0,7.0,6.0,6.0,6.0,8.0,6.0,7.0,2.0,11.0,3.0,8.0,8.0,5.0,3.0,6.0,7.0,5.0,10.0,6.0,5.0,5.0,2.0,5.0,7.0,7.0,15.0,6.0,12.0,10.0,5.0,8.0,11.0,9.0,7.0,13.0,6.0,15.0,8.0,12.0,7.0,7.0,7.0,9.0,7.0,7.0,12.0,6.0,7.0,6.0,6.0,8.0,4.0,6.0,3.0,2.0,3.0,3.0,7.0,5.0,4.0,2.0,0.0,3.0,2.0,2.0,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,81,357,130,0,24,24,33,35,27,32,31,29,31,36,41,46,49,42,33,18,21,7,6,3,0,0,568,0,0,0,0,568,0,0,0,0,148,5,8,143,38,2,143,81,0,347,221,0,0,0,13,0,0,0,0,1,0,1,5,548,0,4,0,87,1,6,0,204,266,0,53,187,15,1,1,311,0,2.348547717842324,0.0,2.9239130434782608,0.0,6.630281690140845,0,0,35,1,2,0,82,90,0,21,33,16,35,23,20,19,7,19,8,4,3,1,0,1,0,205,5,189,21,188,22,36,174,139,71,9,201,163,47,5,205,175,35,173,37,48,125,34,176,83,127,51,159,138,72,160,50,0,210,48,109,49,4,0,180,30,0,0,1,0,0,0,0,1,0,0,1,207,0,1.4333333333333331,1.2714285714285714,1.0,1.0,1.0,60.5 +60304,Herrera,Los Pozos,El Cedro,238,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,73,83,6,153,3,0,0,0,6,0,155,0,0,3,0,0,4,0,0,53,0,103,4,1,0,1,144,15,0,0,0,3,162,0,45,8,0,17,7,0,0,1,157,4,0,0,150,7,0,2,0,3,0,161,0,0,0,0,1,0,8,149,0,5,0,0,0,133,27,0,0,0,0,0,0,0,1,1,0,239,6.78125,23.4,6.9875,23.925,1.0,3.5123456790123457,2.4814814814814814,162,89,99,12,28,8,4,5,0,8,0,1,6,1,4,5,2,0,6,0,7,280,122,0,56,346,0,137,265,0,328,74,0,68,334,0,61,7,282,52,0,52,5,6,0,11,11,24,14,24,105,0,0,0,4,17,29,12,13,42,1,1,3,1,4,7,11,0,2,1,2,0,0,0,0,0,171,8,192,0,0,3,2,5,39,109,26,13,49,20,13,9,10,0,77,0,0,232,191,27,71,9,36,0,0,35,0,5,62,4,114,9,0,0,296,52,0,1,2,17,1,2,0,0,0,8,6,5,2,20,37,15,11,75,229,81,16,15,23,8,17,11,8,3,2,0,1,0,0,9,7.0,5.0,5.0,4.0,7.0,7.0,5.0,5.0,3.0,4.0,5.0,7.0,3.0,0.0,5.0,3.0,5.0,4.0,2.0,5.0,9.0,5.0,3.0,6.0,4.0,7.0,4.0,10.0,1.0,5.0,7.0,6.0,5.0,5.0,4.0,2.0,5.0,3.0,4.0,4.0,5.0,2.0,4.0,4.0,7.0,4.0,2.0,6.0,4.0,12.0,4.0,7.0,5.0,6.0,8.0,6.0,4.0,6.0,8.0,8.0,4.0,6.0,2.0,6.0,5.0,8.0,5.0,4.0,4.0,1.0,2.0,5.0,6.0,6.0,7.0,2.0,3.0,6.0,4.0,3.0,2.0,1.0,4.0,2.0,1.0,2.0,5.0,3.0,2.0,3.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,72,253,98,0,28,24,20,19,27,27,27,18,22,28,30,32,23,22,26,18,10,15,3,4,0,0,423,0,0,0,0,423,0,0,0,0,140,1,41,70,25,1,73,72,0,211,212,0,0,0,1,0,0,0,0,0,0,0,3,419,0,1,0,13,1,0,0,41,367,0,32,104,6,0,0,281,0,2.9696969696969697,0.0,3.462121212121212,0.0,6.238770685579196,0,0,5,0,0,0,14,143,0,27,28,16,19,22,6,7,7,16,6,1,1,2,0,0,4,157,5,138,24,141,21,27,135,100,62,1,161,28,134,2,160,131,31,117,45,20,97,10,152,14,148,29,133,98,64,83,79,1,161,42,80,34,6,0,126,36,0,0,0,0,0,0,0,0,0,0,1,161,0,1.432098765432099,1.1790123456790125,0.0,1.0,1.0,59.18518518518518 +60305,Herrera,Los Pozos,La Arena,219,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,95,73,6,167,2,0,0,0,6,0,165,0,0,0,0,1,6,0,3,77,11,78,2,6,1,0,158,11,1,0,0,5,175,0,24,5,0,11,11,0,1,2,167,5,0,0,167,2,0,2,0,4,0,159,15,1,0,0,0,0,24,146,0,4,1,0,0,143,25,0,1,0,0,3,0,0,3,0,0,226,6.898809523809524,18.821428571428573,6.922619047619048,20.625,1.0057142857142858,3.8285714285714287,2.251428571428572,176,106,155,8,40,7,12,5,1,10,0,0,1,0,13,9,7,2,2,0,11,363,138,0,65,436,0,215,286,0,427,74,0,106,395,0,91,15,336,59,0,61,3,6,1,8,13,27,10,23,161,0,0,0,6,12,26,8,14,60,2,5,3,7,16,12,12,2,1,1,1,0,0,0,0,0,208,7,254,0,0,5,1,10,69,120,30,25,82,11,7,10,19,0,83,0,0,278,243,35,120,11,46,0,0,0,0,1,78,7,101,1,0,0,347,99,0,5,2,14,1,1,0,0,0,7,11,8,9,20,12,25,10,113,210,81,45,32,61,27,30,5,24,2,1,1,1,0,0,1,9.0,3.0,5.0,3.0,5.0,2.0,10.0,5.0,7.0,3.0,5.0,5.0,7.0,4.0,5.0,6.0,8.0,8.0,2.0,9.0,5.0,6.0,5.0,6.0,8.0,18.0,6.0,4.0,5.0,9.0,4.0,5.0,7.0,7.0,5.0,8.0,2.0,3.0,7.0,4.0,7.0,9.0,7.0,4.0,8.0,4.0,6.0,7.0,11.0,9.0,10.0,13.0,9.0,5.0,9.0,6.0,5.0,4.0,8.0,9.0,5.0,8.0,8.0,10.0,4.0,5.0,7.0,4.0,8.0,1.0,4.0,5.0,10.0,2.0,3.0,6.0,4.0,5.0,3.0,6.0,3.0,3.0,5.0,5.0,1.0,3.0,1.0,0.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,78,342,101,0,25,27,26,33,30,42,28,24,35,37,46,32,35,25,24,24,17,6,3,1,1,0,519,1,0,1,0,519,1,0,1,0,161,2,22,90,23,1,144,78,0,293,227,1,0,0,1,0,0,0,0,0,0,0,3,517,0,2,4,35,0,1,0,98,381,0,64,140,7,3,0,307,0,2.2418604651162792,0.0,2.892405063291139,0.0,6.765834932821497,1,0,21,0,1,0,42,111,0,7,17,8,16,28,26,25,10,22,7,2,6,1,0,1,0,172,4,157,19,156,20,36,140,134,42,11,165,128,48,7,169,144,32,150,26,54,96,34,142,41,135,47,129,120,56,132,44,1,175,33,94,48,1,0,145,31,0,0,1,0,0,0,0,0,0,0,2,173,0,1.5795454545454546,1.380681818181818,0.0,1.0,1.0,58.82386363636363 +60306,Herrera,Los Pozos,La Pitaloza,289,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,72,112,7,178,6,4,0,0,3,0,120,0,1,52,2,0,13,0,3,0,0,183,3,3,0,2,150,38,0,0,0,3,191,0,47,14,0,41,3,0,1,4,175,11,0,0,124,60,0,4,0,2,1,187,0,1,0,0,3,0,10,133,1,47,0,0,0,172,18,0,0,1,0,0,0,0,0,0,0,296,6.547368421052632,23.068421052631574,6.678947368421053,23.77894736842105,1.0052356020942408,3.5287958115183247,2.345549738219895,192,94,139,20,14,7,5,0,2,5,1,2,1,0,9,2,5,0,2,2,4,325,137,0,33,429,0,197,265,0,383,79,0,93,369,0,88,5,309,60,0,60,1,2,0,8,30,29,23,17,145,0,0,0,9,13,29,8,15,52,0,3,3,3,2,3,5,1,1,0,0,0,0,0,0,0,197,14,218,0,0,0,12,5,55,94,8,56,41,7,16,6,15,0,126,0,0,274,208,24,123,6,55,0,0,3,0,11,66,3,84,11,0,0,356,61,0,3,1,7,1,0,0,0,0,4,3,3,6,17,26,17,5,130,238,89,30,32,38,15,19,3,4,1,1,1,0,0,0,11,3.0,8.0,5.0,4.0,8.0,1.0,4.0,6.0,7.0,7.0,7.0,7.0,8.0,5.0,6.0,6.0,5.0,4.0,4.0,8.0,5.0,5.0,10.0,6.0,9.0,4.0,6.0,4.0,10.0,7.0,8.0,7.0,8.0,2.0,5.0,3.0,5.0,4.0,5.0,5.0,4.0,7.0,10.0,7.0,2.0,6.0,8.0,4.0,8.0,6.0,4.0,3.0,4.0,6.0,3.0,6.0,7.0,5.0,8.0,5.0,5.0,6.0,5.0,7.0,10.0,5.0,11.0,8.0,8.0,8.0,4.0,7.0,5.0,2.0,5.0,6.0,5.0,4.0,1.0,1.0,4.0,1.0,6.0,3.0,1.0,4.0,1.0,1.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,86,291,105,0,28,25,33,27,35,31,30,22,30,32,20,31,33,40,23,17,15,6,4,0,0,0,482,0,0,0,0,482,0,0,0,0,157,7,58,52,23,2,97,86,0,231,251,0,0,0,0,0,0,0,0,0,0,0,4,478,0,0,0,129,1,0,0,177,175,0,30,91,5,0,0,356,0,2.890710382513661,0.0,3.633093525179856,0.0,5.854771784232365,0,0,54,1,0,0,71,66,0,27,29,16,30,30,17,15,9,10,1,1,1,2,0,0,4,180,12,106,86,141,51,26,166,70,122,3,189,33,159,2,190,154,38,115,77,8,107,12,180,81,111,20,172,143,49,137,55,0,192,66,91,34,1,0,149,43,0,0,0,0,0,0,0,0,0,0,2,190,0,1.4270833333333333,1.0833333333333333,1.0,1.0769230769230769,1.0769230769230769,56.895833333333336 +60307,Herrera,Los Pozos,Los Cerritos,460,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,96,3,353,5,0,0,0,3,0,355,0,0,1,0,2,1,0,2,229,2,94,16,19,0,1,331,22,0,0,0,8,361,0,46,23,1,23,13,0,1,12,321,27,0,0,338,2,3,3,0,15,0,330,24,7,0,0,0,0,80,272,0,9,0,0,0,319,37,0,0,1,0,1,0,2,1,0,0,467,5.193820224719101,13.297752808988765,6.957865168539326,23.691011235955056,1.0,3.656509695290859,2.4293628808864267,361,207,254,20,59,9,3,1,1,19,1,1,4,0,24,8,5,11,8,2,9,771,126,0,163,734,0,409,488,0,809,88,0,188,709,0,170,18,667,42,0,45,4,11,5,20,37,49,33,33,263,0,0,0,20,33,53,17,22,128,2,9,9,16,19,26,22,12,0,1,8,0,0,0,0,0,372,20,446,0,1,4,8,34,119,226,36,31,155,27,47,12,18,2,128,0,2,483,457,71,160,14,136,7,0,1,2,2,107,8,157,0,0,0,586,177,0,9,8,49,1,8,0,0,2,10,27,18,16,59,65,46,26,123,387,145,62,60,80,66,58,32,28,10,8,2,1,0,1,0,9.0,10.0,8.0,16.0,8.0,4.0,11.0,13.0,15.0,8.0,13.0,9.0,13.0,8.0,12.0,9.0,12.0,10.0,9.0,13.0,14.0,8.0,9.0,12.0,12.0,9.0,12.0,21.0,17.0,14.0,11.0,10.0,8.0,14.0,11.0,8.0,10.0,6.0,21.0,13.0,6.0,12.0,11.0,12.0,11.0,10.0,11.0,6.0,12.0,14.0,9.0,18.0,19.0,12.0,17.0,20.0,14.0,10.0,15.0,16.0,17.0,12.0,16.0,12.0,10.0,10.0,12.0,8.0,9.0,9.0,8.0,10.0,12.0,10.0,7.0,9.0,5.0,3.0,10.0,8.0,4.0,6.0,2.0,3.0,2.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0,5.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,615,168,0,51,51,55,53,55,73,54,58,52,53,75,75,67,48,47,35,17,10,9,2,0,0,935,5,0,0,0,935,5,0,0,0,235,13,21,240,46,5,223,157,0,555,380,5,0,0,7,1,0,0,0,2,0,0,7,923,0,6,9,117,6,4,6,173,619,0,141,295,37,3,0,464,0,2.0951219512195123,0.0,2.729372937293729,0.0,7.348936170212766,1,5,50,4,1,3,72,225,0,19,23,29,50,51,48,41,22,33,18,18,2,3,3,1,0,353,8,337,24,342,19,75,286,310,51,59,302,144,217,11,350,332,29,318,43,104,214,79,282,164,197,121,240,190,171,221,140,6,355,93,197,68,3,0,276,85,0,0,2,1,0,0,0,0,0,0,2,356,0,1.3379501385041552,1.265927977839335,0.0,1.0,1.0,57.15512465373961 +60308,Herrera,Los Pozos,Los Cerros de Paja,417,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,179,5,278,8,0,0,0,4,1,268,0,0,2,2,0,17,0,2,40,1,245,5,0,0,0,243,44,0,0,0,4,291,0,78,8,1,36,9,0,0,3,287,1,0,0,232,40,6,11,0,2,0,285,0,0,0,0,6,0,18,222,0,50,1,0,0,217,52,5,0,3,0,10,0,0,2,2,0,423,6.41635687732342,22.21189591078067,6.836431226765799,23.799256505576206,1.0,3.2714776632302405,2.240549828178694,291,158,222,26,33,8,10,2,2,6,3,3,7,0,11,5,4,0,11,0,15,429,303,0,21,711,0,94,638,0,597,135,0,151,581,0,151,0,474,107,0,108,8,7,1,20,26,29,33,30,222,0,0,0,24,42,53,13,21,60,1,2,3,4,6,5,7,5,1,0,1,0,0,0,0,0,261,21,380,0,0,15,2,9,92,205,43,31,69,7,24,13,13,0,152,0,0,420,351,43,175,15,34,2,0,9,0,28,95,10,172,12,0,0,567,76,0,1,1,15,1,1,0,0,0,3,9,3,5,29,4,28,12,189,490,111,21,27,26,31,29,16,3,4,0,0,0,0,1,12,8.0,9.0,10.0,12.0,12.0,13.0,10.0,13.0,8.0,14.0,6.0,12.0,5.0,18.0,12.0,12.0,11.0,10.0,4.0,9.0,11.0,7.0,10.0,8.0,9.0,6.0,11.0,10.0,15.0,7.0,7.0,10.0,8.0,14.0,8.0,8.0,4.0,10.0,15.0,11.0,11.0,5.0,12.0,6.0,10.0,13.0,12.0,6.0,6.0,16.0,3.0,15.0,16.0,10.0,5.0,12.0,12.0,8.0,10.0,11.0,10.0,2.0,6.0,11.0,8.0,8.0,9.0,8.0,6.0,5.0,2.0,5.0,7.0,6.0,7.0,5.0,6.0,6.0,10.0,0.0,10.0,4.0,5.0,3.0,3.0,0.0,4.0,4.0,3.0,2.0,1.0,0.0,3.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,162,471,138,0,51,58,53,46,45,49,47,48,44,53,49,53,37,36,27,27,25,13,7,3,0,0,766,1,1,3,0,766,1,1,3,0,258,13,90,91,29,0,128,162,0,496,274,1,0,0,0,0,0,0,0,1,0,0,8,762,0,1,2,98,5,0,0,137,528,0,48,124,8,0,1,590,0,2.95221843003413,0.0,3.611353711790393,0.0,5.692607003891051,1,1,44,3,0,0,54,188,0,76,36,27,33,30,27,26,17,8,6,0,1,1,0,1,2,271,20,231,60,238,53,21,270,168,123,3,288,73,218,0,291,192,99,194,97,104,90,5,286,6,285,42,249,188,103,204,87,2,289,80,147,58,6,0,231,60,0,0,0,0,0,0,0,0,0,0,0,291,0,1.443298969072165,1.2061855670103092,0.0,1.0,1.0,55.402061855670105 +60309,Herrera,Los Pozos,Las Llanas,294,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,30,156,17,174,12,0,0,0,17,0,137,0,0,27,4,1,34,0,0,0,0,174,19,10,0,0,146,55,0,0,0,2,203,0,39,2,0,45,6,0,1,1,199,2,0,0,140,50,1,4,1,6,1,190,1,0,0,1,11,0,3,145,0,55,0,0,0,148,36,0,0,8,0,5,0,1,3,2,0,295,6.266304347826087,22.05978260869565,6.701086956521739,23.16304347826087,1.0049261083743843,3.1724137931034484,2.0935960591133007,204,106,160,22,23,2,2,1,2,4,0,0,8,0,3,3,2,2,1,2,8,267,242,0,15,494,0,131,378,0,408,101,0,98,411,0,96,2,320,91,0,91,0,6,1,5,22,28,22,23,176,0,0,0,11,11,30,6,13,52,0,0,2,2,1,3,3,1,0,0,0,0,0,0,0,0,213,7,245,0,0,1,4,1,60,129,9,46,26,9,7,9,6,0,160,2,1,305,229,14,164,9,20,0,0,12,1,28,82,4,94,0,0,0,401,57,0,1,2,4,0,0,0,0,1,3,1,1,6,18,14,7,3,166,262,141,48,38,16,11,13,3,1,0,1,0,0,0,0,0,6.0,2.0,9.0,8.0,3.0,3.0,12.0,5.0,15.0,6.0,8.0,13.0,4.0,8.0,4.0,9.0,2.0,8.0,4.0,6.0,3.0,8.0,5.0,3.0,5.0,10.0,7.0,10.0,8.0,12.0,3.0,6.0,7.0,3.0,3.0,7.0,4.0,6.0,7.0,9.0,6.0,7.0,11.0,10.0,4.0,10.0,5.0,6.0,5.0,8.0,6.0,10.0,7.0,7.0,4.0,8.0,10.0,6.0,5.0,8.0,6.0,7.0,5.0,8.0,2.0,6.0,8.0,3.0,9.0,3.0,3.0,3.0,6.0,6.0,4.0,4.0,2.0,4.0,4.0,5.0,3.0,5.0,0.0,2.0,4.0,3.0,6.0,1.0,2.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,106,326,102,0,28,41,37,29,24,47,22,33,38,34,34,37,28,29,22,19,14,12,4,1,1,0,533,1,0,0,0,533,1,0,0,0,134,15,62,90,30,0,97,106,0,310,224,0,0,0,0,1,0,0,0,0,0,0,1,532,0,0,3,140,0,0,0,110,281,0,13,107,1,0,0,413,0,2.694300518134715,0.0,3.5703703703703704,0.0,5.318352059925093,0,1,52,0,0,0,42,109,0,16,37,23,51,32,19,11,8,4,1,2,0,0,0,0,0,187,17,115,89,131,73,13,191,65,139,2,202,30,174,1,203,121,83,119,85,17,102,1,203,20,184,12,192,141,63,136,68,0,204,56,108,34,6,0,169,35,0,0,0,0,0,0,0,0,0,0,0,204,0,1.4950980392156863,1.1225490196078431,0.0,1.0,1.0,57.18627450980392 +60401,Herrera,Ocú,Ocú,3264,41,19,10,0,0,0,0,11,0,0,5,2,0,0,60,1954,422,21,2371,65,3,0,0,14,4,2407,0,3,11,3,4,27,0,2,1895,122,375,18,37,0,10,2388,44,3,0,0,22,2457,0,474,153,94,129,27,0,169,224,1963,97,3,1,2361,16,1,59,1,18,1,2425,8,19,2,2,0,1,1098,1284,0,75,0,0,1344,951,113,3,1,14,0,1,0,22,5,3,1725,1627,6.700996677740863,18.55274086378737,6.932724252491695,22.27574750830565,1.0195360195360197,3.807081807081807,2.473748473748474,2512,1430,2562,200,531,74,70,58,31,129,17,23,109,10,137,63,32,41,62,40,43,6458,954,0,2508,4904,0,5197,2215,0,6805,607,0,2194,5218,0,1837,357,4820,398,0,405,86,95,8,172,182,279,209,206,1093,0,0,9,178,313,526,176,300,1414,25,149,112,162,183,376,422,180,37,6,101,0,0,0,8,0,3304,120,3355,0,9,32,23,384,1336,1191,194,250,1846,254,329,121,297,29,525,0,14,3898,3858,1038,1254,135,776,165,0,33,14,41,533,56,1934,42,0,0,3594,1965,11,146,71,851,32,101,8,0,14,138,448,294,158,610,243,401,254,864,3315,797,355,421,621,509,556,366,388,216,88,30,30,10,12,42,89.0,83.0,78.0,94.0,102.0,101.0,91.0,126.0,92.0,121.0,99.0,97.0,106.0,99.0,85.0,129.0,126.0,114.0,117.0,136.0,141.0,123.0,133.0,132.0,110.0,140.0,141.0,123.0,135.0,114.0,99.0,98.0,95.0,87.0,92.0,111.0,90.0,113.0,102.0,92.0,111.0,71.0,69.0,77.0,111.0,87.0,93.0,98.0,96.0,87.0,105.0,98.0,117.0,99.0,100.0,99.0,98.0,96.0,85.0,90.0,89.0,77.0,66.0,77.0,77.0,65.0,64.0,70.0,61.0,51.0,65.0,58.0,46.0,52.0,56.0,49.0,46.0,41.0,44.0,47.0,29.0,34.0,36.0,34.0,30.0,21.0,21.0,21.0,15.0,17.0,12.0,9.0,7.0,8.0,4.0,1.0,4.0,2.0,2.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1463,5166,1127,0,446,531,486,622,639,653,471,508,439,461,519,468,386,311,277,227,163,95,40,10,4,0,7660,37,54,5,0,7661,47,43,5,0,1983,89,82,1388,321,36,2394,1463,0,3383,4320,53,0,9,159,44,0,3,0,5,1,0,67,7468,0,44,85,336,22,6,8,748,6507,0,1523,2141,392,32,15,3653,0,2.1625074272133094,0.0,2.996165317426502,0.0,8.859334708612687,12,22,136,6,3,5,288,2040,0,96,152,79,176,310,275,289,199,328,211,135,90,88,31,40,6,2476,36,2260,252,2265,247,467,2045,2270,242,685,1827,1453,1059,327,2185,2366,146,2193,319,1289,904,945,1567,1660,852,1084,1428,691,1821,781,1731,22,2490,456,1403,601,52,11,1688,824,0,0,36,4,0,2,0,1,0,0,15,2454,0,1.5449861276258423,1.5291319857312724,1.375,1.0575539568345325,1.0575539568345325,54.70262738853504 +60402,Herrera,Ocú,Cerro Largo,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,186,8,214,6,3,0,0,5,0,153,0,0,34,5,1,25,0,10,1,0,197,20,10,0,0,160,65,0,0,0,3,228,0,54,9,0,22,14,0,0,0,227,1,0,0,160,37,1,9,8,13,0,218,1,0,0,1,8,0,8,178,0,41,1,0,0,144,14,0,0,61,0,5,0,0,1,3,0,327,4.677215189873418,9.740506329113924,5.367088607594937,13.417721518987342,1.0087719298245614,3.017543859649123,1.9385964912280704,230,112,193,7,30,12,13,1,1,4,1,2,3,0,14,9,5,2,6,0,2,316,266,0,17,565,0,15,567,0,496,86,0,129,453,0,117,12,382,71,0,72,1,5,0,17,29,30,24,40,198,0,0,1,9,19,25,17,18,56,1,3,0,1,3,1,5,2,1,0,4,0,0,0,0,0,245,11,281,0,0,3,6,4,83,144,19,31,45,46,6,2,17,0,140,0,0,347,262,27,65,2,156,1,0,5,0,28,77,9,120,6,0,0,459,60,1,3,2,7,1,4,0,0,0,2,10,0,5,13,133,16,6,71,337,97,29,43,50,15,14,4,8,4,1,1,0,0,0,6,6.0,5.0,6.0,10.0,7.0,2.0,8.0,11.0,10.0,7.0,8.0,16.0,7.0,8.0,9.0,8.0,12.0,10.0,4.0,3.0,6.0,7.0,6.0,9.0,2.0,6.0,5.0,4.0,6.0,4.0,5.0,12.0,6.0,7.0,7.0,11.0,5.0,6.0,10.0,6.0,7.0,11.0,9.0,7.0,7.0,7.0,8.0,9.0,8.0,12.0,4.0,7.0,15.0,11.0,9.0,7.0,10.0,6.0,7.0,5.0,9.0,8.0,15.0,9.0,9.0,3.0,3.0,7.0,4.0,7.0,6.0,6.0,2.0,8.0,3.0,6.0,7.0,5.0,8.0,7.0,6.0,1.0,1.0,3.0,0.0,2.0,4.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,120,383,106,0,34,38,48,37,30,25,37,38,41,44,46,35,50,24,25,33,11,7,3,2,1,0,608,1,0,0,0,608,1,0,0,0,178,5,25,72,36,1,172,120,0,414,194,1,0,1,0,0,0,0,0,0,0,0,4,604,0,1,2,13,0,0,0,23,570,0,45,127,3,1,0,433,0,3.029787234042553,0.0,3.668539325842697,0.0,5.727422003284072,1,0,5,0,0,0,5,219,0,32,32,24,37,36,27,12,9,11,4,5,1,0,0,0,0,207,23,117,113,109,121,29,201,74,156,9,221,169,61,2,228,161,69,120,110,4,116,8,222,8,222,21,209,164,66,168,62,15,215,73,103,52,2,0,176,54,0,0,0,0,0,0,0,0,0,0,0,230,0,1.508695652173913,1.1391304347826088,0.0,1.0,1.0,57.11739130434783 +60403,Herrera,Ocú,Los Llanos,1013,6,0,0,0,0,0,0,0,0,0,0,0,0,0,3,389,330,14,714,8,4,0,0,10,0,665,0,3,26,1,1,40,0,0,207,15,451,29,30,0,4,665,57,0,0,0,14,736,0,187,22,8,49,17,0,2,17,683,34,0,0,669,28,1,34,2,1,1,733,0,0,0,0,3,0,146,521,0,69,0,0,0,687,14,1,0,31,0,3,0,0,0,0,0,1019,6.661911554921541,18.774607703281028,6.680456490727532,21.96433666191156,1.0040760869565215,3.3206521739130435,2.1372282608695654,739,411,611,63,126,26,29,15,3,23,3,2,17,1,112,68,12,9,24,1,7,1431,549,0,321,1659,0,1029,951,0,1738,242,0,469,1511,0,410,59,1320,191,0,191,16,17,0,50,49,89,82,103,401,0,1,5,47,94,136,51,74,317,1,1,20,17,67,40,67,23,5,0,15,0,0,0,1,0,878,9,939,0,0,0,8,31,304,459,43,102,236,92,70,13,41,9,424,1,0,1114,955,178,295,17,361,0,0,35,0,25,234,21,463,9,0,0,1247,370,5,2,61,121,5,14,1,0,0,13,78,22,19,111,222,114,35,273,913,346,90,208,161,74,102,42,78,25,13,2,1,2,3,9,25.0,16.0,23.0,25.0,30.0,21.0,24.0,36.0,23.0,20.0,30.0,28.0,22.0,29.0,27.0,25.0,34.0,27.0,22.0,28.0,33.0,29.0,40.0,39.0,19.0,24.0,33.0,22.0,23.0,25.0,15.0,31.0,23.0,23.0,27.0,24.0,18.0,26.0,26.0,29.0,24.0,33.0,19.0,23.0,21.0,22.0,20.0,30.0,21.0,26.0,27.0,32.0,23.0,24.0,36.0,29.0,29.0,21.0,24.0,30.0,23.0,22.0,23.0,28.0,21.0,19.0,32.0,20.0,21.0,16.0,12.0,15.0,24.0,16.0,18.0,18.0,17.0,24.0,12.0,16.0,20.0,9.0,9.0,15.0,9.0,10.0,5.0,5.0,7.0,4.0,7.0,4.0,2.0,3.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,379,1296,394,0,119,124,136,136,160,127,119,123,120,119,142,133,117,108,85,87,62,31,17,4,0,0,2058,8,1,2,0,2058,8,1,2,0,586,13,2,332,86,5,666,379,0,1237,825,7,0,1,30,11,0,0,0,1,1,2,74,1949,0,12,9,71,14,11,4,230,1718,0,202,538,28,3,1,1297,0,2.682897862232779,0.0,3.539708265802269,0.0,7.390043499275012,3,6,22,4,6,3,90,605,0,34,82,40,107,138,89,73,27,68,25,26,9,11,4,6,0,710,29,583,156,600,139,121,618,556,183,48,691,454,285,15,724,575,164,550,189,257,293,132,607,346,393,237,502,387,352,246,493,10,729,181,401,145,12,0,576,163,0,0,6,2,0,0,0,1,0,1,27,702,0,1.5074424898511505,1.2922868741542626,1.0,1.0285714285714285,1.0285714285714285,57.42895805142084 +60404,Herrera,Ocú,Llano Grande,615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,107,6,416,7,0,0,0,5,1,417,0,0,1,2,0,9,0,0,224,11,171,6,12,0,5,400,17,0,0,0,12,429,0,144,13,2,24,3,0,1,4,399,25,0,0,407,1,0,16,0,5,0,420,6,3,0,0,0,0,104,306,1,18,0,0,0,401,23,1,0,0,0,0,0,2,1,1,0,615,6.96933962264151,22.50471698113208,6.985849056603773,23.1438679245283,1.0,3.5804195804195804,2.1421911421911424,429,238,314,26,37,9,7,10,3,18,1,3,10,1,29,9,6,6,22,7,5,889,192,0,221,860,0,610,471,0,991,90,0,235,846,0,193,42,781,65,0,65,6,9,2,24,30,77,43,54,264,0,0,0,28,33,72,25,39,136,9,9,12,32,24,39,34,11,0,1,3,0,0,0,0,0,444,19,546,0,0,10,6,46,144,225,48,83,167,28,54,28,26,3,157,0,0,603,503,80,255,30,85,11,0,2,0,11,158,12,227,2,0,0,699,221,0,9,0,77,1,2,0,0,0,17,19,27,13,63,22,53,31,218,445,180,62,77,115,52,96,35,27,7,7,0,0,0,1,2,7.0,4.0,7.0,7.0,9.0,12.0,10.0,17.0,14.0,10.0,15.0,9.0,16.0,12.0,10.0,13.0,18.0,8.0,10.0,23.0,8.0,15.0,16.0,16.0,15.0,16.0,14.0,23.0,13.0,13.0,13.0,11.0,11.0,10.0,12.0,14.0,8.0,9.0,11.0,10.0,16.0,10.0,15.0,12.0,5.0,7.0,18.0,14.0,12.0,16.0,15.0,14.0,17.0,16.0,16.0,12.0,13.0,17.0,16.0,16.0,26.0,24.0,9.0,14.0,17.0,17.0,11.0,13.0,8.0,19.0,10.0,7.0,10.0,13.0,11.0,11.0,7.0,10.0,10.0,8.0,7.0,12.0,11.0,9.0,5.0,6.0,8.0,6.0,3.0,6.0,4.0,2.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,159,697,250,0,34,63,62,72,70,79,57,52,58,67,78,74,90,68,51,46,44,29,7,4,1,0,1095,5,6,0,0,1095,6,5,0,0,283,8,19,254,61,13,309,159,0,551,544,11,0,1,31,34,0,0,0,0,0,0,1,1039,0,6,4,113,6,2,1,266,708,0,163,333,42,9,0,559,0,2.467391304347826,0.0,3.1923076923076925,0.0,7.636528028933093,4,1,53,2,2,1,114,252,0,19,44,12,53,73,56,58,36,44,16,9,3,2,1,2,1,415,14,388,41,377,52,73,356,380,49,65,364,324,105,27,402,387,42,368,61,267,101,99,330,176,253,158,271,257,172,261,168,5,424,113,239,68,9,0,325,104,0,0,9,5,0,0,0,0,0,0,0,415,0,1.4055944055944056,1.1724941724941724,0.0,1.0555555555555556,1.0555555555555556,59.42424242424242 +60405,Herrera,Ocú,Peña Chatas,915,7,0,0,0,0,0,0,3,0,1,0,0,0,0,0,457,217,17,642,32,1,3,0,13,0,657,0,0,4,4,2,22,0,2,308,17,277,27,38,0,24,640,31,3,0,0,17,691,0,148,40,1,35,7,0,14,17,612,45,3,0,651,4,2,21,3,10,0,668,6,16,0,0,0,1,180,484,0,27,0,0,0,661,23,5,0,1,0,0,0,0,0,1,0,926,6.375730994152047,18.276315789473685,6.944444444444445,22.22222222222222,1.0231548480463095,3.555716353111433,2.422575976845152,707,407,614,48,117,18,14,11,5,21,3,3,64,1,40,23,8,2,9,7,10,1610,320,0,459,1471,0,1245,685,0,1796,134,0,494,1436,0,411,83,1362,74,0,75,22,28,5,48,70,97,64,56,456,0,0,1,58,82,135,67,57,285,9,20,32,26,26,56,59,56,8,3,28,0,1,0,0,0,861,35,873,0,0,21,8,79,270,367,100,57,383,58,93,36,68,6,245,0,1,1055,978,166,412,43,176,78,0,14,1,13,223,10,397,18,0,0,1159,395,1,22,6,146,11,28,1,0,1,23,92,44,33,132,87,76,50,358,795,239,156,139,215,126,142,66,48,47,12,13,12,1,4,18,27.0,27.0,30.0,19.0,13.0,30.0,28.0,33.0,28.0,29.0,29.0,27.0,11.0,25.0,25.0,28.0,34.0,30.0,22.0,31.0,30.0,26.0,29.0,34.0,24.0,30.0,29.0,26.0,35.0,20.0,25.0,29.0,22.0,23.0,26.0,16.0,22.0,28.0,28.0,20.0,21.0,24.0,20.0,24.0,23.0,20.0,25.0,22.0,15.0,26.0,21.0,19.0,29.0,26.0,34.0,26.0,24.0,28.0,28.0,20.0,21.0,25.0,25.0,19.0,18.0,20.0,18.0,21.0,16.0,34.0,24.0,25.0,23.0,13.0,20.0,13.0,16.0,16.0,13.0,16.0,17.0,15.0,17.0,4.0,12.0,13.0,6.0,3.0,5.0,3.0,3.0,2.0,0.0,2.0,4.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,381,1250,401,1,116,148,117,145,143,140,125,114,112,108,129,126,108,109,105,74,65,30,11,7,0,1,2020,4,9,0,0,2020,5,8,0,0,570,11,37,351,96,10,577,381,0,969,1060,3,1,0,54,32,0,0,0,1,0,0,15,1931,0,10,29,254,2,6,2,530,1200,0,297,566,79,15,0,1076,0,2.3361244019138754,0.0,3.16750418760469,0.0,7.878504672897196,4,10,90,0,3,2,187,411,0,28,48,35,72,107,89,63,52,85,45,25,20,20,9,7,2,677,30,621,86,610,97,106,601,594,113,138,569,421,286,51,656,648,59,585,122,250,335,189,518,476,231,304,403,342,365,412,295,5,702,180,372,133,22,4,530,177,0,0,14,4,0,0,0,0,0,0,4,685,0,1.4838255977496484,1.3755274261603376,1.0,1.0714285714285714,1.0714285714285714,57.77369165487978 +60406,Herrera,Ocú,El Tijera,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,104,5,160,1,5,0,0,0,0,0,0,7,84,2,6,67,0,0,0,0,150,14,2,0,0,108,58,0,0,0,0,166,0,58,5,0,8,1,0,0,0,164,2,0,0,87,68,1,3,7,0,0,156,1,0,1,0,8,0,16,71,4,75,0,0,0,104,39,2,0,19,0,2,0,0,0,0,0,238,6.79020979020979,23.153846153846157,6.965034965034965,23.867132867132867,1.0,2.710843373493976,1.6686746987951808,166,94,130,7,18,8,9,1,1,3,1,0,2,0,6,7,4,0,2,0,3,204,220,0,3,421,0,14,410,0,339,85,0,83,341,0,78,5,269,72,0,72,10,1,0,6,9,23,21,15,140,0,0,0,9,13,23,6,13,43,1,2,4,1,4,2,1,3,1,0,1,0,0,0,0,0,187,0,212,0,0,0,0,7,61,130,4,10,18,3,2,0,8,1,155,0,0,252,188,16,100,0,70,0,0,1,0,26,50,2,73,1,0,0,336,50,0,4,1,6,1,1,0,0,0,3,4,2,2,10,63,2,2,99,270,75,28,30,14,3,7,10,0,0,2,0,0,0,0,1,3.0,2.0,6.0,5.0,3.0,7.0,4.0,4.0,5.0,2.0,8.0,4.0,8.0,6.0,4.0,9.0,3.0,12.0,6.0,6.0,5.0,3.0,2.0,5.0,3.0,4.0,8.0,3.0,5.0,7.0,2.0,4.0,5.0,3.0,2.0,5.0,10.0,8.0,6.0,11.0,4.0,2.0,7.0,11.0,1.0,8.0,4.0,4.0,4.0,9.0,5.0,5.0,9.0,7.0,4.0,7.0,12.0,6.0,6.0,6.0,4.0,6.0,6.0,4.0,6.0,7.0,4.0,2.0,4.0,2.0,2.0,4.0,5.0,5.0,6.0,5.0,6.0,7.0,2.0,5.0,5.0,1.0,3.0,3.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,71,284,85,0,19,22,30,36,18,27,16,40,25,29,30,37,26,19,22,25,13,4,1,0,1,0,438,0,0,2,0,438,0,0,2,0,160,2,3,42,10,4,148,71,0,357,82,1,0,0,2,0,0,0,0,0,0,0,0,438,0,0,2,1,0,0,1,30,406,0,17,54,7,0,0,362,0,2.940828402366864,0.0,3.8174603174603177,0.0,5.668181818181818,0,1,1,0,0,1,13,150,0,33,12,16,49,29,7,4,7,6,0,2,1,0,0,0,0,150,16,3,163,9,157,8,158,0,166,0,166,45,121,2,164,52,114,3,163,1,2,0,166,2,164,7,159,137,29,71,95,0,166,44,93,27,2,0,140,26,0,0,0,0,0,0,0,0,0,0,0,166,0,1.5180722891566265,1.1325301204819278,0.0,1.0,1.0,56.43975903614458 +60407,Herrera,Ocú,Menchaca,729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,290,16,491,17,5,0,0,11,0,461,0,1,10,5,0,45,0,2,104,16,360,29,15,0,0,453,57,0,1,0,13,524,0,112,17,0,57,19,0,3,5,485,30,1,0,461,11,6,26,12,8,0,509,5,3,1,1,5,0,66,388,1,69,0,0,0,471,25,3,0,18,0,0,0,0,4,3,0,729,6.050403225806452,17.45967741935484,6.366935483870968,19.29435483870968,1.0190839694656488,3.2099236641221376,1.982824427480916,534,260,497,18,80,21,22,13,7,13,1,3,6,4,23,8,6,8,13,4,3,1043,381,0,152,1272,0,463,961,0,1272,152,0,307,1117,0,282,25,1030,87,0,88,10,20,1,29,55,107,56,58,385,0,0,4,31,79,101,26,55,195,0,18,3,7,25,25,20,20,2,0,3,0,0,0,1,0,620,24,686,0,4,3,7,22,203,304,33,124,252,20,34,31,52,6,246,1,0,834,645,87,319,31,155,50,0,0,0,20,183,10,384,8,0,0,1007,218,4,20,15,60,2,3,1,0,0,9,20,10,19,105,127,47,23,284,671,214,123,82,108,100,83,40,23,11,5,2,2,2,5,8,13.0,17.0,10.0,15.0,14.0,17.0,20.0,18.0,10.0,15.0,21.0,10.0,22.0,12.0,30.0,23.0,22.0,16.0,13.0,20.0,27.0,20.0,24.0,28.0,23.0,25.0,25.0,29.0,17.0,19.0,16.0,16.0,14.0,17.0,13.0,20.0,10.0,20.0,21.0,16.0,21.0,16.0,23.0,18.0,17.0,14.0,20.0,21.0,15.0,18.0,20.0,13.0,34.0,24.0,34.0,9.0,28.0,12.0,12.0,16.0,22.0,11.0,22.0,8.0,20.0,10.0,14.0,14.0,14.0,18.0,9.0,11.0,19.0,13.0,7.0,12.0,9.0,14.0,15.0,7.0,13.0,13.0,11.0,12.0,6.0,6.0,6.0,4.0,4.0,1.0,1.0,3.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,244,962,273,0,69,80,95,94,122,115,76,87,95,88,125,77,83,70,59,57,55,21,8,2,1,0,1468,4,2,5,0,1468,4,2,5,0,366,16,84,227,74,5,463,244,0,964,511,4,0,2,10,2,0,0,0,0,0,1,15,1449,0,3,7,77,2,1,0,219,1170,0,175,326,27,4,1,946,0,2.493055555555556,0.0,3.360097323600973,0.0,6.94185260311021,2,6,34,2,1,0,86,403,0,36,52,51,49,94,73,41,34,51,26,9,5,3,1,6,3,502,32,417,117,409,125,80,454,376,158,29,505,344,190,11,523,439,95,369,165,189,180,69,465,61,473,116,418,303,231,308,226,13,521,142,273,112,7,0,418,116,0,1,2,0,0,0,0,0,0,0,6,525,0,1.5617977528089888,1.2078651685393258,1.0,1.0303030303030305,1.0303030303030305,56.59925093632959 +60408,Herrera,Ocú,Entradero del Castillo,350,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,168,67,8,234,1,1,0,0,7,0,189,0,1,33,2,0,17,0,1,0,2,221,8,12,0,0,196,46,0,0,0,1,243,0,65,9,0,22,17,0,1,1,237,3,1,0,201,32,2,7,1,0,0,243,0,0,0,0,0,0,13,184,1,45,0,0,0,234,4,0,0,2,0,0,0,0,1,2,0,356,5.3655462184873945,9.058823529411764,5.882352941176471,12.899159663865548,1.0164609053497942,3.102880658436214,2.05761316872428,247,142,174,10,22,15,3,0,4,3,0,1,3,0,19,2,6,1,5,0,1,392,206,0,47,551,0,50,548,0,511,87,0,117,481,0,105,12,405,76,0,76,2,3,0,12,28,38,32,37,166,0,0,0,9,21,25,13,15,86,1,0,2,3,11,7,10,1,0,0,0,0,0,0,0,0,254,3,310,0,0,0,2,8,79,171,15,37,48,14,11,6,13,0,164,0,0,325,299,40,43,6,136,18,0,13,0,25,108,8,90,48,0,0,446,94,0,0,10,17,0,0,0,0,0,2,8,6,0,28,131,20,7,55,277,109,39,33,57,17,22,10,6,2,3,1,0,0,0,48,7.0,4.0,10.0,5.0,4.0,3.0,4.0,3.0,5.0,12.0,7.0,8.0,7.0,6.0,9.0,8.0,10.0,7.0,12.0,10.0,13.0,5.0,8.0,4.0,9.0,2.0,4.0,4.0,5.0,4.0,8.0,6.0,7.0,3.0,6.0,4.0,4.0,11.0,8.0,8.0,8.0,9.0,14.0,6.0,8.0,8.0,4.0,5.0,6.0,12.0,6.0,4.0,9.0,7.0,9.0,7.0,6.0,8.0,8.0,8.0,7.0,10.0,13.0,11.0,10.0,5.0,9.0,15.0,11.0,4.0,13.0,7.0,6.0,8.0,3.0,8.0,3.0,5.0,5.0,5.0,5.0,7.0,4.0,4.0,6.0,4.0,3.0,7.0,2.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,94,373,157,0,30,27,37,47,39,19,30,35,45,35,35,37,51,44,37,26,26,17,6,1,0,0,623,0,0,1,0,623,0,0,1,0,185,0,7,117,34,0,187,94,0,337,287,0,0,0,0,0,0,0,0,0,0,0,0,624,0,0,0,11,1,0,0,0,612,0,44,144,7,3,0,426,0,2.8838951310861423,0.0,3.796875,0.0,6.121794871794871,0,0,7,1,0,0,0,239,0,33,25,28,25,54,34,16,9,12,3,4,1,0,1,0,2,237,10,164,83,170,77,35,212,122,125,3,244,172,75,1,246,170,77,152,95,23,129,20,227,83,164,39,208,160,87,205,42,0,247,71,137,36,3,0,186,61,0,0,0,0,0,0,0,0,0,0,0,247,0,1.3157894736842106,1.2105263157894737,1.0,1.0,1.0,59.06882591093117 +60501,Herrera,Parita,Parita,1826,1,1,0,0,0,0,0,1,0,0,0,0,0,0,842,443,72,5,1348,9,1,0,0,3,1,1352,0,1,2,0,0,4,0,3,1256,52,44,2,5,0,3,1329,13,3,0,0,17,1362,0,274,26,32,111,23,0,165,88,1047,58,4,0,1310,2,8,12,0,30,0,1220,95,44,1,2,0,0,849,501,0,12,0,0,1291,24,12,6,2,1,0,0,0,24,1,1,1435,394,6.417483044461191,18.85983421250942,6.448379804069329,19.403918613413715,1.012481644640235,3.924375917767988,2.68575624082232,1379,818,1277,122,264,48,64,44,31,65,15,16,34,3,105,49,23,26,36,31,36,3385,595,0,1403,2577,0,2725,1255,0,3744,236,0,1059,2921,0,895,164,2825,96,0,112,62,61,24,69,81,106,102,87,710,0,1,49,105,171,294,96,177,763,3,19,78,93,205,198,156,99,15,4,36,1,0,2,1,0,1648,122,1849,0,0,57,13,406,606,661,135,41,1021,92,253,41,102,3,192,29,0,2076,2104,461,716,56,445,46,0,9,0,2,222,22,1069,25,0,0,1895,1100,50,21,121,378,14,39,1,0,0,90,177,131,114,269,92,314,137,446,1662,337,162,216,352,346,520,222,177,86,42,12,8,6,7,25,45.0,46.0,61.0,48.0,63.0,58.0,61.0,59.0,58.0,62.0,50.0,58.0,51.0,42.0,47.0,46.0,44.0,54.0,56.0,49.0,62.0,54.0,57.0,61.0,54.0,77.0,75.0,54.0,68.0,59.0,66.0,47.0,50.0,63.0,58.0,60.0,58.0,48.0,48.0,35.0,47.0,42.0,36.0,45.0,39.0,62.0,44.0,52.0,63.0,49.0,50.0,46.0,61.0,63.0,63.0,49.0,59.0,51.0,55.0,52.0,48.0,40.0,53.0,39.0,40.0,53.0,33.0,36.0,43.0,50.0,41.0,26.0,37.0,38.0,34.0,34.0,29.0,28.0,32.0,19.0,21.0,17.0,27.0,15.0,11.0,20.0,9.0,12.0,11.0,9.0,8.0,8.0,3.0,5.0,7.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,809,2651,720,0,263,298,248,249,288,333,284,249,209,270,283,266,220,215,176,142,91,61,31,2,2,0,4111,39,23,7,0,4112,42,19,7,0,987,57,308,903,198,23,895,809,0,2836,1293,51,0,6,125,19,2,0,0,0,0,0,53,3975,0,244,394,870,62,210,13,1194,1193,0,864,1191,402,36,0,1687,0,1.9497816593886463,0.0,2.5893536121673004,0.0,8.941387559808613,81,144,342,36,82,5,365,324,0,40,60,23,72,121,152,198,149,222,131,83,46,46,14,13,9,1363,16,1310,69,1286,93,262,1117,1290,89,488,891,957,422,354,1025,1272,107,1304,75,885,419,525,854,953,426,620,759,185,1194,272,1107,7,1372,233,746,373,27,1,933,446,0,1,40,8,1,0,0,0,0,0,13,1316,0,1.5043478260869565,1.5246376811594202,1.3333333333333333,1.011764705882353,1.011764705882353,54.96664249456128 +60502,Herrera,Parita,Cabuya,539,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,239,147,3,359,27,0,0,0,1,2,380,0,1,1,1,3,2,0,1,87,56,231,6,9,0,0,372,8,2,0,0,7,389,0,81,16,7,37,10,0,0,14,341,32,2,0,367,0,6,12,3,1,0,381,5,3,0,0,0,0,77,294,0,18,0,0,0,381,7,0,0,0,0,0,0,0,1,0,0,542,6.981958762886598,23.75515463917526,6.974226804123711,23.899484536082475,1.012853470437018,3.652956298200514,2.2930591259640103,395,210,291,34,91,6,16,7,5,18,6,5,52,0,24,7,5,16,10,6,5,816,260,0,64,1012,0,205,871,0,967,109,0,205,871,0,187,18,808,63,0,64,6,15,0,34,46,68,41,27,346,2,1,0,34,43,81,28,37,133,0,0,5,7,14,10,13,15,2,0,4,0,0,0,0,0,363,18,609,0,3,6,5,49,127,347,67,19,176,14,21,15,56,1,96,0,1,623,513,44,193,16,113,11,0,2,1,7,124,13,344,0,0,0,787,155,0,0,9,33,2,4,0,0,1,2,11,13,15,40,46,55,29,169,567,147,35,60,108,77,79,27,24,6,5,0,1,0,0,0,15.0,14.0,17.0,14.0,17.0,11.0,15.0,18.0,11.0,14.0,17.0,11.0,8.0,15.0,13.0,16.0,19.0,16.0,17.0,15.0,13.0,15.0,19.0,9.0,16.0,15.0,21.0,19.0,9.0,14.0,13.0,15.0,16.0,14.0,14.0,10.0,13.0,17.0,11.0,11.0,9.0,15.0,14.0,9.0,8.0,18.0,18.0,12.0,15.0,16.0,16.0,19.0,11.0,11.0,14.0,18.0,15.0,15.0,16.0,15.0,8.0,16.0,14.0,10.0,17.0,9.0,10.0,15.0,16.0,10.0,14.0,11.0,12.0,10.0,8.0,4.0,13.0,8.0,8.0,4.0,9.0,6.0,9.0,3.0,2.0,5.0,6.0,1.0,0.0,4.0,1.0,3.0,3.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,210,716,210,0,77,69,64,83,72,78,72,62,55,79,71,79,65,60,55,37,29,16,10,1,2,0,1132,0,3,1,0,1132,1,2,1,0,369,8,31,146,51,3,319,209,0,711,425,0,0,1,1,9,0,0,0,1,0,0,8,1116,0,17,6,47,8,2,1,34,1021,0,178,299,49,1,1,608,0,2.3524027459954238,0.0,3.075757575757576,0.0,6.569542253521127,5,3,23,4,1,1,18,340,0,37,41,14,39,58,65,49,29,38,12,5,5,2,0,0,0,385,10,347,48,344,51,36,359,361,34,57,338,257,138,8,387,354,41,329,66,87,242,46,349,70,325,123,272,110,285,90,305,4,391,85,199,95,16,1,311,84,0,0,0,1,0,0,0,0,0,0,3,391,0,1.573232323232323,1.2954545454545454,1.0,1.0,1.0,56.92151898734177 +60503,Herrera,Parita,Los Castillos,378,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,64,4,265,12,0,0,0,4,0,271,0,2,2,0,0,4,0,2,118,56,99,3,5,0,0,261,5,0,0,0,15,281,0,38,24,2,27,11,0,2,9,248,22,0,0,253,0,2,6,0,20,0,278,1,2,0,0,0,0,65,207,0,9,0,0,0,263,16,0,0,0,0,0,0,2,0,0,0,383,6.978494623655914,16.97132616487455,6.989247311827957,18.154121863799283,1.0249110320284698,3.427046263345196,2.04982206405694,288,147,266,26,56,5,10,3,2,10,1,1,8,0,32,17,2,19,3,10,22,659,120,0,135,644,0,492,287,0,698,81,0,205,574,0,184,21,547,27,0,36,6,17,1,20,28,35,21,17,197,0,0,2,25,49,45,28,33,102,2,10,16,14,16,18,25,4,8,1,3,0,0,0,0,0,317,34,353,0,2,13,8,27,115,157,52,2,149,25,28,15,23,7,101,1,0,436,387,54,168,18,93,7,0,9,0,0,71,7,193,0,0,0,483,148,2,10,7,43,8,3,0,0,0,6,24,10,13,63,45,44,35,111,377,90,64,50,77,57,49,22,18,7,4,1,3,1,3,0,9.0,12.0,5.0,18.0,14.0,9.0,14.0,8.0,20.0,10.0,10.0,9.0,13.0,16.0,8.0,7.0,10.0,16.0,11.0,13.0,9.0,15.0,10.0,12.0,15.0,13.0,12.0,14.0,15.0,10.0,12.0,8.0,13.0,10.0,12.0,8.0,8.0,10.0,13.0,6.0,7.0,16.0,7.0,12.0,6.0,7.0,8.0,5.0,11.0,7.0,11.0,16.0,13.0,11.0,14.0,16.0,9.0,7.0,15.0,6.0,20.0,3.0,7.0,7.0,8.0,7.0,10.0,4.0,6.0,3.0,6.0,6.0,6.0,4.0,4.0,8.0,4.0,12.0,8.0,4.0,2.0,4.0,3.0,4.0,1.0,4.0,2.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,175,531,117,0,58,61,56,57,61,64,55,45,48,38,65,53,45,30,26,36,14,10,1,0,0,0,820,0,3,0,0,820,0,3,0,0,190,16,90,143,34,1,174,175,0,426,397,0,0,8,8,1,0,0,0,0,0,0,6,800,0,10,34,112,4,1,0,101,561,0,135,247,22,10,0,409,0,2.4103343465045595,0.0,3.105691056910569,0.0,7.551640340218712,2,15,49,3,1,0,35,183,0,20,17,24,24,40,46,26,23,36,12,8,3,4,1,4,0,272,16,251,37,248,40,33,255,258,30,40,248,168,120,13,275,257,31,248,40,111,137,61,227,160,128,120,168,107,181,142,146,4,284,73,144,64,7,0,199,89,0,1,3,0,0,0,0,0,0,0,2,282,0,1.5138888888888888,1.34375,0.0,1.0,1.0,54.170138888888886 +60504,Herrera,Parita,Llano de La Cruz,196,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,23,1,129,9,0,0,0,1,0,134,0,0,4,0,0,1,0,0,95,10,34,0,0,0,0,134,2,1,0,0,2,139,0,39,8,1,9,1,0,3,4,122,8,2,0,121,1,1,1,0,15,0,130,6,2,0,0,0,1,45,90,0,4,0,0,0,130,3,0,0,0,0,0,0,6,0,0,0,197,6.69172932330827,10.263157894736842,6.924812030075188,17.526315789473685,1.0,3.5899280575539567,1.935251798561151,139,67,96,5,15,4,9,4,1,4,5,4,4,2,7,2,1,1,6,6,7,315,38,0,73,280,0,226,127,0,331,22,0,75,278,0,65,10,271,7,0,9,3,5,0,10,10,12,10,13,87,0,0,3,8,22,28,10,12,62,0,0,7,10,14,2,8,3,1,1,3,0,0,0,0,0,129,25,176,0,1,5,2,37,42,66,29,2,54,11,39,0,14,2,33,0,0,191,168,25,54,5,64,2,0,3,0,0,42,2,92,2,0,0,216,87,3,0,10,10,1,3,0,0,0,7,6,8,7,27,19,21,16,43,161,52,12,24,29,26,26,14,6,4,1,1,1,0,0,2,2.0,1.0,2.0,1.0,5.0,1.0,5.0,3.0,7.0,2.0,3.0,2.0,2.0,5.0,5.0,3.0,3.0,6.0,3.0,7.0,4.0,6.0,3.0,2.0,2.0,4.0,5.0,4.0,7.0,2.0,1.0,3.0,8.0,2.0,3.0,4.0,4.0,4.0,3.0,4.0,4.0,4.0,5.0,5.0,4.0,1.0,2.0,7.0,5.0,10.0,7.0,6.0,3.0,1.0,4.0,3.0,6.0,8.0,5.0,7.0,6.0,6.0,7.0,9.0,6.0,7.0,6.0,3.0,2.0,5.0,5.0,8.0,8.0,6.0,6.0,4.0,0.0,3.0,2.0,2.0,4.0,1.0,2.0,2.0,1.0,0.0,1.0,0.0,2.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,46,228,85,0,11,18,17,22,17,22,17,19,22,25,21,29,34,23,33,11,10,3,5,0,0,0,354,2,3,0,0,355,2,2,0,0,89,13,37,71,24,1,78,46,0,206,152,1,0,0,1,1,0,0,0,0,0,0,2,355,0,7,9,48,1,0,0,96,198,0,45,97,42,1,1,173,0,2.2684563758389262,0.0,2.754385964912281,0.0,8.192200557103064,4,4,16,0,0,0,40,75,0,20,12,7,10,16,20,12,14,12,7,3,3,1,1,0,1,138,1,132,7,128,11,16,123,123,16,38,101,99,40,4,135,136,3,124,15,51,73,25,114,95,44,55,84,49,90,75,64,1,138,35,67,33,4,0,101,38,0,0,0,0,0,0,0,0,0,0,0,139,0,1.3741007194244603,1.20863309352518,1.0,1.0,1.0,58.20863309352518 +60505,Herrera,Parita,París,526,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,384,19,3,390,13,0,0,0,3,0,396,0,0,2,1,1,6,0,0,332,9,48,2,1,0,14,386,10,1,0,0,9,406,0,54,20,3,29,16,0,19,21,338,28,0,0,391,4,5,3,0,3,0,381,2,22,0,0,0,1,201,198,0,7,0,0,357,30,8,2,1,0,0,1,0,4,3,0,0,528,6.858227848101266,22.359493670886074,6.974683544303797,23.61772151898734,1.0147783251231528,3.7192118226600974,2.541871921182266,412,250,325,45,49,15,16,7,5,21,6,7,17,1,38,15,7,8,11,39,12,946,177,0,290,833,0,757,366,0,1037,86,0,264,859,0,216,48,803,56,0,57,12,15,1,15,41,40,33,39,220,0,0,6,39,53,88,34,46,188,1,5,15,19,30,35,45,23,8,2,11,0,1,0,1,0,472,19,543,0,0,7,2,84,159,240,48,12,233,38,45,29,40,0,102,2,1,617,559,76,245,31,129,5,1,2,1,1,90,5,303,7,0,0,644,246,6,7,18,94,6,11,2,0,0,11,36,17,28,80,25,75,42,177,495,113,51,58,125,121,90,41,37,14,10,6,3,2,3,7,17.0,9.0,12.0,15.0,18.0,13.0,11.0,18.0,11.0,18.0,12.0,19.0,10.0,16.0,17.0,10.0,20.0,11.0,22.0,15.0,19.0,13.0,16.0,13.0,15.0,11.0,13.0,14.0,17.0,14.0,22.0,8.0,21.0,8.0,11.0,13.0,17.0,11.0,17.0,6.0,14.0,19.0,18.0,11.0,14.0,14.0,10.0,13.0,13.0,21.0,16.0,21.0,15.0,17.0,11.0,16.0,18.0,7.0,18.0,14.0,15.0,19.0,15.0,15.0,14.0,18.0,16.0,10.0,9.0,16.0,14.0,11.0,10.0,12.0,15.0,9.0,10.0,14.0,10.0,0.0,6.0,4.0,9.0,0.0,5.0,7.0,3.0,1.0,3.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,216,735,225,0,71,71,74,78,76,69,70,64,76,71,80,73,78,69,62,43,24,16,5,4,2,0,1147,24,5,0,0,1147,27,2,0,0,322,23,68,254,51,3,239,216,0,606,554,16,0,0,36,12,1,0,0,0,0,0,13,1114,0,37,42,224,5,5,4,137,722,0,234,345,87,11,2,497,0,1.849794238683128,0.0,2.4885714285714284,0.0,8.243197278911564,13,24,90,1,1,1,56,226,0,16,21,15,23,47,57,71,49,49,19,14,5,14,2,5,5,397,15,376,36,355,57,76,336,376,36,123,289,267,145,40,372,375,37,373,39,195,178,119,293,282,130,187,225,63,349,123,289,2,410,80,230,85,17,0,300,112,0,0,10,3,0,0,0,0,0,0,2,397,0,1.4975728155339805,1.3567961165048543,1.0,1.0,1.0,55.560679611650485 +60506,Herrera,Parita,Portobelillo,412,20,0,0,0,0,0,0,0,0,0,0,1,0,0,0,177,149,4,309,17,0,0,0,4,0,316,0,0,7,0,0,7,0,0,162,42,96,25,5,0,0,316,4,1,0,0,9,330,0,33,13,1,34,21,0,2,9,309,10,0,0,269,1,7,16,0,37,0,323,4,3,0,0,0,0,81,233,0,15,0,1,158,163,2,6,0,0,0,0,0,0,0,1,0,433,7.0,22.74303405572756,7.0,23.758513931888544,1.003030303030303,3.478787878787879,2.372727272727273,332,182,283,24,74,9,21,10,4,14,2,4,2,0,29,8,2,6,4,9,11,753,167,0,211,709,0,599,321,0,848,72,0,196,724,0,174,22,689,35,0,35,7,11,1,20,45,29,34,17,217,0,0,18,36,60,61,21,22,151,0,4,11,17,14,39,42,4,2,0,2,0,0,0,0,0,356,16,474,0,0,5,4,52,124,200,38,60,174,22,72,12,16,0,73,0,1,506,455,79,175,15,75,17,0,8,1,3,102,5,265,1,0,0,542,191,18,4,12,75,2,2,0,0,1,7,33,20,23,57,26,41,29,135,441,131,48,39,90,69,77,21,21,13,6,1,0,0,3,1,10.0,12.0,10.0,9.0,13.0,8.0,14.0,14.0,16.0,9.0,13.0,6.0,13.0,14.0,13.0,13.0,10.0,15.0,13.0,11.0,14.0,11.0,9.0,17.0,14.0,15.0,13.0,13.0,14.0,13.0,15.0,14.0,7.0,14.0,12.0,12.0,13.0,12.0,9.0,13.0,12.0,4.0,19.0,13.0,10.0,10.0,11.0,5.0,13.0,12.0,22.0,9.0,16.0,15.0,16.0,11.0,12.0,16.0,16.0,13.0,12.0,11.0,12.0,17.0,9.0,6.0,7.0,5.0,8.0,11.0,10.0,5.0,4.0,8.0,6.0,9.0,4.0,7.0,9.0,5.0,6.0,8.0,4.0,5.0,5.0,3.0,5.0,0.0,3.0,3.0,2.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,174,632,155,0,54,61,59,62,65,68,62,59,58,51,78,68,61,37,33,34,28,14,7,2,0,0,957,4,0,0,0,957,4,0,0,0,255,9,86,172,38,4,223,174,0,650,308,3,0,0,25,5,0,0,0,0,0,0,2,929,0,7,10,122,2,0,3,94,723,0,170,280,50,3,0,458,0,2.109452736318408,0.0,2.9267399267399266,0.0,7.86888657648283,2,5,50,2,0,0,43,230,0,28,28,13,25,42,53,45,26,28,14,15,5,4,1,3,1,326,6,297,35,290,42,47,285,292,40,49,283,206,126,10,322,303,29,274,58,95,179,65,267,246,86,129,203,126,206,152,180,4,328,73,173,84,2,0,252,80,0,0,6,1,0,0,0,0,0,0,0,325,0,1.5240963855421688,1.370481927710843,0.0,1.1,1.1,55.774096385542165 +60507,Herrera,Parita,Potuga,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,365,27,3,386,6,0,0,0,2,1,390,0,0,0,0,1,4,0,0,201,11,179,2,2,0,0,375,11,1,0,0,8,395,0,73,12,6,40,20,0,5,26,339,25,0,0,343,1,12,10,0,29,0,379,5,5,1,0,0,5,105,275,0,15,0,0,114,267,11,0,0,0,0,0,0,1,2,0,0,546,4.823979591836735,8.665816326530612,5.01530612244898,9.35204081632653,1.010126582278481,3.4658227848101264,2.3746835443037977,399,193,296,40,54,7,17,9,2,15,9,5,11,3,41,17,0,5,16,10,7,755,251,0,148,858,0,563,443,0,914,92,0,240,766,0,212,28,725,41,0,44,15,16,2,26,30,51,43,38,229,0,1,0,37,49,89,20,42,150,1,4,5,15,21,39,25,9,0,0,5,0,0,0,0,0,371,34,514,0,3,12,7,101,142,194,20,57,225,9,60,18,14,1,72,2,0,561,499,56,209,18,72,40,0,6,0,2,94,9,299,5,0,0,645,185,0,7,17,60,0,5,0,0,0,8,22,17,15,65,45,50,35,148,452,122,55,76,113,93,73,29,23,12,5,0,0,1,1,5,9.0,9.0,15.0,21.0,11.0,15.0,17.0,13.0,14.0,17.0,17.0,12.0,10.0,14.0,15.0,10.0,9.0,14.0,11.0,18.0,15.0,13.0,27.0,12.0,16.0,17.0,18.0,14.0,9.0,10.0,17.0,12.0,14.0,16.0,11.0,10.0,8.0,9.0,13.0,7.0,11.0,15.0,17.0,20.0,13.0,13.0,8.0,17.0,16.0,12.0,11.0,8.0,10.0,9.0,14.0,10.0,16.0,15.0,9.0,16.0,15.0,8.0,11.0,10.0,8.0,13.0,8.0,18.0,15.0,13.0,13.0,5.0,4.0,13.0,6.0,4.0,11.0,8.0,11.0,4.0,7.0,5.0,8.0,6.0,6.0,8.0,3.0,2.0,2.0,3.0,1.0,1.0,3.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,209,642,209,0,65,76,68,62,83,68,70,47,76,66,52,66,52,67,41,38,32,18,8,4,1,0,1039,15,6,0,0,1040,16,4,0,0,288,5,33,173,48,8,296,209,0,662,387,11,0,1,24,18,0,0,0,0,0,0,14,1003,0,14,17,46,10,5,0,60,908,0,202,306,96,11,0,445,0,2.2803738317757007,0.0,2.9365079365079363,0.0,7.4216981132075475,5,8,26,6,2,0,28,324,0,26,33,18,34,66,65,52,27,36,21,11,3,4,0,2,1,392,7,353,46,342,57,47,352,350,49,78,321,240,159,22,377,338,61,336,63,103,233,65,334,160,239,114,285,75,324,90,309,4,395,111,209,69,10,0,277,122,0,1,7,2,0,0,0,0,0,0,3,386,0,1.406015037593985,1.25062656641604,1.0,1.0,1.0,55.82456140350877 +60601,Herrera,Pesé,Pesé,1163,6,0,0,0,0,0,0,0,0,0,0,3,0,0,672,256,11,5,932,7,2,0,0,2,1,938,0,0,1,1,1,3,0,0,891,30,18,2,0,0,3,927,5,2,0,0,10,944,0,109,15,47,36,18,0,107,99,707,31,0,0,923,2,1,17,0,1,0,934,1,8,1,0,0,0,499,433,0,12,0,0,940,0,0,0,0,0,0,0,1,0,3,0,1172,0,6.975531914893617,22.282978723404256,6.98936170212766,23.937234042553197,1.007415254237288,3.680084745762712,2.4184322033898304,954,512,868,75,179,30,43,19,6,50,5,6,23,1,54,12,14,15,28,30,21,2298,361,0,903,1756,0,2133,526,0,2495,164,0,670,1989,0,570,100,1924,65,0,76,34,34,18,47,54,89,60,55,397,0,0,13,94,131,205,76,137,530,2,25,38,57,123,157,119,46,8,1,31,0,0,0,2,0,1135,153,1151,0,3,58,31,255,408,418,38,32,825,96,130,32,110,1,52,0,1,1378,1393,349,497,37,333,28,0,2,1,2,84,18,709,14,0,0,1286,716,14,28,80,276,6,31,2,0,1,68,116,96,110,241,25,172,134,325,1151,184,107,139,225,230,357,161,111,45,31,7,4,1,4,14,28.0,29.0,21.0,34.0,34.0,34.0,35.0,29.0,34.0,54.0,46.0,32.0,34.0,31.0,37.0,36.0,44.0,37.0,27.0,32.0,37.0,34.0,50.0,33.0,42.0,37.0,58.0,50.0,42.0,45.0,38.0,34.0,46.0,40.0,45.0,42.0,39.0,43.0,34.0,21.0,24.0,32.0,42.0,39.0,35.0,38.0,34.0,17.0,32.0,30.0,31.0,43.0,34.0,41.0,31.0,30.0,42.0,41.0,37.0,49.0,42.0,33.0,41.0,27.0,29.0,25.0,29.0,21.0,26.0,22.0,19.0,19.0,18.0,24.0,21.0,18.0,15.0,19.0,6.0,9.0,13.0,12.0,13.0,9.0,13.0,11.0,8.0,2.0,8.0,1.0,3.0,2.0,3.0,1.0,0.0,2.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,512,1860,399,0,146,186,180,176,196,232,203,179,172,151,180,199,172,123,101,67,60,30,9,6,3,0,2731,17,22,1,0,2733,19,18,1,0,630,55,270,553,120,36,595,512,0,1892,856,23,0,5,14,0,0,0,3,0,0,0,85,2664,0,88,223,156,8,10,4,694,1588,0,674,783,245,29,0,1040,0,1.9390739236393173,0.0,2.682926829268293,0.0,9.139299891735837,31,76,64,4,2,1,220,556,0,31,35,35,52,85,108,140,110,162,73,60,22,21,8,7,2,943,11,909,45,908,46,174,780,911,43,470,484,652,302,258,696,870,84,903,51,626,277,412,542,739,215,469,485,117,837,126,828,18,936,186,509,237,22,0,603,351,0,3,4,0,0,0,2,0,0,0,33,912,0,1.4444444444444444,1.460167714884696,1.0,1.0232558139534884,1.0232558139534884,54.5083857442348 +60602,Herrera,Pesé,Las Cabras,857,17,0,3,0,0,0,0,0,0,0,0,0,0,0,0,474,235,15,672,37,0,0,0,12,3,711,0,0,2,2,0,7,0,2,601,8,103,5,5,1,1,693,14,2,1,0,14,724,0,55,21,11,49,17,0,5,19,667,29,4,0,639,6,3,28,1,47,0,687,15,21,0,1,0,0,121,566,2,35,0,0,0,706,12,6,0,0,0,0,0,0,0,0,0,877,6.933147632311978,21.972144846796656,6.97075208913649,23.317548746518103,1.0124309392265194,3.335635359116022,2.157458563535912,733,446,690,60,106,19,21,15,6,26,5,4,16,0,56,29,19,17,26,41,12,1593,442,0,270,1765,0,756,1279,0,1812,223,0,514,1521,0,472,42,1387,134,0,136,32,31,2,61,78,101,67,73,510,0,0,1,66,104,158,60,86,261,1,9,28,22,35,47,18,31,2,0,15,0,0,0,0,0,792,69,966,0,2,22,7,48,301,462,118,37,417,51,77,25,49,1,232,3,1,1119,1028,91,509,34,202,10,0,7,3,2,165,16,654,1,0,0,1357,329,1,14,27,82,2,15,0,0,3,25,33,25,31,137,68,124,69,346,1066,291,108,134,165,143,131,47,41,10,3,1,5,0,1,1,26.0,28.0,30.0,28.0,37.0,33.0,36.0,30.0,33.0,39.0,30.0,28.0,23.0,26.0,25.0,39.0,37.0,31.0,33.0,37.0,35.0,40.0,35.0,28.0,25.0,25.0,40.0,25.0,32.0,33.0,21.0,41.0,36.0,36.0,33.0,28.0,26.0,39.0,24.0,28.0,29.0,26.0,29.0,31.0,26.0,21.0,26.0,21.0,27.0,19.0,30.0,17.0,38.0,24.0,24.0,21.0,17.0,15.0,22.0,24.0,29.0,14.0,16.0,23.0,28.0,33.0,19.0,17.0,18.0,11.0,13.0,17.0,24.0,12.0,7.0,8.0,12.0,15.0,10.0,13.0,4.0,5.0,8.0,6.0,6.0,6.0,4.0,0.0,4.0,3.0,4.0,4.0,1.0,1.0,0.0,1.0,5.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,452,1404,291,0,149,171,132,177,163,155,167,145,141,114,133,99,110,98,73,58,29,17,10,6,0,0,2130,4,4,9,0,2130,5,3,9,0,598,26,109,383,72,8,499,452,0,1270,873,4,0,0,20,14,0,0,0,6,0,0,19,2088,0,129,158,273,7,4,2,234,1340,0,334,609,53,5,0,1146,0,2.2885283893395134,0.0,2.9458204334365323,0.0,6.942710759198882,40,58,113,4,2,2,81,433,0,32,80,33,96,112,117,96,50,64,32,6,4,7,1,2,1,719,14,660,73,661,72,114,619,634,99,128,605,452,281,30,703,636,97,616,117,383,233,153,580,322,411,294,439,191,542,195,538,12,721,153,429,138,13,0,546,187,0,0,5,2,0,0,0,1,0,0,4,721,0,1.5266030013642564,1.4024556616643928,1.0,1.1153846153846154,1.1153846153846154,51.90723055934516 +60603,Herrera,Pesé,El Pájaro,448,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,135,3,321,2,0,0,0,3,0,320,0,0,0,2,1,3,0,0,215,4,96,3,2,0,6,299,10,0,1,0,16,326,0,62,13,4,44,1,0,3,4,293,26,0,0,316,0,2,2,0,6,0,314,7,4,0,1,0,0,64,252,0,10,0,0,0,318,6,0,0,0,0,0,0,0,1,1,0,450,7.0,21.21296296296296,7.0,22.41358024691358,1.0,3.539877300613497,1.9355828220858893,326,174,220,10,55,11,7,3,1,13,0,3,2,2,30,6,5,10,7,5,9,671,125,0,113,683,0,389,407,0,746,50,0,129,667,0,108,21,651,16,0,18,9,13,2,21,26,46,25,17,305,0,0,0,12,31,36,12,29,92,4,11,7,8,13,32,15,1,2,1,8,0,0,0,0,0,318,20,411,0,1,16,0,35,72,195,16,93,118,24,29,12,21,2,129,0,1,439,388,36,161,17,68,49,1,3,1,0,116,5,209,1,0,0,555,130,0,12,1,41,2,8,0,0,1,7,17,13,14,41,76,35,20,114,352,158,31,55,68,64,56,16,20,2,2,1,1,0,0,1,6.0,6.0,9.0,10.0,9.0,9.0,7.0,5.0,9.0,8.0,5.0,4.0,7.0,3.0,9.0,2.0,10.0,11.0,10.0,5.0,5.0,7.0,13.0,11.0,13.0,17.0,7.0,10.0,12.0,10.0,8.0,12.0,5.0,10.0,8.0,9.0,12.0,13.0,9.0,4.0,7.0,9.0,5.0,6.0,8.0,13.0,8.0,7.0,11.0,9.0,8.0,18.0,13.0,12.0,14.0,17.0,14.0,13.0,13.0,20.0,15.0,15.0,18.0,14.0,14.0,15.0,13.0,4.0,9.0,12.0,10.0,15.0,8.0,6.0,8.0,15.0,7.0,6.0,3.0,4.0,6.0,7.0,4.0,4.0,8.0,4.0,4.0,3.0,3.0,0.0,2.0,3.0,1.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,106,534,187,0,40,38,28,38,49,56,43,47,35,48,65,77,76,53,47,35,29,14,6,3,0,0,822,4,1,0,0,822,4,1,0,0,253,8,79,152,53,3,173,106,0,503,320,4,0,0,6,2,0,0,0,0,0,0,10,809,0,6,22,124,3,2,0,84,586,0,108,262,33,4,0,420,0,2.436046511627907,0.0,2.952380952380953,0.0,7.292623941958888,1,6,63,3,1,0,33,219,0,28,46,16,51,46,36,37,20,22,10,7,3,4,0,0,0,311,15,304,22,290,36,50,276,299,27,60,266,271,55,2,324,293,33,285,41,94,191,63,263,160,166,116,210,177,149,168,158,0,326,86,168,68,4,0,242,84,0,0,2,1,0,0,0,0,0,0,3,320,0,1.3466257668711656,1.1901840490797546,1.0,1.0625,1.0625,60.05521472392638 +60604,Herrera,Pesé,El Barrero,847,16,2,0,0,0,0,0,0,0,0,0,2,0,0,0,604,69,9,672,1,1,0,0,8,0,668,0,0,0,2,2,10,0,0,634,8,40,0,0,0,0,670,5,0,0,0,7,682,0,71,28,11,51,22,0,12,42,615,13,0,0,650,2,0,25,0,5,0,666,6,6,0,3,0,1,205,455,0,22,0,0,0,654,24,0,1,0,0,0,0,0,1,2,0,867,6.997050147492625,18.57079646017699,6.991150442477876,19.2905604719764,1.004398826979472,3.655425219941349,2.124633431085044,687,391,630,46,134,23,23,10,9,33,3,4,13,1,56,28,6,3,15,21,16,1626,301,0,412,1515,0,1171,756,0,1784,143,0,453,1474,0,396,57,1391,83,0,83,15,35,5,39,49,69,48,63,498,0,0,0,36,86,158,39,68,366,1,14,8,15,55,59,67,39,3,0,8,0,0,0,1,0,775,83,902,0,0,42,37,103,282,378,87,52,494,44,79,26,59,4,146,0,1,1008,999,124,422,33,219,49,0,3,3,1,168,13,625,0,0,0,1124,407,0,19,42,156,3,8,1,0,3,20,57,56,37,174,104,107,77,223,923,208,54,109,192,167,197,67,49,28,10,1,1,1,0,0,19.0,18.0,25.0,18.0,26.0,25.0,24.0,29.0,34.0,29.0,28.0,30.0,25.0,23.0,30.0,29.0,20.0,15.0,29.0,20.0,23.0,33.0,42.0,16.0,28.0,43.0,40.0,39.0,29.0,20.0,27.0,22.0,21.0,21.0,30.0,29.0,25.0,24.0,23.0,24.0,26.0,18.0,28.0,24.0,24.0,32.0,22.0,23.0,17.0,36.0,25.0,28.0,32.0,25.0,28.0,18.0,30.0,26.0,32.0,21.0,19.0,24.0,27.0,23.0,16.0,26.0,14.0,12.0,18.0,21.0,22.0,16.0,16.0,15.0,17.0,12.0,10.0,12.0,17.0,14.0,9.0,12.0,9.0,6.0,10.0,6.0,8.0,5.0,4.0,3.0,4.0,3.0,1.0,0.0,3.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,383,1296,328,0,106,141,136,113,142,171,121,125,120,130,138,127,109,91,86,65,46,26,11,3,0,0,1997,4,5,1,0,1997,5,4,1,0,461,35,70,455,88,11,504,383,0,1345,653,9,0,0,23,1,0,0,0,0,0,0,4,1979,0,3,0,7,0,0,0,21,1976,0,369,597,90,15,1,935,0,1.9806157354618017,0.0,2.6713836477987423,0.0,8.023418036870952,2,0,1,0,0,0,4,680,0,41,67,12,61,90,86,92,50,88,49,23,12,10,3,1,0,677,10,636,51,625,62,88,599,629,58,155,532,413,274,68,619,605,82,608,79,331,277,184,503,271,416,276,411,113,574,125,562,13,674,144,367,166,10,0,489,198,0,0,6,0,0,0,0,0,0,0,2,679,0,1.467248908296943,1.4541484716157205,0.0,1.125,1.125,55.50072780203784 +60605,Herrera,Pesé,El Pedregoso,696,25,0,0,0,0,0,0,0,0,0,0,1,0,0,0,396,132,6,513,15,0,0,0,5,1,525,0,1,0,0,0,8,0,0,485,12,35,2,0,0,0,506,9,1,0,0,18,534,0,128,27,6,11,15,0,8,19,483,23,1,0,481,2,8,20,0,23,0,508,15,11,0,0,0,0,149,359,1,23,1,1,0,526,5,1,0,0,0,0,0,0,1,1,0,722,6.990583804143126,21.084745762711865,7.0,23.854990583804145,1.00749063670412,3.5898876404494384,2.5093632958801497,539,297,471,26,84,15,21,5,9,17,5,2,8,1,28,5,8,14,23,4,11,1222,210,0,269,1163,0,1113,319,0,1315,117,0,320,1112,0,286,34,1052,60,0,63,13,24,6,29,39,79,43,37,363,0,0,3,35,88,77,30,50,222,4,19,13,27,37,37,44,22,8,1,19,0,0,0,0,0,572,20,721,0,0,8,5,77,205,299,38,102,282,30,79,18,44,0,134,0,1,767,733,106,267,26,169,17,0,2,1,3,152,31,399,1,0,0,857,307,3,19,9,92,7,19,0,0,1,18,44,41,28,113,68,62,50,167,664,181,71,76,155,92,139,40,45,16,13,1,3,2,1,1,21.0,16.0,8.0,23.0,19.0,21.0,18.0,20.0,21.0,20.0,16.0,19.0,13.0,20.0,20.0,16.0,19.0,20.0,19.0,26.0,13.0,22.0,35.0,19.0,18.0,16.0,25.0,27.0,18.0,20.0,9.0,24.0,15.0,20.0,18.0,16.0,14.0,13.0,22.0,18.0,16.0,16.0,10.0,14.0,21.0,16.0,13.0,18.0,20.0,21.0,22.0,21.0,27.0,19.0,22.0,26.0,18.0,24.0,16.0,20.0,19.0,17.0,17.0,17.0,13.0,11.0,12.0,19.0,17.0,24.0,14.0,8.0,18.0,14.0,14.0,10.0,14.0,14.0,10.0,10.0,9.0,7.0,7.0,6.0,5.0,2.0,9.0,3.0,6.0,1.0,4.0,2.0,2.0,0.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,275,945,280,0,87,100,88,100,107,106,86,83,77,88,111,104,83,83,68,58,34,21,9,5,2,0,1492,5,1,2,0,1492,6,0,2,0,301,29,124,365,73,8,325,275,0,891,607,2,0,2,11,1,0,0,0,0,5,0,2,1479,0,3,11,46,0,0,1,62,1377,0,251,450,78,5,6,710,0,2.0890625,0.0,2.834080717488789,0.0,7.846,2,4,16,0,0,1,21,495,0,11,53,25,50,79,77,73,50,51,27,19,8,6,6,3,0,522,17,492,47,500,39,66,473,497,42,142,397,355,184,42,497,486,53,472,67,190,282,117,422,435,104,242,297,270,269,239,300,13,526,125,288,117,9,0,411,128,0,0,3,0,0,0,0,0,0,0,2,534,0,1.4230055658627088,1.3599257884972171,0.0,1.0526315789473684,1.0526315789473684,56.6252319109462 +60606,Herrera,Pesé,El Ciruelo,352,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,117,0,276,3,0,0,0,0,0,269,0,0,3,0,0,6,0,1,201,8,65,3,2,0,0,265,13,0,0,0,1,279,0,33,6,0,32,18,0,1,10,253,15,0,0,250,4,7,17,1,0,0,273,3,2,0,0,0,1,56,205,0,17,1,0,0,258,16,2,0,1,0,1,0,0,1,0,0,368,6.894160583941606,19.317518248175183,6.91970802919708,21.945255474452555,1.003584229390681,3.5268817204301075,1.8064516129032255,280,164,241,16,28,12,14,2,1,12,1,0,5,1,28,6,4,3,4,25,1,569,175,0,56,688,0,493,251,0,672,72,0,156,588,0,143,13,535,53,0,54,5,8,1,23,19,46,47,15,225,1,0,0,19,38,44,22,19,72,5,8,5,14,16,26,9,2,0,0,1,0,0,0,0,0,312,3,369,0,0,1,2,16,92,196,31,34,82,8,18,3,17,0,187,0,0,418,359,46,150,7,83,26,0,3,0,0,84,3,251,3,0,0,526,112,0,8,3,34,0,1,0,0,0,1,11,3,11,34,75,13,20,147,381,125,56,43,62,36,39,9,10,6,6,0,0,1,0,3,13.0,8.0,9.0,3.0,9.0,12.0,7.0,13.0,7.0,12.0,5.0,6.0,10.0,8.0,15.0,4.0,15.0,6.0,7.0,18.0,12.0,13.0,13.0,14.0,11.0,17.0,12.0,15.0,10.0,8.0,13.0,10.0,9.0,11.0,9.0,10.0,5.0,9.0,5.0,11.0,6.0,7.0,7.0,5.0,6.0,10.0,9.0,8.0,9.0,12.0,7.0,17.0,12.0,16.0,10.0,15.0,5.0,14.0,12.0,14.0,13.0,9.0,10.0,4.0,5.0,5.0,3.0,4.0,5.0,7.0,5.0,10.0,6.0,4.0,7.0,9.0,7.0,3.0,5.0,3.0,10.0,6.0,6.0,2.0,2.0,4.0,5.0,5.0,1.0,2.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,137,509,131,0,42,51,44,50,63,62,52,40,31,48,62,60,41,24,32,27,26,17,4,1,0,0,775,2,0,0,0,775,2,0,0,0,241,6,41,136,34,4,178,137,0,511,265,1,0,0,27,0,0,0,0,0,0,0,2,748,0,3,2,6,2,3,1,5,755,0,79,160,17,0,1,520,0,2.1772151898734178,0.0,3.036529680365297,0.0,6.754182754182755,1,1,1,0,1,0,1,275,0,17,48,22,36,48,36,23,11,15,8,9,2,2,1,0,2,271,9,237,43,244,36,30,250,220,60,43,237,185,95,2,278,248,32,220,60,89,131,41,239,203,77,99,181,209,71,138,142,11,269,67,150,57,6,0,218,62,0,0,5,0,0,0,0,0,0,0,1,274,0,1.4928571428571429,1.2821428571428573,0.0,1.125,1.125,54.95 +60607,Herrera,Pesé,Sabana Grande,685,7,0,0,0,0,0,0,0,0,0,0,0,0,0,6,526,26,1,541,17,0,0,0,1,0,552,0,0,1,0,0,6,0,0,482,11,62,0,4,0,0,522,22,1,0,0,14,559,0,60,14,6,39,14,0,3,13,523,19,1,0,544,1,4,9,0,1,0,542,12,5,0,0,0,0,161,389,0,8,0,1,63,453,37,1,0,0,0,5,0,0,0,0,0,692,5.710669077757685,12.298372513562388,6.330922242314648,16.21518987341772,1.0107334525939178,3.89087656529517,2.361359570661896,565,327,481,33,109,19,20,13,6,26,3,0,15,0,32,6,13,30,5,20,4,1271,265,0,202,1334,0,995,541,0,1375,161,0,318,1218,0,292,26,1153,65,0,71,18,13,4,49,52,85,66,43,500,0,0,0,33,60,103,26,37,189,3,9,21,20,28,66,11,16,4,1,8,0,0,0,0,0,605,12,806,0,0,3,1,58,208,409,51,80,308,18,44,19,29,1,192,2,0,841,776,96,339,21,147,4,0,6,0,10,187,20,467,3,0,0,1047,268,0,9,6,82,3,8,0,0,0,9,35,9,20,131,62,52,55,244,753,233,85,90,142,91,119,44,27,17,9,3,0,0,1,3,25.0,17.0,19.0,20.0,20.0,26.0,12.0,22.0,14.0,19.0,27.0,22.0,23.0,14.0,16.0,18.0,22.0,11.0,17.0,27.0,19.0,29.0,24.0,21.0,11.0,25.0,22.0,24.0,26.0,21.0,22.0,19.0,18.0,16.0,18.0,12.0,22.0,16.0,24.0,15.0,28.0,14.0,23.0,15.0,18.0,9.0,26.0,18.0,24.0,18.0,18.0,27.0,20.0,27.0,25.0,24.0,24.0,20.0,20.0,26.0,20.0,20.0,16.0,18.0,18.0,16.0,14.0,18.0,16.0,21.0,12.0,17.0,16.0,14.0,17.0,12.0,18.0,10.0,11.0,11.0,8.0,8.0,9.0,8.0,12.0,4.0,9.0,8.0,2.0,2.0,8.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,296,1015,306,0,101,93,102,95,104,118,93,89,98,95,117,114,92,85,76,62,45,25,11,2,0,0,1614,1,1,1,0,1614,1,1,1,0,351,43,106,386,91,11,333,296,0,1122,493,2,0,0,18,1,0,1,0,0,0,0,14,1583,0,8,16,74,3,0,1,82,1433,0,267,529,61,4,1,755,0,2.249258160237389,0.0,3.012448132780083,0.0,7.040197897340755,4,9,25,3,0,0,42,482,0,16,65,14,65,97,94,63,45,46,27,12,11,6,1,1,2,555,10,527,38,516,49,75,490,490,75,70,495,371,194,11,554,517,48,494,71,153,341,117,448,416,149,216,349,417,148,377,188,2,563,109,305,148,3,0,430,135,0,0,3,1,0,1,0,0,0,0,5,555,0,1.488495575221239,1.3734513274336284,1.0,1.027027027027027,1.027027027027027,57.08141592920354 +60608,Herrera,Pesé,Rincón Hondo,606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,346,127,1,470,5,0,0,0,1,0,475,0,0,0,0,0,0,0,1,376,6,88,3,3,0,0,469,5,0,0,0,2,476,0,73,15,3,35,4,0,0,15,460,1,0,0,464,4,3,4,0,1,0,456,5,15,0,0,0,0,155,316,0,5,0,0,0,415,61,0,0,0,0,0,0,0,0,0,0,606,6.266806722689076,14.735294117647058,6.504201680672269,17.050420168067227,1.0,3.762605042016807,2.554621848739496,476,308,399,14,90,13,18,5,4,29,2,1,3,1,46,21,10,4,27,18,7,1103,211,0,274,1040,0,763,551,0,1231,83,0,297,1017,0,257,40,976,41,0,41,14,18,1,35,49,60,45,34,347,0,0,0,44,49,81,26,43,196,2,10,20,15,42,29,23,69,2,0,19,0,0,0,0,0,477,37,707,0,2,14,14,84,177,348,86,12,286,26,46,15,35,0,99,0,3,685,678,107,251,18,125,6,0,0,3,1,130,16,310,3,0,0,794,271,0,11,22,102,2,19,0,0,2,25,57,24,21,93,49,52,38,153,661,176,37,88,107,51,103,43,49,27,10,3,4,0,1,3,12.0,10.0,17.0,10.0,10.0,10.0,14.0,19.0,14.0,26.0,13.0,14.0,18.0,13.0,16.0,10.0,14.0,17.0,15.0,20.0,18.0,24.0,19.0,22.0,18.0,17.0,14.0,26.0,29.0,16.0,20.0,12.0,14.0,12.0,14.0,15.0,12.0,12.0,14.0,15.0,7.0,16.0,16.0,11.0,18.0,13.0,14.0,19.0,19.0,18.0,18.0,17.0,22.0,25.0,24.0,27.0,15.0,23.0,18.0,20.0,26.0,26.0,18.0,18.0,15.0,14.0,8.0,23.0,12.0,15.0,14.0,14.0,19.0,15.0,8.0,11.0,13.0,11.0,9.0,10.0,14.0,5.0,6.0,4.0,4.0,7.0,5.0,5.0,5.0,3.0,1.0,5.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,216,882,265,0,59,83,74,76,101,102,72,68,68,83,106,103,103,72,70,54,33,25,8,3,0,0,1359,0,4,0,0,1359,1,3,0,0,312,15,61,387,71,4,297,216,0,837,525,1,0,2,1,0,0,0,0,10,0,0,25,1325,0,12,35,170,23,3,0,407,713,0,242,473,78,5,5,560,0,2.27563025210084,0.0,2.9681818181818183,0.0,8.0997798972854,2,13,77,8,1,0,132,243,0,31,53,15,50,73,47,49,38,52,27,14,7,8,7,3,2,473,3,456,20,456,20,110,366,430,46,73,403,360,116,30,446,432,44,444,32,281,163,101,375,233,243,221,255,163,313,245,231,1,475,95,274,103,4,0,373,103,0,1,0,0,0,0,0,1,0,0,9,465,0,1.4390756302521008,1.4243697478991597,0.0,1.0769230769230769,1.0769230769230769,58.09873949579832 +60701,Herrera,Santa María,Santa María,891,0,4,0,0,0,0,0,0,0,0,1,4,0,0,120,495,89,11,688,16,0,0,0,11,0,696,0,0,7,1,2,6,0,3,515,59,108,6,3,0,24,686,16,3,0,0,10,715,0,66,26,17,55,16,0,131,35,509,35,3,2,693,1,2,12,0,7,0,710,2,3,0,0,0,0,288,419,0,8,0,0,578,132,3,0,0,0,0,0,0,0,1,1,898,2,6.922861150070126,21.049088359046284,6.96914446002805,22.666199158485277,1.006993006993007,3.707692307692308,2.504895104895105,725,358,776,63,178,17,30,34,7,38,6,5,18,6,46,22,10,6,12,2,16,1754,369,0,702,1421,0,1273,850,0,1924,199,0,615,1508,0,544,71,1405,103,0,104,35,45,4,50,62,77,67,55,253,0,0,7,63,127,175,58,103,559,1,5,12,19,56,80,62,16,13,0,14,0,0,0,1,0,730,42,1078,0,2,13,7,186,357,490,25,20,562,33,42,40,65,0,20,2,1,1091,1170,202,363,41,146,9,0,3,1,9,58,9,816,2,0,0,1005,606,7,6,49,149,13,14,1,0,1,26,63,57,58,133,26,124,83,201,1191,151,90,95,146,167,203,79,67,38,21,6,3,1,1,2,38.0,24.0,36.0,40.0,45.0,47.0,47.0,45.0,48.0,41.0,41.0,38.0,35.0,28.0,25.0,31.0,33.0,25.0,33.0,41.0,33.0,32.0,46.0,28.0,35.0,40.0,33.0,37.0,37.0,32.0,33.0,29.0,35.0,34.0,36.0,25.0,23.0,25.0,24.0,36.0,27.0,33.0,31.0,23.0,23.0,27.0,22.0,21.0,18.0,21.0,24.0,27.0,14.0,28.0,18.0,25.0,16.0,23.0,22.0,15.0,31.0,18.0,23.0,23.0,15.0,22.0,17.0,16.0,16.0,15.0,19.0,12.0,18.0,17.0,19.0,17.0,7.0,7.0,8.0,14.0,10.0,10.0,7.0,3.0,3.0,6.0,7.0,4.0,6.0,5.0,1.0,2.0,4.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,578,1384,299,0,183,228,167,163,174,179,167,133,137,109,111,101,110,86,85,53,33,28,11,1,2,0,2240,13,7,1,0,2241,13,6,1,0,555,32,56,309,82,22,627,578,0,1006,1245,10,0,6,103,4,0,1,1,4,1,0,41,2100,0,142,174,480,29,1,4,744,687,0,463,689,199,9,1,900,0,2.0300518134715024,0.0,2.753303964757709,0.0,8.181335692171606,41,66,190,14,1,2,197,214,0,61,35,29,43,87,97,109,73,82,30,30,18,17,4,5,0,708,17,663,62,634,91,98,627,661,64,253,472,419,306,115,610,673,52,651,74,396,255,231,494,411,314,258,467,163,562,131,594,9,716,155,376,176,18,0,412,313,0,0,15,1,0,0,1,3,1,0,15,689,0,1.5048275862068965,1.6137931034482758,1.0,1.0833333333333333,1.0833333333333333,52.79724137931034 +60702,Herrera,Santa María,Chupampa,579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,364,84,4,424,24,0,0,0,4,0,448,0,0,1,0,1,2,0,0,312,6,114,1,18,1,0,445,3,2,0,0,2,452,0,84,17,0,19,7,0,7,24,409,12,0,0,444,3,5,0,0,0,0,446,0,6,0,0,0,0,197,250,0,5,0,0,338,108,6,0,0,0,0,0,0,0,0,0,0,579,6.984513274336283,22.54646017699115,7.0,22.97566371681416,1.0154867256637168,3.836283185840708,2.5730088495575223,459,253,400,30,75,25,24,20,6,27,5,3,7,0,11,3,2,11,7,0,4,1069,209,0,373,905,0,638,640,0,1172,106,0,291,987,0,247,44,937,50,0,54,16,20,3,24,36,33,31,44,302,0,1,1,33,51,90,24,64,182,0,7,21,28,44,86,32,18,3,2,27,0,0,0,1,0,504,23,651,0,2,6,7,97,173,342,37,2,279,23,50,17,98,1,53,0,0,677,657,136,146,19,193,20,0,7,0,2,110,12,435,3,0,0,726,282,1,8,12,118,3,27,1,0,0,21,56,38,29,93,79,58,61,92,599,122,56,69,125,83,134,41,60,20,10,2,5,4,1,3,14.0,13.0,15.0,14.0,17.0,22.0,16.0,12.0,19.0,14.0,21.0,7.0,12.0,16.0,18.0,9.0,17.0,15.0,12.0,15.0,25.0,17.0,19.0,23.0,23.0,12.0,23.0,16.0,17.0,23.0,18.0,17.0,19.0,17.0,14.0,20.0,14.0,12.0,12.0,12.0,15.0,12.0,21.0,8.0,14.0,8.0,22.0,18.0,11.0,16.0,18.0,17.0,25.0,20.0,17.0,15.0,26.0,17.0,21.0,16.0,14.0,20.0,11.0,22.0,19.0,19.0,16.0,15.0,10.0,13.0,17.0,8.0,14.0,8.0,10.0,10.0,11.0,13.0,11.0,9.0,11.0,11.0,9.0,4.0,6.0,5.0,5.0,4.0,5.0,3.0,5.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,230,844,260,0,73,83,74,68,107,91,85,70,70,75,97,95,86,73,57,54,41,22,9,4,0,0,1317,6,9,2,0,1318,8,6,2,0,307,14,21,306,74,5,377,230,0,845,479,10,0,2,16,12,0,0,0,0,0,0,14,1290,0,20,31,81,11,1,1,190,999,0,252,391,108,5,0,578,0,2.216168717047452,0.0,2.850117096018735,0.0,8.44752623688156,8,5,35,8,1,0,65,337,0,25,31,16,30,70,58,51,36,63,35,22,7,6,3,6,0,454,5,431,28,412,47,76,383,405,54,116,343,307,152,64,395,382,77,414,45,158,256,137,322,162,297,214,245,128,331,118,341,5,454,97,241,114,7,0,325,134,0,0,4,4,0,0,0,0,0,0,6,445,0,1.4749455337690631,1.431372549019608,1.0,1.0588235294117647,1.0588235294117647,58.010893246187365 +60703,Herrera,Santa María,El Rincón,721,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,383,162,31,520,25,0,0,0,8,23,571,0,0,1,1,0,3,0,0,469,6,96,1,3,0,1,554,4,0,1,0,17,576,0,86,23,1,30,5,0,2,20,547,7,0,0,553,0,3,10,0,10,0,570,3,2,0,1,0,0,148,421,0,7,0,0,571,0,4,0,0,0,0,0,0,0,1,0,0,722,6.874782608695652,19.68,6.966956521739131,22.410434782608696,1.0190972222222223,3.7760416666666665,2.5850694444444446,588,304,496,45,212,12,12,14,3,36,3,7,18,0,51,13,5,13,7,4,10,1304,352,0,259,1397,0,1036,620,0,1458,198,0,406,1250,0,378,28,1158,92,0,95,24,39,8,46,60,84,64,65,379,0,0,0,59,72,113,55,74,294,0,1,9,18,20,39,24,7,2,1,4,0,0,0,0,0,595,38,855,0,1,13,10,134,246,378,46,51,410,21,72,15,25,0,83,3,0,919,831,96,336,16,157,23,0,1,0,0,133,4,414,1,0,0,1069,333,0,1,16,63,2,4,0,0,0,15,32,19,25,73,71,132,47,219,796,186,71,94,161,142,164,53,49,17,10,2,2,0,2,1,21.0,19.0,26.0,28.0,28.0,28.0,38.0,24.0,24.0,26.0,23.0,22.0,21.0,27.0,22.0,31.0,28.0,16.0,24.0,25.0,33.0,33.0,34.0,32.0,22.0,32.0,21.0,17.0,14.0,22.0,26.0,19.0,20.0,18.0,20.0,18.0,19.0,17.0,21.0,14.0,11.0,23.0,21.0,17.0,22.0,12.0,13.0,15.0,18.0,25.0,22.0,19.0,31.0,20.0,27.0,23.0,30.0,20.0,27.0,24.0,13.0,15.0,25.0,14.0,12.0,17.0,11.0,14.0,13.0,13.0,11.0,24.0,8.0,22.0,16.0,19.0,11.0,12.0,19.0,8.0,14.0,4.0,8.0,7.0,4.0,9.0,10.0,5.0,5.0,1.0,2.0,2.0,2.0,2.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,377,1075,298,0,122,140,115,124,154,106,103,89,94,83,119,124,79,68,81,69,37,30,8,5,0,0,1743,6,1,0,0,1743,6,1,0,0,489,13,38,229,66,4,534,377,0,1234,512,4,0,11,59,0,0,0,0,0,0,0,15,1665,0,96,206,640,88,6,3,587,124,0,351,496,138,8,0,757,0,2.354341736694678,0.0,3.0,0.0,6.942285714285714,29,85,241,40,2,1,154,36,0,39,32,17,47,68,85,86,54,83,32,19,9,11,3,2,0,561,27,526,62,493,95,72,516,560,28,101,487,253,335,44,544,523,65,529,59,165,364,106,482,394,194,178,410,92,496,97,491,6,582,132,279,166,11,0,398,190,0,4,11,0,0,0,0,0,0,0,5,568,0,1.5629251700680271,1.413265306122449,1.0,1.0,1.0,56.22278911564626 +60704,Herrera,Santa María,El Limón,598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,9,3,426,9,0,0,0,3,0,435,0,0,0,0,1,2,0,0,349,2,57,5,24,0,1,430,6,0,0,0,2,438,0,88,25,3,32,12,0,5,31,382,20,0,0,425,1,7,3,0,2,0,429,3,6,0,0,0,0,134,289,1,14,0,0,174,260,4,0,0,0,0,0,0,0,0,0,0,598,6.981735159817352,22.57990867579909,6.981735159817352,22.874429223744293,1.0136986301369864,3.8493150684931514,2.221461187214612,444,239,367,13,105,19,17,8,6,26,0,5,7,2,33,18,3,4,13,0,7,978,227,0,222,983,0,611,594,0,1132,73,0,249,956,0,228,21,919,37,0,37,18,13,0,17,38,41,30,28,302,0,0,4,24,43,101,26,42,254,0,8,9,22,16,49,40,31,4,0,6,0,0,0,2,0,456,39,620,0,1,23,7,91,153,319,57,0,224,24,59,13,117,1,46,0,0,631,627,114,133,19,201,15,0,2,0,4,143,10,264,0,0,0,670,301,4,8,11,109,4,6,2,0,0,18,39,29,26,68,101,61,49,104,527,165,59,84,97,79,134,39,44,17,11,0,0,0,2,0,9.0,11.0,18.0,15.0,14.0,16.0,14.0,11.0,17.0,18.0,15.0,9.0,14.0,17.0,15.0,11.0,15.0,14.0,19.0,15.0,15.0,17.0,21.0,16.0,18.0,16.0,17.0,18.0,26.0,19.0,9.0,19.0,13.0,17.0,8.0,10.0,12.0,15.0,16.0,8.0,9.0,13.0,9.0,16.0,10.0,12.0,22.0,18.0,12.0,9.0,11.0,21.0,19.0,22.0,20.0,19.0,18.0,15.0,23.0,17.0,19.0,7.0,22.0,12.0,19.0,17.0,16.0,18.0,11.0,14.0,13.0,12.0,12.0,12.0,14.0,14.0,6.0,15.0,7.0,9.0,7.0,9.0,9.0,4.0,11.0,5.0,3.0,2.0,4.0,9.0,2.0,3.0,2.0,0.0,2.0,0.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,213,778,267,0,67,76,70,74,87,96,66,61,57,73,93,92,79,76,63,51,40,23,9,4,1,0,1253,4,0,1,0,1253,4,0,1,0,323,9,15,266,53,5,375,212,0,775,480,3,0,0,33,7,0,0,0,3,0,0,11,1204,0,9,57,77,13,3,2,137,960,0,211,368,87,10,0,582,0,2.2244525547445257,0.0,2.8875305623471883,0.0,8.389507154213037,5,22,43,6,1,2,47,318,0,17,33,22,40,61,65,51,35,51,30,21,7,4,3,4,0,438,6,405,39,393,51,70,374,393,51,85,359,289,155,60,384,389,55,384,60,243,141,96,348,198,246,193,251,179,265,208,236,5,439,103,219,115,7,0,316,128,0,0,6,6,0,0,0,0,0,0,4,428,0,1.4211711711711712,1.412162162162162,0.0,1.0,1.0,58.52927927927928 +60705,Herrera,Santa María,Los Canelos,791,0,9,0,0,0,0,0,1,0,0,0,0,0,0,0,550,45,6,577,18,0,0,0,5,1,587,0,0,3,1,2,7,0,1,394,39,154,2,5,0,7,575,15,2,1,0,8,601,0,89,51,21,27,11,0,2,63,512,24,0,0,570,3,0,25,0,3,0,599,1,1,0,0,0,0,118,458,0,25,0,0,0,568,30,2,0,0,0,0,0,0,1,0,0,801,6.916387959866221,8.96989966555184,6.988294314381271,10.02675585284281,1.021630615640599,3.5207986688851918,2.469217970049917,614,343,737,65,122,16,33,38,7,41,5,10,89,1,21,3,0,4,2,1,1,1591,388,0,446,1533,0,1379,600,0,1745,234,0,536,1443,0,480,56,1319,124,0,126,22,47,5,57,62,94,62,63,334,0,0,0,68,100,139,47,119,368,0,0,35,40,43,64,48,15,14,0,7,0,0,0,0,0,730,112,900,0,0,25,43,125,330,409,16,20,594,26,103,12,40,0,15,0,0,1154,967,130,471,12,161,13,0,3,0,2,51,8,703,4,0,0,1107,497,1,0,7,109,14,7,0,0,0,17,52,37,38,123,16,166,98,295,1082,110,51,92,171,272,196,54,53,19,7,2,5,2,1,4,29.0,36.0,38.0,39.0,43.0,45.0,39.0,33.0,39.0,38.0,39.0,25.0,29.0,39.0,30.0,33.0,28.0,25.0,38.0,31.0,47.0,49.0,39.0,39.0,57.0,34.0,28.0,46.0,33.0,31.0,27.0,22.0,34.0,29.0,25.0,23.0,38.0,34.0,35.0,27.0,20.0,22.0,27.0,28.0,28.0,25.0,22.0,27.0,15.0,23.0,24.0,28.0,21.0,24.0,25.0,23.0,15.0,21.0,16.0,12.0,20.0,15.0,22.0,16.0,14.0,13.0,14.0,16.0,15.0,17.0,9.0,10.0,14.0,13.0,7.0,9.0,5.0,4.0,6.0,4.0,7.0,5.0,2.0,3.0,3.0,4.0,1.0,2.0,3.0,4.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,541,1385,195,0,185,194,162,155,231,172,137,157,125,112,122,87,87,75,53,28,20,14,3,1,1,0,2083,15,21,2,0,2086,16,17,2,0,631,13,121,270,55,9,482,540,0,993,1110,18,0,3,402,24,0,0,1,0,1,0,12,1678,0,23,70,228,8,0,0,459,1333,0,498,549,103,23,3,945,0,2.1317440401505645,0.0,2.9405405405405407,0.0,7.509665252239509,8,21,79,4,0,0,152,350,0,12,20,20,29,82,115,112,45,94,39,15,11,11,4,4,1,600,14,533,81,508,106,109,505,542,72,106,508,276,338,51,563,552,62,521,93,231,290,159,455,445,169,241,373,179,435,169,445,8,606,124,321,150,19,1,366,248,0,1,66,3,0,0,0,0,0,0,6,538,0,1.8764227642276423,1.5723577235772357,1.0,1.0454545454545454,1.0454545454545454,49.69869706840391 +70101,Los Santos,Guararé,Guararé,2567,1,111,9,0,0,0,0,0,0,0,0,0,0,0,585,1226,137,5,1927,21,0,0,0,5,0,1938,0,0,1,1,2,11,0,0,1710,160,28,1,2,0,52,1889,11,14,0,0,39,1953,0,392,65,108,141,29,0,353,280,1261,53,6,0,1836,12,75,3,0,27,0,1565,55,331,2,0,0,0,1127,809,7,7,1,2,1913,0,12,2,0,0,0,0,0,22,4,0,2037,651,6.37922077922078,17.892987012987014,6.703896103896104,21.37818181818182,1.002048131080389,3.7337429595494114,2.4142345110087047,1957,970,1624,122,309,75,70,41,38,74,11,21,55,21,124,56,27,53,26,13,29,4592,579,0,2165,3006,0,3932,1239,0,4940,231,0,1437,3734,0,1094,343,3596,138,0,151,60,53,8,74,129,147,137,127,741,1,2,33,139,205,368,154,198,1002,1,62,58,95,175,259,352,218,64,3,147,0,1,2,5,0,2354,116,2303,0,30,23,11,493,893,812,78,27,1518,246,240,93,264,11,66,16,6,2626,2762,714,739,120,813,65,0,2,7,8,257,38,1161,10,0,0,2293,1234,35,69,139,815,51,132,5,0,4,167,397,204,181,400,100,527,161,329,2014,391,188,311,403,490,584,293,310,131,101,46,42,19,55,10,53.0,55.0,46.0,63.0,61.0,52.0,58.0,64.0,91.0,72.0,101.0,72.0,66.0,87.0,67.0,79.0,69.0,70.0,66.0,68.0,81.0,68.0,79.0,62.0,67.0,76.0,58.0,60.0,82.0,63.0,58.0,46.0,62.0,75.0,65.0,74.0,64.0,65.0,83.0,84.0,86.0,89.0,78.0,93.0,74.0,62.0,64.0,63.0,63.0,55.0,70.0,83.0,72.0,64.0,77.0,46.0,62.0,58.0,69.0,69.0,76.0,48.0,61.0,73.0,58.0,58.0,60.0,49.0,63.0,62.0,50.0,41.0,46.0,45.0,47.0,42.0,21.0,43.0,39.0,27.0,29.0,19.0,36.0,15.0,24.0,18.0,14.0,20.0,11.0,10.0,13.0,8.0,8.0,5.0,4.0,4.0,2.0,1.0,2.0,1.0,4.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1008,3437,943,0,278,337,393,352,357,339,306,370,420,307,366,304,316,292,229,172,123,73,38,10,6,0,5270,81,36,1,0,5273,88,26,1,0,1186,68,302,1078,236,92,1418,1008,0,1880,3438,70,0,17,36,2,0,0,0,2,0,0,50,5281,0,121,144,247,14,4,3,726,4129,0,1229,1518,524,19,9,2089,0,1.746973365617433,0.0,2.41415313225058,0.0,9.728285077951002,53,69,105,10,3,2,310,1405,0,69,78,42,86,165,198,276,188,296,187,125,60,74,28,83,2,1928,29,1869,88,1807,150,392,1565,1789,168,941,1016,1103,854,563,1394,1829,128,1771,186,1124,647,808,1149,1267,690,1112,845,306,1651,302,1655,20,1937,451,1018,423,65,0,1219,738,0,7,12,0,0,0,0,1,0,0,15,1922,0,1.3418497700562084,1.4113438937148697,1.2727272727272727,1.0869565217391304,1.0869565217391304,55.33776188042923 +70102,Los Santos,Guararé,El Espinal,645,2,1,0,0,0,0,0,0,0,0,0,2,0,0,0,479,16,3,491,4,0,0,0,2,1,487,0,0,1,1,3,6,0,0,235,175,85,0,3,0,0,472,6,1,0,0,19,498,0,62,11,4,48,25,0,22,31,412,33,0,0,451,5,35,5,0,2,0,408,56,34,0,0,0,0,168,322,3,5,0,0,0,464,31,0,0,0,0,0,0,0,2,1,0,650,7.0,20.12323232323232,7.0,20.89090909090909,1.0,3.483935742971888,2.206827309236948,500,260,312,42,68,20,24,6,7,14,3,9,12,0,20,13,6,8,10,8,9,1002,231,0,239,994,0,525,708,0,1147,86,0,246,987,0,224,22,934,53,0,53,10,21,2,36,37,55,40,20,318,0,1,13,41,26,84,30,33,225,0,21,2,17,21,38,43,19,7,0,20,0,0,0,0,0,536,19,577,0,2,8,4,90,141,274,44,28,297,35,33,32,51,6,84,15,0,646,631,102,215,32,184,19,0,1,0,2,152,6,295,0,0,0,706,247,13,21,26,93,7,19,0,0,0,23,39,33,28,103,78,90,50,111,473,198,51,84,112,112,114,47,45,17,13,4,5,1,1,0,13.0,14.0,9.0,8.0,18.0,20.0,17.0,20.0,15.0,11.0,19.0,17.0,14.0,13.0,8.0,10.0,14.0,13.0,6.0,16.0,16.0,17.0,11.0,15.0,10.0,15.0,17.0,16.0,9.0,16.0,10.0,17.0,17.0,18.0,11.0,16.0,15.0,17.0,14.0,22.0,15.0,16.0,13.0,13.0,12.0,16.0,10.0,11.0,16.0,8.0,15.0,10.0,17.0,15.0,23.0,24.0,21.0,28.0,25.0,16.0,20.0,17.0,22.0,14.0,20.0,15.0,17.0,14.0,14.0,14.0,13.0,17.0,11.0,13.0,9.0,14.0,16.0,16.0,8.0,7.0,9.0,11.0,4.0,10.0,10.0,9.0,8.0,3.0,9.0,4.0,1.0,4.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,216,775,286,0,62,83,71,59,69,73,73,84,69,61,80,114,93,74,63,61,44,33,7,4,0,0,1265,6,4,2,0,1265,6,4,2,0,370,19,30,214,64,6,358,216,0,548,720,9,0,0,53,4,0,0,0,0,0,0,1,1219,0,7,27,27,5,6,5,55,1145,0,218,356,84,7,11,601,0,1.839857651245552,0.0,2.472636815920398,0.0,8.041503523884103,4,14,14,2,4,1,29,432,0,19,51,17,51,51,76,72,35,52,26,24,5,13,4,2,0,481,19,448,52,451,49,106,394,432,68,116,384,298,202,17,483,453,47,428,72,143,285,111,389,169,331,240,260,118,382,215,285,6,494,146,247,98,9,0,372,128,0,0,7,2,0,0,0,0,0,0,1,490,0,1.292,1.262,1.0,1.16,1.16,57.958 +70103,Los Santos,Guararé,El Macano,188,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,14,3,99,0,2,0,0,1,0,89,0,0,5,1,0,5,0,2,0,12,72,6,12,0,0,90,11,0,0,0,1,102,0,66,4,0,13,5,0,1,0,90,9,2,0,86,9,4,2,0,1,0,95,5,1,0,0,1,0,10,83,0,6,3,0,0,79,19,2,0,0,0,1,0,0,0,1,0,190,6.112244897959184,22.489795918367346,6.969387755102041,24.0,1.0,2.9705882352941178,1.8333333333333333,102,51,70,4,10,4,3,1,0,2,0,3,3,0,4,2,0,2,1,0,0,201,44,0,32,213,0,68,177,0,227,18,0,50,195,0,45,5,186,9,0,10,1,4,0,6,5,11,9,10,84,0,0,2,7,9,11,1,5,41,0,0,1,6,7,7,5,0,2,0,1,0,0,0,0,0,99,13,116,0,0,7,1,12,29,57,2,16,44,7,4,3,8,0,46,0,0,135,118,15,43,3,35,8,0,7,1,4,31,3,64,5,0,0,156,50,2,1,6,12,1,0,0,0,1,3,2,3,3,20,27,11,7,35,117,32,11,12,30,18,14,6,6,0,2,0,0,0,0,5,3.0,3.0,1.0,1.0,4.0,1.0,3.0,2.0,5.0,2.0,4.0,2.0,2.0,4.0,3.0,5.0,2.0,1.0,4.0,3.0,4.0,4.0,2.0,4.0,1.0,0.0,10.0,5.0,2.0,2.0,6.0,3.0,4.0,3.0,0.0,4.0,4.0,5.0,1.0,1.0,3.0,3.0,1.0,0.0,2.0,5.0,2.0,3.0,5.0,4.0,4.0,2.0,2.0,4.0,4.0,3.0,5.0,2.0,6.0,2.0,5.0,7.0,4.0,3.0,1.0,3.0,2.0,1.0,4.0,4.0,3.0,1.0,4.0,4.0,6.0,1.0,1.0,1.0,3.0,1.0,4.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,40,162,51,0,12,13,15,15,15,19,16,15,9,19,16,18,20,14,18,7,7,3,1,0,1,0,253,0,0,0,0,253,0,0,0,0,95,5,9,15,6,1,82,40,0,129,124,0,0,0,0,0,0,0,0,0,1,0,0,252,0,0,5,61,0,0,0,84,103,0,25,45,12,0,0,171,0,2.2616822429906542,0.0,3.164383561643836,0.0,7.474308300395257,0,3,26,0,0,0,28,45,0,10,11,7,9,17,14,12,6,8,4,3,0,0,0,0,1,99,3,81,21,82,20,10,92,55,47,4,98,43,59,0,102,90,12,79,23,20,59,12,90,30,72,35,67,56,46,54,48,0,102,32,52,15,3,0,86,16,0,0,0,0,0,0,0,0,0,0,0,102,0,1.3235294117647058,1.156862745098039,0.0,1.0,1.0,58.00980392156863 +70104,Los Santos,Guararé,Guararé Arriba,229,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,21,4,150,0,0,0,0,4,0,152,0,0,0,0,0,1,0,1,139,8,5,1,0,0,1,144,2,1,0,0,7,154,0,40,4,2,22,10,0,0,6,132,16,0,0,131,0,8,4,0,11,0,134,16,4,0,0,0,0,49,102,0,2,0,1,148,0,0,0,0,0,0,0,0,1,3,2,0,232,6.966216216216216,21.60135135135135,6.986486486486487,23.91891891891892,1.0,3.415584415584416,2.2467532467532467,154,73,83,2,26,6,14,4,1,2,2,2,6,4,11,7,5,2,3,0,5,287,77,0,82,282,0,252,112,0,342,22,0,78,286,0,63,15,277,9,0,9,0,5,0,9,12,10,12,11,91,0,0,1,9,15,27,9,12,76,0,0,3,6,8,20,9,3,4,0,3,0,0,0,0,0,142,14,190,0,0,6,3,37,47,76,9,21,70,15,15,9,16,0,28,0,0,183,196,39,48,12,49,4,1,0,0,0,52,3,76,1,0,0,213,89,1,3,7,28,3,2,0,0,0,6,14,11,10,16,21,22,16,40,144,72,19,27,32,26,31,11,10,5,1,0,0,0,0,1,3.0,2.0,4.0,6.0,0.0,2.0,6.0,4.0,3.0,3.0,8.0,4.0,2.0,6.0,2.0,3.0,4.0,7.0,5.0,6.0,2.0,5.0,6.0,5.0,2.0,6.0,4.0,4.0,4.0,5.0,4.0,3.0,4.0,7.0,3.0,4.0,5.0,2.0,3.0,4.0,2.0,4.0,1.0,6.0,3.0,4.0,7.0,1.0,4.0,5.0,5.0,4.0,6.0,5.0,4.0,7.0,4.0,8.0,7.0,3.0,3.0,6.0,6.0,4.0,3.0,5.0,7.0,6.0,8.0,8.0,6.0,5.0,3.0,2.0,6.0,4.0,2.0,0.0,6.0,2.0,4.0,0.0,3.0,0.0,5.0,4.0,5.0,2.0,2.0,3.0,2.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,55,219,105,0,15,18,22,25,20,23,21,18,16,21,24,29,22,34,22,14,12,16,6,1,0,0,377,1,1,0,0,377,2,0,0,0,113,6,7,46,20,4,128,55,0,167,209,3,0,0,7,3,0,0,0,0,0,0,1,368,0,2,11,21,2,2,0,195,146,0,58,101,36,3,0,181,0,1.7966101694915255,0.0,2.37007874015748,0.0,8.408970976253299,1,1,8,1,1,0,80,62,0,8,25,1,24,16,19,21,11,14,9,4,2,0,0,0,0,149,5,138,16,135,19,40,114,141,13,43,111,49,105,24,130,130,24,134,20,81,53,39,115,106,48,73,81,59,95,71,83,0,154,44,68,32,10,0,105,49,0,0,2,1,0,0,0,0,0,0,1,150,0,1.1883116883116882,1.2727272727272727,1.0,1.0,1.0,59.94155844155844 +70105,Los Santos,Guararé,La Enea,888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,539,66,1,614,2,0,0,0,1,0,608,0,0,3,0,0,5,0,1,524,78,7,1,6,0,1,614,2,0,0,0,1,617,0,171,25,34,36,5,0,84,61,449,21,2,0,577,4,25,1,0,10,0,532,26,59,0,0,0,0,347,259,7,4,0,0,534,78,3,0,0,0,0,0,0,2,0,0,752,136,5.842276422764227,16.90731707317073,6.921951219512195,23.30894308943089,1.0081037277147489,3.873581847649919,2.19935170178282,622,363,509,21,64,24,16,9,15,15,9,8,12,1,29,15,12,8,16,4,13,1411,205,0,469,1147,0,1194,422,0,1520,96,0,432,1184,0,392,40,1137,47,0,47,25,28,5,29,48,47,39,59,271,0,0,25,29,64,125,33,52,271,0,3,19,34,76,104,92,47,10,1,28,0,0,0,5,0,814,14,633,0,0,7,2,120,224,241,43,5,422,158,105,25,44,0,38,33,0,839,849,181,236,25,375,8,0,0,0,1,110,9,221,16,0,0,745,376,25,6,47,221,8,28,5,0,0,36,68,70,58,105,71,272,74,74,553,171,73,106,157,165,213,86,74,37,16,5,10,4,2,16,21.0,13.0,20.0,18.0,19.0,23.0,34.0,24.0,33.0,22.0,27.0,35.0,21.0,14.0,14.0,17.0,12.0,21.0,13.0,21.0,19.0,19.0,19.0,29.0,33.0,21.0,21.0,29.0,27.0,15.0,27.0,27.0,19.0,35.0,20.0,24.0,22.0,23.0,23.0,29.0,27.0,24.0,20.0,22.0,18.0,17.0,18.0,21.0,14.0,21.0,25.0,23.0,26.0,20.0,35.0,24.0,20.0,16.0,21.0,19.0,16.0,14.0,13.0,29.0,16.0,18.0,10.0,16.0,16.0,19.0,12.0,18.0,13.0,11.0,20.0,10.0,4.0,12.0,16.0,10.0,6.0,6.0,12.0,5.0,6.0,5.0,4.0,3.0,3.0,2.0,0.0,2.0,2.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,338,1084,266,0,91,136,111,84,119,113,128,121,111,91,129,100,88,79,74,52,35,17,8,1,0,0,1661,19,8,0,0,1662,20,6,0,0,459,17,53,336,85,15,385,338,0,553,1116,19,0,0,14,0,0,0,0,7,0,0,35,1632,0,16,30,136,4,23,4,564,911,0,348,461,112,14,5,748,0,1.7422818791946308,0.0,2.3853383458646618,0.0,9.135071090047392,7,16,64,3,11,1,203,317,0,15,36,11,28,46,73,95,66,106,70,33,9,15,11,6,2,619,3,602,20,583,39,127,495,578,44,236,386,366,256,179,443,572,50,566,56,377,189,232,390,446,176,335,287,149,473,176,446,13,609,142,345,122,13,0,438,184,0,0,3,0,0,0,0,2,0,0,9,608,0,1.3488745980707395,1.364951768488746,1.25,1.0,1.0,52.736334405144696 +70106,Los Santos,Guararé,La Pasera,616,10,0,4,0,0,0,0,0,0,0,0,1,0,0,21,376,26,4,400,23,0,0,0,4,0,423,0,0,2,0,0,2,0,0,324,74,18,4,4,0,3,404,6,5,0,0,12,427,0,60,66,39,32,6,0,65,20,291,50,1,0,394,2,16,10,0,5,0,395,20,12,0,0,0,0,172,244,1,10,0,0,21,364,31,2,0,0,0,0,0,5,4,0,0,631,6.855769230769231,17.322115384615383,6.985576923076923,19.44951923076923,1.009367681498829,3.4355971896955504,2.189695550351288,432,232,376,52,68,13,18,5,3,15,1,5,25,0,18,17,3,5,10,1,7,1051,127,0,352,826,0,936,242,0,1083,95,0,345,833,0,307,38,778,55,0,57,11,22,1,27,31,39,27,34,230,0,0,7,46,44,66,28,43,209,0,1,22,30,50,16,35,63,24,3,11,0,0,0,1,0,581,23,465,0,3,9,6,55,190,184,23,13,325,30,83,39,39,0,83,1,0,621,624,144,244,39,155,17,0,1,0,0,65,4,271,2,0,0,597,293,7,4,29,110,17,11,1,0,0,20,56,48,40,97,42,120,44,137,472,108,54,56,86,155,161,54,53,20,13,5,3,1,2,2,11.0,25.0,12.0,19.0,18.0,19.0,20.0,15.0,22.0,15.0,12.0,22.0,10.0,29.0,16.0,12.0,19.0,17.0,20.0,25.0,20.0,29.0,16.0,28.0,27.0,25.0,24.0,26.0,17.0,17.0,21.0,18.0,17.0,15.0,18.0,15.0,17.0,10.0,20.0,16.0,20.0,12.0,18.0,12.0,15.0,9.0,15.0,15.0,16.0,18.0,14.0,15.0,12.0,18.0,11.0,22.0,7.0,12.0,12.0,17.0,7.0,17.0,6.0,12.0,7.0,7.0,6.0,13.0,10.0,8.0,6.0,9.0,7.0,6.0,13.0,10.0,8.0,4.0,8.0,4.0,5.0,4.0,5.0,3.0,3.0,3.0,1.0,2.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,828,152,0,85,91,89,93,120,109,89,78,77,73,70,70,49,44,41,34,20,8,4,1,0,0,1226,18,0,1,0,1226,18,0,1,0,351,14,47,177,36,3,352,265,0,464,772,9,0,4,36,16,0,2,1,1,0,0,8,1177,0,12,69,156,4,4,0,223,777,0,279,354,59,3,0,550,0,1.850943396226415,0.0,2.70487106017192,0.0,8.567068273092369,4,22,71,2,3,0,90,240,0,14,31,7,12,27,70,66,42,70,38,24,9,9,9,3,0,416,16,391,41,382,50,64,368,386,46,121,311,218,214,39,393,413,19,362,70,216,146,136,296,342,90,205,227,216,216,181,251,3,429,106,239,76,11,0,308,124,0,3,10,6,0,0,0,0,0,0,2,411,0,1.4375,1.4444444444444444,1.0,1.0,1.0,50.201388888888886 +70107,Los Santos,Guararé,Las Trancas,292,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,8,4,199,0,0,0,0,4,0,197,0,0,1,0,0,5,0,0,147,0,53,1,2,0,0,187,15,0,0,0,1,203,0,60,15,1,15,1,0,0,9,180,13,1,0,191,1,9,1,0,1,0,182,19,2,0,0,0,0,28,173,0,2,0,0,0,201,2,0,0,0,0,0,0,0,0,0,0,295,6.886699507389163,16.147783251231527,6.921182266009852,18.31527093596059,1.0098522167487685,3.38423645320197,2.0886699507389164,205,88,144,10,35,4,11,0,5,6,0,1,5,1,24,12,4,4,14,5,8,384,116,0,71,429,0,246,254,0,465,35,0,98,402,0,87,11,384,18,0,20,4,4,4,10,19,27,20,15,163,0,0,2,17,20,29,10,9,61,0,0,9,9,16,11,15,3,1,0,2,0,0,0,0,0,198,8,268,0,0,6,0,33,57,140,21,17,76,14,25,7,21,0,63,0,0,270,245,42,69,11,62,8,0,14,0,1,83,10,120,11,0,0,345,89,2,0,7,29,1,1,0,0,0,8,12,8,6,28,30,27,22,65,214,95,32,33,39,29,29,14,15,1,3,0,0,0,0,11,5.0,0.0,4.0,6.0,3.0,8.0,2.0,3.0,5.0,5.0,5.0,2.0,6.0,7.0,6.0,6.0,4.0,4.0,8.0,6.0,7.0,12.0,10.0,5.0,5.0,7.0,1.0,7.0,5.0,11.0,7.0,5.0,1.0,5.0,4.0,3.0,2.0,2.0,4.0,5.0,6.0,1.0,6.0,3.0,8.0,3.0,5.0,4.0,10.0,9.0,8.0,6.0,10.0,16.0,5.0,7.0,8.0,8.0,6.0,4.0,6.0,4.0,16.0,11.0,5.0,9.0,5.0,6.0,5.0,7.0,3.0,6.0,10.0,6.0,3.0,6.0,6.0,2.0,8.0,8.0,5.0,4.0,5.0,6.0,2.0,5.0,1.0,3.0,4.0,0.0,5.0,1.0,0.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,67,311,137,0,18,23,26,28,39,31,22,16,24,31,45,33,42,32,28,30,22,13,11,1,0,0,511,4,0,0,0,511,4,0,0,0,131,1,16,72,27,1,200,67,0,277,236,2,0,0,0,0,0,0,0,0,0,0,4,511,0,5,9,103,2,0,1,125,270,0,66,146,21,12,0,270,0,2.232142857142857,0.0,2.8650306748466257,0.0,7.335922330097087,2,5,38,0,0,0,50,110,0,21,29,4,27,32,21,17,16,21,6,2,4,0,0,0,5,200,5,180,25,174,31,38,167,149,56,19,186,93,112,0,205,175,30,154,51,47,107,33,172,54,151,82,123,105,100,107,98,0,205,67,88,44,6,0,147,58,0,0,0,0,0,0,0,0,0,0,0,205,0,1.3170731707317074,1.195121951219512,0.0,1.0,1.0,61.79512195121952 +70108,Los Santos,Guararé,Llano Abajo,311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,15,1,226,0,0,0,0,1,0,221,0,1,0,1,0,4,0,0,20,149,50,5,2,0,1,208,10,0,0,0,9,227,0,58,12,1,12,1,0,0,8,203,16,0,0,213,1,9,1,0,3,0,160,57,10,0,0,0,0,38,187,0,2,0,0,0,219,8,0,0,0,0,0,0,0,0,0,0,311,7.0,24.0,7.0,24.0,1.0,3.308370044052864,2.176211453744493,227,130,144,18,20,8,2,4,3,3,1,2,10,2,26,27,7,1,4,3,14,459,90,0,102,447,0,300,249,0,499,50,0,105,444,0,88,17,408,36,0,36,4,5,0,18,18,15,21,19,180,0,0,0,13,14,23,13,17,75,0,0,1,9,15,23,11,12,6,0,1,0,0,0,0,0,264,1,253,0,0,0,1,15,59,133,38,8,74,20,22,16,14,0,119,0,0,303,271,32,121,17,59,27,4,5,0,1,65,5,150,0,0,0,364,100,1,1,9,40,2,1,0,0,0,18,14,2,11,28,60,21,23,88,234,87,37,30,57,53,36,15,9,5,5,2,4,0,0,0,5.0,5.0,4.0,11.0,6.0,2.0,9.0,5.0,4.0,5.0,5.0,7.0,10.0,7.0,2.0,3.0,10.0,6.0,5.0,6.0,8.0,13.0,5.0,10.0,5.0,7.0,8.0,6.0,8.0,11.0,5.0,9.0,4.0,5.0,5.0,6.0,5.0,11.0,2.0,6.0,6.0,5.0,13.0,6.0,7.0,6.0,6.0,12.0,6.0,8.0,8.0,9.0,9.0,10.0,7.0,9.0,5.0,3.0,4.0,11.0,13.0,10.0,5.0,10.0,3.0,8.0,4.0,6.0,2.0,4.0,6.0,2.0,8.0,8.0,7.0,11.0,6.0,4.0,6.0,8.0,7.0,4.0,4.0,3.0,7.0,0.0,1.0,1.0,2.0,3.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,87,360,127,0,31,25,31,30,41,40,28,30,37,38,43,32,41,24,31,35,25,7,2,3,0,0,572,1,1,0,0,572,1,1,0,0,205,2,14,77,32,1,156,87,0,329,245,0,0,0,1,0,0,0,0,0,0,0,8,565,0,4,60,102,0,0,2,181,225,0,73,156,11,7,0,327,0,1.9193548387096773,0.0,2.462365591397849,0.0,7.411149825783972,2,26,50,0,0,2,67,80,0,16,27,7,18,32,42,27,17,17,11,5,4,3,0,1,0,217,10,206,21,203,24,30,197,179,48,36,191,154,73,2,225,198,29,189,38,75,114,45,182,116,111,109,118,99,128,96,131,3,224,58,131,28,10,0,170,57,0,0,1,0,0,0,0,0,0,0,2,224,0,1.3348017621145374,1.193832599118943,0.0,1.0,1.0,57.48017621145375 +70109,Los Santos,Guararé,El Hato,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,68,1,134,1,0,0,0,1,0,135,0,0,0,1,0,0,0,0,33,50,53,0,0,0,0,127,5,1,0,0,3,136,0,62,8,2,10,5,0,2,2,124,8,0,0,121,3,8,4,0,0,0,114,21,1,0,0,0,0,11,122,0,3,0,0,0,124,7,2,0,2,0,0,0,1,0,0,0,223,7.0,23.72519083969466,7.0,23.72519083969466,1.0,3.551470588235294,2.1838235294117645,136,69,101,2,24,8,12,6,0,9,0,0,2,0,3,2,1,1,4,3,8,256,98,0,28,326,0,138,216,0,334,20,0,55,299,0,50,5,284,15,0,15,4,2,0,14,14,18,8,14,141,0,0,0,5,9,17,3,6,56,0,0,0,2,5,6,11,2,1,0,1,0,0,0,0,0,134,3,188,0,1,2,0,11,28,120,26,3,42,12,13,2,6,0,62,0,0,184,185,24,34,3,62,14,0,0,0,2,51,3,148,1,0,0,241,58,0,0,10,15,0,1,0,0,0,6,7,3,6,12,44,25,11,23,180,69,21,17,27,20,16,5,10,2,0,0,1,0,0,1,4.0,3.0,2.0,6.0,4.0,5.0,1.0,8.0,5.0,6.0,1.0,3.0,5.0,3.0,1.0,2.0,4.0,3.0,2.0,2.0,2.0,3.0,5.0,9.0,11.0,4.0,3.0,8.0,4.0,5.0,6.0,5.0,4.0,0.0,6.0,2.0,3.0,4.0,1.0,2.0,4.0,3.0,3.0,6.0,2.0,6.0,4.0,3.0,9.0,6.0,5.0,4.0,6.0,10.0,6.0,5.0,5.0,7.0,2.0,2.0,5.0,4.0,6.0,3.0,6.0,5.0,6.0,7.0,5.0,5.0,3.0,2.0,5.0,4.0,6.0,1.0,4.0,7.0,3.0,4.0,1.0,2.0,3.0,0.0,3.0,1.0,2.0,0.0,0.0,2.0,1.0,2.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,57,222,90,0,19,25,13,13,30,24,21,12,18,28,31,21,24,28,20,19,9,5,6,3,0,0,368,1,0,0,0,368,1,0,0,0,136,0,25,26,22,1,102,57,0,268,100,1,0,0,2,0,0,0,0,0,0,0,0,367,0,3,2,76,0,6,0,117,165,0,40,100,13,0,0,216,0,2.03680981595092,0.0,2.754237288135593,0.0,6.86449864498645,2,1,31,0,5,0,39,58,0,13,24,8,17,19,25,10,5,5,3,5,0,1,1,0,0,133,3,122,14,119,17,32,104,110,26,9,127,71,65,2,134,112,24,118,18,43,75,13,123,42,94,56,80,46,90,69,67,1,135,30,67,38,1,0,96,40,0,0,1,0,0,0,0,0,0,0,0,135,0,1.3529411764705883,1.3602941176470589,0.0,1.2,1.2,58.59558823529412 +70110,Los Santos,Guararé,Perales,217,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,39,2,162,1,1,0,0,1,0,155,0,0,1,0,2,6,0,1,148,2,14,0,1,0,0,151,2,0,1,0,11,165,0,27,7,2,16,3,0,4,7,146,8,0,0,144,2,11,2,0,5,1,149,15,1,0,0,0,0,61,99,0,5,0,0,0,151,12,0,0,0,0,0,0,1,1,0,0,220,6.852760736196319,18.104294478527606,7.0,23.196319018404907,1.018181818181818,3.4606060606060605,2.096969696969697,168,76,124,9,23,2,3,2,1,2,3,0,6,0,19,18,3,3,4,3,14,350,60,0,122,288,0,326,84,0,384,26,0,108,302,0,98,10,292,10,0,14,5,5,2,5,7,14,9,13,110,0,0,2,8,11,30,9,11,45,1,5,11,12,17,24,18,10,7,1,4,0,0,0,0,0,165,15,204,0,1,10,0,36,66,84,11,7,85,8,26,8,15,0,38,0,0,231,188,60,43,10,60,4,0,2,1,1,49,7,85,0,0,0,227,81,2,10,13,45,4,2,0,0,1,8,22,12,16,29,35,20,8,29,166,61,24,25,34,24,32,19,14,10,6,2,1,0,1,0,1.0,2.0,2.0,4.0,5.0,4.0,5.0,3.0,2.0,7.0,4.0,5.0,3.0,6.0,5.0,2.0,7.0,5.0,7.0,7.0,2.0,6.0,4.0,6.0,5.0,6.0,5.0,4.0,1.0,6.0,3.0,5.0,4.0,2.0,5.0,6.0,10.0,2.0,6.0,5.0,4.0,5.0,7.0,3.0,6.0,2.0,3.0,6.0,6.0,8.0,6.0,7.0,4.0,11.0,6.0,4.0,6.0,5.0,5.0,7.0,9.0,2.0,3.0,5.0,7.0,7.0,8.0,6.0,4.0,9.0,3.0,6.0,6.0,3.0,6.0,2.0,3.0,2.0,7.0,2.0,4.0,5.0,2.0,4.0,2.0,1.0,1.0,2.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,58,258,103,0,14,21,23,28,23,22,19,29,25,25,34,27,26,34,24,16,17,6,4,2,0,0,414,3,2,0,0,414,3,2,0,0,73,3,8,95,26,5,151,58,0,200,218,1,0,0,0,0,0,0,0,5,0,0,3,411,0,1,2,39,0,0,0,74,303,0,80,139,29,12,0,159,0,2.1436781609195403,0.0,2.8015873015873014,0.0,8.964200477326969,1,0,16,0,0,0,24,127,0,18,18,4,13,24,21,18,10,13,10,4,6,6,1,2,0,160,8,141,27,127,41,31,137,133,35,31,137,65,103,1,167,151,17,127,41,42,85,46,122,78,90,60,108,83,85,69,99,1,167,58,85,19,6,0,113,55,0,0,0,0,0,0,0,0,0,0,2,166,0,1.375,1.119047619047619,0.0,1.0,1.0,58.32142857142857 +70201,Los Santos,Las Tablas,Las Tablas,4000,1,133,13,0,3,20,2,0,0,0,6,2,4,0,2947,155,4,4,3086,20,0,0,0,3,1,3094,0,0,5,1,4,6,0,0,2925,168,14,1,1,0,1,3039,5,20,0,0,46,3110,0,636,47,202,116,36,0,553,691,1702,148,15,1,3070,6,17,4,0,13,0,2964,13,129,4,0,0,0,2167,935,1,7,0,0,2849,17,118,7,0,0,0,0,0,117,2,0,4166,18,6.700402144772118,17.68699731903485,6.871648793565684,20.25435656836461,1.0106109324758843,3.970739549839229,2.5784565916398714,3147,1455,2363,122,451,146,147,106,36,118,19,44,467,34,218,77,38,68,65,29,81,7243,1073,0,3440,4876,0,6174,2142,0,7926,390,0,2157,6159,0,1737,420,5970,189,0,197,81,81,24,92,168,210,155,167,1116,0,6,58,166,283,660,216,324,1456,4,45,159,230,400,455,850,253,169,17,253,0,0,3,18,0,3996,280,3529,0,5,113,33,1071,1251,781,136,290,2891,380,459,112,241,4,89,22,4,4215,4440,1326,1404,127,1189,134,0,18,4,7,284,54,1587,177,0,0,3412,2124,74,54,332,1425,127,239,18,0,4,310,689,427,354,792,99,723,232,646,2737,554,381,436,710,849,1088,507,538,281,179,69,62,23,64,177,76.0,82.0,103.0,78.0,72.0,86.0,74.0,89.0,103.0,87.0,78.0,102.0,91.0,95.0,94.0,102.0,94.0,109.0,115.0,122.0,114.0,125.0,137.0,148.0,121.0,141.0,149.0,125.0,113.0,120.0,117.0,86.0,104.0,118.0,101.0,122.0,123.0,127.0,108.0,116.0,122.0,120.0,113.0,108.0,96.0,96.0,101.0,112.0,106.0,124.0,125.0,115.0,123.0,122.0,98.0,111.0,95.0,124.0,109.0,127.0,112.0,99.0,123.0,100.0,108.0,98.0,100.0,82.0,101.0,96.0,72.0,81.0,80.0,94.0,81.0,67.0,53.0,60.0,55.0,43.0,54.0,40.0,60.0,39.0,38.0,25.0,46.0,25.0,19.0,18.0,10.0,14.0,13.0,7.0,9.0,7.0,4.0,4.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1310,5746,1599,0,411,439,460,542,645,648,526,596,559,539,583,566,542,477,408,278,231,133,53,17,2,0,8340,188,115,12,0,8347,205,91,12,0,1814,100,298,1743,356,171,2863,1310,0,2205,6298,152,0,54,240,8,0,0,0,5,1,0,140,8207,0,107,101,179,23,4,7,737,7497,0,2195,2166,1173,97,12,3012,0,1.6988551518168242,0.0,2.3391459074733096,0.0,10.3578278451762,37,35,72,6,2,4,326,2665,0,61,75,64,115,226,339,433,312,513,326,224,125,146,61,100,23,3109,38,3032,115,2945,202,725,2422,2940,207,1596,1551,1796,1351,862,2285,3030,117,2859,288,2148,711,1380,1767,2416,731,1699,1448,256,2891,362,2785,15,3132,796,1510,717,124,33,1677,1470,0,7,53,3,0,0,0,2,0,0,57,3025,0,1.3254716981132075,1.3962264150943395,1.1666666666666667,1.05,1.05,55.48585954877661 +70202,Los Santos,Las Tablas,Bajo Corral,310,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,153,41,3,193,1,0,0,0,3,0,188,0,0,3,0,0,6,0,0,98,5,81,2,9,0,2,190,2,0,0,0,5,197,0,72,3,0,30,11,0,1,4,175,17,0,0,159,10,23,5,0,0,0,184,8,5,0,0,0,0,24,163,0,10,0,0,0,185,11,0,0,0,0,0,0,0,1,0,0,313,6.88265306122449,22.918367346938776,7.0,24.0,1.0,3.4568527918781724,2.3197969543147208,197,102,100,10,25,4,11,0,3,5,1,2,3,2,10,8,5,2,2,0,3,373,85,0,57,401,0,199,259,0,433,25,0,75,383,0,61,14,367,16,0,17,3,2,2,8,8,31,11,18,177,0,0,0,13,16,34,7,10,60,1,2,2,7,5,3,14,5,0,0,2,0,0,0,0,0,223,3,210,0,0,1,0,38,46,80,15,31,53,52,8,7,7,0,97,0,0,268,197,20,95,7,93,0,0,9,0,0,74,5,79,4,0,0,335,71,0,4,4,21,0,1,0,0,0,6,8,8,3,9,29,62,5,96,137,97,33,40,57,43,23,11,9,5,3,2,0,0,1,4,3.0,0.0,1.0,3.0,5.0,2.0,2.0,5.0,3.0,5.0,1.0,9.0,5.0,4.0,3.0,5.0,7.0,6.0,3.0,5.0,5.0,7.0,8.0,3.0,5.0,6.0,5.0,4.0,3.0,4.0,5.0,6.0,3.0,2.0,1.0,3.0,2.0,2.0,4.0,3.0,6.0,5.0,9.0,7.0,4.0,3.0,6.0,6.0,8.0,7.0,11.0,8.0,7.0,6.0,7.0,10.0,2.0,7.0,5.0,3.0,5.0,6.0,5.0,8.0,3.0,9.0,5.0,11.0,4.0,8.0,13.0,10.0,6.0,8.0,8.0,5.0,6.0,4.0,10.0,8.0,8.0,4.0,7.0,3.0,1.0,2.0,2.0,1.0,4.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,51,261,153,0,12,17,22,26,28,22,17,14,31,30,39,27,27,37,45,33,23,12,2,1,0,0,464,1,0,0,0,464,1,0,0,0,175,2,20,50,30,3,134,51,0,269,193,3,0,0,5,0,0,0,0,0,0,0,5,455,0,4,8,21,3,3,0,98,328,0,60,145,38,1,0,221,0,2.3475935828877006,0.0,2.7828947368421053,0.0,7.298924731182796,1,3,9,2,2,0,35,145,0,7,25,13,20,40,28,13,13,17,7,7,2,0,0,2,3,195,2,183,14,178,19,26,171,156,41,13,184,142,55,6,191,172,25,165,32,103,62,23,174,83,114,49,148,75,122,67,130,1,196,67,88,37,5,0,155,42,0,0,2,0,0,0,0,0,0,0,2,193,0,1.3604060913705585,1.0,0.0,1.0,1.0,61.12182741116752 +70203,Los Santos,Las Tablas,Bayano,434,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,122,1,236,10,0,0,0,1,0,176,0,1,51,0,0,18,0,1,3,14,204,21,2,0,3,198,40,2,0,0,7,247,0,138,11,1,26,12,0,0,5,230,12,0,0,169,40,28,4,1,5,0,244,2,0,0,0,1,0,25,198,0,24,0,0,0,172,68,0,0,2,0,3,0,2,0,0,0,435,6.633333333333334,23.02083333333333,6.95,23.816666666666663,1.0040485829959511,3.1214574898785425,1.9959514170040489,248,116,154,12,43,11,4,3,0,9,1,2,5,0,13,15,4,2,6,3,5,492,89,0,37,544,0,239,342,0,506,75,0,112,469,0,96,16,419,50,0,50,6,7,1,14,26,42,30,20,162,0,0,0,13,28,42,10,14,70,0,0,6,4,9,10,7,2,3,0,3,0,0,0,2,0,276,13,254,0,1,7,2,24,64,130,30,6,67,32,30,12,5,0,139,0,2,335,273,34,142,12,95,2,0,0,2,7,78,7,118,0,0,0,427,81,0,2,9,17,3,2,2,0,2,5,14,2,11,16,48,51,7,133,255,109,35,62,61,32,25,11,9,3,2,0,2,1,1,0,9.0,7.0,5.0,6.0,5.0,4.0,10.0,6.0,7.0,6.0,14.0,3.0,8.0,6.0,8.0,9.0,6.0,9.0,6.0,6.0,7.0,7.0,2.0,9.0,6.0,6.0,2.0,9.0,10.0,8.0,8.0,8.0,9.0,6.0,5.0,5.0,3.0,13.0,7.0,5.0,6.0,9.0,7.0,8.0,2.0,6.0,7.0,9.0,4.0,6.0,12.0,6.0,12.0,8.0,9.0,5.0,12.0,5.0,8.0,9.0,5.0,6.0,5.0,10.0,6.0,14.0,8.0,13.0,6.0,7.0,4.0,6.0,8.0,7.0,6.0,6.0,3.0,6.0,4.0,3.0,7.0,3.0,11.0,2.0,3.0,4.0,3.0,1.0,6.0,3.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,104,353,151,0,32,33,39,36,31,35,36,33,32,32,47,39,32,48,31,22,26,17,6,1,0,0,604,3,0,1,0,604,3,0,1,0,213,5,111,55,25,3,92,104,0,392,213,3,0,2,1,0,0,0,0,0,0,0,2,603,0,0,20,101,1,0,1,118,367,0,56,140,23,4,3,382,0,2.6352459016393444,0.0,3.368131868131868,0.0,6.440789473684211,0,8,46,1,0,0,56,137,0,12,30,18,36,49,37,27,15,10,6,1,2,1,2,2,0,230,18,163,85,177,71,30,218,118,130,9,239,136,112,1,247,222,26,150,98,59,91,11,237,43,205,61,187,170,78,145,103,2,246,84,100,59,5,0,181,67,0,0,1,0,0,0,0,0,0,0,1,246,0,1.3508064516129032,1.1008064516129032,0.0,1.0,1.0,58.24596774193548 +70204,Los Santos,Las Tablas,El Carate,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,40,5,462,3,0,0,0,4,1,462,0,1,0,0,3,1,0,3,407,32,23,2,2,0,4,450,4,6,0,0,10,470,0,83,23,18,20,10,0,102,45,317,6,0,0,437,5,22,2,0,4,0,369,14,87,0,0,0,0,234,228,0,8,0,0,456,0,7,1,0,0,0,0,0,2,4,0,0,624,6.462203023758099,18.585313174946005,6.76889848812095,22.095032397408207,1.002127659574468,3.729787234042553,2.4382978723404256,471,279,368,24,62,23,23,11,9,11,7,3,10,7,36,11,9,12,17,3,9,1061,176,0,488,749,0,829,408,0,1172,65,0,311,926,0,242,69,893,33,0,36,6,23,3,13,32,41,27,28,220,0,0,5,36,55,69,19,34,218,1,0,22,39,62,96,92,18,19,2,21,0,0,0,0,0,579,23,547,0,0,9,3,89,179,211,49,19,355,41,66,36,57,0,41,2,1,647,661,195,188,41,157,15,0,2,1,0,70,8,374,2,0,0,554,292,5,9,59,197,17,16,0,0,1,22,94,54,47,92,33,92,53,114,549,105,56,63,85,100,130,65,83,36,18,1,9,2,4,2,13.0,13.0,17.0,28.0,14.0,8.0,21.0,9.0,22.0,14.0,14.0,15.0,10.0,13.0,27.0,15.0,13.0,17.0,17.0,22.0,15.0,20.0,20.0,25.0,15.0,18.0,16.0,17.0,19.0,28.0,24.0,26.0,17.0,23.0,17.0,19.0,22.0,15.0,19.0,17.0,22.0,11.0,24.0,18.0,16.0,11.0,14.0,16.0,15.0,20.0,17.0,18.0,17.0,10.0,14.0,11.0,18.0,18.0,8.0,18.0,10.0,10.0,14.0,13.0,20.0,17.0,15.0,9.0,14.0,10.0,10.0,10.0,13.0,10.0,5.0,3.0,9.0,10.0,5.0,7.0,6.0,9.0,8.0,3.0,6.0,5.0,6.0,2.0,2.0,6.0,4.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,238,859,211,0,85,74,79,84,95,98,107,92,91,76,76,73,67,65,48,34,32,21,10,1,0,0,1285,12,10,1,0,1286,13,8,1,0,355,15,63,271,54,21,291,238,0,518,778,12,0,0,8,0,0,0,0,0,0,0,34,1266,0,11,0,30,0,0,0,62,1205,0,326,409,93,8,3,469,0,1.6143344709897611,0.0,2.2797029702970297,0.0,9.422018348623851,4,0,13,0,0,0,33,421,0,36,25,15,25,50,50,40,43,73,42,26,18,14,5,9,0,460,11,444,27,426,45,86,385,405,66,173,298,236,235,38,433,437,34,411,60,250,161,173,298,324,147,265,206,69,402,84,387,4,467,97,268,93,13,0,266,205,0,0,2,0,0,0,0,0,0,0,10,459,0,1.3736730360934182,1.4033970276008492,0.0,1.0,1.0,51.66454352441614 +70205,Los Santos,Las Tablas,El Cocal,1141,3,0,0,0,0,0,0,0,0,0,0,0,0,0,103,684,78,8,853,12,0,0,0,7,1,851,0,0,7,2,0,6,0,7,746,87,20,4,6,0,10,852,7,1,0,0,13,873,0,101,89,21,55,5,0,133,98,611,29,2,0,788,2,37,13,0,33,0,772,30,70,0,0,0,1,454,402,1,14,0,2,841,4,19,1,0,0,0,0,0,2,3,3,0,1144,5.576388888888889,12.337962962962964,6.505787037037037,18.65740740740741,1.009163802978236,3.6689576174112255,2.3516609392898054,881,450,699,68,88,31,33,16,10,21,2,11,18,5,64,18,11,12,27,9,14,1989,248,0,759,1478,0,1446,791,0,2101,136,0,599,1638,0,489,110,1566,72,0,83,22,26,9,41,52,71,72,48,379,0,0,13,57,71,155,62,75,375,1,3,39,85,98,100,182,47,21,0,45,0,0,0,5,0,1054,60,951,0,1,29,12,156,353,313,89,40,668,79,102,53,161,1,36,4,5,1121,1212,310,360,59,358,14,2,0,6,3,121,10,484,17,0,0,1050,553,16,10,75,303,10,43,5,0,6,74,139,105,77,201,59,207,66,180,854,206,113,144,178,212,236,118,126,54,38,9,13,5,10,17,20.0,31.0,19.0,26.0,35.0,26.0,21.0,33.0,28.0,29.0,42.0,23.0,32.0,31.0,28.0,29.0,26.0,21.0,33.0,25.0,39.0,38.0,39.0,39.0,26.0,32.0,27.0,44.0,28.0,27.0,35.0,28.0,39.0,35.0,24.0,35.0,28.0,34.0,31.0,34.0,30.0,36.0,37.0,30.0,30.0,37.0,34.0,30.0,32.0,23.0,24.0,33.0,41.0,34.0,28.0,31.0,32.0,37.0,24.0,24.0,27.0,19.0,37.0,21.0,32.0,27.0,25.0,21.0,19.0,11.0,21.0,22.0,19.0,15.0,11.0,16.0,16.0,17.0,19.0,13.0,14.0,9.0,10.0,6.0,8.0,6.0,2.0,0.0,5.0,5.0,1.0,1.0,2.0,1.0,5.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,424,1559,350,0,131,137,156,134,181,158,161,162,163,156,160,148,136,103,88,81,47,18,10,3,0,0,2304,17,12,0,0,2304,18,11,0,0,613,34,129,389,73,26,646,423,0,783,1535,15,0,12,14,1,0,0,0,1,0,1,13,2291,0,90,45,201,2,7,1,291,1696,0,590,619,150,18,2,954,0,1.6782039289055193,0.0,2.372972972972973,0.0,9.324903557651092,42,19,86,2,2,0,123,607,0,39,56,25,51,88,104,105,68,137,83,44,23,32,6,18,2,872,9,827,54,801,80,158,723,792,89,362,519,482,399,110,771,837,44,778,103,417,361,322,559,565,316,407,474,149,732,159,722,8,873,211,488,162,20,0,548,333,0,1,6,0,0,0,0,0,0,1,4,869,0,1.2724177071509648,1.3757094211123724,1.25,1.0666666666666669,1.0666666666666669,53.037457434733255 +70206,Los Santos,Las Tablas,El Manantial,873,6,0,6,0,0,0,0,0,0,0,0,3,0,0,90,422,18,1,523,7,0,0,0,0,1,517,3,0,4,0,2,3,0,2,384,121,11,3,0,0,12,517,3,4,0,0,7,531,0,224,43,36,36,15,0,151,67,287,25,1,0,504,1,16,5,0,5,0,452,14,65,0,0,0,0,334,192,1,4,0,0,96,343,92,0,0,0,0,0,0,0,0,0,0,888,6.943502824858757,23.220338983050848,6.975517890772128,23.58003766478343,1.015065913370998,3.5819209039548023,2.3559322033898304,542,320,401,62,60,18,16,3,12,11,11,9,29,3,28,10,4,15,19,0,5,1267,145,0,508,904,0,1189,223,0,1324,88,0,392,1020,0,334,58,980,40,0,42,18,19,6,33,36,43,46,34,214,0,0,2,36,61,81,37,42,213,1,1,37,57,62,97,105,33,20,3,32,0,0,1,0,0,715,27,541,0,1,9,6,107,209,155,47,23,480,51,92,30,18,0,52,11,3,738,759,206,290,35,159,42,0,1,4,2,56,12,341,13,0,0,619,327,2,12,56,222,17,28,0,0,3,42,95,74,62,138,49,96,57,126,567,93,58,64,97,148,187,68,96,46,24,10,11,7,8,13,18.0,22.0,28.0,17.0,24.0,24.0,13.0,23.0,23.0,22.0,25.0,17.0,14.0,21.0,16.0,14.0,16.0,19.0,15.0,14.0,17.0,21.0,19.0,26.0,16.0,27.0,23.0,27.0,25.0,32.0,29.0,25.0,17.0,32.0,30.0,27.0,27.0,33.0,18.0,29.0,19.0,29.0,16.0,21.0,15.0,20.0,15.0,10.0,20.0,14.0,14.0,19.0,18.0,24.0,11.0,12.0,13.0,16.0,18.0,12.0,19.0,12.0,14.0,19.0,12.0,15.0,9.0,15.0,9.0,11.0,7.0,10.0,12.0,12.0,9.0,9.0,10.0,11.0,6.0,4.0,2.0,8.0,3.0,8.0,5.0,4.0,2.0,4.0,0.0,3.0,1.0,2.0,4.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,307,990,200,0,109,105,93,78,99,134,133,134,100,79,86,71,76,59,50,40,26,13,9,3,0,0,1443,39,12,3,0,1443,41,10,3,0,425,13,31,269,38,14,400,307,0,403,1060,34,0,0,19,1,0,0,0,1,1,0,19,1456,0,9,24,85,2,1,3,128,1245,0,430,402,91,12,15,547,0,1.6009104704097117,0.0,2.2472647702407,0.0,9.36005344021376,3,6,36,1,1,2,65,428,0,12,12,6,21,41,45,76,59,103,65,37,13,15,9,17,8,536,6,520,22,501,41,96,446,504,38,256,286,303,239,87,455,514,28,484,58,279,205,229,313,461,81,357,185,47,495,59,483,3,539,101,318,95,28,0,366,176,0,0,6,1,0,0,0,0,1,0,3,531,0,1.3616236162361623,1.400369003690037,1.3333333333333333,1.0769230769230769,1.0769230769230769,48.798892988929886 +70207,Los Santos,Las Tablas,El Muñoz,212,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,139,7,0,146,0,0,0,0,0,0,142,0,2,0,0,0,1,0,1,116,14,9,2,5,0,0,143,2,0,0,0,1,146,0,46,6,4,3,8,0,7,7,121,11,0,0,139,1,4,1,0,1,0,144,1,1,0,0,0,0,37,106,0,3,0,0,0,137,7,1,1,0,0,0,0,0,0,0,0,213,6.9375,19.68055555555556,7.0,23.20833333333333,1.0068493150684932,3.76027397260274,2.410958904109589,147,71,122,10,22,10,8,1,0,3,2,0,3,1,7,1,2,1,10,0,1,316,67,0,85,298,0,224,159,0,353,30,0,89,294,0,78,11,278,16,0,18,3,3,1,12,7,20,11,13,93,0,0,0,10,23,31,11,14,49,0,0,6,11,7,12,16,5,1,0,6,0,0,0,0,0,159,8,197,0,0,4,3,27,59,73,23,15,74,16,15,6,36,0,18,0,0,188,212,45,45,8,57,6,1,3,0,1,26,7,93,7,0,0,251,72,0,1,3,31,1,5,0,0,0,10,8,10,13,23,14,31,13,45,166,39,15,40,34,33,27,13,12,9,3,1,1,0,0,7,3.0,7.0,3.0,4.0,0.0,6.0,3.0,5.0,2.0,3.0,3.0,9.0,4.0,3.0,8.0,8.0,8.0,5.0,7.0,5.0,9.0,11.0,8.0,5.0,2.0,2.0,6.0,1.0,5.0,4.0,8.0,1.0,11.0,6.0,3.0,2.0,3.0,5.0,2.0,3.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,5.0,6.0,5.0,4.0,4.0,13.0,7.0,8.0,6.0,4.0,4.0,13.0,9.0,5.0,5.0,5.0,3.0,2.0,3.0,2.0,2.0,2.0,2.0,6.0,5.0,7.0,3.0,2.0,5.0,5.0,5.0,4.0,2.0,4.0,5.0,2.0,4.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,63,260,77,0,17,19,27,33,35,18,29,15,16,22,36,36,20,11,23,21,18,2,1,1,0,0,397,2,1,0,0,397,2,1,0,0,107,1,12,55,30,3,129,63,0,256,142,2,0,0,9,0,0,0,0,0,0,0,1,390,0,2,10,11,0,0,1,107,269,0,73,106,22,8,0,191,0,1.8666666666666667,0.0,2.687022900763359,0.0,7.92,2,3,2,0,0,0,37,103,0,10,11,7,12,23,24,17,6,13,8,6,1,4,2,1,2,144,3,134,13,130,17,26,121,115,32,24,123,95,52,2,145,134,13,127,20,59,68,29,118,57,90,61,86,58,89,53,94,0,147,35,76,32,4,0,90,57,0,0,2,0,0,0,0,0,0,0,1,144,0,1.2789115646258504,1.4421768707482994,0.0,1.0,1.0,57.49659863945578 +70208,Los Santos,Las Tablas,El Pedregoso,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,9,0,118,0,0,0,0,0,0,116,0,0,1,0,0,0,0,1,108,0,7,0,1,0,2,115,3,0,0,0,0,118,0,49,17,1,5,3,0,0,6,108,4,0,0,116,0,1,0,0,1,0,115,1,2,0,0,0,0,25,93,0,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,193,6.898305084745763,23.771186440677965,7.0,24.0,1.0,3.830508474576271,2.5254237288135597,118,63,73,4,13,5,3,1,1,3,2,1,0,1,12,3,2,2,4,5,8,233,42,0,66,209,0,151,124,0,260,15,0,55,220,0,50,5,211,9,0,9,1,2,0,3,7,9,7,8,95,0,0,5,7,13,14,7,6,31,0,0,3,10,10,13,6,5,1,0,3,0,0,0,0,0,114,2,144,0,0,1,1,29,31,60,14,10,63,4,24,10,7,0,6,0,1,142,146,41,26,10,32,2,0,3,1,0,32,5,53,0,0,0,173,39,5,1,16,23,0,3,0,0,1,6,12,10,4,12,3,17,17,34,92,41,14,16,32,22,40,18,7,3,3,0,0,0,0,0,5.0,1.0,5.0,2.0,1.0,0.0,3.0,2.0,5.0,4.0,2.0,2.0,4.0,3.0,2.0,5.0,1.0,4.0,2.0,4.0,0.0,3.0,1.0,4.0,0.0,4.0,2.0,2.0,2.0,1.0,5.0,1.0,8.0,1.0,3.0,2.0,3.0,3.0,5.0,3.0,2.0,4.0,5.0,6.0,5.0,7.0,4.0,2.0,2.0,4.0,3.0,5.0,1.0,4.0,3.0,4.0,5.0,6.0,7.0,2.0,4.0,3.0,5.0,2.0,4.0,10.0,6.0,2.0,5.0,2.0,4.0,1.0,5.0,4.0,7.0,6.0,0.0,3.0,5.0,0.0,3.0,2.0,0.0,1.0,4.0,2.0,3.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,41,168,79,0,14,14,13,16,8,11,18,16,22,19,16,24,18,25,21,14,10,6,1,2,0,0,287,0,0,1,0,287,0,0,1,0,73,5,23,68,14,1,63,41,0,152,136,0,0,0,0,0,0,0,0,0,0,0,8,280,0,0,0,25,0,0,0,48,215,0,56,101,35,0,0,96,0,2.05925925925926,0.0,2.649484536082474,0.0,8.0625,0,0,13,0,0,0,26,79,0,4,9,2,5,16,15,21,12,19,8,3,2,2,0,0,0,118,0,111,7,105,13,25,93,102,16,18,100,77,41,0,118,108,10,108,10,49,59,25,93,58,60,58,60,46,72,53,65,2,116,30,61,26,1,0,93,25,0,0,0,0,0,0,0,0,0,0,3,115,0,1.2033898305084745,1.2372881355932204,0.0,1.0,1.0,59.96610169491525 +70209,Los Santos,Las Tablas,La Laja,383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,238,0,0,238,2,0,0,0,0,0,238,0,0,1,0,0,0,0,1,212,23,4,0,0,0,1,237,0,0,0,0,3,240,0,96,12,8,15,12,0,16,12,202,9,1,0,221,0,13,0,0,6,0,216,16,8,0,0,0,0,145,93,2,0,0,0,150,75,15,0,0,0,0,0,0,0,0,0,0,383,6.645833333333333,23.9875,6.65,24.0,1.0041666666666669,4.116666666666666,2.675,241,132,152,14,29,6,11,3,1,6,1,2,5,2,12,7,4,2,11,3,7,496,88,0,192,392,0,393,191,0,558,26,0,130,454,0,105,25,440,14,0,15,4,7,4,6,11,10,10,9,110,0,0,3,8,17,40,15,20,135,0,4,2,12,21,18,33,51,5,0,14,0,0,0,0,0,289,3,260,0,0,1,0,77,81,81,17,4,153,28,60,11,15,0,22,3,0,290,315,95,58,14,119,3,0,3,0,1,37,5,109,1,0,0,252,143,3,10,22,104,4,14,0,0,0,22,34,23,24,44,24,62,22,37,203,51,22,41,64,58,59,31,40,17,6,5,6,0,1,1,6.0,3.0,9.0,3.0,3.0,5.0,6.0,6.0,6.0,6.0,5.0,8.0,10.0,7.0,2.0,4.0,7.0,8.0,8.0,5.0,4.0,7.0,11.0,3.0,5.0,11.0,7.0,8.0,6.0,6.0,4.0,13.0,8.0,7.0,6.0,6.0,11.0,6.0,7.0,7.0,10.0,12.0,5.0,6.0,6.0,7.0,6.0,13.0,11.0,9.0,7.0,9.0,10.0,12.0,9.0,7.0,12.0,6.0,5.0,7.0,10.0,8.0,8.0,9.0,7.0,11.0,10.0,12.0,9.0,8.0,5.0,6.0,7.0,12.0,3.0,2.0,6.0,3.0,9.0,3.0,7.0,3.0,1.0,3.0,2.0,1.0,0.0,1.0,2.0,2.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,85,386,134,0,24,29,32,32,30,38,38,37,39,46,47,37,42,50,33,23,16,6,5,1,0,0,592,11,2,0,0,592,11,2,0,0,158,5,0,136,23,1,197,85,0,280,315,10,0,2,4,0,0,0,0,0,0,0,5,594,0,21,2,24,0,4,0,42,512,0,147,168,73,5,1,211,0,1.7447552447552448,0.0,2.437185929648241,0.0,10.04793388429752,6,1,13,0,3,0,19,199,0,4,16,7,18,26,32,31,17,37,22,10,5,9,2,5,0,241,0,235,6,224,17,51,190,223,18,94,147,127,114,39,202,226,15,229,12,127,102,91,150,160,81,132,109,33,208,55,186,2,239,62,135,37,7,0,146,95,0,2,2,0,0,0,0,0,0,0,2,235,0,1.2033195020746887,1.3070539419087135,0.0,1.1111111111111112,1.1111111111111112,56.60995850622407 +70210,Los Santos,Las Tablas,La Miel,150,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,72,25,0,95,2,0,0,0,0,0,89,0,0,2,0,0,6,0,0,5,3,89,0,0,0,0,91,6,0,0,0,0,97,0,38,2,0,8,6,0,0,6,82,9,0,0,85,6,4,1,0,1,0,94,1,0,0,0,1,1,18,75,0,4,0,0,0,90,5,1,0,0,0,0,0,0,1,0,0,152,6.88421052631579,24.0,6.926315789473684,24.0,1.0103092783505154,3.381443298969072,2.329896907216495,99,53,56,5,12,6,5,2,1,2,0,1,1,0,13,0,0,0,2,4,4,193,46,0,28,211,0,61,178,0,213,26,0,43,196,0,40,3,176,20,0,21,4,3,0,2,6,12,14,4,74,0,0,0,5,8,23,2,11,28,0,0,2,3,5,3,4,1,1,1,2,0,0,0,0,0,117,1,105,0,0,0,0,13,26,47,19,0,31,8,11,5,2,0,61,0,0,137,106,16,49,5,47,1,0,0,0,0,22,5,51,1,0,0,173,38,0,0,3,7,1,1,0,0,0,4,2,4,3,8,30,15,7,45,86,15,11,23,38,31,19,9,7,2,1,0,0,0,0,1,0.0,1.0,0.0,3.0,4.0,3.0,4.0,1.0,2.0,2.0,7.0,1.0,0.0,2.0,1.0,1.0,4.0,3.0,2.0,4.0,4.0,1.0,2.0,3.0,0.0,4.0,6.0,2.0,5.0,1.0,3.0,2.0,3.0,3.0,3.0,4.0,2.0,4.0,1.0,5.0,1.0,3.0,2.0,2.0,1.0,5.0,1.0,2.0,1.0,3.0,4.0,4.0,4.0,5.0,7.0,7.0,5.0,2.0,4.0,5.0,3.0,5.0,3.0,7.0,4.0,2.0,0.0,3.0,3.0,2.0,1.0,5.0,5.0,2.0,1.0,3.0,2.0,1.0,1.0,6.0,0.0,2.0,1.0,1.0,2.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,31,162,50,0,8,12,11,14,10,18,14,16,9,12,24,23,22,10,14,13,6,4,2,1,0,0,240,1,2,0,0,240,1,2,0,0,78,2,31,43,9,0,49,31,0,139,102,2,0,1,4,1,0,0,0,0,0,0,1,236,0,0,0,10,0,0,0,10,223,0,27,53,15,4,1,143,0,2.597938144329897,0.0,3.210526315789474,0.0,7.02880658436214,0,0,5,0,0,0,4,90,0,1,2,0,11,18,21,13,10,13,2,5,0,0,1,0,1,98,1,90,9,82,17,16,83,65,34,9,90,53,46,0,99,86,13,67,32,42,25,13,86,25,74,33,66,58,41,49,50,0,99,30,41,27,1,0,78,21,0,1,1,1,0,0,0,0,0,0,0,96,0,1.383838383838384,1.0707070707070707,0.0,1.125,1.125,56.82828282828283 +70211,Los Santos,Las Tablas,La Palma,864,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,382,68,9,447,3,0,0,0,7,2,450,0,0,3,0,0,4,0,2,250,171,15,17,0,0,6,440,5,1,0,0,13,459,0,317,15,3,71,1,0,1,25,399,32,2,0,414,2,32,6,0,5,0,356,93,10,0,0,0,0,219,231,0,9,0,0,445,0,0,0,0,0,0,0,0,10,4,0,0,866,6.952808988764045,20.878651685393255,6.995505617977528,22.919101123595507,1.0,4.05446623093682,2.747276688453159,459,217,261,13,82,20,34,5,7,10,3,6,3,2,39,12,9,11,13,1,8,887,205,0,256,836,0,546,546,0,1033,59,0,209,883,0,190,19,857,26,0,27,11,13,1,18,20,26,21,27,288,0,0,6,25,34,74,27,44,211,1,1,11,26,34,57,63,11,5,0,10,0,0,0,0,0,445,17,567,0,1,13,0,194,124,210,30,9,206,52,53,22,26,1,95,4,0,571,551,105,144,22,175,7,0,6,0,2,126,7,150,2,0,0,593,276,6,2,23,116,3,10,0,0,0,20,35,21,35,60,54,88,25,124,344,146,68,80,116,118,140,43,36,10,9,3,4,0,3,2,7.0,6.0,9.0,8.0,7.0,12.0,10.0,10.0,15.0,9.0,11.0,12.0,10.0,12.0,13.0,14.0,8.0,12.0,15.0,15.0,8.0,15.0,12.0,9.0,6.0,10.0,13.0,11.0,11.0,8.0,12.0,7.0,5.0,7.0,6.0,9.0,14.0,15.0,13.0,12.0,11.0,9.0,10.0,6.0,8.0,10.0,1.0,8.0,13.0,10.0,12.0,9.0,13.0,15.0,15.0,16.0,14.0,20.0,13.0,9.0,23.0,20.0,19.0,24.0,12.0,13.0,16.0,10.0,27.0,18.0,19.0,17.0,12.0,15.0,18.0,14.0,23.0,22.0,26.0,16.0,12.0,21.0,12.0,7.0,14.0,12.0,5.0,8.0,6.0,2.0,2.0,2.0,6.0,0.0,0.0,4.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,151,587,384,0,37,56,58,64,50,53,37,63,44,42,64,72,98,84,81,101,66,33,10,7,2,0,1118,3,1,0,0,1118,3,1,0,0,238,17,45,268,62,11,330,151,0,702,419,1,0,0,14,1,0,0,0,0,0,0,2,1105,0,13,43,154,7,3,1,420,481,0,179,309,205,15,1,413,0,2.0764705882352943,0.0,2.72,0.0,8.962566844919786,4,22,70,4,2,1,171,185,0,15,25,16,32,56,64,77,46,67,30,5,8,11,2,4,1,449,10,428,31,400,59,119,340,401,58,105,354,269,190,100,359,399,60,407,52,205,202,103,356,223,236,162,297,123,336,121,338,1,458,142,183,130,4,0,288,171,0,0,4,1,0,0,0,0,0,0,0,454,0,1.2440087145969498,1.2004357298474946,1.0,1.0555555555555556,1.0555555555555556,63.37037037037037 +70212,Los Santos,Las Tablas,La Tiza,876,0,5,0,0,0,0,0,0,0,0,0,0,0,0,448,224,19,1,685,6,0,0,0,0,1,689,0,0,0,0,0,3,0,0,659,30,2,0,0,0,1,680,0,2,0,0,10,692,0,113,10,60,6,0,0,78,145,459,10,0,0,660,6,11,0,0,15,0,670,10,11,0,0,0,1,354,331,0,6,0,1,250,434,8,0,0,0,0,0,0,0,0,0,81,800,6.764450867052023,19.31791907514451,6.835260115606936,21.258670520231213,1.0,3.550578034682081,2.4002890173410405,692,341,536,45,92,28,35,4,12,20,8,9,19,2,58,15,13,3,15,1,6,1536,247,0,474,1309,0,1320,463,0,1691,92,0,436,1347,0,393,43,1296,51,0,56,17,23,8,22,53,56,35,32,321,0,0,0,44,82,145,48,69,274,0,5,44,59,77,119,117,33,19,3,21,0,0,0,1,0,830,42,779,0,1,20,13,154,276,267,62,20,506,79,96,38,114,1,14,6,4,900,943,225,321,46,215,42,1,2,6,5,91,15,432,20,0,0,878,406,0,10,66,255,16,19,1,0,6,47,98,62,64,148,36,168,74,169,632,167,71,123,162,165,278,83,64,31,26,6,7,4,4,20,21.0,10.0,13.0,16.0,18.0,25.0,22.0,19.0,30.0,18.0,19.0,23.0,20.0,24.0,25.0,22.0,28.0,22.0,22.0,31.0,23.0,26.0,30.0,28.0,27.0,25.0,31.0,29.0,36.0,19.0,33.0,34.0,21.0,31.0,28.0,23.0,16.0,22.0,24.0,28.0,37.0,29.0,27.0,20.0,26.0,12.0,24.0,19.0,26.0,24.0,23.0,24.0,24.0,29.0,22.0,19.0,19.0,19.0,26.0,16.0,17.0,32.0,23.0,18.0,19.0,21.0,18.0,21.0,12.0,18.0,16.0,21.0,16.0,21.0,16.0,3.0,13.0,13.0,14.0,9.0,11.0,13.0,3.0,7.0,6.0,7.0,6.0,4.0,3.0,1.0,2.0,0.0,3.0,3.0,3.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,303,1233,307,0,78,114,111,125,134,140,147,113,139,105,122,99,109,90,90,52,40,21,11,3,0,0,1805,31,6,1,0,1805,34,3,1,0,469,19,128,293,65,14,552,303,0,597,1224,22,0,0,27,0,0,0,0,0,0,0,3,1813,0,0,7,24,2,1,0,12,1797,0,486,494,145,13,1,704,0,1.7762237762237765,0.0,2.5008431703204046,0.0,9.380358111774282,0,2,10,2,1,0,6,671,0,36,25,13,46,71,90,104,59,103,62,32,13,14,12,10,2,685,7,660,32,638,54,119,573,632,60,238,454,354,338,95,597,645,47,636,56,338,298,221,471,488,204,339,353,27,665,50,642,5,687,176,352,143,21,0,400,292,0,0,11,0,0,0,0,0,0,0,1,680,0,1.300578034682081,1.3627167630057804,1.0,1.0,1.0,53.3742774566474 +70213,Los Santos,Las Tablas,Las Palmitas,1265,3,26,0,0,0,0,0,0,0,0,0,0,0,0,614,360,22,1,992,4,0,0,0,1,0,989,0,2,3,0,0,2,0,1,942,39,9,1,1,0,5,989,0,0,0,0,8,997,0,188,23,49,29,8,0,249,172,543,33,0,0,947,8,32,6,0,4,0,948,29,19,0,0,0,1,703,286,0,8,0,0,691,279,8,2,0,0,0,0,0,17,0,0,434,860,6.549079754601227,19.54601226993865,6.749488752556237,21.415132924335374,1.0100300902708124,3.9658976930792376,2.448345035105316,1007,532,829,51,106,53,44,17,20,28,5,8,37,6,50,27,10,25,10,5,10,2442,193,0,1181,1454,0,2260,375,0,2509,126,0,790,1845,0,645,145,1793,52,0,59,36,31,1,34,52,90,65,46,361,0,0,4,61,104,160,47,101,426,0,28,82,104,107,220,219,39,69,2,83,0,0,0,4,0,1270,80,1078,0,1,42,21,188,479,316,34,61,956,75,172,36,40,3,45,5,1,1329,1414,486,499,50,252,39,0,6,1,4,102,21,602,6,0,0,1041,687,4,35,83,455,43,77,3,0,1,81,269,139,114,229,38,201,81,197,1018,173,94,128,154,269,326,163,194,109,46,18,25,7,13,6,27.0,25.0,25.0,31.0,27.0,34.0,33.0,25.0,41.0,47.0,40.0,34.0,38.0,31.0,41.0,32.0,35.0,40.0,41.0,51.0,52.0,48.0,42.0,43.0,35.0,45.0,44.0,45.0,40.0,42.0,31.0,53.0,44.0,29.0,44.0,29.0,46.0,47.0,54.0,39.0,30.0,42.0,30.0,37.0,44.0,42.0,40.0,36.0,39.0,32.0,40.0,43.0,33.0,39.0,37.0,38.0,34.0,28.0,36.0,27.0,30.0,23.0,21.0,26.0,37.0,31.0,21.0,20.0,18.0,9.0,22.0,16.0,18.0,15.0,16.0,18.0,14.0,12.0,8.0,13.0,14.0,8.0,9.0,7.0,6.0,6.0,1.0,4.0,2.0,7.0,4.0,3.0,0.0,4.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,499,1915,329,0,135,180,184,199,220,216,201,215,183,189,192,163,137,99,87,65,44,20,11,2,1,0,2677,44,22,0,0,2679,49,15,0,0,694,33,42,499,78,39,860,498,0,911,1810,22,0,1,34,9,0,0,0,0,0,0,32,2667,0,75,29,103,6,1,3,247,2279,0,813,841,184,22,2,881,0,1.6471048513302031,0.0,2.336018411967779,0.0,10.22712358731316,30,10,53,3,1,2,102,806,0,25,33,16,38,57,98,146,105,189,100,54,40,54,26,25,1,1001,6,974,33,940,67,197,810,943,64,494,513,655,352,205,802,965,42,918,89,609,309,467,540,847,160,557,450,155,852,185,822,5,1002,216,563,195,33,0,609,398,0,0,10,3,0,0,0,0,0,0,12,982,0,1.3197616683217477,1.404170804369414,1.0,1.1176470588235294,1.1176470588235294,50.15888778550149 +70214,Los Santos,Las Tablas,Las Tablas Abajo,1082,1,0,0,0,0,0,0,0,0,0,0,0,0,0,203,571,11,1,781,4,1,0,0,0,0,778,0,1,6,0,1,0,0,0,702,62,21,0,1,0,0,768,7,2,0,0,9,786,0,140,53,23,76,5,0,252,91,425,17,0,1,748,4,11,7,0,16,0,639,7,137,1,0,0,2,554,224,0,6,2,0,237,533,12,1,0,0,0,0,0,1,0,2,155,928,6.946291560102302,12.707161125319692,6.934782608695652,13.168797953964194,1.0,3.632315521628499,2.213740458015267,786,441,695,39,73,35,17,13,14,20,10,8,17,2,20,14,4,2,22,7,7,1809,244,0,774,1279,0,1089,964,0,1916,137,0,637,1416,0,581,56,1343,73,0,73,40,30,2,41,59,64,56,45,280,0,1,9,52,65,140,40,80,341,0,29,31,42,69,108,226,46,20,3,59,0,0,0,2,0,1026,24,792,0,0,11,6,127,353,249,43,20,709,79,39,40,119,0,51,6,0,1045,1125,349,343,40,288,23,0,0,0,3,70,8,604,5,0,0,857,467,9,30,51,345,22,59,2,0,0,74,191,99,93,168,32,168,78,147,890,123,50,87,126,155,261,123,162,92,35,25,20,6,10,5,30.0,21.0,41.0,25.0,30.0,41.0,33.0,28.0,44.0,35.0,29.0,35.0,28.0,35.0,25.0,34.0,29.0,29.0,36.0,29.0,31.0,32.0,26.0,28.0,33.0,39.0,33.0,26.0,32.0,37.0,34.0,38.0,35.0,32.0,39.0,47.0,36.0,33.0,36.0,39.0,35.0,33.0,33.0,37.0,31.0,23.0,29.0,19.0,31.0,23.0,26.0,23.0,35.0,23.0,30.0,18.0,18.0,21.0,31.0,18.0,15.0,27.0,12.0,17.0,15.0,14.0,14.0,17.0,14.0,19.0,18.0,8.0,13.0,10.0,13.0,13.0,12.0,3.0,5.0,7.0,8.0,5.0,4.0,4.0,6.0,4.0,2.0,2.0,2.0,0.0,1.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,480,1466,224,0,147,181,152,157,150,167,178,191,169,125,137,106,86,78,62,40,27,10,5,2,0,0,2124,16,30,0,0,2124,21,25,0,0,586,10,19,383,36,13,643,480,0,530,1613,27,0,0,33,2,0,0,0,1,1,0,7,2126,0,27,15,88,8,1,2,65,1964,0,627,603,123,9,11,797,0,1.6058394160583942,0.0,2.2743628185907045,0.0,9.482027649769586,13,13,53,6,1,2,30,668,0,36,20,8,29,61,62,99,56,150,88,57,37,43,18,18,4,775,11,760,26,744,42,149,637,729,57,397,389,416,370,175,611,754,32,742,44,505,237,344,442,495,291,489,297,119,667,124,662,13,773,157,479,133,17,0,483,303,0,0,6,1,0,0,0,0,0,0,2,777,0,1.3295165394402035,1.431297709923664,1.0,1.1428571428571428,1.1428571428571428,47.96310432569975 +70215,Los Santos,Las Tablas,Nuario,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,17,0,74,0,0,0,0,0,0,58,0,1,10,0,0,5,0,0,0,4,69,1,0,0,0,70,4,0,0,0,0,74,0,67,5,0,6,3,0,0,2,63,9,0,0,53,17,4,0,0,0,0,69,0,5,0,0,0,0,16,53,0,3,2,0,0,51,23,0,0,0,0,0,0,0,0,0,0,155,6.72972972972973,23.83783783783784,6.837837837837838,24.0,1.0135135135135136,3.6486486486486487,2.081081081081081,75,47,39,5,3,0,1,0,0,3,0,0,0,0,6,3,1,1,1,1,1,142,28,0,22,148,0,70,100,0,146,24,0,23,147,0,23,0,130,17,0,18,0,2,0,5,6,17,5,12,48,0,0,1,2,3,3,3,5,27,0,0,0,4,1,4,1,0,2,0,1,0,0,0,0,0,68,0,94,0,0,0,0,16,16,48,10,4,17,5,0,1,0,0,45,0,0,91,82,7,36,1,22,1,0,1,0,0,15,1,45,2,0,0,121,28,1,1,1,6,2,2,0,0,0,2,3,2,0,7,15,6,3,30,70,17,4,10,18,20,14,7,3,3,3,0,0,1,1,2,0.0,1.0,2.0,0.0,1.0,0.0,2.0,1.0,2.0,2.0,1.0,3.0,1.0,3.0,1.0,1.0,3.0,0.0,4.0,3.0,0.0,1.0,2.0,2.0,0.0,1.0,0.0,1.0,6.0,0.0,3.0,4.0,0.0,1.0,0.0,4.0,0.0,1.0,1.0,2.0,3.0,4.0,1.0,3.0,3.0,3.0,2.0,1.0,1.0,1.0,2.0,3.0,2.0,1.0,0.0,1.0,1.0,3.0,1.0,3.0,3.0,5.0,4.0,4.0,5.0,3.0,4.0,3.0,2.0,2.0,4.0,3.0,4.0,3.0,6.0,1.0,0.0,0.0,1.0,2.0,2.0,3.0,1.0,1.0,2.0,1.0,0.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,20,100,53,0,4,7,9,11,5,8,8,8,14,8,8,9,21,14,20,4,9,4,2,0,0,0,165,6,2,0,0,165,7,1,0,0,56,0,13,47,9,1,27,20,0,61,104,8,0,0,21,0,0,0,0,0,0,0,1,151,0,0,4,8,1,0,0,10,150,0,18,57,14,1,4,79,0,2.189873417721519,0.0,2.9473684210526314,0.0,6.526011560693641,0,1,4,1,0,0,2,67,0,3,4,2,7,12,12,12,7,5,3,6,0,0,0,1,1,72,3,60,15,59,16,19,56,31,44,3,72,62,13,0,75,71,4,59,16,36,23,11,64,30,45,32,43,37,38,45,30,3,72,21,45,9,0,0,65,10,0,0,4,0,0,0,0,0,0,0,0,71,0,1.2133333333333334,1.0933333333333333,0.0,1.0,1.0,61.76 +70216,Los Santos,Las Tablas,Palmira,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,17,2,47,1,1,0,0,1,0,37,9,0,1,0,0,3,0,0,9,4,37,0,0,0,0,49,1,0,0,0,0,50,0,14,3,0,0,0,0,0,0,45,5,0,0,38,6,3,3,0,0,0,47,0,3,0,0,0,0,4,42,0,4,0,0,0,47,1,0,1,0,0,0,0,0,1,0,0,67,6.9375,23.75,7.0,24.0,1.0,2.94,1.9,50,30,36,7,4,1,1,0,0,0,2,0,9,0,4,0,0,0,1,0,1,94,32,0,17,109,0,51,75,0,114,12,0,27,99,0,27,0,89,10,0,10,1,1,0,1,1,3,3,4,38,0,0,0,4,4,11,3,12,18,0,0,3,0,0,2,5,0,0,0,2,0,0,0,0,0,53,1,66,0,0,1,0,6,22,28,6,4,17,3,7,0,3,0,24,0,0,78,62,11,25,3,11,4,0,0,0,5,8,2,42,5,0,0,90,20,0,1,0,7,0,2,0,0,0,2,0,4,6,7,8,3,1,23,67,18,2,11,8,10,10,3,5,1,0,0,0,0,0,5,3.0,7.0,2.0,2.0,2.0,2.0,1.0,0.0,0.0,1.0,2.0,4.0,0.0,1.0,2.0,1.0,3.0,4.0,1.0,4.0,3.0,0.0,4.0,2.0,3.0,3.0,2.0,1.0,1.0,0.0,4.0,4.0,1.0,2.0,0.0,2.0,2.0,4.0,3.0,2.0,3.0,1.0,3.0,2.0,2.0,0.0,0.0,4.0,2.0,3.0,0.0,3.0,0.0,0.0,1.0,1.0,3.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,29,93,18,0,16,4,9,13,12,7,11,13,11,9,4,9,4,8,2,0,2,2,3,1,0,0,135,1,2,2,0,135,3,0,2,0,58,0,7,12,3,3,28,29,0,92,45,3,0,0,4,0,0,0,0,0,0,0,0,136,0,0,0,4,0,0,0,1,135,0,20,31,5,2,0,82,0,2.055555555555556,0.0,2.921052631578948,0.0,7.178571428571429,0,0,2,0,0,0,0,48,0,1,4,3,7,9,5,6,4,6,2,2,0,0,0,0,1,49,1,39,11,43,7,13,37,39,11,5,45,32,18,2,48,43,7,44,6,7,37,7,43,26,24,19,31,28,22,21,29,0,50,13,25,8,4,0,38,12,0,0,1,0,0,0,0,0,0,0,0,49,0,1.56,1.24,0.0,1.0,1.0,52.1 +70217,Los Santos,Las Tablas,Peña Blanca,475,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,334,27,9,354,7,0,0,0,9,0,362,0,0,2,0,1,4,0,1,352,8,6,1,0,0,3,354,3,2,0,0,11,370,0,51,27,6,19,2,0,33,38,270,29,0,0,324,2,16,4,0,24,0,344,11,13,0,0,1,1,139,228,0,2,1,0,8,348,9,0,0,0,0,0,0,0,4,1,0,476,6.975342465753425,23.893150684931506,6.983561643835617,23.912328767123288,1.0,3.683783783783784,2.327027027027027,370,195,291,26,57,14,9,8,2,19,2,3,42,5,44,11,12,6,15,7,9,866,126,0,293,699,0,677,315,0,912,80,0,246,746,0,209,37,696,50,0,50,15,10,1,11,11,27,26,11,227,0,0,0,21,34,66,26,35,124,0,1,22,31,63,70,45,19,11,0,32,0,0,2,1,0,481,25,418,0,1,5,4,93,134,123,33,35,287,44,74,29,30,0,40,1,0,509,534,135,180,38,125,21,1,2,3,0,70,4,209,2,0,0,502,214,1,7,43,118,12,26,0,1,3,28,52,60,32,87,26,79,26,113,346,94,57,58,96,107,124,53,55,23,11,3,10,0,4,2,15.0,9.0,8.0,19.0,16.0,17.0,7.0,8.0,6.0,14.0,18.0,4.0,13.0,8.0,10.0,13.0,10.0,14.0,10.0,18.0,9.0,18.0,18.0,12.0,17.0,17.0,16.0,13.0,14.0,15.0,24.0,12.0,16.0,12.0,16.0,18.0,18.0,8.0,18.0,13.0,7.0,11.0,10.0,10.0,15.0,11.0,9.0,9.0,9.0,8.0,16.0,21.0,12.0,14.0,18.0,9.0,12.0,16.0,13.0,8.0,12.0,13.0,13.0,13.0,9.0,12.0,7.0,12.0,8.0,12.0,6.0,5.0,10.0,8.0,9.0,8.0,14.0,5.0,8.0,6.0,5.0,6.0,9.0,8.0,6.0,2.0,5.0,6.0,2.0,6.0,2.0,3.0,4.0,3.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,172,667,204,0,67,52,53,65,74,75,80,75,53,46,81,58,60,51,38,41,34,21,13,5,1,0,1033,3,6,1,0,1033,5,4,1,0,291,11,90,174,54,12,239,172,0,468,571,4,0,0,5,0,0,0,0,0,0,0,14,1024,0,20,21,84,6,0,0,135,777,0,245,271,95,9,1,422,0,1.8183760683760684,0.0,2.5460122699386503,0.0,9.204218600191757,4,9,36,2,0,0,58,261,0,13,23,13,20,28,37,53,36,57,28,26,9,12,5,10,0,357,13,352,18,336,34,81,289,327,43,120,250,213,157,33,337,340,30,331,39,195,136,126,244,244,126,169,201,56,314,94,276,0,370,92,183,78,17,1,223,147,0,0,2,0,0,0,0,0,0,0,5,363,0,1.371967654986523,1.4393530997304582,0.0,1.0714285714285714,1.0714285714285714,55.18918918918919 +70218,Los Santos,Las Tablas,Río Hondo,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,34,1,70,0,0,0,0,1,0,68,0,0,2,0,0,1,0,0,0,5,66,0,0,0,0,68,3,0,0,0,0,71,0,27,6,0,11,6,0,0,1,68,2,0,0,65,1,5,0,0,0,0,67,4,0,0,0,0,0,1,67,1,2,0,0,0,70,0,1,0,0,0,0,0,0,0,0,0,121,6.885714285714286,20.8,6.928571428571429,21.928571428571427,1.0,3.563380281690141,2.464788732394366,71,42,46,3,7,3,2,1,1,3,1,2,0,0,8,0,1,0,0,1,4,153,26,0,29,150,0,90,89,0,166,13,0,24,155,0,23,1,152,3,0,3,0,2,0,3,8,10,2,7,75,0,0,1,1,3,3,3,7,22,0,1,2,3,5,6,4,2,2,0,4,0,0,0,0,0,90,1,83,0,0,0,0,13,14,43,12,1,25,11,3,3,5,0,44,0,0,95,87,17,37,3,22,2,0,10,0,0,25,2,36,0,0,0,122,35,1,1,1,9,2,3,0,0,0,2,7,1,5,6,21,12,7,30,64,39,13,17,15,10,9,3,4,3,2,1,1,0,1,0,0.0,2.0,0.0,1.0,0.0,2.0,0.0,2.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,2.0,1.0,3.0,6.0,4.0,3.0,1.0,2.0,1.0,0.0,1.0,2.0,1.0,0.0,1.0,4.0,1.0,1.0,2.0,0.0,2.0,2.0,2.0,3.0,6.0,2.0,1.0,1.0,4.0,0.0,1.0,1.0,4.0,6.0,1.0,1.0,1.0,3.0,4.0,4.0,8.0,3.0,5.0,0.0,3.0,4.0,1.0,3.0,2.0,2.0,1.0,3.0,3.0,2.0,1.0,4.0,4.0,2.0,3.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,6.0,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,13,111,58,0,3,5,5,5,17,6,7,7,14,7,13,22,13,11,14,6,20,6,0,1,0,0,182,0,0,0,0,182,0,0,0,0,60,2,10,35,15,0,47,13,0,109,73,0,0,0,0,0,0,0,0,0,0,0,0,182,0,0,1,7,0,0,0,25,149,0,27,63,12,4,0,76,0,2.2222222222222223,0.0,2.836065573770492,0.0,7.9945054945054945,0,0,3,0,0,0,9,59,0,7,11,5,9,8,5,6,5,3,7,0,2,2,0,1,0,70,1,60,11,60,11,32,39,52,19,3,68,52,19,2,69,68,3,58,13,46,12,13,58,39,32,22,49,58,13,57,14,0,71,14,38,19,0,0,54,17,0,0,0,0,0,0,0,0,0,0,0,71,0,1.3380281690140845,1.2253521126760565,0.0,1.0,1.0,64.12676056338029 +70219,Los Santos,Las Tablas,San José,354,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,229,26,1,251,4,1,0,0,0,0,248,0,0,5,0,0,3,0,0,231,8,16,0,0,0,1,252,1,0,0,0,3,256,0,61,6,1,29,1,0,5,21,207,22,1,0,222,7,11,0,1,15,0,238,10,8,0,0,0,0,106,148,0,2,0,0,196,0,21,1,0,2,0,0,0,35,1,0,0,355,6.875576036866359,23.783410138248847,6.953917050691245,23.972350230414747,1.015625,3.859375,1.8515625,261,144,167,15,20,5,15,6,5,3,5,3,5,2,23,8,3,2,6,0,2,566,65,0,214,417,0,486,145,0,587,44,0,136,495,0,118,18,475,20,0,22,5,6,1,16,16,24,22,19,167,0,0,2,16,19,45,11,23,87,0,2,4,19,28,24,30,7,6,2,7,0,0,0,1,0,373,10,204,0,0,8,2,56,74,61,13,0,177,100,10,8,13,0,75,0,0,333,323,81,135,8,150,8,0,1,0,2,49,5,65,0,0,0,368,125,2,5,16,58,5,7,1,0,0,25,20,23,24,30,34,105,33,89,161,54,32,77,86,71,70,35,37,10,12,0,5,1,5,0,8.0,4.0,6.0,7.0,9.0,6.0,6.0,9.0,6.0,8.0,4.0,8.0,4.0,13.0,3.0,7.0,9.0,8.0,9.0,9.0,5.0,12.0,10.0,7.0,3.0,5.0,6.0,8.0,3.0,9.0,9.0,9.0,11.0,7.0,6.0,7.0,4.0,7.0,9.0,12.0,10.0,8.0,16.0,8.0,3.0,6.0,4.0,9.0,4.0,4.0,12.0,5.0,5.0,6.0,10.0,8.0,12.0,8.0,16.0,3.0,10.0,8.0,9.0,9.0,10.0,8.0,7.0,7.0,15.0,9.0,8.0,6.0,8.0,15.0,11.0,7.0,3.0,5.0,8.0,6.0,5.0,1.0,6.0,1.0,5.0,2.0,6.0,2.0,1.0,2.0,3.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,101,394,161,0,34,35,32,42,37,31,42,39,45,27,38,47,46,46,48,29,18,13,7,0,0,0,653,0,0,3,0,653,0,0,3,0,152,5,20,166,30,11,171,101,0,310,342,4,0,0,31,10,0,0,0,0,0,0,3,612,0,4,23,49,1,1,0,131,447,0,151,187,88,3,1,226,0,1.7903780068728523,0.0,2.451456310679612,0.0,8.382621951219512,1,12,20,0,1,0,63,164,0,2,7,6,15,29,42,37,22,37,28,6,9,12,0,8,0,254,7,241,20,229,32,66,195,236,25,109,152,158,103,47,214,246,15,230,31,147,83,96,165,204,57,138,123,127,134,111,150,1,260,66,145,45,5,0,197,64,0,0,10,2,0,0,0,0,0,0,1,248,0,1.2758620689655171,1.2375478927203063,1.0,1.0476190476190477,1.0476190476190477,58.08045977011494 +70220,Los Santos,Las Tablas,San Miguel,73,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,39,9,4,48,0,0,0,0,4,0,42,3,0,3,0,0,3,1,0,47,0,5,0,0,0,0,45,0,0,0,0,7,52,0,21,0,0,0,0,0,0,0,49,3,0,0,45,0,7,0,0,0,0,46,5,1,0,0,0,0,4,48,0,0,0,0,0,45,5,0,0,0,0,0,0,0,2,0,0,74,7.0,23.04,7.0,24.0,1.0,3.0576923076923075,2.0576923076923075,53,25,20,1,5,3,2,0,0,0,0,4,1,0,4,1,0,1,0,0,1,97,16,0,15,98,0,75,38,0,106,7,0,18,95,0,18,0,86,9,0,9,0,0,0,1,4,8,2,2,41,0,0,0,4,4,8,0,2,15,0,0,1,4,2,3,3,0,0,0,0,0,0,0,0,0,67,0,41,0,0,0,0,8,10,23,0,0,21,15,1,3,1,0,26,0,0,64,50,15,26,3,23,0,0,0,0,0,13,1,9,0,0,0,80,18,0,1,3,6,0,0,0,0,0,2,2,2,4,10,8,13,0,26,43,18,7,4,16,8,11,2,4,0,1,0,0,0,0,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,1.0,0.0,0.0,3.0,2.0,0.0,2.0,1.0,1.0,0.0,3.0,3.0,2.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,3.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,2.0,0.0,3.0,1.0,2.0,2.0,5.0,4.0,2.0,4.0,3.0,2.0,1.0,1.0,3.0,3.0,0.0,1.0,1.0,2.0,1.0,2.0,0.0,1.0,1.0,2.0,1.0,2.0,0.0,3.0,0.0,1.0,2.0,1.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,12,73,29,0,1,5,6,4,8,6,5,4,5,7,15,11,8,6,6,7,4,3,0,3,0,0,114,0,0,0,0,114,0,0,0,0,32,2,17,20,7,0,24,12,0,53,61,0,0,0,0,0,0,0,0,0,0,0,38,76,0,3,0,0,0,0,0,46,65,0,19,43,9,0,0,43,0,2.382978723404255,0.0,2.914285714285714,0.0,7.271929824561403,0,0,0,0,0,0,17,36,0,3,3,5,6,10,4,9,3,7,1,0,1,0,0,0,0,48,5,41,12,39,14,9,44,42,11,1,52,39,14,0,53,49,4,43,10,18,25,5,48,35,18,21,32,47,6,38,15,0,53,16,25,11,1,0,39,14,0,0,0,0,0,0,0,0,0,0,17,36,0,1.2075471698113207,0.9433962264150944,0.0,1.0,1.0,58.11320754716981 +70221,Los Santos,Las Tablas,Santo Domingo,1315,11,0,0,0,0,0,0,4,0,0,0,12,0,0,642,135,11,0,788,0,0,0,0,0,0,785,0,0,1,0,0,2,0,0,734,33,11,1,1,0,8,772,0,3,0,0,13,788,0,402,56,14,45,21,0,66,153,521,48,0,0,734,4,30,9,0,11,0,701,53,31,2,0,1,0,418,358,1,7,3,1,759,8,20,0,0,0,0,0,0,0,1,0,1048,294,6.838627700127065,20.701397712833543,6.890724269377382,22.204574332909782,1.0063451776649746,3.906091370558376,2.4911167512690358,805,433,564,71,122,23,41,13,13,31,12,5,91,8,43,18,11,15,10,4,20,1835,284,0,709,1410,0,1233,886,0,1982,137,0,498,1621,0,442,56,1550,71,0,76,29,19,10,29,41,48,34,61,422,0,2,17,35,74,159,57,69,322,0,9,28,67,92,96,154,104,15,2,47,0,1,0,0,0,1074,51,835,0,2,12,20,239,272,248,48,28,692,111,119,65,30,0,89,10,1,1060,1172,309,441,69,265,30,0,2,1,1,90,17,391,58,0,0,1005,477,17,12,79,311,13,45,1,0,2,51,122,96,70,146,47,216,65,310,736,169,93,108,198,217,286,112,120,53,40,14,11,6,11,58,37.0,24.0,25.0,27.0,31.0,30.0,28.0,26.0,20.0,24.0,18.0,32.0,22.0,23.0,20.0,28.0,23.0,31.0,29.0,25.0,34.0,32.0,34.0,33.0,32.0,33.0,39.0,30.0,41.0,23.0,33.0,36.0,29.0,23.0,23.0,25.0,33.0,19.0,24.0,30.0,30.0,26.0,24.0,29.0,29.0,16.0,26.0,22.0,25.0,32.0,26.0,30.0,40.0,31.0,38.0,31.0,26.0,26.0,31.0,26.0,22.0,24.0,26.0,22.0,24.0,25.0,23.0,22.0,18.0,26.0,18.0,23.0,12.0,23.0,28.0,18.0,20.0,18.0,11.0,23.0,13.0,15.0,17.0,8.0,12.0,15.0,5.0,5.0,4.0,4.0,1.0,5.0,2.0,0.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,387,1424,421,0,144,128,115,136,165,166,144,131,138,121,165,140,118,114,104,90,65,33,13,2,0,0,2170,32,30,0,0,2170,41,21,0,0,581,20,23,432,97,20,672,387,0,944,1247,41,0,0,126,20,0,0,0,0,0,0,4,2082,0,24,35,76,1,1,3,92,2000,0,589,574,264,7,13,785,0,1.6134371957156768,0.0,2.2948717948717947,0.0,9.397401433691757,7,15,26,1,1,0,46,709,0,19,24,16,38,71,87,115,82,124,76,48,26,30,11,20,6,797,8,772,33,736,69,199,606,751,54,310,495,406,399,177,628,756,49,719,86,474,245,280,525,490,315,412,393,51,754,142,663,6,799,181,430,160,34,4,539,266,0,0,21,4,0,0,0,0,0,0,3,777,0,1.3102595797280594,1.4487021013597032,1.0,1.0232558139534884,1.0232558139534884,55.57391304347826 +70222,Los Santos,Las Tablas,Sesteadero,539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,350,4,0,381,3,0,0,0,0,0,380,0,1,2,0,0,1,0,0,326,53,5,0,0,0,0,376,0,2,0,0,6,384,0,108,12,3,28,4,0,45,29,281,29,0,0,341,0,21,3,0,19,0,332,39,13,0,0,0,0,229,151,1,3,0,0,303,71,10,0,0,0,0,0,0,0,0,0,0,539,6.552083333333333,23.80989583333333,6.6328125,23.963541666666668,1.0026041666666667,4.192708333333333,2.734375,385,213,307,14,44,18,14,5,8,18,6,2,16,3,36,16,4,9,9,2,18,905,124,0,377,652,0,633,396,0,978,51,0,241,788,0,207,34,769,19,0,20,7,13,4,16,17,30,15,30,168,0,1,7,16,33,72,19,29,209,0,6,12,31,51,35,54,104,8,0,21,0,1,0,0,0,465,38,463,0,1,12,12,142,145,132,32,12,313,39,42,14,53,1,33,3,1,542,511,172,160,23,131,7,0,5,1,3,66,3,182,7,0,0,424,282,8,9,43,170,8,21,1,0,1,38,70,50,42,70,33,74,33,92,331,92,51,63,93,95,113,70,65,34,13,6,12,2,6,7,6.0,8.0,3.0,7.0,6.0,10.0,10.0,11.0,13.0,13.0,8.0,14.0,11.0,8.0,10.0,13.0,13.0,17.0,13.0,12.0,10.0,18.0,15.0,22.0,8.0,14.0,14.0,10.0,18.0,15.0,9.0,13.0,13.0,10.0,13.0,6.0,12.0,12.0,10.0,7.0,10.0,14.0,16.0,18.0,14.0,9.0,22.0,10.0,15.0,19.0,14.0,15.0,22.0,12.0,21.0,15.0,8.0,11.0,21.0,16.0,8.0,10.0,13.0,9.0,14.0,14.0,8.0,12.0,15.0,9.0,12.0,14.0,13.0,13.0,10.0,15.0,9.0,13.0,8.0,12.0,8.0,8.0,5.0,6.0,5.0,8.0,5.0,4.0,1.0,5.0,1.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,138,673,242,0,30,57,51,68,73,71,58,47,72,75,84,71,54,58,62,57,32,23,8,1,1,0,1028,14,10,1,0,1028,14,10,1,0,210,24,25,283,51,19,303,138,0,428,610,15,0,0,3,0,0,0,0,0,0,0,15,1035,0,26,17,68,0,0,0,237,705,0,263,325,150,5,1,309,0,1.7203389830508475,0.0,2.2958579881656807,0.0,10.304843304843304,8,5,28,0,0,0,94,250,0,3,22,11,19,36,38,46,32,55,46,26,20,9,8,13,1,382,3,366,19,356,29,78,307,347,38,167,218,199,186,72,313,363,22,347,38,221,126,143,242,229,156,235,150,70,315,104,281,5,380,84,204,85,12,0,273,112,0,0,2,0,0,0,0,0,0,0,3,380,0,1.4077922077922078,1.3272727272727274,1.0,1.0625,1.0625,58.77142857142857 +70223,Los Santos,Las Tablas,Valle Rico,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,33,0,131,0,0,0,0,0,0,123,0,0,2,0,0,6,0,0,91,7,33,0,0,0,0,122,8,0,0,0,1,131,0,63,4,4,9,13,0,0,0,120,11,0,0,121,4,5,0,0,1,0,129,0,0,0,0,2,0,24,102,0,5,0,0,0,100,29,2,0,0,0,0,0,0,0,0,0,224,6.767441860465116,21.209302325581397,6.976744186046512,23.72093023255814,1.0,3.3053435114503817,2.106870229007633,131,69,89,0,21,2,5,1,2,3,0,0,1,0,7,1,4,0,6,0,5,249,64,0,89,224,0,166,147,0,287,26,0,63,250,0,58,5,232,18,0,18,0,7,0,5,15,17,8,10,98,0,0,0,4,4,11,4,12,46,0,3,4,5,12,15,8,3,0,1,3,0,0,0,0,0,139,2,151,0,0,2,0,25,37,67,21,1,51,14,5,14,3,0,53,0,0,167,157,31,48,14,32,15,0,0,0,6,43,2,48,0,0,0,190,65,0,2,9,22,1,3,0,0,0,5,10,11,4,21,24,12,5,49,101,51,18,23,28,46,27,10,6,6,4,1,3,0,0,0,3.0,1.0,3.0,4.0,1.0,2.0,6.0,5.0,5.0,2.0,3.0,1.0,3.0,0.0,2.0,2.0,4.0,6.0,5.0,4.0,1.0,7.0,0.0,3.0,3.0,1.0,0.0,2.0,7.0,2.0,3.0,3.0,3.0,3.0,1.0,4.0,3.0,3.0,3.0,4.0,4.0,0.0,4.0,4.0,8.0,2.0,3.0,2.0,6.0,11.0,4.0,2.0,7.0,3.0,4.0,5.0,4.0,5.0,3.0,5.0,5.0,5.0,4.0,5.0,4.0,6.0,6.0,5.0,7.0,4.0,4.0,7.0,7.0,2.0,4.0,2.0,4.0,7.0,6.0,1.0,4.0,2.0,3.0,1.0,1.0,1.0,4.0,2.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,41,186,97,0,12,20,9,21,14,12,13,17,20,24,20,22,23,28,24,20,11,8,3,2,1,0,324,0,0,0,0,324,0,0,0,0,83,1,28,71,14,4,82,41,0,178,146,0,0,0,12,0,0,0,0,1,0,0,3,308,0,0,1,9,0,0,0,23,291,0,49,87,29,1,0,158,0,2.388888888888889,0.0,3.1401869158878504,0.0,7.691358024691358,0,0,4,0,0,0,11,116,0,0,13,4,10,19,19,22,7,14,9,8,2,3,0,1,0,125,6,116,15,108,23,23,108,92,39,13,118,94,37,1,130,112,19,102,29,61,41,22,109,74,57,52,79,110,21,99,32,1,130,40,63,27,1,0,87,44,0,0,3,0,0,0,0,1,0,0,1,126,0,1.2748091603053435,1.1984732824427482,0.0,1.0,1.0,62.02290076335878 +70224,Los Santos,Las Tablas,Vallerriquito,199,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,25,2,109,2,1,0,0,1,0,110,0,0,1,0,0,2,0,0,0,73,36,1,3,0,0,107,5,0,0,0,1,113,0,59,4,0,15,11,0,0,4,93,12,4,0,88,2,20,1,0,1,1,105,6,2,0,0,0,0,20,90,0,3,0,0,78,32,3,0,0,0,0,0,0,0,0,0,0,202,7.0,24.0,7.0,24.0,1.0,3.637168141592921,2.345132743362832,113,58,49,4,9,2,3,0,1,0,1,0,3,0,3,1,0,2,3,0,3,206,30,0,52,184,0,117,119,0,222,14,0,44,192,0,41,3,187,5,0,7,1,2,0,11,9,10,4,8,74,0,0,3,7,17,18,5,6,24,0,1,7,3,6,4,7,0,1,0,1,0,0,0,0,0,104,2,118,0,0,0,0,26,26,53,13,0,48,15,9,4,3,0,27,0,0,128,115,30,48,4,24,0,0,0,0,1,27,4,37,1,0,0,167,38,3,2,2,11,0,1,0,0,0,6,9,5,6,7,6,24,4,39,79,26,20,18,28,30,23,6,6,4,2,0,0,0,0,1,3.0,2.0,2.0,0.0,0.0,1.0,3.0,4.0,1.0,3.0,1.0,1.0,4.0,2.0,4.0,3.0,2.0,3.0,1.0,2.0,4.0,2.0,2.0,3.0,2.0,0.0,1.0,1.0,2.0,0.0,5.0,1.0,0.0,3.0,1.0,2.0,1.0,3.0,3.0,2.0,6.0,4.0,4.0,2.0,3.0,2.0,6.0,1.0,2.0,2.0,4.0,5.0,5.0,5.0,3.0,7.0,3.0,2.0,0.0,5.0,1.0,3.0,6.0,2.0,4.0,2.0,5.0,7.0,5.0,2.0,8.0,4.0,3.0,7.0,2.0,3.0,3.0,1.0,1.0,5.0,1.0,5.0,2.0,0.0,0.0,0.0,2.0,1.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,31,136,76,0,7,12,12,11,13,4,10,11,19,13,22,17,16,21,24,13,8,8,1,1,0,0,242,0,0,1,0,242,0,0,1,0,76,2,24,52,18,1,39,31,0,91,151,1,0,5,2,1,0,0,0,0,0,0,1,234,0,12,2,21,0,0,0,15,193,0,45,89,29,3,0,77,0,2.2788461538461537,0.0,2.607142857142857,0.0,7.390946502057613,2,1,11,0,0,0,9,90,0,6,8,10,6,19,18,18,6,12,2,3,2,1,1,0,1,110,3,103,10,103,10,26,87,89,24,13,100,89,24,2,111,99,14,97,16,61,36,19,94,53,60,33,80,65,48,53,60,0,113,39,57,15,2,0,80,33,0,2,0,1,0,0,0,0,0,0,1,109,0,1.1327433628318584,1.0176991150442478,1.0,1.0,1.0,60.0353982300885 +70301,Los Santos,Los Santos,La Villa de Los Santos,4449,13,149,9,0,0,0,0,0,0,0,4,6,0,0,2923,558,38,9,3492,27,0,0,0,7,2,3514,0,1,4,0,0,8,0,1,2695,745,71,8,3,1,5,3414,6,23,0,0,85,3528,0,498,91,243,205,55,0,992,530,1887,109,6,4,3439,6,34,23,0,26,0,2876,67,584,0,0,0,1,2789,720,3,15,0,1,3145,295,12,2,1,0,0,1,0,68,3,1,3967,663,6.974217844727694,23.858632676709156,6.988991888760139,23.958864426419467,1.0090702947845804,3.822845804988662,2.493764172335601,3570,1772,2841,213,530,159,162,93,50,115,25,53,108,33,178,54,25,54,77,12,61,8319,992,0,4535,4776,0,7452,1859,0,8864,447,0,2632,6679,0,1964,668,6478,201,0,221,123,131,34,159,190,246,185,176,964,4,8,100,197,323,639,219,337,1576,9,201,206,248,470,787,850,217,174,23,276,2,5,0,11,0,4523,327,3703,0,13,144,71,967,1444,973,158,161,3253,306,508,144,387,5,191,7,10,4612,5112,1686,1502,169,1337,89,0,18,10,8,346,40,2164,26,0,0,3395,2332,101,244,308,1739,156,264,14,0,10,329,977,577,351,857,191,684,278,596,3326,581,319,502,754,811,1109,589,775,431,243,80,85,34,59,26,103.0,96.0,110.0,104.0,125.0,110.0,117.0,129.0,139.0,138.0,126.0,116.0,114.0,119.0,117.0,127.0,105.0,103.0,127.0,125.0,131.0,134.0,145.0,143.0,130.0,147.0,154.0,129.0,144.0,135.0,137.0,162.0,151.0,144.0,157.0,126.0,118.0,145.0,126.0,144.0,126.0,137.0,120.0,144.0,118.0,113.0,114.0,112.0,108.0,109.0,112.0,137.0,147.0,140.0,138.0,132.0,86.0,124.0,125.0,108.0,122.0,114.0,91.0,93.0,115.0,97.0,101.0,86.0,99.0,83.0,95.0,82.0,82.0,75.0,58.0,72.0,66.0,60.0,68.0,53.0,43.0,47.0,52.0,45.0,36.0,34.0,26.0,22.0,16.0,9.0,15.0,12.0,13.0,11.0,2.0,8.0,6.0,5.0,4.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1763,6374,1587,0,538,633,592,587,683,709,751,659,645,556,674,575,535,466,392,319,223,107,53,23,4,0,9428,221,70,5,0,9433,240,46,5,0,2189,147,436,1880,336,145,2828,1763,0,2995,6585,144,0,34,65,7,1,0,0,7,2,1,111,9496,0,671,408,684,35,57,16,1302,6551,0,2784,2782,1002,73,17,3066,0,1.6370223978919631,0.0,2.280214578731461,0.0,10.378239407651172,275,168,325,24,24,8,546,2200,0,53,96,54,133,242,340,392,340,657,406,260,168,216,84,114,5,3503,67,3427,143,3342,228,604,2966,3345,225,1997,1573,2114,1456,1244,2326,3358,212,3351,219,2276,1075,1813,1757,2817,753,2160,1410,284,3286,375,3195,46,3524,779,1905,766,120,0,1899,1671,0,11,17,1,0,0,0,1,0,1,44,3495,0,1.2918767507002802,1.4319327731092435,1.0869565217391304,1.0575539568345325,1.0575539568345325,53.26274509803922 +70302,Los Santos,Los Santos,El Guásimo,327,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,230,9,3,239,0,0,0,0,3,0,240,0,0,0,0,0,1,0,1,3,137,98,3,0,0,1,226,8,1,0,0,7,242,0,44,10,1,26,4,0,1,8,222,11,0,0,212,0,1,4,0,25,0,205,24,13,0,0,0,0,37,200,0,5,0,0,1,232,7,0,0,0,0,0,0,0,1,1,0,328,6.9875,22.266666666666666,7.0,23.72083333333333,1.008264462809917,3.669421487603306,2.024793388429752,245,123,175,15,35,5,7,8,3,8,1,1,3,0,28,8,4,0,5,2,8,493,113,0,110,496,0,316,290,0,558,48,0,132,474,0,107,25,445,29,0,34,4,11,1,16,19,28,13,23,170,0,0,2,10,29,33,9,24,116,0,9,1,5,3,17,8,19,0,0,2,0,0,0,0,0,208,42,312,0,2,3,27,24,82,160,22,24,90,19,41,8,18,0,74,0,0,323,306,62,64,9,105,10,0,0,0,0,67,7,193,2,0,0,380,121,2,13,1,44,0,1,0,0,0,9,16,14,15,24,64,26,19,63,290,97,29,37,43,35,52,15,17,3,6,1,1,0,1,2,4.0,5.0,8.0,6.0,4.0,5.0,13.0,6.0,11.0,5.0,2.0,12.0,5.0,5.0,5.0,5.0,10.0,5.0,8.0,8.0,9.0,8.0,14.0,10.0,12.0,3.0,8.0,5.0,7.0,11.0,2.0,6.0,7.0,12.0,8.0,7.0,8.0,2.0,9.0,11.0,9.0,3.0,8.0,2.0,3.0,5.0,7.0,8.0,4.0,13.0,12.0,12.0,12.0,10.0,12.0,11.0,11.0,11.0,8.0,6.0,7.0,10.0,5.0,4.0,9.0,9.0,8.0,7.0,5.0,8.0,9.0,5.0,10.0,9.0,6.0,9.0,4.0,10.0,2.0,5.0,3.0,2.0,2.0,5.0,3.0,3.0,0.0,1.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,96,397,136,0,27,40,29,36,53,34,35,37,25,37,58,47,35,37,39,30,15,9,4,2,0,0,627,0,0,2,0,627,0,0,2,0,177,2,28,104,30,1,191,96,0,398,231,0,0,0,4,0,0,0,0,0,0,0,15,610,0,8,30,81,1,3,0,100,406,0,104,193,27,2,0,303,0,2.0,0.0,2.665024630541872,0.0,7.523052464228935,1,14,50,1,0,0,41,138,0,21,31,14,26,38,25,24,18,24,9,5,2,4,1,1,1,238,7,221,24,210,35,28,217,195,50,33,212,145,100,2,243,222,23,203,42,126,77,40,205,40,205,93,152,69,176,105,140,13,232,68,132,43,2,0,178,67,0,0,1,0,0,0,0,0,0,0,5,239,0,1.3183673469387756,1.2489795918367348,1.0,1.0,1.0,57.4 +70303,Los Santos,Los Santos,La Colorada,473,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,300,72,1,370,2,0,0,0,1,0,362,2,0,1,1,1,5,0,1,183,19,112,43,16,0,0,348,14,2,0,0,9,373,0,64,9,0,30,0,0,0,12,329,32,0,0,356,1,5,6,0,5,0,291,63,19,0,0,0,0,63,303,1,5,0,1,0,358,9,0,0,0,0,0,0,5,0,1,0,480,6.73841961852861,18.49863760217984,6.743869209809264,19.75204359673025,1.0080428954423593,3.812332439678284,1.9571045576407504,380,218,300,20,57,7,11,3,6,10,0,1,3,2,37,12,1,11,6,1,4,815,171,0,178,808,0,544,442,0,915,71,0,232,754,0,208,24,717,37,0,40,8,18,8,16,34,39,25,25,262,0,0,1,29,42,75,27,30,174,0,7,12,9,25,13,26,30,2,3,6,0,0,0,0,0,424,21,467,0,0,1,14,32,142,222,33,38,142,47,48,18,26,1,161,1,1,537,481,81,160,25,149,19,0,10,1,2,107,12,275,6,0,0,604,204,1,9,21,67,1,5,0,0,1,13,29,20,15,43,89,63,33,139,475,144,35,65,75,73,56,34,27,13,7,3,1,3,1,6,10.0,8.0,10.0,4.0,9.0,12.0,13.0,16.0,10.0,14.0,8.0,11.0,12.0,8.0,10.0,17.0,19.0,10.0,16.0,24.0,12.0,11.0,20.0,14.0,12.0,17.0,11.0,17.0,12.0,7.0,7.0,9.0,10.0,10.0,7.0,6.0,10.0,13.0,25.0,14.0,13.0,12.0,14.0,12.0,10.0,11.0,10.0,11.0,16.0,12.0,15.0,16.0,12.0,13.0,17.0,7.0,19.0,12.0,12.0,20.0,15.0,17.0,15.0,12.0,10.0,18.0,14.0,12.0,7.0,11.0,16.0,5.0,10.0,10.0,9.0,10.0,11.0,7.0,5.0,6.0,7.0,3.0,7.0,1.0,3.0,2.0,4.0,2.0,1.0,4.0,3.0,4.0,1.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,155,663,200,0,41,65,49,86,69,64,43,68,61,60,73,70,69,62,50,39,21,13,12,1,2,0,1006,10,1,1,0,1006,10,1,1,0,302,12,33,174,45,4,293,155,0,636,376,6,0,4,10,0,0,0,0,0,0,0,17,987,0,5,41,135,4,7,2,439,385,0,143,309,36,3,0,527,0,2.30715935334873,0.0,2.9465408805031448,0.0,7.926326129666012,1,15,60,4,3,1,159,137,0,24,48,12,43,58,49,40,28,37,15,7,5,6,0,3,1,369,11,341,39,351,29,58,322,332,48,57,323,260,120,5,375,348,32,333,47,118,215,92,288,122,258,155,225,195,185,246,134,2,378,93,217,66,4,0,294,86,0,0,3,0,0,0,0,0,0,0,3,374,0,1.4131578947368422,1.2657894736842106,0.0,1.0588235294117647,1.0588235294117647,56.83157894736842 +70304,Los Santos,Los Santos,La Espigadilla,778,2,43,0,0,0,0,0,0,0,0,0,3,0,0,0,627,31,5,638,20,0,0,0,5,0,655,0,1,1,0,1,5,0,0,368,231,39,21,0,1,3,636,6,2,0,0,19,663,0,47,17,6,81,9,0,25,39,557,42,0,0,597,2,21,6,0,37,0,557,65,38,1,0,1,1,218,430,0,13,2,0,608,33,17,2,0,0,0,0,0,1,2,0,0,826,6.389057750759879,19.50607902735562,6.878419452887538,22.958966565349545,1.0075414781297134,3.656108597285068,2.051282051282051,671,372,535,30,89,13,17,14,8,20,5,1,5,2,50,24,10,13,32,7,12,1466,246,0,477,1235,0,1052,660,0,1563,149,0,439,1273,0,340,99,1224,49,0,64,21,18,6,54,69,78,63,48,425,0,3,3,42,61,119,32,45,243,3,18,16,39,37,71,80,17,14,3,20,0,0,0,0,0,829,34,724,0,1,12,5,61,234,310,59,60,462,51,75,49,74,5,142,1,0,897,885,183,308,55,294,10,0,9,0,2,208,33,345,7,0,0,1019,330,5,25,21,157,11,19,0,0,0,41,81,53,46,151,96,110,100,185,658,256,87,101,141,135,195,72,66,29,18,6,6,3,2,7,17.0,18.0,21.0,14.0,18.0,19.0,19.0,23.0,22.0,24.0,21.0,24.0,14.0,22.0,19.0,33.0,21.0,18.0,16.0,19.0,26.0,33.0,16.0,24.0,17.0,24.0,20.0,22.0,23.0,19.0,12.0,22.0,29.0,18.0,26.0,24.0,21.0,23.0,26.0,32.0,28.0,16.0,21.0,19.0,23.0,28.0,26.0,19.0,21.0,20.0,20.0,21.0,24.0,25.0,24.0,22.0,24.0,37.0,31.0,22.0,30.0,14.0,18.0,20.0,19.0,17.0,23.0,19.0,14.0,25.0,16.0,17.0,19.0,15.0,18.0,19.0,19.0,15.0,9.0,16.0,17.0,12.0,8.0,6.0,7.0,7.0,5.0,4.0,6.0,2.0,1.0,3.0,4.0,0.0,2.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,295,1136,351,0,88,107,100,107,116,108,107,126,107,114,114,136,101,98,85,78,50,24,10,5,1,0,1747,31,2,2,0,1747,33,0,2,0,561,16,42,287,67,12,502,295,0,1110,652,20,0,2,15,12,0,0,0,1,0,0,11,1741,0,9,22,248,16,0,1,361,1125,0,408,640,71,10,0,653,0,1.8304020100502512,0.0,2.3989726027397262,0.0,7.984287317620651,3,9,101,6,0,0,148,404,0,21,70,23,51,83,71,77,64,100,36,28,14,16,5,6,3,653,18,628,43,608,63,105,566,587,84,187,484,313,358,67,604,591,80,582,89,309,273,193,478,385,286,362,309,121,550,230,441,9,662,156,377,133,5,0,467,204,0,1,4,3,0,0,0,0,0,0,2,661,0,1.3368107302533532,1.3189269746646797,1.0,1.0,1.0,57.25931445603577 +70305,Los Santos,Los Santos,Las Cruces,604,4,0,4,0,0,0,0,2,0,0,0,4,0,0,0,348,154,11,470,32,4,0,0,6,1,499,0,0,4,0,2,7,0,1,11,265,215,7,14,1,0,484,21,1,0,0,7,513,0,34,18,1,29,17,0,21,20,410,62,0,0,475,7,9,16,0,6,0,435,55,22,0,0,0,1,130,363,0,20,0,0,350,139,15,2,0,0,0,0,0,0,5,2,0,618,6.998015873015873,23.34325396825397,6.998015873015873,23.714285714285715,1.0077972709551657,3.317738791423002,1.8538011695906436,521,307,436,20,79,11,16,6,5,19,5,7,31,0,44,20,8,5,13,6,19,1101,264,0,291,1074,0,793,572,0,1228,137,0,312,1053,0,261,51,970,83,0,84,17,14,0,46,48,52,44,48,364,0,0,2,31,67,83,33,46,185,2,12,9,38,22,36,39,31,1,1,9,0,0,0,1,0,602,40,602,0,2,5,13,40,159,304,76,23,293,40,54,17,41,0,190,2,1,759,704,105,265,21,202,24,0,18,3,10,133,9,411,4,0,0,856,245,3,19,18,92,1,9,1,0,2,16,40,27,28,88,107,72,67,195,675,166,60,78,113,122,119,40,50,20,8,1,5,1,1,4,20.0,25.0,22.0,31.0,20.0,23.0,22.0,21.0,20.0,15.0,26.0,13.0,13.0,11.0,19.0,24.0,10.0,20.0,17.0,24.0,22.0,24.0,22.0,19.0,17.0,24.0,13.0,25.0,17.0,30.0,30.0,21.0,20.0,12.0,17.0,22.0,17.0,15.0,17.0,16.0,15.0,13.0,19.0,11.0,17.0,11.0,19.0,15.0,22.0,10.0,20.0,30.0,22.0,24.0,22.0,19.0,17.0,16.0,21.0,18.0,15.0,8.0,11.0,17.0,12.0,14.0,16.0,15.0,8.0,4.0,7.0,11.0,4.0,13.0,10.0,14.0,15.0,11.0,10.0,12.0,11.0,8.0,1.0,9.0,7.0,5.0,7.0,5.0,4.0,3.0,4.0,4.0,1.0,2.0,2.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,301,919,243,0,118,101,82,95,104,109,100,87,75,77,118,91,63,57,45,62,36,24,13,6,0,0,1446,9,7,1,0,1446,9,7,1,0,492,9,45,213,59,12,332,301,0,761,692,10,0,1,195,11,3,0,0,0,0,0,3,1250,0,17,24,109,0,1,0,279,1033,0,211,431,38,6,0,777,0,2.0966101694915253,0.0,2.6741573033707864,0.0,7.301435406698564,4,5,54,0,1,0,123,334,0,45,49,18,44,58,75,60,38,65,24,16,9,10,2,3,1,510,11,447,74,437,84,78,443,425,96,111,410,302,219,28,493,469,52,403,118,220,183,123,398,297,224,235,286,212,309,212,309,8,513,118,306,95,2,2,396,125,0,1,36,5,2,0,0,0,0,0,2,475,0,1.451242829827916,1.3460803059273423,1.0,1.0384615384615383,1.0384615384615383,55.061420345489445 +70306,Los Santos,Los Santos,Las Guabas,381,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,206,90,8,285,11,1,0,0,7,0,300,0,1,0,0,0,3,0,0,6,224,58,9,5,0,2,282,10,0,0,0,12,304,0,23,12,4,30,11,0,1,7,264,24,8,0,283,1,4,6,0,10,0,259,20,25,0,0,0,0,56,240,0,8,0,0,163,126,13,1,0,0,0,0,0,0,1,0,0,385,6.947019867549669,22.625827814569536,6.996688741721854,23.09271523178808,1.0098684210526316,3.5657894736842106,2.213815789473684,308,136,190,19,34,7,11,3,4,6,4,1,3,2,22,12,7,5,5,4,8,577,122,0,133,566,0,423,276,0,632,67,0,137,562,0,120,17,536,26,0,26,7,7,0,23,38,24,13,18,233,0,0,0,14,34,44,21,20,71,3,0,3,19,21,12,10,28,8,0,2,0,0,0,0,0,311,17,332,0,0,6,7,34,79,172,33,14,112,17,40,12,10,0,136,0,0,375,353,62,79,14,103,66,0,3,0,6,87,5,155,6,0,0,483,99,0,6,14,52,4,2,0,0,0,7,18,20,13,27,96,46,20,81,270,136,38,59,60,49,46,25,21,11,3,1,1,0,2,6,13.0,3.0,8.0,5.0,6.0,9.0,3.0,9.0,9.0,3.0,5.0,11.0,9.0,6.0,8.0,5.0,7.0,5.0,11.0,3.0,9.0,15.0,8.0,6.0,7.0,12.0,14.0,11.0,11.0,9.0,7.0,10.0,4.0,10.0,6.0,7.0,10.0,10.0,6.0,7.0,8.0,4.0,11.0,16.0,3.0,9.0,10.0,7.0,6.0,11.0,10.0,10.0,13.0,15.0,11.0,14.0,14.0,8.0,10.0,13.0,6.0,10.0,10.0,7.0,8.0,9.0,3.0,9.0,9.0,8.0,8.0,8.0,10.0,13.0,10.0,6.0,10.0,5.0,5.0,8.0,7.0,7.0,8.0,4.0,2.0,5.0,2.0,2.0,1.0,3.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,107,454,167,0,35,33,39,31,45,57,37,40,42,43,59,59,41,38,49,34,28,13,5,0,0,0,725,0,2,1,0,725,1,1,1,0,235,2,31,80,32,0,241,107,0,404,323,1,0,1,14,0,0,0,0,0,0,0,2,711,0,16,8,106,4,0,0,189,405,0,124,224,32,4,0,344,0,2.2044025157232703,0.0,2.6962025316455698,0.0,7.521978021978022,5,4,47,0,0,0,84,168,0,21,54,10,31,35,51,36,21,20,9,7,4,5,1,2,0,293,15,279,29,275,33,51,257,255,53,55,253,212,96,4,304,265,43,266,42,72,194,65,243,166,142,115,193,147,161,180,128,1,307,108,141,54,5,0,220,88,0,1,4,0,0,0,0,0,0,0,1,302,0,1.2175324675324677,1.146103896103896,1.0,1.0,1.0,57.83116883116883 +70307,Los Santos,Los Santos,Los Ángeles,441,0,0,4,0,0,0,0,1,0,0,0,1,0,0,0,283,74,6,350,7,0,0,0,6,0,357,0,0,0,1,0,5,0,0,113,202,35,1,4,0,8,339,11,1,0,0,12,363,0,28,6,5,35,8,0,23,22,296,21,1,0,297,7,26,11,0,22,0,316,22,25,0,0,0,0,125,216,0,22,0,0,4,347,3,3,1,0,0,0,0,5,0,0,0,447,6.988700564971752,23.24576271186441,7.0,23.805084745762716,1.019283746556474,3.487603305785124,1.911845730027548,371,181,268,14,36,6,16,12,2,11,3,2,21,0,43,13,5,7,7,6,8,776,129,0,211,694,0,575,330,0,836,69,0,211,694,0,175,36,638,56,0,56,11,10,0,18,19,39,32,25,228,0,1,0,18,45,69,22,31,114,0,1,9,31,18,46,32,13,5,2,9,0,0,1,0,0,481,10,355,0,0,4,3,50,107,121,17,60,219,34,45,30,50,5,96,10,1,488,455,77,171,33,181,27,0,0,1,1,88,6,181,8,0,0,563,154,0,20,17,79,4,9,0,0,1,16,39,23,17,91,76,59,40,129,331,113,56,58,72,112,94,33,29,12,12,3,7,1,2,8,8.0,12.0,8.0,10.0,8.0,10.0,8.0,15.0,8.0,10.0,16.0,14.0,10.0,7.0,13.0,14.0,13.0,13.0,10.0,11.0,17.0,14.0,14.0,15.0,10.0,10.0,18.0,14.0,11.0,13.0,13.0,13.0,15.0,9.0,16.0,12.0,14.0,17.0,18.0,8.0,8.0,11.0,12.0,6.0,8.0,9.0,12.0,9.0,12.0,7.0,19.0,10.0,17.0,14.0,9.0,15.0,8.0,10.0,21.0,12.0,17.0,11.0,12.0,12.0,9.0,5.0,8.0,10.0,8.0,8.0,10.0,9.0,5.0,12.0,2.0,14.0,7.0,7.0,5.0,10.0,4.0,8.0,6.0,3.0,5.0,3.0,3.0,2.0,1.0,0.0,0.0,4.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,622,164,0,46,51,60,61,70,66,66,69,45,49,69,66,61,39,38,43,26,9,8,1,0,0,923,18,2,0,0,923,18,2,0,0,267,10,108,149,59,1,192,157,0,444,488,11,0,1,29,1,0,0,0,0,0,0,1,911,0,13,18,36,2,0,2,72,800,0,186,250,55,9,0,443,0,1.8193069306930691,0.0,2.471631205673759,0.0,7.975609756097561,7,8,19,1,0,1,35,300,0,12,29,24,35,41,51,51,26,45,17,15,9,6,1,7,1,353,18,334,37,339,32,53,318,327,44,109,262,198,173,33,338,340,31,326,45,147,179,97,274,200,171,164,207,66,305,115,256,6,365,102,190,70,9,1,249,122,0,0,6,0,0,0,0,0,0,0,1,364,0,1.3118279569892473,1.2231182795698925,0.0,1.0,1.0,55.00808625336927 +70308,Los Santos,Los Santos,Los Olivos,656,13,0,0,0,0,0,0,0,0,0,1,2,0,0,0,507,14,15,511,10,0,0,0,15,0,518,0,1,4,1,1,10,0,1,247,179,90,13,7,0,0,509,8,0,0,0,19,536,0,51,17,3,35,27,0,22,23,446,44,1,0,496,5,7,7,0,21,0,453,38,44,0,0,0,1,194,332,2,8,0,0,237,270,20,0,0,0,0,0,0,2,5,2,0,672,6.903225806451613,22.024667931688803,6.94876660341556,22.9696394686907,1.0111940298507462,3.625,2.2723880597014925,545,313,437,39,76,16,8,4,7,17,5,1,15,1,37,17,12,12,21,9,27,1234,190,0,467,957,0,880,544,0,1333,91,0,361,1063,0,289,72,1022,41,0,44,14,15,2,32,37,58,38,43,275,1,0,8,28,48,97,40,58,255,6,12,27,39,53,59,60,39,15,2,18,0,0,0,1,0,669,70,590,0,3,22,15,72,211,264,41,2,363,59,93,30,51,3,133,0,0,755,729,170,242,32,242,33,0,13,0,4,102,16,389,0,0,0,734,350,8,26,48,135,11,16,1,0,0,16,80,64,30,130,96,108,59,156,633,163,64,79,111,128,124,57,62,39,18,3,3,0,0,0,11.0,18.0,22.0,9.0,16.0,11.0,21.0,17.0,15.0,15.0,22.0,17.0,20.0,19.0,13.0,20.0,17.0,20.0,25.0,30.0,20.0,14.0,14.0,25.0,31.0,22.0,22.0,19.0,13.0,17.0,17.0,18.0,23.0,16.0,22.0,20.0,21.0,20.0,22.0,14.0,15.0,20.0,19.0,18.0,16.0,12.0,18.0,17.0,23.0,17.0,27.0,24.0,28.0,18.0,38.0,34.0,18.0,21.0,16.0,18.0,16.0,13.0,21.0,17.0,10.0,14.0,15.0,16.0,17.0,17.0,13.0,12.0,11.0,10.0,14.0,12.0,8.0,10.0,13.0,5.0,9.0,6.0,8.0,3.0,4.0,6.0,5.0,1.0,0.0,6.0,0.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,246,996,242,0,76,79,91,112,104,93,96,97,88,87,135,107,77,79,60,48,30,18,5,2,0,0,1467,12,2,3,0,1467,14,0,3,0,437,24,38,263,52,10,414,246,0,802,674,8,0,3,21,3,2,0,2,7,0,1,9,1436,0,97,60,155,4,0,1,519,648,0,305,459,81,16,1,622,0,1.874425727411945,0.0,2.502136752136752,0.0,8.919137466307278,36,22,64,3,0,0,201,219,0,41,47,20,44,59,56,59,46,73,42,20,14,13,4,4,0,523,22,500,45,488,57,80,465,476,69,137,408,337,208,72,473,486,59,475,70,217,258,189,356,233,312,278,267,156,389,252,293,9,536,118,323,92,12,0,387,158,0,0,7,2,0,0,1,2,0,1,7,525,0,1.385321100917431,1.3376146788990826,1.3333333333333333,1.0952380952380951,1.0952380952380951,54.95412844036697 +70309,Los Santos,Los Santos,Llano Largo,1138,2,0,0,0,0,0,0,0,0,0,0,1,0,0,55,810,59,16,910,14,2,0,0,13,1,925,0,0,0,1,1,10,0,3,718,140,43,11,3,0,25,874,15,3,0,0,48,940,0,54,32,49,41,24,0,50,82,775,32,1,0,867,6,32,19,0,16,0,827,45,67,0,0,1,0,387,536,0,15,2,0,909,0,4,13,0,0,0,1,0,6,6,1,0,1141,5.7261774370208105,15.47645125958379,6.572836801752464,21.84775465498357,1.0106382978723405,3.521276595744681,2.3861702127659576,951,539,828,82,127,25,30,11,14,33,7,12,28,2,46,37,10,32,24,3,28,2060,520,0,732,1848,0,1660,920,0,2457,123,0,685,1895,0,591,94,1828,67,0,71,23,39,9,48,75,94,76,77,619,0,1,15,72,105,152,67,104,442,6,38,22,46,61,101,100,56,16,0,43,0,0,1,1,0,1175,96,1104,0,3,30,39,120,415,425,104,40,620,95,196,69,149,2,116,2,6,1349,1340,274,338,78,494,20,0,43,8,2,182,17,746,5,0,0,1425,546,15,47,59,225,13,44,1,0,4,50,118,105,46,205,123,288,108,224,1206,253,106,108,174,226,256,122,119,60,24,13,9,1,7,5,21.0,32.0,33.0,23.0,24.0,27.0,37.0,41.0,37.0,39.0,42.0,36.0,37.0,37.0,29.0,38.0,37.0,40.0,43.0,41.0,36.0,40.0,44.0,42.0,32.0,35.0,42.0,44.0,38.0,28.0,44.0,36.0,36.0,41.0,36.0,43.0,33.0,38.0,40.0,33.0,40.0,38.0,34.0,42.0,22.0,38.0,36.0,32.0,30.0,28.0,41.0,30.0,37.0,28.0,38.0,38.0,36.0,34.0,36.0,31.0,28.0,28.0,31.0,31.0,33.0,27.0,24.0,23.0,24.0,21.0,22.0,23.0,17.0,17.0,18.0,18.0,15.0,12.0,6.0,17.0,15.0,15.0,10.0,11.0,9.0,6.0,6.0,5.0,3.0,4.0,4.0,2.0,7.0,5.0,1.0,1.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,495,1800,394,0,133,181,181,199,194,187,193,187,176,164,174,175,151,119,97,68,60,24,19,7,0,0,2655,26,7,1,0,2655,27,6,1,0,798,19,119,415,82,19,742,495,0,1492,1172,25,0,3,38,1,0,0,0,0,0,0,47,2600,0,39,45,226,3,2,3,122,2249,0,538,854,131,8,1,1157,0,1.929180887372013,0.0,2.6747868453105967,0.0,8.494607660840462,17,19,87,3,1,2,52,770,0,54,65,35,60,82,121,124,99,125,61,43,29,33,9,8,2,911,40,855,96,858,93,102,849,852,99,246,705,427,524,190,761,817,134,850,101,368,482,331,620,591,360,454,497,141,810,226,725,7,944,208,532,189,22,0,670,281,0,2,9,0,0,0,0,0,0,0,7,933,0,1.4185068349106205,1.409043112513144,1.0,1.0,1.0,53.07991587802314 +70310,Los Santos,Los Santos,Sabana Grande,911,12,0,3,0,0,0,0,0,0,0,0,4,0,0,2,702,39,0,733,10,0,0,0,0,0,729,0,1,3,3,0,7,0,0,76,569,95,1,2,0,0,724,10,3,1,0,5,743,0,70,19,23,42,29,0,47,58,580,58,0,0,688,8,21,13,0,13,0,658,59,25,0,0,0,1,268,462,2,10,1,0,617,103,17,4,0,0,0,0,0,2,0,0,0,930,6.963364993215739,23.127544097693352,6.995929443690637,23.772048846675712,1.0134589502018845,3.3364737550471064,2.1978465679676984,757,411,612,36,92,33,37,11,9,21,8,5,18,1,74,16,7,2,21,12,6,1605,355,0,475,1485,0,1130,830,0,1763,197,0,434,1526,0,344,90,1399,127,0,127,17,21,5,56,60,97,54,50,420,0,0,6,51,66,119,44,57,305,0,11,37,56,54,85,77,50,9,0,26,0,0,0,0,0,848,25,940,0,0,11,10,126,255,444,87,28,484,70,84,35,64,1,128,0,2,1025,1026,189,378,39,247,10,0,3,2,4,173,19,572,14,0,0,1097,448,6,24,24,183,7,24,0,0,2,32,82,46,58,165,75,132,85,196,875,232,63,126,179,185,167,75,80,31,17,1,4,1,1,14,23.0,21.0,25.0,22.0,23.0,22.0,27.0,31.0,20.0,24.0,20.0,19.0,24.0,21.0,22.0,21.0,22.0,28.0,24.0,32.0,28.0,31.0,34.0,24.0,15.0,34.0,34.0,24.0,35.0,26.0,30.0,29.0,27.0,27.0,20.0,23.0,27.0,27.0,27.0,33.0,25.0,29.0,25.0,22.0,23.0,12.0,16.0,16.0,21.0,25.0,28.0,25.0,33.0,22.0,33.0,21.0,38.0,23.0,33.0,21.0,24.0,23.0,30.0,21.0,26.0,27.0,20.0,24.0,25.0,30.0,19.0,20.0,19.0,12.0,25.0,21.0,17.0,18.0,15.0,17.0,13.0,9.0,5.0,10.0,7.0,10.0,5.0,8.0,10.0,7.0,5.0,3.0,2.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,344,1297,410,0,114,124,106,127,132,153,133,137,124,90,141,136,124,126,95,88,44,40,12,4,1,0,2018,21,5,7,0,2020,21,3,7,0,577,11,51,348,90,15,615,344,0,1051,977,23,0,5,120,11,0,0,0,0,0,0,3,1912,0,2,21,46,4,2,1,19,1956,0,405,553,135,9,2,947,0,1.812638580931264,0.0,2.4553846153846157,0.0,8.132130667966845,0,11,22,1,1,1,11,710,0,31,76,22,53,101,116,83,48,108,51,36,6,9,5,3,5,748,9,692,65,670,87,156,601,652,105,229,528,409,348,108,649,664,93,656,101,273,383,206,551,400,357,360,397,108,649,171,586,8,749,169,409,165,14,0,530,227,0,1,24,3,0,0,0,0,0,0,0,729,0,1.3540290620871862,1.3553500660501985,1.0,1.027027027027027,1.027027027027027,56.486129458388376 +70311,Los Santos,Los Santos,Santa Ana,1045,12,18,0,0,0,0,0,0,0,0,1,3,0,0,0,677,33,6,695,15,0,0,0,6,0,695,0,2,8,0,0,10,0,1,482,121,102,2,6,0,3,694,5,1,0,0,16,716,0,217,43,15,69,15,0,18,44,597,56,1,0,633,13,42,16,0,12,0,506,87,121,1,0,0,1,278,411,3,20,4,0,702,1,11,0,0,0,0,0,0,0,2,0,0,1079,6.893557422969188,23.68767507002801,6.974789915966387,23.946778711484598,1.0083798882681565,3.4762569832402237,2.3896648044692737,726,391,586,54,106,16,30,6,9,28,5,9,38,0,68,56,7,8,25,5,18,1629,267,0,513,1383,0,1401,495,0,1774,122,0,475,1421,0,373,102,1356,65,0,67,23,15,8,39,53,69,48,68,380,1,1,12,55,79,122,58,86,338,1,31,15,33,33,47,86,71,26,4,24,0,0,0,3,0,931,53,774,0,2,22,7,108,257,291,38,80,432,57,73,42,79,5,105,174,1,1033,971,187,359,46,341,18,1,15,1,4,138,14,463,21,0,0,1034,404,13,42,28,195,16,23,3,0,1,28,102,47,39,153,106,247,55,206,810,195,78,126,197,169,163,72,86,42,26,3,10,2,4,21,25.0,30.0,20.0,33.0,28.0,13.0,23.0,29.0,21.0,24.0,25.0,31.0,24.0,16.0,24.0,27.0,28.0,25.0,25.0,38.0,24.0,26.0,29.0,30.0,37.0,32.0,30.0,20.0,26.0,27.0,22.0,24.0,28.0,32.0,20.0,19.0,26.0,25.0,34.0,26.0,25.0,20.0,29.0,25.0,31.0,28.0,28.0,31.0,24.0,23.0,21.0,26.0,27.0,25.0,36.0,21.0,31.0,23.0,31.0,25.0,18.0,26.0,27.0,23.0,22.0,20.0,18.0,21.0,16.0,8.0,22.0,27.0,17.0,17.0,10.0,14.0,16.0,14.0,15.0,13.0,8.0,9.0,10.0,2.0,12.0,7.0,3.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,366,1326,312,0,136,110,120,143,146,135,126,130,130,134,135,131,116,83,93,72,41,14,3,5,1,0,1922,28,49,5,0,1923,58,18,5,0,639,20,139,273,70,11,486,366,0,1046,913,45,0,6,42,1,0,4,0,3,0,0,46,1902,0,36,32,258,9,25,1,621,1022,0,358,499,94,9,19,1025,0,1.902728351126928,0.0,2.5408496732026142,0.0,8.578343313373253,12,19,116,4,10,1,236,328,0,27,47,32,55,87,97,77,57,94,55,27,23,23,6,6,9,708,18,662,64,648,78,104,622,662,64,201,525,390,336,96,630,666,60,655,71,369,286,230,496,541,185,344,382,88,638,123,603,14,712,163,391,142,30,0,464,262,0,1,9,1,0,1,0,0,0,0,14,700,0,1.4228650137741048,1.337465564738292,1.0,1.064516129032258,1.064516129032258,53.91597796143251 +70312,Los Santos,Los Santos,Tres Quebradas,377,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,295,8,2,303,0,1,1,0,0,0,303,0,0,1,0,0,0,0,1,0,270,23,8,4,0,0,289,6,1,0,0,9,305,0,18,18,7,23,6,0,12,26,247,20,0,0,295,0,2,4,0,4,0,263,28,13,0,0,0,1,110,190,2,3,0,0,295,0,8,0,0,0,0,2,0,0,0,0,0,378,6.871287128712871,23.524752475247524,6.983498349834983,23.96039603960396,1.0163934426229508,3.6950819672131145,2.413114754098361,311,175,268,15,40,15,12,0,4,3,1,6,12,2,44,5,7,4,5,2,10,683,145,0,247,581,0,439,389,0,763,65,0,233,595,0,183,50,543,52,0,53,6,19,0,15,18,36,20,18,179,0,0,0,13,30,65,23,30,103,0,0,21,31,25,65,30,11,1,0,16,0,0,0,0,0,347,26,383,0,0,13,6,31,133,161,55,3,199,38,15,13,56,0,44,0,2,417,447,113,83,17,125,25,0,2,2,0,91,8,166,4,0,0,436,194,0,6,16,88,1,15,0,0,2,17,51,33,19,44,48,67,44,48,314,121,42,61,66,55,68,43,45,24,9,2,5,0,5,4,10.0,5.0,8.0,13.0,8.0,13.0,17.0,11.0,12.0,11.0,13.0,12.0,9.0,8.0,7.0,21.0,14.0,7.0,9.0,11.0,17.0,12.0,7.0,13.0,5.0,12.0,12.0,12.0,13.0,5.0,6.0,14.0,13.0,5.0,10.0,11.0,6.0,16.0,12.0,14.0,13.0,18.0,7.0,11.0,16.0,6.0,14.0,8.0,13.0,8.0,8.0,13.0,11.0,14.0,12.0,6.0,9.0,9.0,11.0,14.0,5.0,12.0,7.0,7.0,7.0,11.0,7.0,8.0,3.0,11.0,4.0,8.0,5.0,9.0,10.0,3.0,13.0,11.0,7.0,7.0,5.0,7.0,6.0,8.0,5.0,1.0,5.0,0.0,4.0,1.0,3.0,0.0,4.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,157,536,171,0,44,64,49,62,54,54,48,59,65,49,58,49,38,40,36,41,31,11,11,1,0,0,853,8,2,1,0,853,8,2,1,0,256,9,17,131,51,3,240,157,0,429,434,1,0,3,22,7,0,0,0,0,0,0,0,832,0,8,7,7,1,0,0,12,829,0,189,282,33,2,0,358,0,1.758974358974359,0.0,2.278745644599303,0.0,8.430555555555555,4,3,5,0,0,0,4,295,0,12,25,12,32,37,30,24,26,40,23,20,8,10,3,7,1,301,10,290,21,283,28,49,262,265,46,106,205,148,163,27,284,285,26,270,41,223,47,97,214,159,152,174,137,45,266,85,226,3,308,55,188,57,11,0,212,99,0,1,3,3,0,0,0,0,0,0,0,304,0,1.3408360128617365,1.437299035369775,1.0,1.0666666666666669,1.0666666666666669,56.37299035369775 +70313,Los Santos,Los Santos,Agua Buena,557,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,431,17,4,443,5,1,0,0,0,3,450,0,0,0,0,1,0,0,1,4,420,22,4,0,0,2,433,1,1,0,0,17,452,0,25,17,3,54,11,0,24,44,363,20,1,0,443,7,0,1,0,1,0,387,35,30,0,0,0,0,168,278,0,6,0,0,442,1,7,1,0,0,0,0,0,0,0,1,0,567,6.931111111111111,21.38222222222222,6.975555555555555,23.324444444444445,1.0066371681415929,3.745575221238938,2.43141592920354,460,275,333,39,84,13,7,4,5,18,4,0,18,0,46,15,4,3,12,4,25,969,227,0,303,893,0,671,525,0,1095,101,0,251,945,0,213,38,888,57,0,58,16,9,4,32,44,65,44,37,276,0,0,0,35,42,70,24,43,167,0,0,14,30,36,71,50,7,9,2,11,0,0,0,0,0,544,29,534,0,2,12,12,44,148,263,67,12,358,65,21,20,58,0,44,0,0,634,626,99,213,21,196,36,0,1,0,0,146,7,321,0,0,0,710,245,0,2,28,106,6,10,0,0,0,33,43,35,29,62,53,168,65,85,517,163,49,65,131,90,105,45,48,22,12,3,5,1,4,0,16.0,20.0,11.0,17.0,22.0,13.0,11.0,10.0,13.0,20.0,20.0,14.0,11.0,16.0,12.0,8.0,15.0,13.0,19.0,10.0,11.0,15.0,19.0,18.0,23.0,19.0,17.0,24.0,22.0,18.0,15.0,20.0,14.0,20.0,13.0,23.0,17.0,17.0,13.0,12.0,8.0,10.0,12.0,12.0,10.0,5.0,5.0,12.0,14.0,7.0,18.0,12.0,21.0,20.0,23.0,18.0,23.0,20.0,15.0,20.0,25.0,18.0,11.0,15.0,10.0,9.0,11.0,12.0,13.0,14.0,15.0,9.0,13.0,12.0,16.0,12.0,16.0,8.0,7.0,7.0,14.0,13.0,10.0,8.0,13.0,4.0,5.0,1.0,2.0,1.0,2.0,3.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,226,779,255,0,86,67,73,65,86,100,82,82,52,43,94,96,79,59,65,50,58,13,8,2,0,0,1243,12,3,2,0,1243,12,3,2,0,397,11,79,215,63,6,263,226,0,660,591,9,0,0,36,8,0,0,0,1,0,0,7,1208,0,10,54,56,0,1,0,108,1031,0,213,384,51,6,0,606,0,1.8166969147005445,0.0,2.3300970873786406,0.0,7.891269841269842,3,18,27,0,1,0,43,368,0,19,41,13,31,72,59,57,38,54,23,20,4,12,6,6,0,449,11,423,37,423,37,54,406,397,63,133,327,239,221,47,413,405,55,408,52,185,223,119,341,203,257,224,236,29,431,62,398,3,457,103,254,89,14,0,338,122,0,0,6,2,0,0,0,1,0,0,3,448,0,1.3782608695652174,1.3608695652173912,1.0,1.0,1.0,57.35652173913044 +70314,Los Santos,Los Santos,Villa Lourdes,529,0,1,3,0,0,0,0,0,0,0,0,2,0,0,0,326,125,3,414,37,1,0,0,2,0,446,0,0,1,0,0,7,0,0,20,272,150,8,4,0,0,431,9,3,0,0,11,454,0,34,9,1,22,13,0,15,28,357,50,4,0,429,6,2,6,0,11,0,412,35,6,0,0,0,1,66,380,0,8,0,0,5,397,49,1,0,0,0,0,0,0,2,0,0,535,6.871396895787139,20.13082039911308,6.971175166297117,22.9179600886918,1.0088105726872247,3.26431718061674,1.751101321585903,460,242,350,39,42,13,20,8,4,6,4,7,7,1,34,11,3,3,8,6,7,961,165,0,237,889,0,588,538,0,998,128,0,251,875,0,204,47,795,80,0,80,12,18,0,42,32,37,41,37,275,0,0,1,36,44,53,27,39,165,1,5,20,28,21,23,16,51,12,2,8,0,0,0,0,0,537,25,470,0,2,0,16,30,143,230,61,6,230,38,58,16,65,0,154,0,0,615,588,100,210,18,194,34,0,5,0,5,95,9,343,31,0,0,678,214,2,14,24,86,9,5,0,0,0,12,36,19,24,79,107,79,58,148,569,146,59,77,62,99,68,30,31,18,6,2,1,2,2,31,23.0,13.0,19.0,22.0,19.0,18.0,21.0,16.0,12.0,8.0,15.0,10.0,14.0,12.0,13.0,10.0,21.0,10.0,16.0,18.0,20.0,21.0,21.0,18.0,17.0,19.0,18.0,21.0,20.0,14.0,13.0,19.0,15.0,16.0,15.0,25.0,15.0,14.0,14.0,17.0,15.0,18.0,11.0,20.0,15.0,13.0,14.0,17.0,8.0,11.0,22.0,14.0,18.0,15.0,19.0,14.0,16.0,14.0,17.0,8.0,13.0,16.0,12.0,17.0,12.0,11.0,9.0,11.0,8.0,16.0,9.0,11.0,12.0,11.0,6.0,8.0,7.0,7.0,9.0,9.0,1.0,6.0,8.0,1.0,4.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,235,796,172,0,96,75,64,75,97,92,78,85,79,63,88,69,70,55,49,40,20,4,2,2,0,0,1188,6,6,3,0,1188,6,6,3,0,388,12,23,145,37,7,356,235,0,569,627,7,0,2,103,4,0,0,0,0,0,0,5,1089,0,7,11,148,2,12,0,285,738,0,203,305,28,5,2,660,0,2.028225806451613,0.0,2.673024523160763,0.0,7.497090606816292,2,5,69,1,4,0,120,259,0,53,41,23,47,60,71,45,26,27,21,14,4,10,1,2,13,444,16,405,55,392,68,67,393,374,86,88,372,259,201,18,442,416,44,365,95,227,138,105,355,202,258,191,269,165,295,182,278,0,460,113,266,73,8,0,336,124,0,1,20,3,0,0,0,0,0,0,3,433,0,1.3369565217391304,1.2782608695652171,0.0,1.0769230769230769,1.0769230769230769,51.99130434782609 +70315,Los Santos,Los Santos,El Ejido,955,5,4,0,0,0,0,0,0,0,1,1,1,0,0,175,556,22,3,741,12,0,0,0,3,0,746,0,0,5,0,1,4,0,0,390,340,23,0,1,0,2,735,10,4,0,0,7,756,0,76,21,40,59,12,0,227,76,434,18,1,0,718,4,19,13,0,2,0,647,23,86,0,0,0,0,495,248,0,13,0,0,576,154,8,3,0,0,0,0,0,14,1,0,0,967,6.944444444444445,23.589430894308943,6.985094850948509,23.752032520325205,1.0066137566137563,3.669312169312169,2.522486772486773,762,428,649,79,68,28,22,16,8,23,12,4,81,6,33,15,7,11,23,6,11,1867,155,51,928,1094,51,1761,261,51,1891,131,51,628,1445,0,466,162,1346,48,51,49,33,31,8,47,41,71,48,33,265,0,0,5,52,83,112,49,82,334,5,32,40,57,69,135,192,34,35,10,65,0,1,0,4,51,1065,37,731,51,0,14,9,79,346,256,35,15,721,70,75,39,93,2,69,14,0,1047,1139,375,334,40,286,43,0,5,0,5,73,12,496,55,28,28,815,467,5,59,48,342,29,64,4,51,0,63,209,108,61,218,72,153,67,151,823,122,85,90,138,143,241,117,166,97,56,16,14,9,14,55,33.0,29.0,24.0,27.0,25.0,32.0,38.0,33.0,33.0,28.0,28.0,25.0,26.0,30.0,39.0,37.0,34.0,21.0,33.0,26.0,42.0,19.0,32.0,39.0,32.0,43.0,35.0,39.0,29.0,35.0,29.0,34.0,34.0,30.0,31.0,36.0,31.0,43.0,31.0,41.0,36.0,36.0,35.0,25.0,27.0,33.0,34.0,29.0,27.0,26.0,27.0,28.0,38.0,27.0,17.0,28.0,28.0,20.0,21.0,26.0,21.0,31.0,28.0,21.0,12.0,25.0,16.0,9.0,14.0,21.0,10.0,20.0,17.0,11.0,6.0,9.0,6.0,4.0,4.0,9.0,5.0,3.0,3.0,8.0,2.0,3.0,3.0,1.0,1.0,0.0,0.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,450,1517,219,0,138,164,148,151,164,181,158,182,159,149,137,123,113,85,64,32,21,8,8,1,0,0,2091,22,23,0,50,2091,27,18,0,50,589,11,60,372,42,19,592,450,51,672,1442,21,51,2,22,3,0,0,0,0,0,0,8,2100,51,47,24,77,3,9,1,243,1731,51,645,673,87,13,3,714,51,1.5683003128258604,0.0291970802919708,2.231003039513678,0.0425531914893617,9.576852698993596,21,12,43,3,3,1,86,593,0,6,23,18,35,51,53,103,79,125,80,70,33,42,17,25,1,751,11,717,45,707,55,112,650,706,56,402,360,427,335,162,600,731,31,713,49,462,251,377,385,639,123,509,253,81,681,129,633,9,753,145,471,123,23,2,508,254,0,1,8,0,0,0,0,0,0,0,0,753,0,1.3704188481675392,1.4908376963350785,1.0,1.0,1.0,48.4002624671916 +70401,Los Santos,Macaracas,Macaracas,1315,5,8,5,0,0,0,0,0,0,0,2,2,0,0,17,872,118,7,991,16,1,0,0,5,1,993,0,0,8,0,0,12,0,1,952,16,34,3,8,0,1,984,11,0,0,0,19,1014,0,113,51,32,99,24,0,68,117,790,35,4,0,952,9,1,13,0,39,0,994,12,8,0,0,0,0,475,524,1,14,0,0,888,77,14,4,0,3,0,2,0,13,13,0,1015,322,6.700715015321757,22.825331971399383,6.9570990806945865,23.68641470888662,1.0029585798816567,3.849112426035503,2.586785009861933,1021,539,854,66,162,36,40,17,14,32,9,12,28,2,61,25,5,10,25,7,9,2385,344,0,1034,1695,0,2159,570,0,2562,167,0,743,1986,0,618,125,1909,77,0,87,29,24,3,66,102,94,60,67,489,0,0,8,80,102,178,70,113,479,0,2,51,68,125,99,183,33,46,7,58,0,3,2,1,0,1244,114,1176,0,2,48,17,213,434,385,84,60,772,89,121,36,137,2,164,0,1,1375,1457,442,380,41,361,74,1,21,2,4,193,18,630,15,0,0,1367,678,8,12,96,286,33,51,3,0,2,70,169,105,82,293,135,158,83,261,1082,233,108,164,235,275,311,119,149,80,29,8,19,0,5,15,27.0,26.0,24.0,26.0,27.0,30.0,20.0,46.0,44.0,28.0,35.0,32.0,24.0,46.0,35.0,39.0,42.0,41.0,32.0,47.0,32.0,42.0,34.0,46.0,44.0,40.0,42.0,47.0,36.0,31.0,39.0,35.0,44.0,31.0,23.0,25.0,32.0,29.0,41.0,36.0,35.0,34.0,25.0,43.0,38.0,30.0,36.0,36.0,39.0,30.0,47.0,39.0,44.0,41.0,41.0,31.0,37.0,45.0,45.0,33.0,36.0,32.0,31.0,33.0,33.0,34.0,32.0,32.0,28.0,33.0,22.0,28.0,31.0,29.0,19.0,27.0,22.0,16.0,14.0,12.0,20.0,18.0,9.0,13.0,15.0,10.0,4.0,4.0,11.0,4.0,2.0,6.0,4.0,7.0,5.0,2.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,470,1844,518,0,130,168,172,201,198,196,172,163,175,171,212,191,165,159,129,91,75,33,24,6,1,0,2803,16,8,5,0,2803,18,6,5,0,692,18,187,541,108,11,805,470,0,1265,1548,19,0,2,16,1,0,0,0,0,0,0,12,2801,0,57,43,40,1,1,1,14,2675,0,619,763,221,10,6,1213,0,1.9596036585365852,0.0,2.670639219934994,0.0,9.1454802259887,21,19,19,1,0,1,7,953,0,22,46,22,58,100,141,150,74,168,91,56,30,28,16,11,4,995,26,942,79,938,83,186,835,940,81,266,755,637,384,169,852,949,72,901,120,596,305,332,689,799,222,447,574,187,834,257,764,10,1011,214,559,230,18,0,653,368,0,0,7,1,0,0,0,0,0,0,5,1008,0,1.346718903036239,1.4270323212536729,1.0,1.0192307692307692,1.0192307692307692,56.14691478942213 +70402,Los Santos,Macaracas,Bahía Honda,348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,163,17,236,6,2,1,0,14,0,237,0,0,2,5,0,15,0,0,20,10,212,11,6,0,0,191,49,0,2,0,17,259,0,37,10,0,25,17,0,1,1,233,24,0,0,194,28,18,2,0,17,0,248,8,3,0,0,0,0,15,214,0,30,0,0,0,233,17,0,0,2,0,1,0,0,6,0,0,348,4.556,11.432,4.788,12.928,1.0077220077220077,3.0617760617760617,1.833976833976834,261,147,184,27,31,6,9,2,1,6,3,1,8,0,7,6,6,11,17,18,7,474,181,0,30,625,0,363,292,0,556,99,0,156,499,0,152,4,467,32,0,40,11,10,11,24,36,30,26,29,202,0,0,0,21,27,38,11,30,76,0,0,3,6,8,9,2,2,2,0,1,0,0,0,0,0,324,14,267,0,0,6,1,2,69,138,32,26,43,21,17,3,14,0,238,0,0,398,288,26,151,3,113,2,0,41,0,16,94,26,159,26,0,0,496,89,0,2,5,10,2,1,0,0,0,5,4,4,7,17,98,36,10,157,371,100,56,42,34,14,28,7,6,1,1,0,0,0,0,26,12.0,8.0,8.0,3.0,10.0,10.0,9.0,10.0,7.0,4.0,13.0,6.0,3.0,9.0,6.0,10.0,13.0,11.0,8.0,18.0,19.0,10.0,13.0,13.0,9.0,11.0,15.0,8.0,8.0,11.0,11.0,6.0,8.0,9.0,5.0,11.0,10.0,9.0,7.0,7.0,10.0,7.0,11.0,11.0,5.0,4.0,10.0,6.0,5.0,6.0,9.0,2.0,9.0,9.0,9.0,10.0,8.0,5.0,5.0,8.0,11.0,9.0,8.0,10.0,7.0,9.0,4.0,5.0,6.0,9.0,6.0,4.0,8.0,11.0,7.0,6.0,3.0,3.0,5.0,2.0,4.0,5.0,1.0,1.0,3.0,3.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,118,454,114,0,41,40,37,60,64,53,39,44,44,31,38,36,45,33,36,19,14,9,1,2,0,0,685,1,0,0,0,685,1,0,0,0,265,7,30,62,18,0,186,118,0,434,252,0,0,0,8,0,0,0,0,0,0,0,2,676,0,4,24,77,2,19,1,154,405,0,32,121,3,2,0,528,0,2.565217391304348,0.0,3.4444444444444446,0.0,6.150145772594752,2,15,27,1,10,0,64,142,0,32,35,29,43,42,25,15,14,13,3,1,1,0,0,0,8,230,31,165,96,182,79,18,243,136,125,4,257,148,113,12,249,205,56,161,100,126,35,19,242,96,165,55,206,183,78,178,83,1,260,70,135,48,8,0,208,53,0,0,6,0,0,0,0,0,0,0,2,253,0,1.524904214559387,1.103448275862069,0.0,1.0,1.0,52.616858237547895 +70403,Los Santos,Macaracas,Bajos de Güera,292,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,76,95,4,171,0,1,0,0,2,1,126,0,2,32,1,2,12,0,0,0,8,156,9,2,0,0,146,29,0,0,0,0,175,0,73,14,4,23,3,0,0,5,158,12,0,0,137,35,0,2,1,0,0,174,0,0,0,0,1,0,9,148,0,18,0,0,0,51,120,0,0,3,0,0,0,0,1,0,0,293,6.976608187134503,24.0,7.0,24.0,1.0057142857142858,3.4171428571428573,2.222857142857143,177,106,138,14,16,6,2,2,2,4,1,2,1,0,7,1,4,0,2,0,5,318,133,0,51,400,0,110,341,0,384,67,0,88,363,0,84,4,312,51,0,54,2,4,1,10,20,27,17,11,136,0,0,0,11,21,23,15,9,50,1,1,5,7,6,8,6,4,2,0,0,0,0,0,0,0,180,3,238,0,2,1,0,8,61,139,20,10,35,29,21,3,2,0,93,0,0,251,220,22,81,3,33,25,0,19,0,13,48,10,120,0,0,0,331,71,0,1,6,12,0,0,0,0,0,4,4,7,3,17,55,17,6,70,250,74,20,32,33,24,18,9,10,0,0,0,0,0,1,0,4.0,5.0,6.0,5.0,3.0,6.0,8.0,4.0,6.0,3.0,6.0,6.0,3.0,6.0,7.0,11.0,5.0,4.0,5.0,8.0,9.0,7.0,7.0,14.0,6.0,9.0,6.0,5.0,3.0,8.0,4.0,2.0,1.0,6.0,2.0,7.0,6.0,6.0,6.0,4.0,8.0,4.0,5.0,1.0,5.0,4.0,9.0,6.0,8.0,8.0,9.0,7.0,4.0,6.0,6.0,8.0,6.0,8.0,8.0,8.0,5.0,6.0,8.0,4.0,6.0,4.0,4.0,4.0,6.0,5.0,6.0,3.0,3.0,5.0,5.0,4.0,4.0,3.0,1.0,3.0,3.0,3.0,2.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,78,308,85,0,23,27,28,33,43,31,15,29,23,35,32,38,29,23,22,15,13,2,6,3,1,0,470,1,0,0,0,470,1,0,0,0,149,2,8,91,17,1,125,78,0,226,244,1,0,0,1,0,0,0,0,0,0,0,4,466,0,0,31,34,1,0,1,84,320,0,46,103,8,1,0,313,0,2.5416666666666665,0.0,3.307142857142857,0.0,6.350318471337579,0,9,16,0,0,1,40,111,0,20,25,13,24,33,14,17,10,13,2,2,2,0,0,1,0,165,12,120,57,138,39,32,145,98,79,6,171,91,86,1,176,137,40,103,74,86,17,15,162,25,152,51,126,100,77,133,44,2,175,40,105,31,1,0,145,32,0,0,0,0,0,0,0,0,0,0,2,175,0,1.4180790960451977,1.2429378531073447,2.0,1.25,1.25,55.01129943502825 +70404,Los Santos,Macaracas,Corozal,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,146,4,223,8,0,0,0,4,0,223,0,0,2,2,0,8,0,0,174,1,54,3,3,0,0,216,14,0,0,0,5,235,0,22,5,2,22,17,0,0,10,198,26,1,0,205,15,1,3,0,11,0,207,17,8,0,0,1,2,32,187,0,16,0,0,0,223,5,0,0,4,0,1,0,0,2,0,0,303,6.758771929824562,10.68859649122807,6.942982456140351,17.37719298245614,1.0127659574468084,3.3063829787234043,2.046808510638298,238,124,189,18,36,3,9,2,3,6,0,2,6,1,19,7,6,4,10,9,6,499,111,0,86,524,0,204,406,0,552,58,0,166,444,0,148,18,412,32,0,34,2,9,0,14,33,38,29,32,168,0,0,0,7,27,32,28,19,82,0,6,4,4,5,21,12,1,2,0,1,0,0,0,0,0,290,7,265,0,0,3,3,10,101,125,19,10,79,20,14,8,56,0,119,0,1,340,297,53,110,8,113,3,0,9,1,16,68,4,144,5,0,0,424,92,0,4,7,32,2,1,0,0,1,3,10,14,9,63,42,31,20,104,315,105,32,31,54,22,36,17,9,8,3,0,0,0,0,5,4.0,6.0,10.0,7.0,5.0,3.0,8.0,9.0,11.0,12.0,9.0,6.0,12.0,4.0,10.0,13.0,7.0,8.0,9.0,9.0,9.0,12.0,15.0,8.0,10.0,10.0,10.0,8.0,5.0,8.0,5.0,6.0,6.0,10.0,11.0,7.0,10.0,8.0,11.0,9.0,12.0,8.0,13.0,9.0,8.0,10.0,5.0,12.0,7.0,7.0,5.0,8.0,8.0,7.0,7.0,10.0,6.0,4.0,11.0,7.0,5.0,7.0,5.0,5.0,8.0,9.0,4.0,7.0,3.0,5.0,8.0,6.0,8.0,5.0,6.0,4.0,5.0,4.0,6.0,4.0,5.0,0.0,3.0,0.0,3.0,1.0,0.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,116,418,103,0,32,43,41,46,54,41,38,45,50,41,35,38,30,28,33,23,11,6,2,0,0,0,637,0,0,0,0,637,0,0,0,0,218,7,46,57,21,0,172,116,0,381,256,0,0,0,8,0,0,0,0,0,0,0,0,629,0,0,24,61,2,38,1,156,355,0,64,136,16,0,0,421,0,2.116279069767442,0.0,2.9502762430939224,0.0,6.8869701726844585,0,14,29,1,16,1,57,120,0,20,29,19,22,42,27,26,20,14,6,5,2,1,0,1,4,231,7,199,39,194,44,27,211,150,88,13,225,126,112,1,237,214,24,178,60,58,120,34,204,65,173,56,182,158,80,150,88,2,236,61,127,43,7,0,175,63,0,0,2,0,0,0,0,0,0,0,0,236,0,1.4285714285714286,1.2478991596638656,0.0,1.0,1.0,53.17226890756302 +70405,Los Santos,Macaracas,Chupa,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,10,0,214,0,0,0,0,0,0,213,0,0,0,0,1,0,0,0,165,2,30,5,12,0,0,202,8,0,0,0,4,214,0,42,4,5,23,9,0,0,7,198,9,0,0,190,0,4,8,0,12,0,194,10,10,0,0,0,0,68,141,0,5,0,0,132,73,4,4,0,0,0,0,0,1,0,0,0,297,6.990430622009569,23.96650717703349,7.0,23.95215311004785,1.0,3.6542056074766354,2.55607476635514,214,126,167,6,36,2,3,2,3,4,4,0,3,1,10,7,4,5,2,1,9,397,150,0,67,480,0,330,217,0,503,44,0,144,403,0,121,23,373,30,0,30,7,9,0,12,20,21,20,11,122,0,0,0,15,21,29,10,21,87,0,0,6,10,26,8,40,4,3,0,14,0,0,1,0,0,233,9,265,0,1,6,1,32,92,104,27,10,88,26,26,9,17,2,68,1,1,275,296,39,105,10,35,28,0,13,8,3,61,5,144,6,0,0,307,95,0,1,29,57,4,14,0,0,8,7,12,17,9,31,50,31,18,59,259,62,17,33,35,40,54,27,14,15,5,1,2,0,1,6,7.0,5.0,6.0,6.0,4.0,8.0,10.0,7.0,6.0,5.0,10.0,8.0,6.0,15.0,3.0,9.0,3.0,11.0,8.0,8.0,4.0,5.0,10.0,3.0,4.0,6.0,3.0,4.0,6.0,9.0,10.0,4.0,11.0,4.0,12.0,4.0,15.0,7.0,2.0,3.0,10.0,5.0,12.0,9.0,5.0,7.0,6.0,4.0,5.0,5.0,4.0,4.0,6.0,8.0,8.0,4.0,10.0,10.0,6.0,8.0,11.0,8.0,7.0,5.0,11.0,9.0,7.0,5.0,7.0,2.0,9.0,7.0,7.0,3.0,5.0,7.0,4.0,7.0,5.0,3.0,3.0,5.0,3.0,2.0,2.0,4.0,1.0,4.0,2.0,2.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,106,343,122,0,28,36,42,39,26,28,41,31,41,27,30,38,42,30,31,26,15,13,6,0,1,0,570,1,0,0,0,570,1,0,0,0,134,4,38,140,46,1,102,106,0,405,165,1,0,0,31,0,0,0,0,0,0,0,0,540,0,4,1,75,1,0,2,73,415,0,90,184,28,6,1,262,0,2.1056603773584905,0.0,2.701030927835052,0.0,8.295971978984237,1,0,30,0,0,1,34,148,0,14,25,5,19,20,34,24,15,25,6,14,2,7,1,2,1,211,3,206,8,204,10,51,163,196,18,56,158,143,71,1,213,171,43,184,30,77,107,55,159,108,106,93,121,90,124,127,87,1,213,50,123,37,4,0,152,62,0,0,7,0,0,0,0,0,0,0,0,207,0,1.2850467289719627,1.383177570093458,1.0,1.0,1.0,58.845794392523366 +70406,Los Santos,Macaracas,El Cedro,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,89,6,183,0,2,0,0,3,1,178,0,0,1,1,0,9,0,0,36,11,120,12,10,0,0,174,11,1,0,0,3,189,0,38,10,1,14,23,0,1,10,165,13,0,0,179,7,0,3,0,0,0,178,0,11,0,0,0,0,18,163,0,8,0,0,20,137,30,0,0,1,0,0,0,0,0,1,0,275,6.823529411764706,20.449197860962567,7.0,23.737967914438503,1.0105820105820107,3.259259259259259,1.7566137566137563,191,87,136,21,30,6,8,1,1,7,2,3,8,1,13,8,0,1,6,8,5,395,87,0,109,373,0,184,298,0,432,50,0,115,367,0,93,22,338,29,0,29,1,8,1,12,22,21,14,29,115,0,0,0,16,17,29,8,14,62,0,1,8,9,16,11,24,8,0,0,7,0,0,0,0,0,226,3,223,0,0,1,1,8,70,106,13,26,75,12,18,5,15,0,103,0,0,260,242,55,103,5,50,8,0,7,0,3,56,9,114,20,0,0,306,81,1,3,15,41,0,5,0,0,0,12,16,15,6,20,17,21,7,115,236,80,22,25,20,18,32,16,14,2,6,4,0,3,4,20,7.0,4.0,4.0,5.0,2.0,5.0,8.0,3.0,6.0,6.0,11.0,3.0,4.0,8.0,9.0,9.0,2.0,9.0,9.0,5.0,11.0,6.0,4.0,7.0,9.0,9.0,5.0,3.0,5.0,6.0,9.0,10.0,4.0,5.0,3.0,7.0,10.0,6.0,7.0,1.0,4.0,7.0,10.0,9.0,6.0,7.0,10.0,4.0,7.0,8.0,6.0,6.0,6.0,3.0,8.0,11.0,3.0,9.0,3.0,5.0,7.0,8.0,9.0,6.0,7.0,7.0,5.0,7.0,4.0,3.0,5.0,7.0,10.0,4.0,3.0,3.0,0.0,0.0,6.0,2.0,3.0,2.0,0.0,3.0,3.0,1.0,1.0,1.0,0.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,85,330,87,0,22,28,35,34,37,28,31,31,36,36,29,31,37,26,29,11,11,5,4,1,0,0,497,3,0,2,0,497,3,0,2,0,146,4,10,49,19,4,185,85,0,320,179,3,0,0,0,0,0,0,0,0,0,0,2,500,0,2,7,64,3,0,0,44,382,0,72,128,9,2,0,291,0,2.2744186046511627,0.0,2.891025641025641,0.0,7.667330677290836,1,3,39,1,0,0,13,134,0,30,28,9,19,25,14,21,12,12,6,5,1,2,0,4,3,184,7,159,32,156,35,28,163,133,58,13,178,110,81,2,189,177,14,144,47,35,109,40,151,18,173,63,128,111,80,105,86,3,188,60,90,37,4,0,132,59,0,0,0,0,0,0,0,0,0,0,1,190,0,1.361256544502618,1.2670157068062826,1.0,1.0,1.0,55.37696335078534 +70407,Los Santos,Macaracas,Espino Amarillo,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,46,2,66,7,1,0,0,1,0,66,0,0,0,0,1,8,0,0,0,4,71,0,0,0,0,68,7,0,0,0,0,75,0,10,1,0,12,8,0,1,0,67,7,0,0,63,6,6,0,0,0,0,71,3,1,0,0,0,0,8,60,0,7,0,0,0,52,9,0,0,14,0,0,0,0,0,0,0,106,7.0,23.9344262295082,7.0,24.0,1.0133333333333334,3.453333333333333,1.8666666666666667,76,40,52,14,10,1,5,3,1,2,2,0,5,0,1,1,1,2,0,1,0,157,47,0,28,176,0,46,158,0,175,29,0,62,142,0,58,4,127,15,0,17,5,1,1,6,12,6,7,10,60,0,0,0,8,12,14,9,7,16,0,0,1,1,3,2,2,2,0,0,2,0,0,0,0,0,72,3,112,0,0,0,1,0,47,50,5,10,11,6,1,0,4,0,52,0,1,107,104,8,33,0,31,1,0,1,1,10,28,4,29,20,0,0,158,22,0,0,0,5,0,2,0,0,1,3,2,0,1,3,20,7,5,33,114,36,9,9,6,4,6,3,0,3,1,0,0,0,0,20,1.0,1.0,2.0,3.0,4.0,5.0,1.0,4.0,2.0,1.0,6.0,4.0,4.0,5.0,3.0,2.0,8.0,5.0,3.0,3.0,2.0,3.0,1.0,3.0,0.0,3.0,0.0,2.0,3.0,3.0,1.0,3.0,2.0,1.0,2.0,3.0,3.0,5.0,2.0,5.0,0.0,5.0,3.0,3.0,2.0,2.0,5.0,4.0,1.0,1.0,3.0,1.0,3.0,2.0,3.0,2.0,2.0,0.0,1.0,5.0,7.0,2.0,2.0,1.0,3.0,4.0,2.0,1.0,1.0,0.0,4.0,1.0,4.0,1.0,2.0,1.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,46,131,34,0,11,13,22,21,9,11,9,18,13,13,12,10,15,8,12,5,4,3,2,0,0,0,210,0,1,0,0,210,0,1,0,0,75,2,11,18,5,0,54,46,0,106,104,1,0,0,0,0,0,0,0,0,0,0,0,211,0,0,13,23,0,0,3,5,167,0,16,42,1,0,0,152,0,2.217391304347826,0.0,3.2333333333333334,0.0,6.3364928909952605,0,7,8,0,0,1,2,58,0,8,11,10,15,10,5,4,6,1,1,1,0,0,1,0,3,71,5,61,15,61,15,10,66,39,37,0,76,53,23,2,74,63,13,51,25,8,43,9,67,15,61,20,56,56,20,55,21,0,76,20,37,16,3,0,60,16,0,0,0,0,0,0,0,0,0,0,0,76,0,1.4078947368421053,1.368421052631579,0.0,1.0,1.0,55.89473684210526 +70408,Los Santos,Macaracas,La Mesa,355,9,0,0,0,0,0,0,0,0,0,0,1,0,0,0,109,140,1,245,4,1,0,0,0,0,207,0,2,21,0,0,16,0,4,50,7,147,14,28,0,4,221,25,0,0,0,4,250,0,72,9,0,31,2,0,0,2,233,15,0,0,191,31,1,11,2,14,0,244,2,2,0,0,2,0,13,221,0,16,0,0,171,31,43,0,0,1,0,0,0,0,3,1,0,365,6.648979591836735,21.11020408163265,6.918367346938775,23.63673469387755,1.012,3.32,2.312,254,145,189,30,28,4,6,5,3,0,0,1,8,0,26,5,6,6,2,6,15,468,165,0,55,578,0,174,459,0,538,95,0,145,488,0,138,7,427,61,0,62,9,9,0,22,30,33,25,17,159,0,0,6,19,24,57,19,15,64,0,2,7,9,9,8,18,1,6,0,3,0,0,0,0,0,202,14,352,0,1,3,3,19,85,194,36,18,69,14,20,13,13,0,85,0,2,363,310,41,86,13,49,2,0,22,3,8,79,5,277,2,0,0,435,85,6,3,7,24,5,3,0,0,3,9,9,5,2,16,41,33,15,83,412,115,18,35,25,23,19,9,6,5,3,0,1,0,0,2,5.0,7.0,14.0,14.0,16.0,13.0,8.0,11.0,10.0,7.0,10.0,8.0,7.0,10.0,7.0,12.0,5.0,7.0,7.0,7.0,7.0,12.0,11.0,12.0,8.0,4.0,10.0,4.0,10.0,4.0,11.0,12.0,7.0,5.0,8.0,2.0,4.0,6.0,6.0,7.0,10.0,6.0,6.0,6.0,11.0,7.0,10.0,16.0,7.0,7.0,10.0,11.0,8.0,10.0,9.0,8.0,5.0,7.0,12.0,5.0,1.0,10.0,6.0,11.0,8.0,9.0,4.0,10.0,7.0,7.0,7.0,5.0,9.0,8.0,4.0,6.0,2.0,9.0,7.0,3.0,3.0,2.0,4.0,2.0,4.0,4.0,1.0,1.0,0.0,1.0,3.0,0.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,147,395,131,0,56,49,42,38,50,32,43,25,39,47,48,37,36,37,33,27,15,7,9,2,1,0,671,1,0,1,0,671,1,0,1,0,218,1,29,89,30,1,158,147,0,380,292,1,0,0,1,0,0,0,0,0,0,0,1,671,0,12,0,8,1,0,0,2,650,0,51,137,17,2,0,466,0,2.5426356589147288,0.0,3.173469387755102,0.0,6.450222882615156,6,0,6,1,0,0,2,239,0,46,60,12,37,40,15,19,9,4,1,3,3,1,1,1,1,241,13,177,77,183,71,33,221,170,84,9,245,167,87,4,250,200,54,176,78,52,124,19,235,27,227,58,196,130,124,169,85,0,254,74,144,29,7,0,193,61,0,0,1,0,0,0,0,0,0,0,0,253,0,1.4291338582677164,1.220472440944882,1.0,1.0666666666666669,1.0666666666666669,56.511811023622045 +70409,Los Santos,Macaracas,Las Palmas,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,91,8,154,5,1,0,0,7,0,144,0,0,20,0,0,2,0,1,91,2,55,10,9,0,0,140,22,1,0,0,4,167,0,37,6,0,26,8,0,2,9,150,6,0,0,136,11,3,9,0,8,0,158,4,4,0,0,1,0,21,132,0,14,0,0,0,124,32,2,0,7,0,2,0,0,0,0,0,244,5.839743589743589,16.16025641025641,6.871794871794871,21.096153846153847,1.0,3.065868263473054,2.005988023952096,167,92,84,19,16,2,3,0,2,3,1,1,5,0,14,6,5,0,9,8,7,282,102,0,49,335,0,165,219,0,329,55,0,74,310,0,64,10,271,39,0,40,1,3,0,11,18,22,25,23,89,0,0,0,8,17,24,10,10,58,1,1,1,5,3,5,2,3,4,0,0,0,0,0,0,0,165,25,173,0,2,10,9,7,46,85,17,18,61,1,5,8,12,0,101,0,0,216,179,42,82,8,42,0,0,14,0,3,55,7,104,2,0,0,280,68,0,1,3,8,3,0,0,0,0,4,7,11,4,25,32,9,8,90,195,73,20,18,15,11,30,16,5,6,2,1,0,0,1,2,2.0,2.0,1.0,6.0,4.0,4.0,3.0,3.0,5.0,2.0,6.0,4.0,2.0,4.0,6.0,5.0,4.0,6.0,2.0,6.0,4.0,3.0,11.0,3.0,5.0,7.0,8.0,6.0,2.0,5.0,3.0,3.0,6.0,8.0,3.0,3.0,1.0,4.0,4.0,4.0,3.0,9.0,7.0,2.0,6.0,3.0,3.0,6.0,1.0,5.0,7.0,10.0,7.0,9.0,5.0,9.0,9.0,2.0,6.0,2.0,4.0,8.0,6.0,2.0,6.0,6.0,7.0,5.0,4.0,2.0,4.0,2.0,2.0,9.0,6.0,4.0,9.0,3.0,1.0,6.0,4.0,2.0,2.0,2.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,54,253,88,0,15,17,22,23,26,28,23,16,27,18,38,28,26,24,23,23,10,5,1,2,0,0,395,0,0,0,0,395,0,0,0,0,155,1,16,43,23,1,102,54,0,165,230,0,0,1,0,0,0,0,0,1,0,0,0,393,0,2,5,76,2,1,0,172,137,0,54,97,10,0,0,234,0,2.727272727272727,0.0,3.4047619047619047,0.0,6.518987341772152,1,1,33,0,1,0,68,63,0,31,25,13,17,16,13,12,14,7,9,2,3,2,0,1,2,158,9,127,40,136,31,17,150,106,61,10,157,112,55,3,164,116,51,110,57,60,50,19,148,50,117,42,125,100,67,108,59,1,166,54,81,28,4,0,133,34,0,0,0,0,0,0,0,0,0,0,0,167,0,1.2934131736526946,1.0718562874251496,0.0,1.0,1.0,56.550898203592816 +70410,Los Santos,Macaracas,Llano de Piedra,891,1,0,5,0,0,0,0,0,0,0,0,4,0,0,0,608,46,4,647,7,0,0,0,3,1,616,0,0,6,19,1,14,0,2,458,7,144,18,31,0,0,598,49,1,0,0,10,658,0,137,19,9,54,20,0,10,25,579,44,0,0,586,51,9,8,0,4,0,619,11,24,0,0,3,1,155,468,1,33,0,1,409,186,47,2,5,2,0,1,0,4,1,1,0,901,6.973520249221184,23.90809968847352,7.0,24.0,1.009118541033435,3.5987841945288754,2.405775075987842,668,361,521,26,112,21,23,6,4,27,3,9,21,2,77,24,9,6,19,7,33,1292,418,0,236,1474,0,721,989,0,1511,199,0,407,1303,0,360,47,1144,159,0,160,16,24,3,30,44,87,57,42,429,2,0,1,42,64,110,41,59,220,0,1,19,42,44,38,48,63,11,1,10,0,0,0,2,0,644,122,816,0,2,16,83,70,245,372,97,32,304,51,69,33,52,0,247,1,3,927,877,174,283,38,163,29,1,69,3,23,223,24,458,41,0,0,1082,291,1,2,58,128,8,10,2,0,2,24,59,47,22,97,99,100,56,260,844,276,78,106,96,116,105,46,51,31,7,3,4,0,0,41,20.0,18.0,28.0,28.0,20.0,23.0,22.0,25.0,17.0,21.0,20.0,19.0,22.0,27.0,23.0,18.0,23.0,16.0,21.0,29.0,37.0,21.0,30.0,32.0,26.0,24.0,20.0,21.0,26.0,22.0,32.0,28.0,20.0,16.0,17.0,16.0,15.0,15.0,24.0,16.0,26.0,25.0,15.0,15.0,14.0,15.0,23.0,18.0,16.0,20.0,28.0,22.0,25.0,19.0,22.0,22.0,30.0,22.0,37.0,17.0,26.0,22.0,33.0,19.0,20.0,20.0,15.0,15.0,13.0,13.0,16.0,15.0,19.0,17.0,16.0,22.0,14.0,15.0,12.0,12.0,12.0,15.0,16.0,7.0,14.0,4.0,10.0,11.0,5.0,5.0,1.0,3.0,8.0,2.0,4.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,333,1116,355,0,114,108,111,107,146,113,113,86,95,92,116,128,120,76,83,75,64,35,18,4,0,0,1786,4,11,3,0,1787,7,7,3,0,497,18,111,334,96,11,404,333,0,887,909,8,0,0,50,34,0,1,0,1,0,0,14,1704,0,21,10,33,2,0,0,32,1706,0,242,463,60,9,2,1028,0,2.3201581027667983,0.0,2.899824253075572,0.0,7.454545454545454,9,2,15,0,0,0,10,632,0,54,93,30,62,80,87,71,39,57,34,22,4,8,4,2,17,647,21,567,101,566,102,124,544,517,151,97,571,393,275,20,648,572,96,502,166,274,228,109,559,252,416,219,449,272,396,338,330,4,664,172,349,130,17,0,450,218,0,0,11,5,0,1,0,0,0,0,3,648,0,1.3877245508982037,1.312874251497006,2.0,1.0555555555555556,1.0555555555555556,56.98053892215569 +70411,Los Santos,Macaracas,Mogollón,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,60,0,85,2,0,0,0,0,0,69,0,0,9,1,0,8,0,0,0,4,73,9,1,0,0,71,15,0,0,0,1,87,0,52,5,0,6,6,0,0,0,84,3,0,0,56,21,3,7,0,0,0,82,0,0,0,0,5,0,8,62,1,16,0,0,0,61,16,0,0,6,0,3,0,0,1,0,0,156,6.5064935064935066,21.96103896103896,6.974025974025974,24.0,1.0,2.931034482758621,1.6781609195402298,87,42,35,3,8,2,2,1,1,0,1,0,1,0,4,2,1,1,4,2,3,144,35,0,15,164,0,21,158,0,153,26,0,30,149,0,29,1,128,21,0,21,2,0,0,8,10,20,9,7,56,0,0,0,6,6,8,5,2,12,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,92,2,75,0,0,2,0,3,17,38,7,10,11,12,2,4,1,0,64,0,0,108,75,8,36,4,39,0,0,7,0,3,28,4,26,9,0,0,150,15,0,1,0,3,0,0,0,0,0,2,2,3,0,12,33,10,0,32,91,32,8,13,9,10,5,2,0,4,0,0,0,0,0,9,0.0,1.0,2.0,1.0,1.0,1.0,0.0,3.0,3.0,2.0,0.0,1.0,2.0,3.0,3.0,2.0,3.0,2.0,0.0,2.0,3.0,2.0,1.0,2.0,1.0,3.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,2.0,3.0,5.0,0.0,0.0,1.0,1.0,5.0,2.0,1.0,2.0,3.0,3.0,3.0,3.0,2.0,2.0,4.0,1.0,5.0,0.0,8.0,4.0,6.0,2.0,3.0,3.0,4.0,2.0,3.0,5.0,2.0,2.0,6.0,6.0,0.0,2.0,2.0,4.0,1.0,3.0,3.0,1.0,0.0,3.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,23,115,45,0,5,9,9,9,9,6,5,9,11,14,12,23,17,16,12,8,5,3,1,0,0,0,182,0,1,0,0,182,0,1,0,0,62,1,33,26,8,0,30,23,0,89,94,0,0,1,1,4,0,0,0,0,0,0,2,175,0,0,9,13,0,0,0,26,135,0,12,30,2,1,0,138,0,2.7058823529411766,0.0,3.2222222222222223,0.0,5.355191256830601,0,3,7,0,0,0,15,62,0,23,16,7,9,12,9,4,1,2,0,3,0,1,0,0,0,80,7,62,25,66,21,10,77,22,65,0,87,65,22,3,84,78,9,50,37,9,41,5,82,4,83,16,71,72,15,65,22,0,87,33,41,12,1,0,74,13,0,0,1,1,0,0,0,0,0,0,1,84,0,1.2413793103448276,0.8620689655172413,0.0,1.0,1.0,58.4367816091954 +70501,Los Santos,Pedasí,Pedasí,1737,7,34,0,0,0,0,0,0,0,0,0,6,0,0,696,377,11,2,1070,14,0,0,0,2,0,1072,0,1,6,2,0,5,0,0,1062,6,13,5,0,0,0,1060,3,3,0,0,20,1086,0,408,96,128,50,10,0,24,204,762,94,2,0,1020,4,22,12,0,28,0,818,137,121,9,0,0,1,527,539,13,3,2,2,806,113,163,0,1,0,0,0,0,2,0,1,1288,496,6.802218114602588,19.851201478743068,6.942698706099815,22.641404805914974,1.0128913443830572,3.746777163904236,2.3812154696132595,1106,625,775,76,137,37,36,43,12,40,16,13,60,4,79,17,9,21,18,7,25,2509,320,0,950,1879,0,2181,648,0,2659,170,0,609,2220,0,510,99,2148,72,0,82,40,30,10,50,69,83,67,67,458,0,5,3,87,109,220,93,114,626,3,20,44,48,87,116,145,76,11,2,59,0,0,1,4,0,1214,64,1319,0,5,42,10,306,352,561,67,33,573,97,340,38,53,2,85,81,0,1528,1452,162,530,50,467,51,0,9,0,3,124,20,823,68,0,0,1350,763,3,27,69,315,11,55,4,0,0,74,92,85,47,209,134,256,81,300,1227,188,65,152,243,340,285,126,135,50,49,14,19,7,12,68,29.0,37.0,37.0,48.0,41.0,35.0,33.0,41.0,53.0,29.0,36.0,40.0,34.0,32.0,31.0,34.0,34.0,34.0,30.0,34.0,35.0,39.0,38.0,35.0,34.0,39.0,51.0,52.0,37.0,43.0,44.0,37.0,42.0,37.0,55.0,45.0,47.0,44.0,33.0,37.0,31.0,38.0,39.0,41.0,35.0,39.0,40.0,33.0,25.0,31.0,33.0,54.0,45.0,43.0,32.0,43.0,41.0,33.0,41.0,38.0,34.0,41.0,35.0,40.0,30.0,41.0,32.0,40.0,21.0,38.0,35.0,26.0,27.0,23.0,22.0,20.0,13.0,23.0,10.0,13.0,16.0,13.0,13.0,6.0,9.0,10.0,11.0,5.0,3.0,9.0,6.0,5.0,1.0,1.0,0.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,556,1925,499,0,192,191,173,166,181,222,215,206,184,168,207,196,180,172,133,79,57,38,13,6,1,0,2559,188,230,3,0,2562,345,70,3,0,868,30,100,574,114,53,685,556,0,1206,1434,340,0,0,54,3,0,0,0,4,0,0,13,2906,0,28,51,160,23,4,5,99,2610,0,434,498,223,13,89,1723,0,1.9030732860520092,0.0,2.557285873192436,0.0,9.095637583892618,8,26,79,12,1,3,48,929,0,64,44,17,60,106,141,133,103,177,91,57,17,25,16,22,27,1087,19,1046,60,1009,97,208,898,1001,105,460,646,529,577,148,958,1034,72,929,177,708,221,463,643,873,233,564,542,55,1051,87,1019,5,1101,287,572,199,48,0,733,373,0,0,6,0,0,0,0,2,0,0,4,1094,0,1.3815551537070525,1.3128390596745028,1.6666666666666667,1.0,1.0,53.59764918625678 +70502,Los Santos,Pedasí,Los Asientos,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,288,25,3,302,11,0,0,0,3,0,290,0,1,14,4,2,5,0,0,289,0,23,2,2,0,0,309,4,0,0,0,3,316,0,159,12,8,20,13,0,2,24,249,41,0,0,250,14,31,7,0,14,0,277,34,5,0,0,0,0,73,228,0,14,1,0,175,101,27,1,7,0,1,1,0,2,0,1,0,528,7.0,20.28052805280528,7.0,24.0,1.0031645569620251,3.34493670886076,2.1265822784810124,317,155,164,16,18,12,8,2,3,8,4,1,5,1,24,30,1,2,7,2,7,562,127,0,100,589,0,144,545,0,616,73,0,121,568,0,111,10,520,48,0,48,5,10,0,11,19,31,21,17,214,0,2,0,19,28,38,19,32,113,1,7,1,4,7,8,6,23,1,0,3,0,0,0,1,0,293,10,341,0,1,1,2,47,74,169,31,20,132,8,47,14,26,1,66,6,0,389,325,43,157,19,61,19,0,0,1,0,79,4,208,0,0,0,469,123,0,5,8,34,1,3,1,0,1,14,15,11,11,36,37,31,18,129,288,89,10,58,38,75,85,31,24,7,7,0,0,1,1,0,8.0,4.0,9.0,4.0,9.0,5.0,7.0,8.0,4.0,12.0,9.0,5.0,4.0,13.0,9.0,6.0,15.0,5.0,5.0,5.0,9.0,9.0,4.0,8.0,9.0,16.0,6.0,5.0,6.0,5.0,10.0,6.0,7.0,10.0,10.0,14.0,5.0,13.0,6.0,10.0,6.0,10.0,7.0,13.0,4.0,7.0,7.0,9.0,7.0,8.0,16.0,14.0,10.0,9.0,11.0,9.0,13.0,6.0,12.0,10.0,9.0,10.0,11.0,11.0,9.0,6.0,3.0,8.0,5.0,10.0,11.0,8.0,6.0,12.0,11.0,11.0,6.0,5.0,6.0,10.0,7.0,4.0,8.0,4.0,5.0,3.0,0.0,5.0,1.0,2.0,3.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,110,442,162,0,34,36,40,36,39,38,43,48,40,38,60,50,50,32,48,38,28,11,4,1,0,0,693,15,5,1,0,693,16,4,1,0,253,14,57,96,49,6,129,110,0,383,314,17,0,0,0,0,0,0,0,0,0,0,11,703,0,5,4,20,1,0,0,8,676,0,122,175,43,1,6,367,0,2.078767123287671,0.0,2.599099099099099,0.0,7.336134453781512,2,2,9,0,0,0,5,299,0,23,39,4,35,28,51,45,24,35,16,9,1,3,3,1,0,312,5,281,36,274,43,47,270,252,65,32,285,80,237,9,308,292,25,241,76,159,82,51,266,128,189,104,213,22,295,35,282,0,317,117,148,47,5,0,217,100,0,0,0,0,0,0,0,0,0,0,5,312,0,1.227129337539432,1.025236593059937,0.0,1.1111111111111112,1.1111111111111112,56.61198738170347 +70503,Los Santos,Pedasí,Mariabé,299,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,9,0,133,0,0,0,0,0,0,123,0,0,8,0,1,1,0,0,120,3,10,0,0,0,0,131,2,0,0,0,0,133,0,137,15,4,10,2,0,0,11,108,14,0,0,110,3,15,0,0,5,0,98,18,17,0,0,0,0,48,81,0,3,1,0,111,0,12,6,1,0,0,0,0,3,0,0,0,301,7.0,24.0,7.0,24.0,1.0,3.857142857142857,2.571428571428572,133,74,106,13,23,3,6,4,2,6,1,1,1,0,13,8,2,1,3,0,2,286,64,0,58,292,0,172,178,0,329,21,0,85,265,0,74,11,256,9,0,9,3,5,0,8,7,13,6,5,93,0,0,1,16,14,28,6,9,75,1,2,1,2,7,11,13,8,1,0,4,0,0,0,2,0,131,19,169,0,1,8,4,45,47,64,7,6,64,5,15,12,16,0,30,4,0,194,179,31,53,13,45,4,0,0,0,2,21,4,102,0,0,0,191,79,1,1,7,34,0,4,2,0,0,7,11,8,4,24,13,20,11,52,168,31,10,23,51,34,18,11,12,5,4,0,2,2,2,0,7.0,8.0,3.0,5.0,5.0,4.0,5.0,6.0,6.0,5.0,3.0,5.0,5.0,5.0,7.0,5.0,6.0,3.0,8.0,6.0,5.0,6.0,3.0,4.0,5.0,3.0,1.0,3.0,7.0,6.0,1.0,6.0,3.0,4.0,1.0,6.0,7.0,6.0,2.0,4.0,2.0,4.0,9.0,3.0,3.0,4.0,4.0,4.0,5.0,6.0,5.0,7.0,2.0,5.0,2.0,5.0,5.0,9.0,3.0,2.0,2.0,8.0,6.0,1.0,4.0,4.0,3.0,5.0,4.0,4.0,7.0,3.0,2.0,5.0,1.0,5.0,5.0,5.0,0.0,1.0,3.0,1.0,0.0,0.0,4.0,3.0,1.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,79,221,73,0,28,26,25,28,23,20,15,25,21,23,21,24,21,20,18,16,8,8,1,2,0,0,362,10,1,0,0,362,10,1,0,0,119,5,13,53,14,3,87,79,0,144,217,12,0,0,5,1,0,0,0,0,0,0,2,365,0,2,1,26,1,0,0,11,332,0,50,85,42,2,2,192,0,2.01948051948052,0.0,2.617391304347826,0.0,8.265415549597856,2,1,9,0,0,0,8,113,0,7,4,4,10,26,17,20,8,15,6,10,0,2,1,3,0,131,2,123,10,113,20,22,111,122,11,43,90,76,57,17,116,119,14,116,17,80,36,29,104,59,74,64,69,13,120,13,120,2,131,32,65,35,1,0,93,40,0,0,2,0,0,0,0,0,0,0,1,130,0,1.4586466165413534,1.3458646616541354,1.0,0.0,0.0,56.97744360902256 +70504,Los Santos,Pedasí,Purio,338,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,197,8,1,203,2,0,0,0,0,1,197,0,2,3,0,2,2,0,0,194,0,11,0,0,0,1,200,1,1,0,0,4,206,0,107,13,0,10,3,0,0,17,178,11,0,0,196,1,8,0,0,0,1,178,12,16,0,0,0,0,62,142,0,2,0,0,168,26,9,2,0,0,0,0,0,0,1,0,0,340,6.980295566502463,23.68472906403941,6.980295566502463,23.773399014778324,1.0048543689320388,3.587378640776699,2.388349514563106,208,99,114,14,28,4,12,5,3,7,1,0,2,1,10,5,3,1,2,1,7,359,117,0,51,425,0,217,259,0,451,25,0,63,413,0,62,1,399,14,0,14,2,6,1,3,7,19,15,18,153,0,0,1,19,20,24,12,23,85,1,9,0,1,10,13,7,10,0,1,2,0,0,0,0,0,164,34,260,0,3,16,6,75,44,95,21,25,81,10,21,10,18,0,52,2,0,252,246,51,75,10,56,2,0,0,0,0,68,6,120,0,0,0,318,101,1,2,8,26,0,2,0,0,0,7,8,6,11,29,21,23,20,73,191,89,21,26,54,42,41,15,11,5,2,0,0,0,1,0,10.0,2.0,5.0,5.0,4.0,3.0,6.0,1.0,2.0,2.0,5.0,10.0,4.0,6.0,3.0,6.0,0.0,5.0,6.0,7.0,5.0,6.0,7.0,5.0,2.0,6.0,6.0,3.0,9.0,7.0,4.0,6.0,4.0,4.0,3.0,4.0,4.0,1.0,3.0,3.0,6.0,3.0,5.0,7.0,1.0,2.0,2.0,5.0,6.0,4.0,5.0,6.0,7.0,5.0,7.0,9.0,7.0,10.0,10.0,6.0,11.0,6.0,8.0,9.0,9.0,10.0,14.0,8.0,7.0,6.0,6.0,4.0,9.0,7.0,8.0,7.0,4.0,4.0,6.0,2.0,7.0,5.0,7.0,2.0,7.0,4.0,1.0,7.0,1.0,4.0,3.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,68,272,158,0,26,14,28,24,25,31,21,15,22,19,30,42,43,45,34,23,28,17,7,3,1,0,497,1,0,0,0,497,1,0,0,0,169,5,6,57,33,1,159,68,0,242,256,0,0,0,5,0,0,0,0,0,0,0,5,488,0,7,1,62,4,0,0,156,268,0,67,122,75,2,0,232,0,2.1479820627802693,0.0,2.63905325443787,0.0,7.875502008032129,0,1,26,3,0,0,79,99,0,17,29,5,19,31,27,24,14,22,11,5,1,1,0,1,0,207,1,192,16,189,19,44,164,179,29,31,177,120,88,30,178,170,38,182,26,51,131,24,184,107,101,57,151,12,196,21,187,1,207,58,102,45,3,0,137,71,0,0,1,0,0,0,0,0,0,0,2,205,0,1.2115384615384617,1.1826923076923077,1.0,1.2142857142857142,1.2142857142857142,63.13942307692308 +70505,Los Santos,Pedasí,Oria Arriba,463,6,39,0,0,0,0,0,0,0,0,0,2,0,0,0,179,11,3,173,17,2,0,0,1,0,165,0,4,10,4,1,8,0,1,124,0,64,0,5,0,0,171,5,7,0,0,10,193,0,216,25,49,12,13,0,2,27,104,59,1,0,147,21,7,4,0,14,0,135,17,36,3,0,1,1,46,135,3,6,3,0,0,108,72,2,0,2,0,3,0,6,0,0,0,510,6.805555555555555,22.616666666666667,6.85,23.16111111111111,1.005181347150259,2.5854922279792745,1.155440414507772,196,66,87,5,6,3,1,1,0,1,1,0,10,0,4,5,0,1,2,1,6,278,88,0,107,259,0,171,195,0,319,47,0,60,306,0,47,13,268,38,0,38,0,7,0,8,12,9,11,14,91,1,2,0,5,6,19,5,9,62,0,0,0,1,3,11,6,30,2,0,14,0,0,0,0,0,187,5,144,0,0,2,1,18,34,71,13,8,85,15,19,0,9,1,57,4,2,222,155,6,110,1,33,20,0,19,3,6,22,2,120,12,0,0,207,68,0,1,6,41,2,11,0,0,3,22,7,19,13,27,20,17,5,59,189,36,8,8,23,32,30,9,11,3,3,2,7,0,4,12,3.0,3.0,4.0,1.0,4.0,9.0,6.0,3.0,5.0,3.0,4.0,5.0,6.0,6.0,3.0,3.0,5.0,1.0,2.0,2.0,6.0,3.0,4.0,6.0,5.0,6.0,3.0,12.0,6.0,7.0,9.0,9.0,8.0,5.0,9.0,9.0,3.0,4.0,6.0,6.0,6.0,2.0,2.0,5.0,3.0,3.0,1.0,7.0,7.0,4.0,5.0,2.0,7.0,4.0,7.0,5.0,6.0,4.0,9.0,4.0,4.0,5.0,2.0,9.0,8.0,3.0,2.0,4.0,2.0,3.0,4.0,2.0,4.0,4.0,2.0,5.0,0.0,1.0,4.0,2.0,1.0,1.0,1.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,65,260,52,0,15,26,24,13,24,34,40,28,18,22,25,28,28,14,16,12,7,2,1,0,0,0,296,58,23,0,0,296,68,13,0,0,95,1,11,49,12,4,140,65,0,82,232,63,0,1,0,0,0,0,0,1,0,0,2,373,0,4,1,26,0,1,0,10,335,0,46,46,9,0,12,264,0,1.1785714285714286,0.0,2.6031746031746037,0.0,8.180371352785146,4,1,15,0,0,0,5,171,0,42,23,10,10,21,16,21,9,12,6,5,1,4,1,5,8,184,12,155,41,141,55,20,176,133,63,66,130,85,111,6,190,159,37,92,104,66,26,56,140,97,99,73,123,64,132,71,125,0,196,100,74,12,10,0,130,66,0,1,0,0,0,0,0,1,0,0,2,192,0,1.1326530612244898,0.7908163265306123,0.0,1.0,1.0,48.285714285714285 +70601,Los Santos,Pocrí,Pocrí,670,4,0,0,0,0,0,1,0,0,0,2,4,0,0,0,338,39,14,369,8,2,0,0,11,1,381,0,0,4,0,0,5,0,1,371,4,12,0,1,0,3,372,8,2,0,0,9,391,0,174,14,6,84,5,0,4,20,330,36,1,0,347,3,28,3,0,9,1,321,40,30,0,0,0,0,161,224,0,5,1,0,186,190,10,0,0,0,0,0,0,0,4,1,0,681,7.0,22.088082901554404,7.0,22.01036269430052,1.0230179028132993,3.8491048593350383,2.544757033248082,406,182,281,12,41,12,14,4,3,7,3,5,11,2,24,7,8,2,12,15,4,819,135,0,270,684,0,431,523,0,901,53,0,180,774,0,158,22,749,25,0,25,7,9,5,16,18,29,16,16,209,0,0,3,23,41,103,25,35,179,0,5,10,14,24,26,66,14,24,1,10,0,0,0,1,0,408,19,475,0,0,6,7,151,113,151,24,36,163,43,63,17,23,0,81,31,3,492,491,92,166,18,113,20,0,12,3,3,77,9,179,6,0,0,525,226,3,6,15,97,20,9,1,0,3,21,29,18,25,43,64,73,23,128,346,123,61,70,78,106,83,49,27,15,16,2,1,0,0,6,9.0,6.0,7.0,7.0,7.0,9.0,8.0,8.0,10.0,10.0,12.0,7.0,11.0,10.0,15.0,13.0,10.0,9.0,18.0,11.0,12.0,8.0,10.0,12.0,14.0,9.0,14.0,9.0,9.0,6.0,12.0,7.0,6.0,11.0,6.0,8.0,7.0,9.0,13.0,13.0,12.0,10.0,13.0,10.0,9.0,9.0,6.0,10.0,10.0,15.0,13.0,14.0,15.0,15.0,16.0,20.0,16.0,12.0,19.0,8.0,17.0,10.0,17.0,18.0,11.0,10.0,12.0,16.0,10.0,14.0,13.0,8.0,20.0,11.0,14.0,17.0,13.0,14.0,9.0,15.0,11.0,7.0,9.0,5.0,2.0,10.0,5.0,6.0,4.0,2.0,2.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,136,581,266,0,36,45,55,61,56,47,42,50,54,50,73,75,73,62,66,68,34,27,9,0,0,0,966,13,3,1,0,966,15,1,1,0,262,13,85,175,56,8,248,136,0,444,524,15,0,1,30,0,0,0,0,1,0,0,18,933,0,20,78,99,2,1,1,178,604,0,150,219,160,7,0,447,0,1.9068181818181815,0.0,2.623762376237624,0.0,9.1617497456765,8,30,52,2,1,1,77,235,0,29,32,13,33,51,57,40,42,43,26,17,4,6,6,0,1,399,7,369,37,355,51,81,325,361,45,99,307,216,190,37,369,375,31,343,63,193,150,91,315,150,256,156,250,47,359,40,366,3,403,123,195,78,10,1,263,143,0,0,9,0,0,0,0,0,0,0,6,391,0,1.2088452088452089,1.2063882063882063,1.2,1.0434782608695652,1.0434782608695652,60.17733990147783 +70602,Los Santos,Pocrí,El Cañafístulo,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,2,1,113,2,0,0,0,1,0,116,0,0,0,0,0,0,0,0,78,0,30,5,2,0,1,111,3,0,0,0,2,116,0,83,2,0,22,1,0,0,3,107,5,1,0,77,1,34,0,0,4,0,91,21,4,0,0,0,0,15,99,0,2,0,0,80,32,4,0,0,0,0,0,0,0,0,0,0,224,6.991379310344827,23.810344827586206,7.0,23.879310344827587,1.0086206896551724,3.4741379310344827,2.3448275862068964,117,58,59,2,19,3,6,1,2,4,0,0,0,0,7,4,1,0,3,3,3,197,65,0,13,249,0,12,250,0,230,32,0,35,227,0,31,4,207,20,0,20,3,2,2,7,7,12,9,7,114,0,0,1,5,10,9,5,5,30,0,0,1,1,3,3,2,4,0,0,0,0,0,0,0,0,92,19,135,0,0,3,14,29,18,68,4,16,19,17,9,0,4,0,61,0,0,150,121,9,66,0,18,13,0,3,1,0,43,6,60,9,0,0,201,35,1,0,1,8,0,0,0,0,1,4,0,1,3,6,18,16,5,57,119,55,17,19,22,14,10,4,0,1,1,0,0,0,0,9,3.0,1.0,2.0,3.0,4.0,4.0,1.0,6.0,1.0,0.0,0.0,2.0,1.0,3.0,3.0,2.0,1.0,3.0,0.0,0.0,3.0,2.0,2.0,1.0,6.0,2.0,2.0,2.0,2.0,3.0,2.0,0.0,2.0,2.0,4.0,2.0,2.0,2.0,2.0,2.0,4.0,3.0,1.0,2.0,3.0,2.0,0.0,4.0,2.0,3.0,2.0,7.0,5.0,3.0,6.0,3.0,4.0,5.0,3.0,4.0,6.0,5.0,6.0,7.0,3.0,2.0,6.0,9.0,7.0,6.0,4.0,5.0,5.0,4.0,3.0,5.0,0.0,1.0,4.0,2.0,2.0,5.0,1.0,4.0,1.0,3.0,5.0,1.0,2.0,2.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,34,144,93,0,13,12,9,6,14,11,10,10,13,11,23,19,27,30,21,12,13,13,3,1,0,0,271,0,0,0,0,271,0,0,0,0,103,1,29,27,25,0,52,34,0,158,113,0,0,0,0,0,0,0,0,0,0,0,1,270,0,0,10,13,2,2,0,14,230,0,24,82,28,2,0,135,0,2.834862385321101,0.0,3.075268817204301,0.0,6.302583025830258,0,8,6,1,1,0,5,96,0,15,15,9,20,22,13,11,7,2,1,2,0,0,0,0,0,116,1,110,7,110,7,21,96,103,14,9,108,77,40,1,116,103,14,98,19,21,77,4,113,2,115,25,92,55,62,64,53,0,117,35,54,28,0,0,91,26,0,0,0,0,0,0,0,0,0,0,0,117,0,1.2820512820512822,1.0341880341880345,0.0,1.0,1.0,64.91452991452991 +70603,Los Santos,Pocrí,Lajamina,402,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,67,3,195,3,0,0,0,3,0,191,0,0,2,1,1,6,0,0,120,18,60,1,2,0,0,188,10,0,0,0,3,201,0,150,14,3,32,4,0,0,5,177,18,1,0,181,1,12,2,0,5,0,168,26,7,0,0,0,0,55,143,0,3,0,0,131,67,3,0,0,0,0,0,0,0,0,0,0,404,6.606965174129353,21.12437810945273,6.930348258706467,23.36318407960199,1.0049751243781095,3.72636815920398,2.427860696517413,202,91,97,10,35,1,10,1,1,1,0,3,7,0,14,6,4,5,6,7,15,359,81,0,61,379,0,189,251,0,419,21,0,69,371,0,62,7,357,14,0,14,1,0,0,7,7,19,19,9,169,0,0,0,10,18,29,8,12,75,0,0,1,10,8,15,2,6,0,0,1,0,0,0,0,0,187,18,220,0,0,8,3,37,44,109,19,11,54,13,32,1,9,1,94,0,1,250,209,26,109,2,45,5,0,17,1,1,70,6,110,0,0,0,307,87,0,0,13,16,0,2,0,0,1,3,5,9,8,20,31,24,9,95,209,79,24,28,34,28,31,14,7,1,2,1,0,1,0,0,4.0,4.0,6.0,5.0,2.0,2.0,1.0,4.0,3.0,3.0,4.0,1.0,7.0,7.0,7.0,2.0,4.0,4.0,4.0,6.0,7.0,3.0,3.0,4.0,2.0,7.0,4.0,5.0,4.0,9.0,4.0,5.0,4.0,2.0,3.0,1.0,3.0,4.0,3.0,4.0,5.0,4.0,6.0,1.0,5.0,4.0,5.0,4.0,10.0,5.0,10.0,5.0,6.0,14.0,8.0,8.0,5.0,8.0,7.0,7.0,9.0,5.0,5.0,10.0,3.0,7.0,8.0,8.0,7.0,6.0,6.0,10.0,9.0,10.0,7.0,6.0,2.0,7.0,6.0,3.0,7.0,5.0,4.0,3.0,3.0,5.0,3.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,60,260,139,0,21,13,26,20,19,29,18,15,21,28,43,35,32,36,42,24,22,11,2,2,0,0,456,1,1,1,0,456,1,1,1,0,143,6,23,56,28,2,141,60,0,241,215,3,0,0,6,4,0,0,0,0,0,0,5,444,0,6,8,39,3,0,0,39,364,0,58,136,39,5,1,220,0,2.393782383419689,0.0,3.0694444444444446,0.0,7.570806100217865,2,7,24,2,0,0,25,142,0,28,26,11,25,26,28,20,10,18,2,4,1,2,1,0,0,196,6,181,21,174,28,31,171,156,46,25,177,121,81,3,199,175,27,162,40,94,68,19,183,6,196,55,147,44,158,43,159,0,202,74,86,35,7,0,141,61,0,0,2,3,0,0,0,0,0,0,3,194,0,1.2376237623762376,1.034653465346535,0.0,1.0,1.0,62.12871287128713 +70604,Los Santos,Pocrí,Paraíso,464,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,224,7,4,231,0,0,0,0,3,1,224,0,0,4,1,0,3,0,3,145,7,26,0,0,0,57,215,9,1,0,0,10,235,0,183,12,1,26,9,0,1,7,199,27,1,0,201,2,29,2,0,1,0,191,29,15,0,0,0,0,86,144,1,4,0,0,145,77,12,0,0,0,0,0,0,0,1,0,0,467,6.995726495726496,23.935897435897434,7.0,23.982905982905983,1.0,3.5659574468085107,2.502127659574468,236,117,128,14,34,4,16,9,3,7,6,5,9,1,25,5,4,2,4,2,2,473,103,0,100,476,0,177,399,0,543,33,0,93,483,0,84,9,463,20,0,22,1,3,2,9,9,20,18,8,153,0,1,0,18,21,50,21,24,109,0,1,0,2,10,18,39,7,3,0,6,0,0,0,1,0,220,22,303,0,1,10,7,84,58,100,45,16,101,16,25,10,19,0,61,6,2,324,265,48,96,10,66,11,0,7,2,1,67,2,66,11,0,0,349,114,0,0,8,65,2,6,1,0,2,12,18,13,7,25,23,37,10,95,194,85,40,37,78,50,55,13,17,5,2,1,1,0,0,11,3.0,3.0,2.0,5.0,8.0,3.0,4.0,6.0,5.0,5.0,10.0,6.0,5.0,7.0,3.0,9.0,4.0,9.0,8.0,5.0,3.0,6.0,4.0,2.0,4.0,8.0,8.0,5.0,5.0,10.0,5.0,8.0,7.0,4.0,9.0,10.0,6.0,7.0,8.0,5.0,3.0,5.0,7.0,4.0,3.0,3.0,7.0,6.0,4.0,6.0,5.0,9.0,4.0,6.0,5.0,6.0,14.0,13.0,10.0,11.0,12.0,10.0,13.0,8.0,9.0,8.0,7.0,8.0,8.0,9.0,13.0,6.0,4.0,6.0,8.0,8.0,6.0,2.0,5.0,5.0,11.0,12.0,4.0,6.0,8.0,3.0,4.0,4.0,4.0,4.0,3.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,75,342,172,0,21,23,31,35,19,36,33,36,22,26,29,54,52,40,37,26,41,19,6,3,0,0,576,5,8,0,0,576,5,8,0,0,171,6,35,111,39,3,149,75,0,299,284,6,0,1,20,0,0,0,0,0,0,0,5,563,0,14,12,93,3,0,0,203,264,0,89,164,80,6,1,249,0,2.0211864406779663,0.0,2.5444444444444443,0.0,8.691001697792869,4,7,45,3,0,0,83,94,0,14,23,7,14,42,31,29,24,25,11,7,0,5,0,0,3,223,13,206,30,204,32,59,177,204,32,44,192,139,97,8,228,208,28,190,46,74,116,36,200,79,157,90,146,21,215,26,210,0,236,73,102,57,4,0,174,62,0,1,6,0,0,0,0,0,0,0,3,226,0,1.3728813559322033,1.1228813559322033,0.0,1.0833333333333333,1.0833333333333333,61.69915254237288 +70605,Los Santos,Pocrí,Paritilla,542,1,0,0,0,0,0,0,0,0,0,0,1,0,0,15,212,84,2,296,15,0,0,0,2,0,306,0,0,2,1,1,3,0,0,283,4,24,1,1,0,0,296,11,1,0,0,5,313,0,159,8,3,45,15,0,1,21,267,21,3,0,266,4,37,3,0,3,0,265,37,10,1,0,0,0,105,204,0,4,0,0,242,62,4,2,0,0,0,0,0,0,3,0,0,544,6.827922077922078,23.564935064935064,6.896103896103896,23.7987012987013,1.0191693290734825,3.808306709265176,2.5207667731629395,320,151,157,16,51,5,2,5,2,7,0,4,1,2,33,14,10,4,8,10,14,611,90,0,138,563,0,152,549,0,632,69,0,104,597,0,100,4,568,29,0,30,10,6,1,22,16,29,29,14,233,1,0,2,16,20,45,12,15,114,0,5,2,8,9,17,25,14,4,0,2,0,0,0,0,0,278,11,372,0,0,2,5,69,56,196,36,15,98,34,27,4,13,0,111,0,2,375,348,71,102,8,73,15,0,18,2,1,104,7,186,6,0,0,459,131,2,5,5,54,3,2,0,0,2,16,21,8,18,22,40,46,13,103,294,144,30,39,58,39,53,19,18,11,9,1,0,2,0,6,7.0,5.0,5.0,5.0,8.0,9.0,6.0,9.0,5.0,3.0,5.0,8.0,6.0,4.0,7.0,8.0,7.0,5.0,9.0,4.0,5.0,5.0,8.0,5.0,7.0,7.0,3.0,5.0,5.0,8.0,4.0,3.0,6.0,2.0,9.0,5.0,5.0,2.0,8.0,5.0,4.0,4.0,5.0,3.0,8.0,5.0,8.0,10.0,3.0,7.0,8.0,14.0,8.0,12.0,17.0,13.0,12.0,10.0,11.0,12.0,15.0,10.0,13.0,10.0,14.0,17.0,17.0,9.0,19.0,8.0,11.0,10.0,11.0,18.0,13.0,11.0,12.0,5.0,12.0,12.0,11.0,7.0,8.0,6.0,2.0,5.0,6.0,6.0,4.0,2.0,2.0,7.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,92,376,255,0,30,32,30,33,30,28,24,25,24,33,59,58,62,70,63,52,34,23,13,0,0,0,718,2,3,0,0,718,3,2,0,0,210,6,22,134,51,5,203,92,0,342,377,4,0,1,16,0,0,1,0,0,0,0,10,695,0,1,12,83,6,0,0,73,548,0,88,215,77,11,1,331,0,2.5682539682539685,0.0,2.9647058823529413,0.0,7.590594744121715,0,7,43,3,0,0,26,241,0,36,44,17,36,44,31,32,17,31,5,14,5,2,2,1,2,314,6,303,17,289,31,79,241,263,57,45,275,199,121,22,298,292,28,282,38,147,135,39,281,34,286,81,239,70,250,63,257,0,320,110,150,57,3,0,217,103,0,1,3,0,0,1,0,0,0,0,3,312,0,1.171875,1.0875,0.0,1.125,1.125,64.703125 +70701,Los Santos,Tonosí,Tonosí,1088,9,3,4,0,0,0,0,1,0,0,0,15,0,0,13,649,127,20,746,43,1,0,0,16,3,790,0,0,4,0,3,11,0,1,479,221,93,6,1,0,9,779,9,1,0,0,20,809,1,93,32,58,79,32,0,27,137,552,90,0,3,679,118,0,4,1,7,0,755,2,48,1,0,3,0,213,566,2,22,6,0,518,182,11,10,0,0,0,0,0,33,55,0,683,437,6.952180028129395,23.296765119549928,6.985935302390999,23.69057665260197,1.0086526576019776,3.4215080346106306,2.2299134734239803,831,409,580,71,105,32,24,18,11,23,5,13,45,3,56,34,7,33,29,7,18,1776,297,0,474,1599,0,1422,651,0,1883,190,0,492,1581,0,436,56,1485,96,0,104,23,31,17,53,62,96,56,62,467,0,1,5,70,100,163,50,65,305,7,48,32,30,53,53,68,23,17,2,10,0,0,0,0,0,1107,35,744,0,1,14,4,89,243,297,82,33,530,122,128,30,80,0,158,90,0,1117,1053,196,394,33,448,47,0,20,0,15,166,35,339,4,0,0,1233,422,6,45,28,129,13,10,0,0,0,48,58,53,43,232,159,180,79,290,743,204,124,171,227,233,189,103,91,37,26,11,3,1,3,4,25.0,18.0,25.0,29.0,33.0,19.0,34.0,36.0,31.0,34.0,36.0,28.0,32.0,23.0,24.0,23.0,28.0,22.0,28.0,21.0,34.0,27.0,25.0,37.0,22.0,37.0,38.0,43.0,29.0,33.0,14.0,27.0,23.0,24.0,27.0,39.0,29.0,31.0,35.0,35.0,31.0,29.0,21.0,28.0,22.0,22.0,24.0,23.0,22.0,21.0,24.0,33.0,32.0,22.0,35.0,22.0,41.0,24.0,26.0,23.0,24.0,27.0,22.0,23.0,39.0,18.0,35.0,18.0,33.0,23.0,23.0,24.0,25.0,14.0,14.0,15.0,15.0,13.0,6.0,7.0,4.0,8.0,6.0,4.0,3.0,4.0,9.0,4.0,6.0,7.0,2.0,2.0,2.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,427,1391,352,0,130,154,143,122,145,180,115,169,131,112,146,136,135,127,100,56,25,30,9,4,1,0,2081,47,35,7,0,2081,52,30,7,0,682,31,256,258,89,21,406,427,0,904,1237,29,0,25,47,4,0,0,1,3,1,0,97,1992,0,54,118,399,26,13,3,567,990,0,341,494,97,11,5,1222,0,2.152173913043478,0.0,2.8187221396731057,0.0,7.769124423963134,17,48,173,9,8,0,226,350,0,27,38,24,62,101,118,111,81,109,63,31,18,20,3,8,2,809,22,735,96,733,98,140,691,759,72,224,607,453,378,79,752,766,65,649,182,519,130,196,635,548,283,304,527,257,574,269,562,9,822,243,389,166,33,1,564,267,0,8,15,1,0,0,1,1,0,0,47,758,0,1.3425480769230769,1.265625,1.0,1.054054054054054,1.054054054054054,53.51263537906137 +70702,Los Santos,Tonosí,Altos de Güera,315,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,87,9,188,1,2,0,0,7,0,153,0,1,25,4,1,14,0,0,0,1,176,3,9,0,9,178,17,0,0,0,3,198,0,55,5,2,49,7,0,1,11,167,18,1,0,135,58,0,1,1,3,0,192,0,4,0,0,2,0,17,167,0,14,0,0,0,146,50,0,0,0,0,1,0,0,0,1,0,316,6.403061224489796,21.357142857142858,6.918367346938775,23.6530612244898,1.0,3.4393939393939394,2.272727272727273,198,119,120,16,29,1,3,1,1,2,1,3,4,0,14,8,5,3,1,3,5,314,170,0,45,439,0,159,325,0,422,62,0,91,393,0,80,11,345,48,0,48,3,6,0,11,16,27,25,20,145,0,0,0,7,19,34,14,21,55,0,3,2,7,5,8,4,2,1,0,1,0,0,0,0,0,203,11,238,0,1,0,5,13,59,127,12,27,73,11,10,4,8,0,104,2,0,284,214,20,112,4,62,8,0,6,0,2,49,4,161,0,0,0,364,62,0,4,8,12,1,1,0,0,0,6,11,10,6,10,47,16,26,82,236,65,20,56,28,22,45,11,7,5,0,0,2,0,1,0,4.0,2.0,3.0,5.0,6.0,6.0,5.0,2.0,5.0,8.0,9.0,5.0,4.0,4.0,9.0,5.0,11.0,7.0,6.0,10.0,7.0,7.0,4.0,6.0,4.0,4.0,3.0,4.0,3.0,6.0,7.0,5.0,9.0,4.0,7.0,5.0,9.0,2.0,8.0,8.0,2.0,6.0,5.0,5.0,5.0,8.0,6.0,6.0,5.0,8.0,4.0,8.0,9.0,9.0,7.0,13.0,11.0,4.0,11.0,11.0,7.0,3.0,9.0,8.0,8.0,0.0,8.0,2.0,6.0,7.0,6.0,4.0,4.0,5.0,6.0,5.0,8.0,4.0,1.0,2.0,3.0,5.0,1.0,1.0,6.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,77,329,92,0,20,26,31,39,28,20,32,32,23,33,37,50,35,23,25,20,16,5,2,1,0,0,498,0,0,0,0,498,0,0,0,0,180,0,2,71,15,0,153,77,0,183,315,0,0,0,0,0,0,0,0,1,0,0,2,495,0,0,0,7,1,0,0,5,485,0,71,125,14,3,0,285,0,2.778947368421053,0.0,3.3835616438356166,0.0,6.514056224899599,0,0,3,0,0,0,2,193,0,19,24,6,35,27,20,23,14,12,10,2,2,3,0,1,0,189,9,140,58,155,43,37,161,116,82,13,185,86,112,4,194,133,65,102,96,67,35,18,180,33,165,48,150,118,80,152,46,1,197,56,113,27,2,0,169,29,0,0,0,0,0,0,0,0,0,0,0,198,0,1.4343434343434345,1.0808080808080809,1.0,1.0,1.0,57.186868686868685 +70703,Los Santos,Tonosí,Cañas,487,2,0,1,0,0,0,0,0,0,0,0,3,0,0,0,255,21,11,271,5,1,0,0,9,1,256,0,5,14,1,1,10,0,0,0,214,70,1,2,0,0,280,4,2,0,0,1,287,2,113,51,21,12,4,0,4,45,217,21,0,0,229,49,2,3,0,4,0,267,5,14,0,0,0,1,54,217,0,13,3,0,0,227,51,0,0,2,0,1,0,2,4,0,0,493,6.58273381294964,23.068345323741006,6.773381294964029,23.33453237410072,1.0034843205574913,3.087108013937282,1.7665505226480835,291,149,179,15,21,9,11,2,2,13,2,0,9,0,11,8,1,0,3,2,7,582,92,0,118,556,0,398,276,0,635,39,0,116,558,0,108,8,534,24,0,25,2,7,1,16,23,35,23,20,185,0,0,0,18,30,40,16,29,127,1,6,2,0,13,17,17,14,5,0,2,0,0,0,0,0,389,8,232,0,1,3,0,19,63,103,45,2,164,44,59,10,32,0,82,6,0,358,345,22,170,12,149,32,0,12,0,2,59,1,102,2,0,0,425,135,0,6,15,42,4,2,0,0,0,12,7,21,8,74,65,59,21,130,218,73,23,57,68,108,81,30,24,4,7,0,4,1,3,2,11.0,9.0,4.0,5.0,8.0,3.0,6.0,11.0,5.0,12.0,8.0,9.0,4.0,10.0,5.0,4.0,8.0,7.0,9.0,9.0,8.0,6.0,8.0,10.0,7.0,8.0,16.0,13.0,7.0,12.0,11.0,6.0,8.0,8.0,13.0,11.0,8.0,10.0,9.0,7.0,10.0,11.0,14.0,8.0,11.0,5.0,9.0,11.0,8.0,11.0,9.0,5.0,12.0,10.0,13.0,13.0,11.0,9.0,8.0,13.0,9.0,10.0,8.0,8.0,8.0,10.0,10.0,6.0,6.0,9.0,5.0,4.0,3.0,3.0,4.0,5.0,8.0,6.0,0.0,10.0,4.0,1.0,5.0,8.0,2.0,1.0,1.0,5.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,110,467,126,0,37,37,36,37,39,56,46,45,54,44,49,54,43,41,19,29,20,11,1,4,1,0,647,49,7,0,0,649,54,0,0,0,258,3,105,93,23,2,109,110,0,263,397,43,0,1,5,1,0,0,0,0,1,0,5,690,0,10,11,42,1,0,1,225,413,0,85,155,15,6,3,439,0,2.21,0.0,2.909090909090909,0.0,7.772403982930299,2,5,20,0,0,1,92,171,0,8,14,5,21,30,45,36,31,55,21,6,4,5,2,3,2,288,3,251,40,238,53,52,239,238,53,70,221,91,200,2,289,254,37,183,108,156,27,58,233,178,113,122,169,83,208,128,163,2,289,86,143,55,7,0,206,85,0,1,3,0,0,0,0,0,1,0,1,285,0,1.2302405498281788,1.1855670103092784,1.0,1.0,1.0,53.42611683848797 +70704,Los Santos,Tonosí,El Bebedero,714,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,457,46,3,501,2,0,1,0,2,0,474,0,3,8,1,1,19,0,0,334,58,101,1,10,1,1,498,5,0,0,0,3,506,0,82,40,12,61,15,0,0,27,429,50,0,0,371,120,0,13,1,1,0,498,1,1,0,0,6,0,79,404,0,21,2,0,0,484,22,0,0,0,0,0,0,0,0,0,0,718,6.938735177865612,23.731225296442688,7.0,24.0,1.005928853754941,3.341897233201581,2.2351778656126484,511,266,309,57,61,32,16,11,4,12,3,3,12,0,30,3,1,2,13,1,0,1063,172,0,206,1029,0,868,367,0,1090,145,0,291,944,0,264,27,869,75,0,79,13,16,3,36,31,63,54,42,317,0,0,0,37,66,115,30,38,194,1,1,4,18,18,14,20,20,2,0,3,0,0,0,0,0,536,25,586,0,4,11,5,24,171,297,21,73,231,22,49,15,37,0,201,1,1,699,598,84,264,17,178,5,0,8,1,6,131,12,282,38,0,0,852,212,0,1,30,47,2,3,0,0,1,8,28,24,26,76,69,70,35,224,510,165,61,121,120,107,85,31,39,9,6,2,1,0,2,38,11.0,18.0,18.0,15.0,11.0,14.0,15.0,20.0,12.0,16.0,17.0,19.0,13.0,15.0,17.0,18.0,22.0,9.0,17.0,12.0,27.0,18.0,13.0,24.0,16.0,20.0,17.0,17.0,13.0,19.0,17.0,23.0,18.0,23.0,18.0,10.0,12.0,18.0,10.0,17.0,9.0,12.0,13.0,19.0,13.0,13.0,18.0,18.0,15.0,22.0,15.0,22.0,29.0,15.0,24.0,15.0,10.0,15.0,19.0,16.0,14.0,12.0,14.0,12.0,20.0,16.0,19.0,15.0,17.0,11.0,10.0,16.0,14.0,16.0,10.0,7.0,10.0,8.0,5.0,5.0,9.0,1.0,6.0,7.0,5.0,5.0,4.0,2.0,1.0,1.0,3.0,3.0,1.0,1.0,1.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,231,832,234,0,73,77,81,78,98,86,99,67,66,86,105,75,72,78,66,35,28,13,9,5,0,0,1290,4,0,3,0,1290,4,0,3,0,466,4,5,139,32,6,414,231,0,489,805,3,0,0,14,5,0,0,0,0,0,0,8,1270,0,3,21,32,1,5,3,69,1163,0,169,312,24,4,1,787,0,2.4538606403013183,0.0,2.9664268585131897,0.0,7.020817270624518,1,8,21,1,4,0,37,439,0,26,56,21,53,79,77,60,29,54,17,8,5,8,3,2,11,505,6,448,63,460,51,100,411,431,80,80,431,218,293,20,491,467,44,341,170,308,33,77,434,367,144,159,352,270,241,253,258,4,507,136,272,95,8,0,331,180,0,0,4,1,0,0,0,0,0,0,3,503,0,1.3679060665362035,1.1702544031311155,1.0,1.0555555555555556,1.0555555555555556,53.98238747553816 +70705,Los Santos,Tonosí,El Cacao,516,4,0,4,0,0,0,0,0,0,0,0,1,0,0,2,314,35,8,344,7,1,0,0,7,0,350,0,0,1,1,3,2,0,2,0,273,74,3,6,1,2,343,7,0,0,0,9,359,0,41,21,30,28,45,0,1,32,294,31,1,0,277,61,0,4,1,16,0,352,0,4,1,1,1,0,54,296,1,8,0,0,8,338,6,4,0,0,0,0,0,0,2,1,0,525,6.409090909090909,16.97159090909091,6.946022727272728,22.960227272727277,1.011142061281337,3.253481894150418,2.147632311977716,364,187,264,55,43,6,16,10,3,9,5,2,6,0,33,6,1,5,11,2,1,677,245,0,124,798,0,467,455,0,818,104,0,231,691,0,210,21,618,73,0,81,15,15,2,21,27,54,29,44,175,0,1,0,32,58,81,23,28,145,1,5,6,9,17,18,15,6,10,0,4,0,0,0,0,0,426,9,399,0,0,3,5,21,128,227,22,1,220,23,55,4,48,0,78,0,0,525,445,66,235,5,110,2,0,10,0,6,66,15,277,5,0,0,598,164,0,6,19,37,7,3,0,0,0,6,16,20,22,61,40,49,29,192,466,105,35,59,49,67,98,40,32,6,5,2,0,0,1,5,11.0,13.0,13.0,11.0,16.0,21.0,12.0,15.0,8.0,16.0,13.0,21.0,13.0,18.0,13.0,12.0,11.0,11.0,10.0,17.0,14.0,15.0,17.0,18.0,11.0,21.0,16.0,15.0,11.0,10.0,10.0,18.0,11.0,15.0,11.0,21.0,24.0,14.0,10.0,16.0,8.0,8.0,8.0,11.0,8.0,12.0,12.0,8.0,13.0,16.0,5.0,19.0,8.0,15.0,11.0,14.0,5.0,22.0,6.0,7.0,13.0,11.0,14.0,9.0,15.0,8.0,8.0,8.0,6.0,7.0,5.0,6.0,11.0,9.0,4.0,5.0,4.0,4.0,2.0,4.0,1.0,5.0,4.0,4.0,2.0,3.0,2.0,1.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,214,637,119,0,64,72,78,61,75,73,65,85,43,61,58,54,62,37,35,19,16,8,3,1,0,0,959,10,0,1,0,959,10,0,1,0,353,5,45,66,9,5,273,214,0,587,379,4,0,9,7,0,0,0,0,0,0,0,5,949,0,5,12,38,1,0,2,52,860,0,148,199,18,5,0,600,0,2.220472440944882,0.0,2.922535211267605,0.0,6.9989690721649485,1,7,16,1,0,2,20,317,0,32,39,12,33,37,48,50,35,36,15,13,5,5,1,1,1,353,11,306,58,311,53,46,318,311,53,53,311,160,204,9,355,307,57,250,114,241,9,56,308,192,172,91,273,53,311,57,307,1,363,108,182,70,4,0,275,89,0,4,3,0,0,0,0,0,0,0,0,357,0,1.4423076923076923,1.2225274725274726,0.0,1.0909090909090908,1.0909090909090908,51.604395604395606 +70706,Los Santos,Tonosí,El Cortezo,364,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,126,3,203,17,0,0,0,3,0,206,0,0,0,1,0,16,0,0,0,6,199,9,6,2,1,213,10,0,0,0,0,223,0,85,5,0,37,16,0,0,7,207,9,0,0,144,73,0,0,0,6,0,223,0,0,0,0,0,0,7,192,0,24,0,0,0,218,3,0,0,0,0,2,0,0,0,0,0,366,6.606334841628959,23.78280542986425,6.950226244343892,23.945701357466064,1.0269058295964126,3.2645739910313902,2.2466367713004485,229,130,132,18,12,8,4,4,1,2,1,2,1,0,7,1,1,1,4,0,2,313,207,0,27,493,0,151,369,0,420,100,0,98,422,0,97,1,336,86,0,86,1,10,2,12,16,32,18,15,159,0,0,0,11,17,39,11,15,44,1,2,4,6,5,7,3,4,0,0,0,0,0,0,0,0,218,2,262,0,1,0,1,4,65,158,10,25,27,17,8,0,11,0,157,0,0,312,232,15,116,0,79,6,0,4,0,10,75,4,159,0,0,0,406,62,0,1,0,13,0,0,0,0,0,5,4,4,1,14,53,16,5,118,289,114,29,41,26,16,14,7,5,2,1,0,0,0,0,0,4.0,9.0,6.0,5.0,8.0,8.0,4.0,4.0,7.0,7.0,5.0,3.0,4.0,10.0,9.0,6.0,5.0,8.0,10.0,6.0,8.0,7.0,9.0,8.0,5.0,9.0,7.0,5.0,7.0,4.0,6.0,5.0,8.0,7.0,1.0,7.0,6.0,7.0,4.0,1.0,8.0,5.0,7.0,3.0,3.0,6.0,5.0,5.0,9.0,9.0,10.0,9.0,11.0,8.0,10.0,9.0,3.0,6.0,6.0,7.0,13.0,9.0,9.0,6.0,9.0,6.0,7.0,7.0,8.0,6.0,6.0,4.0,10.0,4.0,6.0,3.0,1.0,4.0,5.0,5.0,3.0,8.0,1.0,2.0,3.0,1.0,1.0,2.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,93,341,110,0,32,30,31,35,37,32,27,25,26,34,48,31,46,34,30,18,17,7,3,1,0,0,543,0,0,1,0,543,0,0,1,0,212,3,30,60,19,0,127,93,0,319,225,0,0,0,2,1,0,0,0,0,1,0,4,536,0,0,9,22,0,0,0,92,421,0,23,97,5,0,0,419,0,2.9371980676328504,0.0,3.333333333333333,0.0,5.689338235294118,0,2,14,0,0,0,41,172,0,39,35,22,48,37,17,12,2,12,2,2,1,0,0,0,0,222,7,191,38,195,34,39,190,166,63,3,226,77,152,2,227,152,77,162,67,157,5,7,222,48,181,36,193,143,86,127,102,3,226,61,135,32,1,0,194,35,0,0,1,1,0,0,0,0,0,0,0,227,0,1.3624454148471616,1.0131004366812226,0.0,1.0,1.0,55.4061135371179 +70707,Los Santos,Tonosí,Flores,326,6,6,1,0,0,0,0,0,0,0,0,1,0,0,0,190,22,2,210,2,0,0,0,0,2,196,0,0,8,0,7,2,0,1,0,149,62,3,0,0,0,199,15,0,0,0,0,214,0,103,2,3,12,5,0,0,15,184,15,0,0,169,40,4,0,0,1,0,214,0,0,0,0,0,0,18,183,0,13,0,0,0,207,6,0,0,0,0,0,0,0,1,0,0,340,6.723004694835681,23.070422535211268,6.887323943661972,23.727699530516432,1.0,3.4766355140186915,1.8738317757009344,215,100,157,4,30,5,7,0,2,8,3,5,2,0,20,6,2,3,7,1,7,336,185,0,22,499,0,155,366,0,462,59,0,104,417,0,94,10,378,39,0,39,3,11,3,8,20,26,17,11,182,0,0,0,5,21,21,3,14,100,0,1,0,2,4,10,11,8,0,0,1,0,0,0,0,0,294,3,181,0,0,0,0,22,57,70,22,10,56,67,15,4,56,0,97,2,0,289,249,31,49,5,196,13,0,3,0,1,65,8,96,0,0,0,340,108,0,0,4,25,0,1,0,0,0,6,13,7,10,29,76,77,13,66,143,63,46,55,92,55,50,9,13,6,4,0,2,0,0,0,7.0,2.0,6.0,2.0,4.0,8.0,7.0,10.0,7.0,7.0,4.0,3.0,4.0,4.0,4.0,5.0,6.0,6.0,8.0,7.0,8.0,10.0,9.0,6.0,6.0,10.0,6.0,2.0,6.0,2.0,7.0,8.0,7.0,6.0,3.0,7.0,6.0,8.0,8.0,5.0,7.0,4.0,8.0,6.0,3.0,11.0,5.0,8.0,9.0,9.0,5.0,12.0,6.0,10.0,7.0,5.0,7.0,7.0,4.0,5.0,8.0,7.0,8.0,10.0,2.0,6.0,6.0,8.0,3.0,11.0,8.0,6.0,6.0,5.0,8.0,4.0,6.0,7.0,5.0,4.0,5.0,5.0,4.0,3.0,4.0,0.0,0.0,1.0,1.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,79,335,124,0,21,39,19,32,39,26,31,34,28,42,40,28,35,34,33,26,21,3,6,1,0,0,536,2,0,0,0,536,2,0,0,0,198,4,22,51,17,0,167,79,0,304,231,3,0,0,6,4,0,0,0,0,0,0,18,510,0,0,21,15,3,1,0,24,474,0,51,95,22,2,0,368,0,1.9910714285714288,0.0,2.68944099378882,0.0,6.933085501858736,0,10,5,2,0,0,12,186,0,6,11,6,18,36,38,25,24,27,11,6,2,2,1,1,0,208,7,179,36,175,40,41,174,166,49,28,187,89,126,4,211,129,86,154,61,149,5,17,198,38,177,49,166,28,187,51,164,10,205,65,107,41,2,0,149,66,0,0,1,1,0,0,0,0,0,0,7,206,0,1.344186046511628,1.158139534883721,0.0,1.0,1.0,57.86046511627907 +70708,Los Santos,Tonosí,Guánico,620,2,0,0,0,0,0,0,0,0,0,0,7,0,0,4,330,31,5,362,3,2,0,0,3,0,341,0,3,9,3,1,12,0,1,277,44,38,2,8,0,1,351,13,0,0,0,6,370,0,125,21,1,65,40,0,4,11,327,28,0,0,246,121,0,3,0,0,0,355,0,13,0,0,1,1,61,274,0,32,3,0,0,335,29,0,0,0,0,2,0,1,2,1,0,629,6.829670329670329,22.546703296703296,6.934065934065934,23.51648351648352,1.0,3.345945945945946,1.7567567567567568,377,192,182,19,30,5,3,1,3,5,1,1,8,0,28,10,3,1,5,0,0,637,159,0,100,696,0,435,361,0,716,80,0,145,651,0,124,21,585,66,0,68,2,3,1,15,33,49,17,26,233,0,0,0,29,34,42,16,34,104,0,1,9,7,13,5,4,45,0,0,6,0,0,0,0,0,378,9,364,0,0,1,4,30,84,195,24,31,95,27,40,6,20,0,183,13,1,446,381,37,170,11,141,23,0,2,1,8,82,6,204,3,0,0,557,130,0,1,11,46,0,6,0,0,1,14,14,10,7,46,90,34,18,153,339,126,57,62,69,77,39,21,22,3,6,0,2,1,0,3,8.0,9.0,8.0,6.0,4.0,11.0,4.0,10.0,8.0,8.0,5.0,9.0,6.0,11.0,7.0,10.0,9.0,12.0,6.0,7.0,7.0,8.0,11.0,16.0,8.0,9.0,7.0,12.0,9.0,11.0,7.0,3.0,12.0,6.0,9.0,8.0,7.0,8.0,5.0,9.0,8.0,9.0,13.0,16.0,8.0,8.0,10.0,13.0,10.0,13.0,13.0,14.0,10.0,6.0,16.0,14.0,14.0,17.0,15.0,20.0,11.0,10.0,8.0,15.0,10.0,13.0,12.0,9.0,15.0,7.0,7.0,7.0,14.0,9.0,13.0,8.0,8.0,5.0,7.0,6.0,10.0,7.0,4.0,4.0,4.0,4.0,9.0,7.0,3.0,0.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,114,517,196,0,35,41,38,44,50,48,37,37,54,54,59,80,54,56,50,34,29,23,4,0,0,0,804,10,12,1,0,806,13,7,1,0,326,4,11,84,29,6,253,114,0,468,340,19,0,0,8,3,0,0,0,0,1,0,4,811,0,1,6,66,1,0,0,490,263,0,61,206,31,1,0,528,0,2.566473988439306,0.0,3.164179104477612,0.0,7.207980652962515,1,4,25,0,0,0,220,127,0,40,44,21,43,54,64,33,21,27,6,8,0,4,2,1,2,360,17,312,65,321,56,70,307,302,75,50,327,114,263,4,373,309,68,228,149,205,23,51,326,153,224,104,273,178,199,183,194,3,374,136,190,45,6,0,283,94,0,0,2,1,0,0,0,0,1,0,2,371,0,1.1830238726790452,1.0106100795755968,0.0,1.0,1.0,56.89655172413793 +70709,Los Santos,Tonosí,La Tronosa,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,11,3,192,3,2,0,0,1,0,171,0,0,15,2,1,9,0,0,9,33,152,3,1,0,0,182,12,0,0,0,4,198,0,49,5,0,30,17,0,0,11,168,19,0,0,163,34,0,0,0,1,0,196,0,0,0,0,2,0,14,166,0,16,2,0,0,156,41,0,0,0,0,1,0,0,0,0,0,299,6.98984771573604,23.223350253807105,7.0,23.451776649746197,1.005050505050505,3.378787878787879,2.308080808080808,199,109,122,10,18,5,5,1,1,3,0,0,3,0,6,3,0,4,8,2,2,315,138,0,42,411,0,146,307,0,401,52,0,82,371,0,70,12,335,36,0,37,1,3,2,16,24,37,18,14,113,0,0,0,17,12,29,14,15,53,2,3,2,6,9,15,8,2,1,0,0,0,0,0,0,0,206,7,215,0,1,3,3,1,49,117,14,34,62,10,19,2,10,0,108,0,0,264,212,33,71,3,89,1,0,14,0,3,71,10,134,1,0,0,327,65,0,1,10,25,0,0,0,0,0,5,12,3,10,23,70,15,27,48,226,92,18,31,36,27,22,11,10,1,1,0,0,0,0,1,4.0,6.0,5.0,8.0,2.0,5.0,3.0,4.0,9.0,2.0,6.0,7.0,2.0,6.0,4.0,5.0,5.0,7.0,10.0,3.0,3.0,6.0,4.0,4.0,11.0,3.0,4.0,6.0,5.0,4.0,7.0,3.0,6.0,7.0,4.0,4.0,4.0,4.0,7.0,4.0,4.0,2.0,6.0,3.0,9.0,2.0,11.0,6.0,7.0,10.0,7.0,7.0,6.0,10.0,6.0,3.0,7.0,6.0,15.0,7.0,7.0,8.0,5.0,4.0,6.0,9.0,14.0,4.0,4.0,6.0,6.0,5.0,2.0,3.0,2.0,7.0,6.0,4.0,5.0,4.0,6.0,3.0,3.0,2.0,1.0,3.0,0.0,1.0,5.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,73,294,109,0,25,23,25,30,28,22,27,23,24,36,36,38,30,37,18,26,15,12,1,0,0,0,474,0,0,2,0,474,0,0,2,0,175,2,5,66,24,0,131,73,0,152,324,0,0,0,14,0,0,0,0,0,0,0,11,451,0,0,0,27,0,0,0,163,286,0,53,148,1,0,0,274,0,2.446236559139785,0.0,2.823529411764706,0.0,6.630252100840337,0,0,15,0,0,0,61,123,0,25,40,8,26,32,17,22,7,8,6,5,1,1,0,0,1,191,8,165,34,163,36,40,159,138,61,12,187,117,82,10,189,148,51,128,71,127,1,18,181,13,186,62,137,118,81,148,51,0,199,70,100,28,1,0,163,36,0,0,4,0,0,0,0,0,0,0,1,194,0,1.3266331658291457,1.065326633165829,0.0,1.0,1.0,58.02010050251256 +70710,Los Santos,Tonosí,Cambutal,421,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,194,25,1,215,4,0,0,0,1,0,192,0,0,13,4,0,11,0,0,17,162,41,0,0,0,0,210,4,0,0,0,6,220,0,140,6,13,37,5,0,0,16,184,20,0,0,176,41,0,0,0,3,0,211,0,8,0,0,0,1,54,149,0,14,3,0,0,173,41,3,1,0,0,1,0,1,0,0,0,425,6.738317757009346,23.55140186915888,6.9953271028037385,23.981308411214957,1.0,3.2818181818181817,2.1045454545454545,224,122,158,10,34,4,1,3,0,9,1,0,9,0,10,3,0,0,2,3,3,453,90,0,128,415,0,411,132,0,492,51,0,113,430,0,99,14,399,31,0,36,10,6,0,12,17,26,17,20,113,0,0,0,12,24,29,8,23,108,0,3,1,4,8,34,11,15,0,0,5,0,0,0,1,0,294,7,197,0,0,4,2,13,59,78,15,32,151,11,38,3,12,0,68,17,0,317,258,20,143,8,106,20,0,3,0,4,42,2,140,20,0,0,308,117,0,4,9,54,0,5,1,0,0,18,12,21,7,59,54,30,7,93,208,63,10,38,51,88,43,14,17,8,10,1,1,1,2,20,12.0,4.0,10.0,6.0,7.0,9.0,9.0,5.0,7.0,8.0,7.0,7.0,9.0,6.0,3.0,4.0,6.0,8.0,11.0,6.0,14.0,9.0,7.0,11.0,3.0,13.0,6.0,3.0,9.0,7.0,6.0,6.0,9.0,8.0,8.0,5.0,12.0,13.0,13.0,11.0,11.0,4.0,6.0,10.0,9.0,6.0,11.0,8.0,7.0,7.0,8.0,3.0,8.0,6.0,8.0,9.0,8.0,7.0,6.0,6.0,11.0,8.0,7.0,5.0,2.0,3.0,4.0,4.0,3.0,5.0,5.0,5.0,3.0,3.0,4.0,1.0,3.0,4.0,1.0,4.0,3.0,1.0,2.0,4.0,3.0,3.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,109,389,77,0,39,38,32,35,44,38,37,54,40,39,33,36,33,19,20,13,13,7,4,1,0,0,511,15,48,1,0,512,26,36,1,0,206,0,5,64,9,3,179,109,0,233,291,51,0,2,0,0,0,0,0,0,0,0,0,573,0,0,7,79,9,0,0,398,82,0,88,111,8,0,6,362,0,2.1785714285714284,0.0,3.0445859872611467,0.0,7.808695652173913,0,3,35,1,0,0,150,35,0,10,19,2,13,23,41,29,17,23,17,9,0,6,2,3,6,215,9,190,34,179,45,30,194,168,56,58,166,51,173,0,224,188,36,120,104,105,15,62,162,168,56,97,127,91,133,99,125,4,220,73,114,28,9,0,134,90,0,2,0,0,0,0,0,0,0,0,0,222,0,1.4151785714285714,1.1517857142857142,1.0,1.0,1.0,51.74107142857143 +70711,Los Santos,Tonosí,Isla de Cañas,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,59,4,125,5,1,0,0,3,0,118,0,1,7,0,0,8,0,0,26,60,42,2,4,0,0,129,5,0,0,0,0,134,0,35,14,15,25,18,0,0,6,119,9,0,0,117,9,2,0,4,2,0,130,0,0,0,0,4,0,22,103,0,9,0,0,0,131,1,1,0,0,0,0,0,1,0,0,0,241,6.651515151515151,22.83333333333333,6.704545454545454,23.01515151515152,1.0,3.283582089552239,2.1044776119402986,134,77,98,21,15,4,0,3,1,6,0,1,0,1,3,3,3,1,4,2,1,241,94,0,34,301,0,205,130,0,314,21,0,89,246,0,89,0,231,15,0,15,4,9,1,5,9,23,14,20,90,0,0,0,10,21,23,12,19,26,3,2,9,6,2,2,2,8,0,0,0,0,0,0,0,0,167,1,132,0,0,0,0,2,45,70,14,1,44,10,9,3,4,0,71,27,0,195,166,20,33,3,97,7,0,8,0,1,25,3,114,0,0,0,238,50,0,2,0,10,0,0,0,0,0,5,6,1,5,29,77,10,9,26,177,32,23,27,41,20,23,8,6,0,2,1,0,0,1,0,6.0,10.0,4.0,6.0,4.0,6.0,5.0,2.0,7.0,11.0,4.0,6.0,3.0,5.0,4.0,4.0,7.0,3.0,8.0,5.0,7.0,6.0,9.0,2.0,3.0,10.0,10.0,6.0,2.0,4.0,4.0,3.0,3.0,6.0,5.0,4.0,5.0,5.0,6.0,4.0,1.0,7.0,3.0,3.0,6.0,7.0,4.0,2.0,4.0,6.0,1.0,5.0,5.0,0.0,8.0,3.0,11.0,3.0,6.0,2.0,5.0,4.0,2.0,4.0,2.0,3.0,2.0,3.0,2.0,2.0,3.0,3.0,2.0,2.0,5.0,1.0,0.0,2.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,83,235,43,0,30,31,22,27,27,32,21,24,20,23,19,25,17,12,15,6,3,5,2,0,0,0,358,2,1,0,0,359,2,0,0,0,136,0,44,42,3,0,53,83,0,192,167,2,0,3,0,0,0,0,0,0,0,0,173,185,0,5,168,6,4,1,0,38,139,0,28,48,2,0,1,282,0,2.449275362318841,0.0,3.184466019417476,0.0,6.598337950138504,1,61,5,2,1,0,16,48,0,6,8,10,15,27,22,16,10,12,3,2,1,1,0,1,0,131,3,108,26,110,24,13,121,103,31,24,110,55,79,0,134,112,22,76,58,39,37,9,125,90,44,24,110,96,38,54,80,4,130,37,71,25,1,0,111,23,0,3,0,0,0,0,0,0,0,0,61,70,0,1.455223880597015,1.2388059701492538,0.0,1.0,1.0,50.73880597014925 +80201,Panamá,Balboa,San Miguel,605,5,0,0,0,0,0,0,0,0,0,0,0,0,0,3,141,103,22,241,6,1,0,4,10,7,246,0,3,12,0,4,0,0,4,213,7,34,12,2,0,1,259,4,0,1,0,5,269,7,125,15,4,74,116,0,0,20,234,12,2,1,264,2,0,1,2,0,0,265,1,0,2,0,0,1,183,83,0,1,2,0,259,0,0,0,2,0,0,0,0,1,5,2,0,610,5.409266409266409,4.019305019305019,6.0926640926640925,4.2084942084942085,1.0,3.527881040892193,2.483271375464684,269,129,246,16,46,5,4,3,1,6,0,0,13,0,9,9,3,0,4,0,4,538,149,0,13,674,0,45,642,0,621,66,0,176,511,0,174,2,490,21,0,21,8,14,2,22,22,25,22,26,128,0,1,1,44,46,102,24,35,126,0,1,2,4,2,3,0,6,0,0,0,0,0,0,0,0,336,9,268,0,0,2,7,20,108,110,5,25,99,28,16,4,37,0,16,138,0,399,339,48,30,3,249,7,0,1,0,0,21,1,174,3,0,0,468,139,1,0,0,5,0,0,0,0,0,4,3,7,15,51,148,26,11,80,464,86,33,40,37,28,30,7,8,2,0,0,0,0,0,3,18.0,13.0,10.0,10.0,11.0,10.0,15.0,16.0,15.0,7.0,17.0,10.0,16.0,15.0,18.0,15.0,12.0,13.0,7.0,16.0,12.0,10.0,8.0,6.0,7.0,5.0,15.0,4.0,8.0,6.0,7.0,6.0,6.0,13.0,13.0,9.0,13.0,18.0,12.0,11.0,12.0,13.0,5.0,15.0,6.0,11.0,12.0,2.0,4.0,7.0,8.0,8.0,8.0,16.0,10.0,4.0,11.0,5.0,7.0,8.0,8.0,8.0,7.0,1.0,5.0,5.0,10.0,7.0,4.0,5.0,2.0,4.0,4.0,4.0,2.0,4.0,2.0,2.0,4.0,4.0,1.0,2.0,2.0,3.0,1.0,3.0,0.0,2.0,2.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,201,453,84,0,62,63,76,63,43,38,45,63,51,36,50,35,29,31,16,16,9,7,5,0,0,0,718,6,0,14,0,718,6,0,14,0,278,2,65,40,18,2,132,201,0,587,148,3,0,28,1,1,0,0,1,1,1,0,0,705,0,14,47,393,95,0,0,142,47,0,44,40,22,1,0,631,0,2.834507042253521,0.0,3.5205479452054798,0.0,6.987804878048781,6,16,139,48,0,0,47,13,0,61,18,25,31,50,25,23,14,19,3,0,0,0,0,0,0,261,8,236,33,229,40,28,241,235,34,26,243,143,126,9,260,235,34,230,39,127,103,10,259,11,258,6,263,35,234,7,262,5,264,87,129,49,4,0,181,88,0,8,1,0,0,0,1,0,1,0,0,258,0,1.483271375464684,1.2602230483271375,0.0,1.0,1.0,50.613382899628256 +80202,Panamá,Balboa,La Ensenada,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,3,20,0,0,0,0,3,0,0,0,4,18,0,1,0,0,0,0,0,19,1,0,3,0,23,0,0,0,0,0,23,1,9,0,0,1,0,0,0,1,22,0,0,0,22,0,0,0,1,0,0,23,0,0,0,0,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,34,0.0,0.0,0.0,0.0,1.0,3.8260869565217392,2.8260869565217392,23,13,17,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,43,12,0,3,52,0,10,45,0,53,2,0,9,46,0,9,0,45,1,0,1,0,0,0,1,3,0,2,1,25,0,0,0,3,3,3,2,3,7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,25,0,28,0,0,0,0,1,8,16,1,2,5,2,0,1,0,0,4,13,0,32,23,5,0,1,19,0,0,0,0,1,6,1,6,0,0,0,45,7,0,0,1,0,0,0,0,0,0,1,1,1,0,2,18,0,0,2,20,11,6,3,8,2,4,1,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,2.0,1.0,1.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,2.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6,41,8,0,1,1,4,6,4,2,5,7,4,1,5,5,2,1,2,1,0,1,3,0,0,0,53,1,0,1,0,53,1,0,1,0,27,1,7,1,2,0,11,6,0,41,13,1,0,0,0,0,0,0,0,0,0,0,0,55,0,3,27,22,2,0,0,0,1,0,6,2,1,0,0,46,0,2.857142857142857,0.0,4.25,0.0,7.218181818181818,2,8,12,1,0,0,0,0,0,2,1,2,4,4,3,4,1,2,0,0,0,0,0,0,0,23,0,17,6,18,5,3,20,16,7,2,21,10,13,0,23,16,7,17,6,13,4,1,22,2,21,0,23,14,9,6,17,2,21,6,14,3,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,23,0,1.391304347826087,1.0,0.0,1.0,1.0,55.391304347826086 +80203,Panamá,Balboa,La Esmeralda,248,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,74,41,58,108,7,34,3,1,20,0,0,0,97,45,0,25,5,0,1,157,1,12,2,1,0,0,163,4,0,0,0,6,173,15,35,1,5,17,2,0,0,15,142,16,0,0,169,2,0,1,1,0,0,172,0,1,0,0,0,0,113,58,0,1,1,0,0,170,1,2,0,0,0,0,0,0,0,0,0,251,1.3567251461988303,2.3976608187134505,1.280701754385965,2.391812865497076,1.0,3.3179190751445087,2.3121387283237,175,111,187,32,34,3,4,5,0,6,1,5,7,0,4,1,0,5,0,0,0,290,208,0,19,479,0,76,422,0,444,54,0,120,378,0,120,0,351,27,0,27,2,13,3,14,13,31,15,23,110,0,0,1,28,52,88,22,23,28,0,0,0,1,1,1,0,1,0,1,0,0,0,0,0,0,231,5,190,0,0,2,3,1,63,110,2,14,31,20,7,1,11,0,22,141,0,308,262,17,5,1,206,3,0,1,0,2,16,0,161,0,0,0,392,30,1,0,0,3,0,0,0,0,0,4,2,1,4,31,162,9,1,22,366,51,31,50,39,15,11,4,1,2,0,0,0,0,0,0,13.0,24.0,16.0,19.0,11.0,11.0,12.0,12.0,9.0,17.0,8.0,5.0,7.0,10.0,12.0,10.0,10.0,15.0,10.0,14.0,12.0,13.0,11.0,12.0,15.0,9.0,9.0,12.0,7.0,12.0,8.0,8.0,10.0,5.0,7.0,3.0,9.0,9.0,8.0,7.0,8.0,7.0,8.0,4.0,5.0,7.0,12.0,5.0,5.0,5.0,5.0,6.0,1.0,2.0,4.0,1.0,2.0,4.0,5.0,3.0,3.0,3.0,2.0,3.0,3.0,0.0,2.0,0.0,1.0,1.0,1.0,2.0,0.0,5.0,2.0,2.0,2.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,186,358,26,0,83,61,42,59,63,49,38,36,32,34,18,15,14,4,10,6,4,1,1,0,0,0,540,1,0,29,0,540,1,0,29,0,203,0,39,53,9,3,77,186,0,445,125,0,0,18,0,0,0,0,0,2,0,0,3,547,0,16,314,144,33,4,0,17,42,0,17,23,1,0,0,529,0,2.77720207253886,0.0,3.389261744966443,0.0,5.740350877192983,6,96,45,14,0,0,3,11,0,27,23,11,29,32,18,13,11,7,1,0,1,0,0,0,0,166,9,122,53,93,82,10,165,119,56,9,166,84,91,2,173,110,65,128,47,95,33,8,167,19,156,1,174,51,124,16,159,7,168,40,98,37,0,1,136,39,0,6,0,0,0,0,0,0,0,0,0,169,0,1.75,1.4886363636363635,0.0,1.0,1.0,43.17714285714285 +80204,Panamá,Balboa,La Guinea,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,2,18,0,0,0,0,2,0,0,17,1,0,0,2,0,0,0,0,0,15,4,0,1,0,19,0,0,0,0,1,20,2,29,2,0,12,4,0,0,1,18,1,0,0,18,2,0,0,0,0,0,20,0,0,0,0,0,0,10,10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,69,7.0,22.0,6.25,19.9,1.0,3.65,2.65,20,12,7,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,33,8,0,4,37,0,7,34,0,40,1,0,5,36,0,5,0,34,2,0,2,0,1,0,0,0,1,3,2,19,0,0,0,1,5,3,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,1,20,0,1,0,0,0,4,14,1,1,7,1,0,0,1,0,11,0,0,22,20,7,0,0,12,0,0,1,0,1,3,1,9,0,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,2,0,1,11,0,1,5,30,2,3,1,3,1,1,1,0,0,0,0,0,0,0,0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,0.0,2.0,2.0,2.0,3.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5,22,15,0,1,1,3,1,2,2,1,0,4,6,0,1,5,10,3,2,0,0,0,0,0,0,42,0,0,0,0,42,0,0,0,0,23,0,0,7,1,0,6,5,0,27,15,0,0,0,0,0,0,0,0,1,0,0,1,40,0,0,18,19,2,2,0,1,0,0,9,9,0,0,0,24,0,4.555555555555555,0.0,4.176470588235294,0.0,6.214285714285714,0,8,10,1,0,0,1,0,0,8,2,3,1,2,2,0,2,0,0,0,0,0,0,0,0,19,1,16,4,15,5,3,17,9,11,0,20,12,8,0,20,15,5,12,8,0,12,1,19,1,19,0,20,17,3,6,14,1,19,7,11,2,0,0,15,5,0,0,0,0,0,0,0,0,0,0,0,20,0,1.1,1.0,0.0,1.0,1.0,59.65 +80205,Panamá,Balboa,Pedro González,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65,3,35,69,0,7,0,27,1,0,104,0,0,0,0,0,0,0,0,94,1,4,3,0,2,0,102,0,1,0,0,1,104,13,82,14,0,4,13,0,0,11,80,13,0,0,99,3,1,1,0,0,0,87,1,15,1,0,0,0,28,73,0,1,2,0,0,103,1,0,0,0,0,0,0,0,0,0,0,230,7.0,24.0,6.971153846153846,24.0,1.0,3.6538461538461537,2.5865384615384617,104,50,99,5,16,0,1,3,0,6,1,2,0,0,2,4,1,1,0,0,1,241,27,0,9,259,0,218,50,0,252,16,0,84,184,0,82,2,181,3,0,3,6,2,0,5,7,11,8,7,77,0,0,0,15,18,35,17,18,34,0,0,0,2,0,2,0,1,0,0,0,0,0,0,0,0,117,3,118,0,0,1,2,6,54,48,0,10,41,12,7,0,3,2,4,48,0,143,144,8,34,0,74,1,0,0,0,1,10,0,65,14,0,0,199,37,0,0,0,2,0,0,0,0,0,1,1,3,1,18,51,5,2,38,141,17,9,22,30,12,11,14,15,1,0,0,1,0,0,14,4.0,4.0,5.0,6.0,5.0,2.0,3.0,5.0,5.0,10.0,6.0,4.0,6.0,4.0,7.0,7.0,3.0,4.0,7.0,8.0,3.0,8.0,6.0,3.0,7.0,6.0,3.0,6.0,6.0,7.0,2.0,2.0,7.0,2.0,4.0,2.0,3.0,2.0,3.0,0.0,7.0,3.0,4.0,5.0,2.0,4.0,5.0,6.0,4.0,3.0,2.0,4.0,3.0,4.0,2.0,2.0,1.0,4.0,2.0,1.0,0.0,0.0,2.0,3.0,1.0,2.0,2.0,2.0,4.0,2.0,3.0,1.0,2.0,1.0,0.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,76,185,26,0,24,25,27,29,27,28,17,10,21,22,15,10,6,12,7,6,1,0,0,0,0,0,279,2,1,5,0,279,2,1,5,0,91,4,25,37,8,1,45,76,0,260,25,2,0,0,0,0,0,0,0,9,0,0,2,276,0,14,32,126,32,2,1,60,20,0,37,37,5,1,0,207,0,2.040983606557377,0.0,3.102564102564102,0.0,6.965156794425087,4,15,44,20,0,0,18,3,0,12,8,4,6,18,15,9,7,16,3,3,1,1,0,0,1,103,1,95,9,88,16,6,98,95,9,13,91,62,42,1,103,94,10,92,12,27,65,6,98,75,29,2,102,25,79,2,102,0,104,32,52,20,0,0,57,47,0,0,0,0,0,0,0,3,0,0,0,101,0,1.375,1.3846153846153846,0.0,1.0,1.0,47.99038461538461 +80206,Panamá,Balboa,Saboga,463,9,14,0,0,0,0,0,0,0,0,0,0,0,0,25,83,6,23,113,1,8,0,1,14,0,137,0,0,0,0,0,0,0,0,100,8,21,7,1,0,0,133,0,0,0,0,4,137,21,269,15,3,28,12,1,0,9,115,13,0,0,106,26,0,2,2,1,0,126,6,1,3,0,1,0,79,46,0,0,12,0,0,135,0,1,0,0,0,0,0,1,0,0,0,486,2.77037037037037,5.237037037037037,3.1481481481481484,5.925925925925926,1.0,3.18978102189781,2.1094890510948905,137,49,76,8,14,2,5,2,0,1,1,0,1,1,5,2,0,0,1,0,2,228,50,0,22,256,0,120,158,0,255,23,0,57,221,0,55,2,210,11,0,11,3,4,0,8,13,7,10,11,46,0,4,1,15,17,33,12,14,48,2,2,2,3,2,3,4,2,0,0,1,0,0,0,0,0,134,14,92,0,1,1,11,6,29,51,1,5,64,12,13,25,8,0,1,20,1,144,153,14,46,22,58,3,0,0,1,0,2,0,52,1,0,0,170,59,1,2,2,5,0,1,0,0,0,5,1,5,5,26,14,29,5,57,140,26,18,10,32,18,30,11,8,3,0,0,0,0,0,1,6.0,4.0,2.0,7.0,7.0,6.0,5.0,12.0,5.0,3.0,4.0,7.0,5.0,3.0,2.0,3.0,1.0,2.0,3.0,1.0,5.0,6.0,3.0,4.0,3.0,5.0,2.0,4.0,4.0,4.0,3.0,5.0,9.0,2.0,5.0,3.0,5.0,11.0,2.0,3.0,6.0,5.0,2.0,2.0,3.0,5.0,7.0,2.0,4.0,3.0,5.0,3.0,4.0,8.0,4.0,4.0,4.0,6.0,4.0,2.0,7.0,2.0,2.0,2.0,1.0,5.0,3.0,4.0,2.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,78,195,24,0,26,31,21,10,21,19,24,24,18,21,24,20,14,15,4,3,1,1,0,0,0,0,270,25,1,1,0,270,25,1,1,0,122,1,13,26,1,1,56,77,0,187,91,19,0,6,0,0,0,0,0,4,0,0,2,285,0,21,18,125,30,0,2,85,16,0,31,9,9,0,0,248,0,2.25,0.0,2.8541666666666665,0.0,7.336700336700336,9,8,55,18,0,1,36,10,0,15,9,13,15,19,15,19,7,18,7,0,0,0,0,0,0,134,3,132,5,117,20,16,121,126,11,39,98,89,48,2,135,129,8,125,12,86,39,15,122,71,66,12,125,42,95,6,131,2,135,57,56,22,2,0,80,57,0,3,0,0,0,0,0,0,0,0,1,133,0,1.051094890510949,1.1167883211678833,0.0,0.0,0.0,45.45255474452555 +80501,Panamá,Chepo,Chepo,14113,124,311,155,0,0,0,0,11,0,0,3,10,0,0,1157,6202,2839,327,9757,441,18,3,0,282,24,9676,140,26,328,25,124,194,1,11,7879,118,2148,54,43,5,278,10170,202,46,1,0,106,10525,2,1581,847,415,884,449,0,673,646,8302,631,16,257,8493,1537,1,472,2,19,1,10424,28,27,7,19,19,1,3775,5618,2,1064,62,4,5166,1639,51,324,50,74,5,67,1771,773,595,10,6609,8118,5.881563593932322,15.764148191365228,6.061989498249709,16.814760793465577,1.0197624703087886,3.1002375296912112,1.9004275534441808,10746,5799,13072,990,1798,326,433,285,84,403,111,92,281,5,457,227,95,154,145,36,166,26611,5315,0,6952,24974,0,23034,8892,0,29186,2740,0,10303,21623,0,9187,1116,19695,1928,0,1964,264,621,93,888,1070,1275,1053,1100,4418,3,11,62,1372,1886,2910,1140,1666,6326,26,161,424,564,620,671,666,450,45,23,139,0,1,3,11,0,12450,1464,13716,0,41,647,203,949,6113,5694,578,382,8244,767,1658,478,1544,69,499,270,78,17212,17213,2270,6234,425,4243,195,10,128,102,98,867,133,10715,89,0,0,17412,7952,66,164,330,1551,31,114,10,0,105,450,796,1065,750,2940,698,2549,1526,3035,18738,2029,1020,1357,1711,2304,3710,1607,1182,402,159,43,36,18,20,89,548.0,628.0,643.0,680.0,696.0,735.0,672.0,774.0,715.0,704.0,741.0,677.0,604.0,648.0,575.0,596.0,684.0,587.0,581.0,548.0,559.0,606.0,645.0,618.0,620.0,618.0,601.0,604.0,537.0,554.0,555.0,539.0,504.0,512.0,504.0,447.0,496.0,471.0,469.0,468.0,480.0,442.0,436.0,459.0,414.0,413.0,403.0,405.0,387.0,363.0,340.0,324.0,321.0,310.0,334.0,272.0,315.0,261.0,248.0,248.0,200.0,205.0,185.0,200.0,172.0,191.0,166.0,161.0,138.0,129.0,107.0,118.0,115.0,111.0,103.0,93.0,83.0,74.0,82.0,90.0,64.0,66.0,46.0,58.0,50.0,43.0,36.0,35.0,25.0,22.0,31.0,17.0,16.0,18.0,4.0,8.0,7.0,3.0,8.0,3.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10040,22060,2325,0,3195,3600,3245,2996,3048,2914,2614,2351,2231,1971,1629,1344,962,785,554,422,284,161,86,29,4,0,33546,523,237,119,0,33561,543,202,119,0,9275,424,1809,4148,709,162,7861,10037,0,9879,24220,326,0,382,1324,66,6,10,3,1099,972,12,446,30105,0,1758,2082,2567,485,149,86,7485,19813,0,6491,7956,972,99,17,18890,0,2.096876807403123,0.0,2.998083067092652,0.0,7.55599128540305,605,694,924,242,75,43,2488,5675,0,813,501,399,621,959,1240,1769,1173,1550,802,417,192,176,54,47,20,10522,224,8893,1853,8644,2102,1252,9494,9440,1306,1555,9191,5084,5662,1149,9597,10020,726,8603,2143,4994,3609,2538,8208,7908,2838,3305,7441,2265,8481,1641,9105,194,10552,2163,6242,2144,197,11,6215,4531,0,82,350,20,2,5,2,277,223,5,159,9621,0,1.6000743701775588,1.6001673328995072,1.2884615384615383,1.0251396648044693,1.0251396648044693,45.755816117625166 +80502,Panamá,Chepo,Cañita,1224,0,0,1,0,0,0,0,16,0,0,1,1,0,0,72,719,89,16,850,30,6,0,0,9,1,844,0,2,26,4,1,18,0,1,726,2,151,1,15,0,1,858,30,2,0,0,6,896,4,190,35,26,27,47,0,4,65,750,76,0,1,719,174,0,2,1,0,0,885,2,3,0,0,6,0,189,652,0,43,12,0,573,251,24,4,0,13,0,27,0,2,2,0,0,1243,6.788915094339623,23.60495283018868,6.817216981132075,23.56132075471698,1.0066964285714286,3.5066964285714284,2.2723214285714284,904,475,869,99,180,18,28,28,10,48,10,5,86,4,37,14,8,10,10,15,4,2181,405,0,378,2208,0,1783,803,0,2332,254,0,708,1878,0,636,72,1736,142,0,149,15,39,14,80,93,150,95,88,493,1,1,4,85,101,214,107,137,444,3,17,28,45,49,45,50,23,4,0,11,0,0,0,1,0,968,81,1281,0,10,27,16,107,434,646,50,44,596,85,53,20,105,0,179,7,1,1417,1347,138,459,15,357,51,0,14,12,4,183,14,948,6,0,0,1601,579,5,15,17,99,3,10,1,0,13,46,50,43,52,223,115,119,130,258,1446,283,82,138,199,246,171,76,69,22,17,2,4,2,1,6,44.0,39.0,53.0,42.0,28.0,44.0,40.0,49.0,45.0,50.0,54.0,39.0,41.0,42.0,34.0,46.0,48.0,52.0,44.0,45.0,47.0,31.0,48.0,33.0,40.0,42.0,45.0,50.0,38.0,43.0,32.0,40.0,45.0,37.0,36.0,32.0,36.0,34.0,33.0,28.0,27.0,28.0,31.0,23.0,20.0,37.0,47.0,29.0,27.0,44.0,34.0,34.0,35.0,31.0,35.0,30.0,27.0,34.0,20.0,30.0,22.0,32.0,30.0,18.0,25.0,24.0,17.0,23.0,21.0,17.0,20.0,12.0,27.0,24.0,12.0,25.0,15.0,6.0,11.0,11.0,15.0,6.0,10.0,16.0,7.0,12.0,5.0,5.0,1.0,5.0,4.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,644,1755,365,0,206,228,210,235,199,218,190,163,129,184,169,141,127,102,95,68,54,28,13,3,2,0,2694,44,20,6,0,2694,47,17,6,0,748,24,49,427,95,13,764,644,0,912,1812,40,0,35,119,6,0,8,0,114,7,0,35,2440,0,30,77,154,18,23,6,708,1748,0,388,645,111,7,1,1612,0,2.358724534986714,0.0,3.142326732673267,0.0,7.267366136034732,10,28,47,7,9,3,275,525,0,98,82,28,73,115,138,106,66,91,51,18,12,11,5,5,3,879,25,769,135,752,152,190,714,755,149,141,763,371,533,22,882,847,57,673,231,309,364,193,711,655,249,308,596,238,666,307,597,4,900,208,471,192,33,16,588,316,0,9,20,2,0,3,0,24,0,0,16,830,0,1.5402173913043478,1.4641304347826087,1.2,1.0701754385964912,1.0701754385964912,53.18030973451327 +80504,Panamá,Chepo,El Llano,1671,50,0,0,0,0,0,0,1,0,0,12,1,1,0,158,528,368,57,1017,37,39,1,0,13,4,768,1,9,248,11,6,65,0,3,571,6,515,9,6,1,3,1056,44,0,0,0,11,1111,5,372,49,2,110,72,0,1,21,917,161,8,3,617,423,0,9,0,58,4,1064,5,8,0,2,30,2,151,701,1,180,78,0,42,660,66,32,7,103,1,30,1,5,158,6,0,1736,5.321614583333333,16.578125,5.427083333333333,17.065104166666668,1.0144014401440145,3.090909090909091,2.018901890189019,1140,613,1081,162,158,24,19,31,5,28,18,7,26,0,51,15,11,12,24,9,16,2242,832,0,227,2847,0,1335,1739,0,2699,375,0,861,2213,0,822,39,1961,252,0,256,30,68,19,93,120,185,157,127,711,0,5,11,131,171,215,96,86,401,9,6,27,38,31,27,32,13,3,2,4,0,0,0,0,0,1065,145,1472,0,5,36,51,66,484,766,52,104,349,109,89,22,100,3,368,88,56,1803,1509,110,403,13,481,49,0,70,58,7,178,22,1266,146,0,0,2078,497,12,6,20,63,2,4,0,0,27,22,26,44,41,152,367,109,75,347,1936,339,96,152,191,175,124,63,60,11,11,1,2,2,3,146,49.0,52.0,68.0,69.0,61.0,63.0,67.0,59.0,65.0,77.0,64.0,61.0,46.0,62.0,56.0,49.0,59.0,44.0,53.0,45.0,47.0,66.0,46.0,50.0,52.0,49.0,55.0,48.0,50.0,43.0,37.0,48.0,44.0,50.0,40.0,43.0,39.0,40.0,50.0,36.0,38.0,43.0,24.0,33.0,31.0,29.0,37.0,42.0,32.0,39.0,36.0,34.0,39.0,46.0,39.0,37.0,33.0,33.0,33.0,34.0,34.0,26.0,27.0,30.0,26.0,26.0,21.0,21.0,21.0,21.0,27.0,19.0,17.0,14.0,17.0,11.0,17.0,19.0,16.0,9.0,12.0,13.0,10.0,3.0,6.0,6.0,6.0,5.0,2.0,1.0,5.0,4.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,919,2038,355,0,299,331,289,250,261,245,219,208,169,179,194,170,143,110,94,72,44,20,12,2,1,0,3256,25,19,12,0,3256,26,18,12,0,1001,42,73,403,81,7,786,919,0,1174,2121,17,0,31,144,25,0,1,0,194,7,2,47,2861,0,60,62,226,23,2,1,973,1965,0,278,574,64,9,1,2386,0,2.532456861133936,0.0,3.3731679819616684,0.0,6.167874396135265,20,21,94,11,2,1,366,625,0,170,134,52,130,152,149,87,52,83,30,15,4,7,3,3,56,1104,36,725,415,793,347,123,1017,712,428,73,1067,422,718,20,1120,996,144,686,454,297,389,106,1034,612,528,230,910,496,644,515,625,13,1127,325,615,179,21,2,863,277,0,5,41,5,0,1,0,52,1,1,12,1022,0,1.5788091068301229,1.3213660245183887,0.0,1.0357142857142858,1.0357142857142858,49.924561403508775 +80505,Panamá,Chepo,Las Margaritas,2198,371,7,8,0,0,0,0,1,0,0,1,0,0,0,25,1418,334,48,1687,90,15,0,0,30,3,1574,42,5,129,7,3,64,0,1,1544,16,229,4,28,2,2,1704,82,3,0,0,36,1825,0,324,77,40,136,182,0,15,126,1301,217,14,152,1431,333,2,41,3,14,1,1798,0,12,0,5,10,0,630,996,0,178,21,0,1550,113,14,4,1,54,0,66,0,18,4,1,2169,417,6.278473464519976,17.273703041144902,6.364937388193202,17.803220035778175,1.0164383561643835,3.219178082191781,2.004931506849315,1856,979,1940,166,327,41,85,42,21,88,25,2,85,1,127,94,18,42,47,32,26,4489,834,0,1414,3909,0,3618,1705,0,4835,488,0,1563,3760,0,1337,226,3411,349,0,359,32,83,23,126,194,242,177,185,760,0,2,6,189,298,457,176,223,998,14,70,69,83,96,140,157,100,17,4,39,1,0,0,3,0,2128,239,2358,0,9,92,71,236,942,941,130,109,1276,145,300,62,250,6,256,11,26,2914,2744,503,930,61,733,48,2,29,26,20,268,32,1585,11,0,0,2919,1329,6,48,40,335,12,33,3,0,6,95,182,212,153,418,134,398,264,505,2725,500,233,354,358,364,441,272,233,89,44,9,16,5,4,11,65.0,90.0,92.0,88.0,113.0,88.0,87.0,115.0,99.0,96.0,104.0,101.0,94.0,94.0,83.0,103.0,93.0,79.0,80.0,84.0,94.0,85.0,84.0,98.0,89.0,89.0,91.0,74.0,87.0,79.0,93.0,70.0,80.0,80.0,84.0,75.0,77.0,76.0,86.0,87.0,71.0,77.0,63.0,58.0,76.0,63.0,66.0,76.0,70.0,60.0,55.0,74.0,54.0,74.0,51.0,62.0,52.0,58.0,53.0,63.0,57.0,43.0,67.0,46.0,56.0,35.0,41.0,30.0,24.0,38.0,31.0,26.0,22.0,38.0,33.0,28.0,24.0,31.0,22.0,27.0,15.0,13.0,15.0,18.0,14.0,10.0,9.0,6.0,7.0,6.0,2.0,4.0,2.0,3.0,5.0,3.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1409,3662,587,0,448,485,476,439,450,420,407,401,345,335,308,288,269,168,150,132,75,38,16,7,1,0,5560,52,34,12,0,5565,57,24,12,0,1497,82,552,776,172,37,1133,1409,0,2686,2927,45,0,25,182,15,0,1,1,65,105,0,63,5201,0,186,325,336,46,35,14,962,3754,0,985,1368,229,28,2,3046,0,2.157342657342657,0.0,2.968827930174564,0.0,7.802403676210675,61,111,130,24,12,3,347,1168,0,137,109,64,153,220,202,196,189,255,130,84,40,42,15,15,4,1760,96,1491,365,1536,320,261,1595,1521,335,351,1505,759,1097,181,1675,1642,214,1419,437,1020,399,517,1339,1240,616,607,1249,473,1383,484,1372,13,1843,438,946,417,55,1,1196,660,0,3,49,5,0,1,0,15,19,0,22,1742,0,1.5691976305869682,1.477652127086699,1.3333333333333333,1.048780487804878,1.048780487804878,50.68588362068966 +80503,Panamá,Chepo,Chepillo,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,19,5,45,3,1,0,0,4,0,51,1,0,0,0,0,1,0,0,0,0,50,2,0,1,0,53,0,0,0,0,0,53,0,59,3,0,3,9,0,0,0,47,5,1,0,48,3,0,2,0,0,0,53,0,0,0,0,0,0,25,28,0,0,0,0,0,51,0,2,0,0,0,0,0,0,0,0,0,127,3.117647058823529,4.686274509803922,4.15686274509804,5.980392156862745,1.0,3.4339622641509435,2.0,53,39,56,6,18,3,2,9,1,6,1,0,1,0,3,2,1,2,1,0,1,125,54,0,4,175,0,69,110,0,156,23,0,24,155,0,23,1,137,18,0,18,0,1,0,1,5,10,3,5,88,0,0,0,6,8,22,3,3,4,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,73,1,84,0,0,0,0,4,13,54,6,7,12,1,2,0,0,0,0,59,0,106,89,6,17,0,42,5,0,4,0,1,19,2,70,1,0,0,152,5,0,0,0,1,0,0,0,0,0,2,0,1,2,1,47,4,1,16,124,23,9,16,9,8,3,1,0,0,0,1,0,0,0,1,5.0,4.0,3.0,4.0,6.0,4.0,2.0,0.0,4.0,5.0,2.0,5.0,1.0,4.0,1.0,6.0,3.0,1.0,6.0,3.0,4.0,2.0,4.0,7.0,3.0,4.0,6.0,2.0,0.0,1.0,0.0,2.0,0.0,1.0,4.0,3.0,0.0,3.0,1.0,3.0,4.0,6.0,1.0,1.0,2.0,2.0,3.0,2.0,3.0,2.0,1.0,3.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,2.0,3.0,1.0,1.0,1.0,3.0,3.0,5.0,1.0,2.0,0.0,1.0,2.0,1.0,1.0,1.0,4.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,50,116,29,0,22,15,13,19,20,13,7,10,14,12,7,5,9,11,6,10,1,1,0,0,0,0,191,1,0,3,0,191,1,0,3,0,89,0,7,14,4,0,31,50,0,130,64,1,0,6,0,0,0,0,0,25,9,0,4,151,0,4,19,48,2,1,3,87,31,0,8,25,3,1,0,158,0,2.45945945945946,0.0,3.6,0.0,5.384615384615385,2,7,16,1,1,1,21,4,0,5,4,3,14,6,10,3,5,2,0,0,1,0,0,0,0,53,0,42,11,43,10,2,51,45,8,8,45,26,27,0,53,46,7,44,9,28,16,1,52,28,25,1,52,27,26,14,39,0,53,10,23,19,1,0,42,11,0,1,0,0,0,0,0,3,2,0,1,46,0,2.0,1.679245283018868,0.0,1.0,1.0,53.62264150943396 +80506,Panamá,Chepo,Santa Cruz de Chinina,623,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,342,38,359,14,18,1,1,18,0,0,0,17,321,3,7,61,0,2,0,0,377,21,10,2,1,360,49,0,0,0,2,411,11,107,16,1,38,34,7,0,0,386,23,1,1,94,310,2,1,3,0,1,397,2,1,0,0,11,0,12,207,3,171,18,0,0,80,65,105,78,72,1,4,0,0,6,0,0,625,5.503448275862069,17.131034482758622,5.917241379310345,19.572413793103447,1.0,2.8661800486618003,1.708029197080292,411,260,402,27,44,17,11,4,2,14,2,2,2,2,21,17,7,2,5,0,10,589,543,0,23,1109,0,149,983,0,999,133,0,249,883,0,240,9,763,120,0,121,2,7,1,40,40,79,56,62,385,0,0,0,42,55,72,18,41,86,1,2,2,1,4,5,2,5,3,0,0,0,0,0,0,0,475,17,526,0,5,5,6,6,152,299,29,40,32,23,7,4,4,1,316,97,0,690,510,16,196,1,199,31,0,41,0,30,82,4,441,7,0,0,907,97,0,0,1,11,2,0,0,0,0,5,4,8,1,16,214,13,7,224,798,152,58,64,56,33,9,4,9,2,7,0,0,0,1,7,15.0,18.0,20.0,15.0,13.0,11.0,22.0,22.0,22.0,24.0,23.0,16.0,22.0,21.0,22.0,23.0,18.0,22.0,19.0,19.0,20.0,16.0,26.0,14.0,17.0,18.0,13.0,13.0,19.0,8.0,21.0,6.0,19.0,12.0,11.0,18.0,13.0,21.0,21.0,14.0,23.0,17.0,23.0,18.0,14.0,15.0,17.0,14.0,12.0,19.0,16.0,17.0,23.0,11.0,17.0,12.0,9.0,13.0,7.0,6.0,11.0,5.0,11.0,7.0,10.0,16.0,8.0,6.0,9.0,8.0,12.0,14.0,7.0,12.0,5.0,8.0,4.0,3.0,7.0,4.0,3.0,1.0,2.0,4.0,4.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,286,768,146,0,81,101,104,101,93,71,69,87,95,77,84,47,44,47,50,26,14,4,3,1,1,0,1186,3,7,4,0,1186,6,4,4,0,401,8,24,178,43,4,256,286,0,552,637,11,0,23,34,5,0,0,0,9,1,0,5,1123,0,9,106,130,4,93,1,455,402,0,26,78,10,0,0,1086,0,2.884892086330935,0.0,3.924398625429553,0.0,5.54,3,42,47,2,38,1,143,135,0,83,60,40,60,81,48,13,6,6,2,7,2,1,0,1,1,393,18,61,350,124,287,45,366,34,377,3,408,101,310,4,407,226,185,161,250,35,126,4,407,34,377,32,379,222,189,248,163,6,405,106,229,73,3,0,370,41,0,8,12,2,0,0,0,3,0,0,2,384,0,1.6788321167883211,1.2408759124087592,0.0,1.0714285714285714,1.0714285714285714,50.80778588807786 +80507,Panamá,Chepo,Comarca Kuna de Madungandi,1272,2,0,3,0,0,0,0,0,0,0,0,0,0,0,6,299,105,661,389,21,16,536,9,6,94,452,25,20,426,20,3,115,2,8,83,21,420,395,10,142,0,460,607,2,1,0,1,1071,31,91,20,16,35,13,0,0,9,1054,8,0,0,181,524,3,5,353,1,4,503,1,0,0,20,547,0,53,219,14,721,55,9,14,662,4,1,1,1,2,373,0,2,8,3,0,1277,5.877941176470588,16.96323529411765,6.379411764705883,20.70441176470588,1.0028011204481793,1.9028944911297847,0.8141923436041083,1074,869,3303,175,1206,45,57,145,73,376,143,20,161,0,35,15,8,4,12,0,11,3897,2671,0,225,6343,0,1374,5194,0,4209,2359,0,2158,4410,0,2125,33,2657,1753,0,1773,82,226,1,268,353,421,374,396,1353,0,0,0,214,232,411,67,112,202,0,3,9,12,17,11,7,20,1,0,3,0,0,0,0,0,2349,32,2756,0,4,6,9,23,1064,1577,35,57,218,387,47,11,35,7,1541,126,0,3815,3832,70,177,7,1961,9,10,138,0,496,155,13,2939,5,0,0,4851,245,0,4,3,33,0,1,0,0,1,12,43,34,16,94,1592,391,38,160,6573,395,121,157,152,112,65,21,23,12,4,1,3,0,3,5,294.0,303.0,248.0,234.0,241.0,260.0,228.0,233.0,247.0,222.0,226.0,208.0,190.0,188.0,197.0,166.0,170.0,173.0,152.0,149.0,173.0,127.0,115.0,121.0,110.0,138.0,107.0,101.0,109.0,100.0,106.0,96.0,99.0,89.0,75.0,68.0,59.0,62.0,69.0,60.0,64.0,45.0,72.0,54.0,49.0,53.0,24.0,46.0,43.0,67.0,87.0,47.0,53.0,27.0,23.0,27.0,27.0,22.0,53.0,49.0,32.0,31.0,16.0,30.0,25.0,17.0,15.0,21.0,19.0,17.0,17.0,13.0,21.0,24.0,9.0,15.0,25.0,5.0,8.0,4.0,7.0,4.0,5.0,3.0,5.0,6.0,0.0,1.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,3519,3860,266,2,1320,1190,1009,810,646,555,465,318,284,233,237,178,134,89,84,57,24,9,3,0,0,2,7150,8,3,486,0,7150,9,2,486,0,2632,7,266,134,189,3,913,3503,0,5870,1767,10,0,6981,16,0,0,0,0,16,2,0,6,626,0,13,30,30,1,2,2,70,7499,0,83,163,21,3,0,7377,0,3.027016595908916,0.0,4.016235718580878,0.0,3.4688112985484505,2,8,15,1,0,1,23,1024,0,94,73,125,176,234,138,95,53,55,19,3,3,4,0,2,0,771,303,372,702,222,852,102,972,382,692,29,1045,278,796,30,1044,690,384,336,738,141,195,72,1002,227,847,79,995,807,267,167,907,23,1051,61,435,506,72,0,942,132,2,863,2,0,0,0,0,4,0,0,3,202,0,3.5521415270018624,3.567970204841713,1.3333333333333333,1.025,1.025,46.809701492537314 +80601,Panamá,Chimán,Chimán,353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,153,33,195,27,6,1,2,20,4,0,80,9,132,1,4,27,0,2,0,3,172,70,3,7,0,223,31,0,0,0,1,255,3,43,6,0,27,19,0,0,9,239,7,0,0,82,167,0,4,2,0,0,236,2,0,0,8,9,0,40,105,0,39,71,0,0,228,1,4,2,0,0,16,0,0,4,0,0,353,4.423580786026201,12.296943231441048,6.74235807860262,23.37991266375546,1.0,3.196078431372549,1.9333333333333331,255,177,423,29,82,3,11,8,3,13,5,1,3,0,10,8,3,4,6,2,1,521,391,0,49,863,0,238,674,0,753,159,0,291,621,0,291,0,537,84,0,86,6,39,3,30,50,39,61,48,210,1,5,0,45,49,99,18,43,63,0,2,1,4,3,2,3,2,0,0,0,0,0,0,0,0,470,5,293,0,0,4,1,5,141,123,11,13,43,170,11,5,11,1,83,147,0,540,473,32,31,3,393,5,0,7,0,37,34,5,278,2,0,0,688,74,0,1,1,4,0,0,0,0,1,5,10,11,5,15,206,169,3,50,600,117,71,83,33,50,21,11,13,11,1,0,0,0,0,2,19.0,24.0,30.0,28.0,25.0,29.0,25.0,19.0,26.0,20.0,28.0,18.0,24.0,22.0,20.0,22.0,18.0,16.0,19.0,13.0,17.0,19.0,9.0,19.0,10.0,18.0,11.0,10.0,11.0,9.0,4.0,9.0,11.0,13.0,12.0,13.0,15.0,12.0,14.0,17.0,13.0,14.0,5.0,11.0,11.0,17.0,15.0,7.0,14.0,9.0,10.0,13.0,4.0,17.0,8.0,7.0,11.0,7.0,11.0,4.0,6.0,9.0,3.0,12.0,10.0,4.0,5.0,4.0,3.0,6.0,4.0,2.0,2.0,5.0,6.0,3.0,3.0,1.0,6.0,3.0,1.0,2.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,357,589,67,0,126,119,112,88,74,59,49,71,54,62,52,40,40,22,19,16,6,3,0,1,0,0,1002,1,2,8,0,1002,1,2,8,0,354,1,16,50,18,0,217,357,0,758,243,12,0,4,12,1,0,0,0,100,528,0,1,367,0,3,31,52,19,0,3,105,800,0,25,48,4,1,0,935,0,3.169054441260745,0.0,4.293617021276596,0.0,5.237907206317868,2,9,15,12,0,3,38,176,0,10,16,25,32,53,49,22,13,10,10,8,2,4,0,0,1,247,8,60,195,106,149,26,229,59,196,2,253,79,176,0,255,173,82,118,137,25,93,5,250,8,247,7,248,116,139,71,184,3,252,43,146,63,3,0,216,39,0,4,3,1,0,0,0,18,101,0,0,128,0,2.117647058823529,1.8549019607843136,0.0,1.1666666666666667,1.1666666666666667,49.86666666666667 +80602,Panamá,Chimán,Brujas,339,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,108,45,140,1,23,0,5,13,4,0,0,7,142,9,8,19,0,1,0,0,173,7,6,0,0,163,21,0,0,0,2,186,7,89,7,1,29,21,0,0,3,173,10,0,0,29,150,4,1,0,1,1,162,2,2,0,0,20,0,10,90,0,43,42,1,0,85,16,16,5,4,0,55,0,0,2,3,0,340,5.910891089108911,14.05940594059406,6.455445544554456,20.99009900990099,1.0,2.924731182795699,1.7956989247311828,186,134,209,32,21,6,5,6,1,5,3,0,6,0,8,2,1,0,6,0,2,301,264,0,30,535,0,182,383,0,477,88,0,136,429,0,136,0,365,64,0,66,3,2,0,21,39,43,28,29,130,0,0,0,30,27,59,15,20,41,0,0,4,1,2,1,2,1,0,0,1,0,0,0,0,0,245,12,227,0,0,7,5,1,78,128,6,14,22,15,7,2,3,0,168,36,0,362,252,14,43,2,182,9,0,3,0,14,30,1,191,8,0,0,431,49,0,0,1,3,0,0,0,0,0,2,2,4,3,8,154,17,5,62,424,59,32,26,21,14,15,6,6,1,1,0,1,0,0,8,10.0,9.0,16.0,14.0,12.0,12.0,18.0,15.0,11.0,13.0,12.0,10.0,4.0,12.0,12.0,15.0,10.0,11.0,12.0,8.0,8.0,10.0,12.0,12.0,4.0,10.0,6.0,11.0,5.0,7.0,8.0,7.0,3.0,7.0,6.0,5.0,10.0,8.0,12.0,4.0,6.0,8.0,6.0,7.0,7.0,12.0,8.0,15.0,5.0,7.0,6.0,11.0,5.0,3.0,8.0,9.0,3.0,10.0,8.0,4.0,5.0,5.0,5.0,5.0,4.0,2.0,8.0,3.0,3.0,3.0,1.0,1.0,3.0,2.0,3.0,7.0,3.0,1.0,3.0,0.0,4.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,180,383,51,0,61,69,50,56,46,39,31,39,34,47,33,34,24,19,10,14,5,3,0,0,0,0,590,6,7,11,0,591,6,6,11,0,236,0,6,67,2,1,123,179,0,247,361,6,0,3,3,0,0,0,0,123,18,0,6,461,0,5,27,82,12,3,2,241,242,0,15,21,1,0,0,577,0,2.9170731707317072,0.0,3.8333333333333335,0.0,5.322475570032573,3,6,28,2,1,1,80,65,0,37,20,26,24,29,13,8,7,11,4,1,0,2,0,0,4,179,7,30,156,62,124,16,170,26,160,3,183,36,150,0,186,87,99,85,101,68,17,8,178,41,145,28,158,120,66,96,90,2,184,36,114,31,5,0,162,24,0,1,1,0,0,0,0,21,3,0,0,160,0,1.946236559139785,1.3548387096774193,0.0,1.0,1.0,48.72043010752688 +80603,Panamá,Chimán,Gonzalo Vásquez,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,9,34,29,1,18,2,11,3,0,0,0,4,54,0,2,3,0,1,0,0,52,0,4,8,0,62,1,0,0,0,1,64,0,27,0,0,30,2,0,0,0,62,2,0,0,14,48,0,1,0,1,0,63,0,0,0,0,1,0,0,54,0,0,10,0,0,55,1,2,5,1,0,0,0,0,0,0,0,123,5.785714285714286,18.678571428571427,6.714285714285714,23.375,1.0,3.140625,2.0,64,35,77,4,15,0,2,0,1,6,1,0,2,0,4,2,0,0,1,0,0,75,106,0,5,176,0,66,115,0,143,38,0,41,140,0,41,0,109,31,0,31,1,4,0,8,14,19,6,9,34,0,0,0,8,5,25,2,7,7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,86,6,55,0,0,2,4,3,16,29,4,3,4,5,2,0,2,0,24,51,0,123,84,4,0,0,83,0,0,1,0,6,8,0,58,0,0,0,139,7,0,0,0,0,0,1,0,0,0,0,0,1,4,3,74,4,1,5,140,28,5,10,7,10,4,0,0,1,1,0,0,1,0,0,6.0,8.0,3.0,9.0,3.0,7.0,8.0,2.0,7.0,7.0,3.0,3.0,3.0,1.0,5.0,2.0,4.0,2.0,3.0,3.0,0.0,5.0,5.0,7.0,2.0,4.0,1.0,5.0,2.0,0.0,3.0,3.0,1.0,1.0,2.0,1.0,3.0,4.0,1.0,1.0,0.0,1.0,1.0,4.0,4.0,0.0,0.0,4.0,4.0,0.0,2.0,4.0,3.0,2.0,3.0,1.0,1.0,2.0,0.0,1.0,2.0,0.0,2.0,2.0,2.0,3.0,3.0,0.0,0.0,1.0,2.0,1.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,75,110,22,0,29,31,15,14,19,12,10,10,10,8,14,5,8,7,7,2,2,4,0,0,0,0,202,0,0,5,0,202,0,0,5,0,75,1,0,17,4,0,35,75,0,138,62,7,0,2,0,0,0,0,0,15,94,0,2,94,0,4,17,26,3,0,1,38,118,0,1,6,5,0,0,195,0,3.946428571428572,0.0,4.478260869565218,0.0,4.2898550724637685,3,8,12,3,0,0,9,29,0,10,10,5,12,11,6,4,2,1,0,2,0,0,0,1,0,63,1,14,50,29,35,4,60,15,49,1,63,27,37,0,64,21,43,29,35,19,10,3,61,5,59,9,55,26,38,11,53,0,64,24,26,12,2,0,53,11,0,2,0,0,0,0,0,5,15,0,1,41,0,1.921875,1.3125,0.0,0.0,0.0,51.15625 +80604,Panamá,Chimán,Pásiga,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,77,38,88,3,25,1,5,5,2,0,0,2,108,0,0,18,0,1,0,0,114,9,5,1,0,92,37,0,0,0,0,129,8,24,1,0,5,10,0,0,1,122,6,0,0,18,109,0,1,1,0,0,115,2,1,0,0,11,0,1,35,0,58,35,0,0,42,31,12,1,29,0,12,0,0,1,1,0,177,6.2465753424657535,19.013698630136982,6.849315068493151,22.534246575342465,1.0,2.4031007751937983,1.248062015503876,129,79,212,13,16,1,1,2,0,5,1,0,0,0,4,4,0,0,4,0,2,207,212,0,8,411,0,56,363,0,365,54,0,121,298,0,121,0,250,48,0,49,1,5,2,11,12,33,24,32,119,0,0,0,18,21,43,5,17,24,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,146,10,209,0,2,2,3,2,77,120,7,3,11,1,4,0,0,0,105,32,0,260,199,8,57,0,59,12,1,16,0,19,12,1,198,0,0,0,338,25,0,0,0,2,0,0,0,0,0,3,0,1,2,3,60,5,1,81,348,35,19,19,14,14,5,3,1,0,0,0,0,0,1,0,10.0,7.0,12.0,11.0,9.0,5.0,10.0,5.0,12.0,13.0,13.0,8.0,13.0,5.0,15.0,8.0,10.0,7.0,10.0,12.0,12.0,7.0,11.0,7.0,11.0,6.0,10.0,2.0,1.0,6.0,4.0,4.0,2.0,11.0,5.0,7.0,5.0,7.0,12.0,10.0,10.0,5.0,5.0,4.0,6.0,2.0,4.0,5.0,6.0,4.0,2.0,5.0,5.0,2.0,2.0,4.0,4.0,4.0,2.0,1.0,4.0,3.0,2.0,2.0,1.0,4.0,3.0,3.0,0.0,3.0,2.0,1.0,2.0,3.0,0.0,0.0,1.0,0.0,0.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,148,281,30,0,49,45,54,47,48,25,26,41,30,21,16,15,12,13,8,3,5,0,0,1,0,0,449,0,1,9,0,449,0,1,9,0,142,1,2,40,8,0,118,148,0,310,148,1,0,6,1,0,0,0,0,21,113,0,3,315,0,8,76,16,4,69,2,21,263,0,6,13,1,1,0,438,0,2.9,0.0,4.516483516483516,0.0,5.137254901960785,2,23,7,2,26,0,9,60,0,28,9,17,20,29,15,5,2,2,1,0,0,0,0,1,0,110,19,7,122,21,108,7,122,7,122,2,127,25,104,0,129,62,67,32,97,13,19,1,128,12,117,4,125,29,100,45,84,4,125,40,71,18,0,0,110,19,0,1,1,0,0,0,0,2,21,0,0,104,0,2.0155038759689923,1.5426356589147288,0.0,1.0,1.0,48.24806201550388 +80605,Panamá,Chimán,Unión Santeña,412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,166,32,196,25,8,1,3,17,3,0,83,8,103,0,15,40,0,4,0,3,236,5,5,3,1,219,25,0,0,0,9,253,0,105,9,0,17,28,0,0,1,228,24,0,0,55,197,0,0,0,1,0,225,0,2,0,4,22,0,19,134,0,59,41,0,0,207,10,3,2,1,0,25,0,1,4,0,0,412,5.059907834101383,19.566820276497698,6.0691244239631335,23.797235023041477,1.0039525691699605,2.869565217391304,1.7233201581027668,254,168,333,36,40,1,4,1,1,5,2,1,3,0,16,10,3,1,6,3,2,426,348,0,20,754,0,147,627,0,671,103,0,213,561,0,213,0,500,61,0,62,7,16,1,36,48,56,36,40,184,3,1,0,35,38,76,22,26,67,0,0,7,0,2,5,2,1,1,0,1,0,0,0,1,0,323,12,321,0,1,7,4,4,114,173,18,12,24,35,13,1,4,1,183,73,0,493,356,18,70,1,218,18,0,9,0,34,47,5,205,6,0,0,569,75,0,0,2,8,1,0,1,0,0,3,7,4,5,9,158,39,1,109,564,81,54,53,30,29,16,3,7,4,0,2,0,0,0,6,10.0,26.0,18.0,21.0,25.0,20.0,14.0,20.0,24.0,15.0,16.0,13.0,16.0,15.0,15.0,19.0,11.0,6.0,22.0,14.0,13.0,13.0,16.0,11.0,17.0,8.0,9.0,13.0,14.0,18.0,11.0,16.0,13.0,11.0,7.0,7.0,11.0,9.0,11.0,14.0,12.0,14.0,12.0,14.0,11.0,7.0,6.0,7.0,8.0,11.0,9.0,5.0,4.0,12.0,7.0,6.0,9.0,3.0,7.0,7.0,10.0,4.0,6.0,4.0,3.0,4.0,6.0,3.0,7.0,5.0,1.0,5.0,10.0,2.0,3.0,3.0,5.0,1.0,2.0,2.0,2.0,1.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,268,512,69,0,100,93,75,72,70,62,58,52,63,39,37,32,27,25,21,13,9,1,0,0,0,0,841,1,0,7,0,841,1,0,7,0,311,0,21,55,13,0,181,268,0,487,362,0,0,4,1,1,0,0,0,17,249,0,10,567,0,4,30,62,5,3,0,332,413,0,13,68,3,1,0,764,0,3.357933579335793,0.0,4.221674876847291,0.0,5.458186101295642,3,12,17,2,0,0,114,106,0,30,22,33,45,41,32,21,6,13,6,1,2,0,0,0,2,237,17,74,180,101,153,25,229,26,228,1,253,37,217,0,254,150,104,100,154,29,71,3,251,14,240,10,244,141,113,150,104,3,251,64,150,38,2,0,218,36,0,0,0,1,0,0,0,3,50,0,4,196,0,1.940944881889764,1.4015748031496065,0.0,1.1111111111111112,1.1111111111111112,49.267716535433074 +80801,Panamá,Panamá,San Felipe,33,0,722,138,0,0,0,0,0,0,0,107,47,0,0,392,0,0,0,290,102,0,0,0,0,0,391,0,0,0,0,0,0,0,1,392,0,0,0,0,0,0,318,0,64,0,0,10,392,70,137,37,80,126,48,3,13,176,74,126,3,0,302,90,0,0,0,0,0,298,19,16,45,14,0,0,267,25,0,0,100,0,392,0,0,0,0,0,0,0,0,0,0,0,1047,0,6.926020408163265,23.540816326530614,6.926020408163265,23.553571428571427,1.0076530612244898,2.5816326530612246,1.3877551020408163,524,193,336,18,42,17,21,8,2,3,4,8,75,7,18,12,5,6,8,7,14,1071,112,10,639,544,10,843,340,10,1128,57,8,286,903,4,182,104,876,23,4,27,21,25,1,15,17,24,18,28,72,1,1,8,27,51,103,28,59,249,2,17,5,13,18,28,26,109,34,8,129,0,1,1,18,9,625,53,389,8,6,26,12,76,148,128,18,19,477,49,42,15,71,7,0,7,1,624,634,209,266,13,156,18,2,1,4,0,8,0,377,82,8,8,398,281,9,20,8,195,27,111,17,9,5,151,115,73,37,128,5,54,19,91,482,36,16,33,54,78,106,60,69,61,38,20,31,22,70,82,21.0,17.0,13.0,14.0,24.0,20.0,19.0,16.0,15.0,24.0,13.0,16.0,15.0,16.0,17.0,18.0,14.0,9.0,12.0,14.0,9.0,10.0,21.0,16.0,13.0,18.0,16.0,16.0,20.0,20.0,23.0,19.0,21.0,20.0,23.0,26.0,14.0,17.0,21.0,19.0,22.0,27.0,21.0,18.0,12.0,26.0,14.0,17.0,16.0,12.0,15.0,16.0,18.0,18.0,19.0,11.0,14.0,18.0,18.0,16.0,18.0,14.0,17.0,17.0,10.0,11.0,5.0,10.0,6.0,12.0,8.0,9.0,9.0,10.0,8.0,7.0,4.0,9.0,8.0,4.0,2.0,6.0,3.0,3.0,3.0,0.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,260,853,145,0,89,94,77,67,69,90,106,97,100,85,86,77,76,44,44,32,17,4,3,1,0,0,1008,162,72,6,10,1015,172,55,6,10,223,15,14,267,29,28,416,260,6,403,636,207,12,29,6,5,0,0,0,2,5,0,17,1183,11,35,51,82,16,6,10,169,878,11,343,189,77,8,11,620,10,1.5342205323193916,0.0152091254752851,2.4842767295597485,0.0251572327044025,10.922893481717011,16,22,29,6,2,5,76,286,0,34,12,5,11,20,27,45,29,41,30,21,12,20,14,39,35,421,21,409,33,344,98,43,399,392,50,211,231,232,210,71,371,425,17,390,52,246,144,213,229,281,161,133,309,1,441,3,439,2,440,214,222,71,18,24,247,195,0,10,4,3,0,0,0,1,0,0,8,416,0,1.1366120218579234,1.1548269581056467,1.5,1.0,1.0,50.1447963800905 +80802,Panamá,Panamá,El Chorrillo,47,10,6205,863,13,0,0,1,0,0,0,2,18,0,0,6034,13,9,9,5380,676,1,0,0,5,3,6062,0,0,1,0,0,0,0,2,6064,0,0,0,0,0,1,5824,0,107,0,0,134,6065,10,490,21,81,405,42,11,933,1224,2863,865,32,148,5814,246,0,0,0,4,1,1857,15,825,3235,130,0,3,2921,2865,4,0,259,16,6060,0,0,0,0,0,0,0,0,0,3,2,7159,0,6.962046204620462,23.412211221122117,6.962046204620462,23.426072607260725,1.0037922506183017,2.307666941467436,1.291838417147568,6107,2063,5560,301,1103,177,317,216,24,115,35,89,228,0,326,98,45,117,92,55,143,13047,2298,0,3904,11441,0,8297,7048,0,14592,753,0,4349,10996,0,3783,566,10598,398,0,425,193,249,37,280,317,410,377,351,1049,10,24,84,653,986,2275,764,1213,3873,30,51,224,267,285,256,152,430,16,10,46,1,0,0,4,3,5613,715,7369,0,13,380,144,1099,2577,3273,249,171,4416,238,446,122,797,53,4,52,3,7899,8436,1824,2560,106,1576,41,12,6,6,8,181,69,5889,96,1,1,7917,4784,93,47,92,704,13,42,2,3,45,248,358,566,710,1640,69,920,403,1369,8363,939,479,656,931,1013,2193,891,529,140,66,18,10,7,4,96,214.0,247.0,270.0,259.0,293.0,260.0,248.0,243.0,310.0,294.0,300.0,280.0,243.0,278.0,258.0,250.0,268.0,233.0,239.0,244.0,242.0,286.0,311.0,257.0,237.0,282.0,247.0,239.0,225.0,195.0,239.0,200.0,217.0,238.0,174.0,183.0,193.0,205.0,213.0,194.0,181.0,184.0,224.0,221.0,204.0,196.0,205.0,211.0,208.0,165.0,218.0,177.0,217.0,193.0,172.0,185.0,191.0,177.0,222.0,173.0,166.0,171.0,188.0,157.0,140.0,154.0,146.0,109.0,133.0,142.0,103.0,83.0,128.0,91.0,98.0,71.0,69.0,59.0,53.0,39.0,51.0,27.0,36.0,38.0,24.0,13.0,15.0,12.0,13.0,23.0,10.0,13.0,9.0,1.0,1.0,4.0,4.0,4.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3997,10557,1781,0,1283,1355,1359,1234,1333,1188,1068,988,1014,985,977,948,822,684,503,291,176,76,34,14,3,0,15439,564,238,94,0,15449,585,207,94,0,3845,204,722,1453,459,107,5548,3997,0,9769,6096,470,0,311,77,5,7,2,0,74,11,0,278,15570,0,1594,1336,1352,446,68,153,3449,7937,0,3381,2887,1108,111,11,8837,0,1.981920112123336,0.0001401541695865,2.787247214197276,0.0002063557573256,8.636792164064891,655,543,588,230,38,83,1313,2657,0,950,272,189,303,513,541,1012,646,861,440,183,82,43,15,7,31,5974,133,5722,385,4900,1207,414,5693,5341,766,2318,3789,3601,2506,972,5135,5524,583,5723,384,4268,1455,1317,4790,3134,2973,947,5160,59,6048,50,6057,75,6032,1825,2774,1364,144,15,2930,3177,0,65,37,3,3,2,0,27,2,0,111,5857,0,1.290264619405423,1.3779810519438092,1.16,1.0466666666666666,1.0466666666666666,50.15523170132634 +80803,Panamá,Panamá,Santa Ana,80,17,6212,1022,4,0,0,3,0,0,0,5,27,0,0,5109,13,3,11,4357,768,0,0,0,10,1,5134,0,0,0,0,0,1,0,1,5129,6,0,1,0,0,0,4837,0,114,0,0,185,5136,193,296,76,165,1140,316,9,418,2454,1619,443,45,157,4768,364,0,2,0,2,0,2351,1,16,2501,267,0,0,4103,668,1,0,363,1,5133,0,1,0,0,0,0,0,0,2,0,0,7370,0,6.968835216205688,23.74814959096221,6.974873393065836,23.788079470198674,1.013239875389408,2.4721573208722742,1.416861370716511,5231,1894,3988,207,810,157,291,228,32,151,77,115,311,3,312,147,49,47,85,69,71,11353,1447,11,3805,8995,11,8838,3962,11,12251,549,11,3167,9636,8,2597,570,9238,395,3,407,114,161,19,231,222,325,243,312,885,1,16,93,432,649,1338,659,1192,3288,24,47,227,248,310,290,275,647,29,10,101,1,0,1,3,11,5938,563,5166,11,31,264,134,1025,1885,1925,145,186,4065,181,542,216,1198,84,3,28,26,6725,6770,1247,2724,184,2100,52,1,6,29,12,123,29,3899,274,3,3,5998,4332,97,37,92,1004,18,86,3,11,40,289,494,563,563,2084,48,793,340,1287,5551,616,250,565,900,1170,2052,944,731,256,99,34,25,15,13,274,163.0,161.0,184.0,176.0,192.0,190.0,181.0,184.0,181.0,205.0,212.0,186.0,177.0,183.0,179.0,165.0,187.0,168.0,189.0,190.0,176.0,237.0,211.0,210.0,209.0,217.0,242.0,203.0,189.0,223.0,197.0,190.0,219.0,207.0,177.0,186.0,201.0,197.0,209.0,184.0,190.0,182.0,224.0,220.0,197.0,180.0,187.0,175.0,184.0,161.0,205.0,173.0,152.0,165.0,162.0,174.0,152.0,166.0,162.0,148.0,149.0,124.0,142.0,133.0,106.0,111.0,110.0,112.0,116.0,81.0,87.0,72.0,81.0,64.0,85.0,77.0,61.0,56.0,47.0,50.0,49.0,26.0,35.0,32.0,36.0,21.0,20.0,25.0,13.0,20.0,10.0,7.0,10.0,7.0,5.0,4.0,4.0,4.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2754,9196,1544,1,876,941,937,899,1043,1074,990,977,1013,887,857,802,654,530,389,291,178,99,39,15,3,1,10488,2387,588,23,9,10502,2506,455,23,9,3085,186,1477,1852,433,194,3510,2754,4,4309,7504,1671,11,1081,71,8,2,5,0,67,11,1,140,12098,11,730,474,907,218,67,91,4016,6981,11,2781,1967,1073,57,13,7593,11,1.757312925170068,0.0005102040816326,2.554060913705584,0.0007614213197969,9.318340125972584,331,232,433,114,25,59,1651,2384,2,358,157,96,214,370,544,886,554,910,507,271,115,103,30,24,65,5028,203,4887,344,4273,958,446,4785,4709,522,1760,3471,2777,2454,1093,4138,4823,408,4689,542,2950,1739,1377,3854,3293,1938,923,4308,33,5198,28,5203,31,5200,1754,2109,1171,197,12,2888,2343,0,214,30,4,1,1,0,23,0,1,50,4905,2,1.2826625977493802,1.291245470150677,1.193181818181818,1.0264900662251657,1.0264900662251657,50.24985662397247 +80804,Panamá,Panamá,La Exposición o Calidonia,125,2,9203,525,4,0,0,0,0,0,4,6,41,31,0,6923,9,0,2,6466,466,0,0,0,2,0,6933,0,0,0,0,1,0,0,0,6251,680,1,1,1,0,0,6022,0,779,0,0,133,6934,57,681,48,1118,944,72,1,839,3565,1857,636,11,26,6592,341,0,1,0,0,0,1588,14,68,5167,97,0,0,5794,842,5,0,291,2,6885,14,0,0,0,0,0,0,0,35,0,0,9941,0,6.975793593274387,23.778373677344543,6.976228438904189,23.78272213364256,1.0226420536486875,2.7186328237669457,1.6052783386212863,7137,2537,4360,207,573,287,423,311,45,116,59,122,1097,26,370,114,50,49,75,93,77,14880,1499,180,9037,7341,181,12828,3551,180,15867,514,178,3892,12667,0,2508,1384,12125,362,180,398,151,151,30,239,223,322,252,311,911,1,7,70,392,565,1241,490,995,4262,18,112,205,277,418,828,1041,1417,148,29,792,1,7,18,54,183,8570,701,6013,113,28,288,114,1334,2225,1676,221,557,6443,539,876,235,932,77,9,23,25,8677,8623,1863,4483,182,2369,197,1,19,45,3,95,20,4641,852,18,18,5399,5230,73,155,228,3208,122,743,56,183,48,1064,1695,1143,761,2136,32,853,350,1189,6310,421,291,444,877,1228,2092,1306,1335,644,415,210,349,147,379,852,163.0,165.0,199.0,214.0,208.0,189.0,173.0,184.0,199.0,209.0,218.0,194.0,201.0,203.0,191.0,207.0,189.0,176.0,199.0,232.0,221.0,245.0,254.0,276.0,264.0,295.0,286.0,296.0,284.0,301.0,300.0,306.0,324.0,320.0,332.0,327.0,316.0,319.0,322.0,286.0,308.0,279.0,326.0,267.0,231.0,283.0,234.0,238.0,244.0,200.0,246.0,207.0,239.0,223.0,183.0,208.0,208.0,183.0,192.0,196.0,190.0,177.0,168.0,153.0,151.0,127.0,137.0,124.0,125.0,104.0,111.0,109.0,90.0,90.0,95.0,89.0,61.0,66.0,81.0,50.0,58.0,49.0,51.0,22.0,35.0,23.0,30.0,16.0,20.0,17.0,22.0,12.0,16.0,12.0,4.0,11.0,3.0,4.0,5.0,4.0,1.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,2910,12411,1880,99,949,954,1007,1003,1260,1462,1582,1570,1411,1199,1098,987,839,617,495,347,215,106,66,27,7,99,12734,3555,897,31,83,12754,3757,675,31,83,3596,234,967,2802,474,337,5816,2909,165,3721,11333,2153,93,492,60,17,3,3,1,83,6,0,448,16012,175,1480,820,1008,353,79,133,2969,10282,176,4480,2258,1306,64,115,8936,141,1.3519553072625698,0.0023385734701831,2.275963054742059,0.0040549673349853,10.85485549132948,654,381,427,192,45,78,1251,4109,0,451,121,96,186,368,469,732,633,1110,760,491,272,388,199,510,305,6958,179,6770,367,6043,1094,607,6530,6091,1046,3775,3362,3681,3456,2092,5045,6798,339,6563,574,4439,2124,3725,3412,5519,1618,2653,4484,99,7038,68,7069,50,7087,2539,2887,1289,422,40,3817,3320,0,116,36,8,2,1,1,24,5,0,208,6736,0,1.209000975337885,1.201476940225721,1.2989690721649485,1.0656565656565655,1.0656565656565655,47.9862687403671 +80805,Panamá,Panamá,Curundú,1349,155,4109,31,0,0,0,0,0,0,0,6,30,0,0,4733,30,17,117,4523,257,0,5,0,23,89,4889,0,0,0,0,3,1,0,4,4896,1,0,0,0,0,0,4738,1,32,0,0,126,4897,4,320,24,126,210,63,0,1092,572,2821,323,12,77,4603,190,0,65,0,38,1,2889,1,2,1923,74,0,8,3351,1316,4,3,157,66,4891,0,0,0,0,0,1,0,0,2,1,2,5680,0,6.9838478838683296,23.2046616233899,6.986301369863014,23.25598037211204,1.0191954257708802,2.678578721666326,1.649377169695732,5027,1946,5842,270,1149,147,296,294,26,184,42,71,164,0,306,88,38,58,105,59,48,12193,2170,0,2763,11600,0,8670,5693,0,13413,950,0,4514,9849,0,3934,580,9302,547,0,565,160,301,53,378,390,492,417,491,1306,8,8,73,819,1120,1997,710,1045,2772,21,15,172,228,206,203,95,258,13,7,38,0,0,0,2,0,5294,756,6489,0,23,407,154,624,2722,2797,231,115,3910,262,607,134,739,135,1,13,20,7580,7878,1497,2394,120,1753,19,0,12,26,4,146,50,5716,426,0,0,8418,3470,81,21,50,456,10,31,2,0,33,172,286,454,497,1693,30,856,315,1714,8422,801,329,478,788,905,1937,805,400,114,28,8,7,2,8,426,241.0,261.0,288.0,305.0,286.0,326.0,284.0,324.0,300.0,304.0,315.0,328.0,283.0,277.0,294.0,253.0,272.0,316.0,258.0,261.0,285.0,315.0,299.0,274.0,275.0,299.0,259.0,223.0,215.0,195.0,215.0,182.0,215.0,221.0,202.0,181.0,220.0,218.0,200.0,190.0,218.0,223.0,200.0,172.0,187.0,171.0,194.0,157.0,183.0,159.0,169.0,108.0,189.0,143.0,163.0,141.0,160.0,137.0,137.0,118.0,148.0,103.0,117.0,104.0,101.0,94.0,95.0,85.0,70.0,69.0,69.0,59.0,60.0,52.0,39.0,58.0,37.0,37.0,23.0,38.0,29.0,23.0,27.0,13.0,18.0,21.0,10.0,19.0,12.0,10.0,7.0,4.0,4.0,5.0,1.0,2.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4416,9945,1097,0,1381,1538,1497,1360,1448,1191,1035,1009,1000,864,772,693,573,413,279,193,110,72,21,6,3,0,14616,608,169,65,0,14622,623,148,65,0,3818,139,508,1162,328,55,5034,4414,0,9453,5497,508,0,563,181,19,7,6,1,1006,192,0,251,13232,0,1026,1162,1847,762,74,296,3829,6462,0,3005,2845,633,71,9,8895,0,2.097953444774254,0.0,2.9604926795259123,0.0,7.736253072842541,395,435,651,342,26,134,1127,1917,0,635,230,129,250,406,464,861,565,694,348,154,65,54,8,13,115,4884,143,4621,406,4224,803,368,4659,4654,373,1821,3206,2707,2320,424,4603,4584,443,4645,382,2485,2160,1005,4022,2682,2345,675,4352,36,4991,25,5002,49,4978,1240,2351,1318,118,0,2441,2586,0,118,45,6,2,1,0,233,48,0,97,4477,0,1.5078575691267158,1.5671374577282673,1.1153846153846154,1.0364583333333333,1.0364583333333333,47.2699423115178 +80806,Panamá,Panamá,Betania,8331,10,13154,158,30,0,0,10,0,0,9,6,19,0,0,15395,73,7,3,15374,101,0,0,0,2,1,15469,0,1,5,0,1,0,0,2,14936,515,17,1,0,0,9,14743,1,664,0,0,70,15478,2092,798,153,1179,1704,129,120,3363,4500,7192,278,124,21,15460,15,1,0,0,1,1,7194,505,468,7157,146,0,8,13994,1440,8,3,33,0,15112,0,0,0,0,0,0,0,0,365,0,1,21727,0,6.969428268925357,23.44706193753309,6.9753176283748015,23.509197988353627,1.0303010724899857,4.070680966533144,2.544967050006461,15972,7306,11140,467,1441,1093,957,586,290,408,198,314,1444,583,1021,231,162,193,257,91,229,38531,2427,9,30636,10322,9,37512,3446,9,39941,1014,12,9962,31005,0,3766,6196,30480,510,15,643,369,459,49,383,436,528,443,538,1719,3,13,244,548,695,1488,665,1166,7826,42,508,760,1159,1904,3489,5396,3557,881,350,4171,14,52,48,378,43,21411,1384,15882,7,50,406,174,6654,5475,2734,339,680,17107,1702,1767,849,1081,33,22,13,70,19057,23142,4250,11653,913,4723,905,1,98,101,6,116,30,10418,1795,15,15,7603,12136,267,675,706,12047,831,3975,401,43,167,3869,6493,3654,1434,3336,42,1254,661,1885,11941,579,510,716,1704,3269,3771,3112,4547,2978,2174,1259,1645,867,1332,1795,287.0,293.0,304.0,348.0,364.0,380.0,363.0,374.0,402.0,400.0,403.0,398.0,433.0,422.0,426.0,424.0,416.0,421.0,474.0,438.0,510.0,539.0,613.0,575.0,592.0,641.0,669.0,583.0,639.0,653.0,674.0,685.0,657.0,730.0,646.0,622.0,623.0,678.0,623.0,625.0,627.0,576.0,629.0,577.0,546.0,600.0,567.0,620.0,575.0,577.0,580.0,567.0,588.0,524.0,589.0,518.0,505.0,537.0,546.0,509.0,511.0,445.0,472.0,408.0,427.0,450.0,403.0,398.0,367.0,383.0,358.0,369.0,406.0,371.0,357.0,372.0,325.0,336.0,315.0,338.0,295.0,237.0,240.0,231.0,222.0,204.0,203.0,160.0,150.0,113.0,124.0,97.0,79.0,70.0,60.0,43.0,41.0,38.0,28.0,22.0,10.0,8.0,5.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5597,28370,8232,0,1596,1919,2082,2173,2829,3185,3392,3171,2955,2939,2848,2615,2263,2001,1861,1686,1225,830,430,172,27,0,31833,6304,4021,40,1,31959,7367,2832,40,1,4825,683,987,12443,2318,1563,13765,5596,19,6275,32279,3623,22,131,280,29,2,5,0,26,4,2,963,40747,10,2239,1225,906,251,205,248,3934,33178,13,12774,6311,7330,180,256,15338,10,1.3447130898377215,0.0007014918393116,2.1626861042183623,0.0011631513647642,12.973222114268111,927,505,409,145,99,127,1676,12083,1,439,79,79,152,368,711,948,905,2066,1785,1454,1091,1708,1150,2469,543,15761,211,15691,281,14967,1005,2956,13016,14508,1464,11418,4554,8785,7187,9100,6872,15577,395,15174,798,13154,2020,12304,3668,14870,1102,11462,4510,594,15378,359,15613,137,15835,3860,7153,3470,1489,49,8917,7055,0,41,99,11,2,1,0,12,2,1,379,15423,1,1.1895012795705635,1.444479121153486,1.278592375366569,1.0703883495145632,1.0703883495145632,53.99330077635863 +80807,Panamá,Panamá,Bella Vista,585,0,20201,32,15,0,0,0,0,0,10,10,5,0,0,13715,16,1,0,13703,29,0,0,0,0,0,13730,0,0,1,0,0,0,0,1,12028,1667,2,0,0,0,35,12420,0,1277,0,0,35,13732,817,1041,254,2203,2652,66,53,2912,6533,4163,107,16,1,13729,3,0,0,0,0,0,1304,55,134,12237,0,0,2,13094,581,10,0,45,2,13094,0,0,0,0,0,0,0,0,638,0,0,20858,0,6.990377272032992,23.90659844203452,6.988162517183443,23.90675118374828,1.0497378386251093,3.823041071948733,2.31160792309933,14427,6189,7607,241,344,592,584,235,155,126,119,238,2237,616,716,115,93,101,150,166,132,31013,1387,219,27737,4663,219,30766,1634,219,31771,621,227,7075,25528,16,1576,5499,25042,272,214,369,326,336,33,304,339,294,326,333,1069,8,7,62,326,404,663,388,748,5730,37,593,315,579,1113,3767,4373,3382,786,282,4415,12,46,44,508,302,19215,884,10770,26,67,306,92,3757,3747,2149,317,800,15054,1853,1634,710,674,20,29,10,35,15601,18109,2246,11975,815,4086,757,7,30,103,2,14,6,8472,3775,96,96,4327,7690,68,658,546,11724,754,4293,533,302,191,4958,6214,3138,914,2548,34,538,262,1302,9023,190,212,305,672,1645,2304,2307,3420,2239,1882,1105,1719,907,2005,3775,253.0,252.0,294.0,292.0,315.0,257.0,288.0,309.0,287.0,268.0,271.0,295.0,324.0,279.0,280.0,283.0,281.0,290.0,283.0,289.0,329.0,334.0,391.0,407.0,466.0,496.0,600.0,570.0,668.0,662.0,701.0,686.0,733.0,693.0,686.0,703.0,704.0,633.0,647.0,632.0,600.0,553.0,537.0,581.0,539.0,504.0,533.0,476.0,480.0,422.0,489.0,438.0,455.0,428.0,448.0,446.0,393.0,383.0,377.0,377.0,395.0,334.0,363.0,315.0,312.0,285.0,312.0,316.0,283.0,268.0,243.0,244.0,255.0,272.0,218.0,210.0,200.0,189.0,193.0,183.0,161.0,151.0,123.0,123.0,105.0,97.0,103.0,79.0,70.0,74.0,55.0,56.0,47.0,41.0,27.0,30.0,21.0,14.0,16.0,5.0,7.0,8.0,2.0,6.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,4264,24345,5096,5,1406,1409,1449,1426,1927,2996,3499,3319,2810,2415,2258,1976,1719,1464,1232,975,663,423,226,86,27,5,19291,8491,5803,116,9,19416,10508,3661,116,9,3787,305,354,10609,1352,1276,11744,4264,19,3416,23747,6384,163,63,111,13,2,1,0,21,5,2,444,32772,276,1160,338,487,140,61,93,2190,28971,270,10519,4238,3658,126,661,14443,65,1.1213379053119172,0.0057751308428081,2.041898818809895,0.0106975707599732,13.624265796499555,568,178,265,80,35,47,1150,12098,6,358,31,30,77,187,381,606,752,1469,1414,1246,931,1457,1020,2789,1667,14274,153,14285,142,13666,761,1844,12583,11777,2650,12272,2155,7202,7225,7340,7087,14197,230,13721,706,12241,1480,12333,2094,13833,594,10280,4147,315,14112,252,14175,164,14263,4912,6272,1619,1624,28,8022,6405,2,28,50,6,1,0,0,8,3,2,209,14114,6,1.07928052576963,1.2527845036319614,1.3037542662116042,1.0508982035928145,1.0508982035928145,48.98835355285962 +80808,Panamá,Panamá,Pueblo Nuevo,2939,2,8734,341,9,0,0,1,0,0,0,1,25,0,0,9151,35,0,6,8848,338,0,0,0,6,0,9189,0,1,2,0,0,0,0,0,8020,1172,0,0,0,0,0,8852,1,286,0,0,53,9192,183,399,285,603,1296,50,8,3236,2962,2652,141,110,91,9091,96,0,3,0,2,0,4000,118,83,4975,4,0,12,8323,782,1,1,85,0,9064,0,0,0,0,0,0,0,0,128,0,0,12052,0,6.978596646072374,23.715688437775817,6.980582524271845,23.748676081200355,1.02763272410792,3.6496953872932982,2.302980852915579,9472,4330,6391,254,548,532,488,280,167,180,125,217,944,239,364,140,56,93,134,61,93,22174,1054,24,17915,5313,24,21787,1441,24,22605,615,32,5970,17261,21,2164,3806,17040,208,13,284,274,258,18,273,338,342,340,330,717,3,7,117,377,457,820,412,740,4266,26,359,308,504,962,1872,2724,2632,457,218,2557,3,21,36,160,40,13612,770,7214,24,43,233,81,2318,3038,1434,142,282,11175,873,1106,444,652,17,12,11,17,11187,12980,2196,8488,469,2634,459,6,36,19,3,75,16,5940,1574,10,10,4161,6317,126,342,422,7114,469,2461,168,40,91,2645,4048,2413,933,1848,24,831,423,1126,7055,357,330,345,726,1333,2072,1839,2530,1685,1288,796,1000,502,735,1574,217.0,214.0,214.0,270.0,267.0,271.0,255.0,257.0,296.0,286.0,316.0,259.0,286.0,265.0,274.0,239.0,228.0,236.0,238.0,239.0,260.0,272.0,277.0,292.0,300.0,356.0,394.0,414.0,409.0,475.0,464.0,479.0,541.0,512.0,494.0,496.0,517.0,494.0,481.0,461.0,518.0,451.0,460.0,462.0,409.0,387.0,373.0,340.0,334.0,319.0,330.0,314.0,288.0,249.0,260.0,267.0,249.0,241.0,216.0,214.0,180.0,196.0,209.0,187.0,190.0,186.0,165.0,190.0,180.0,169.0,169.0,152.0,146.0,136.0,148.0,129.0,131.0,127.0,110.0,111.0,98.0,80.0,86.0,63.0,64.0,46.0,53.0,46.0,40.0,31.0,22.0,21.0,21.0,9.0,17.0,14.0,12.0,4.0,12.0,9.0,4.0,4.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3947,17211,3009,0,1182,1365,1400,1180,1401,2048,2490,2449,2300,1753,1441,1187,962,890,751,608,391,216,90,51,12,0,17467,4361,2288,30,21,17562,5144,1410,30,21,3580,305,556,6479,769,619,7897,3947,15,3640,18544,1944,39,93,158,24,1,2,0,26,4,1,377,23431,50,1678,676,488,230,94,200,2357,18394,50,8322,3821,2550,72,142,9232,28,1.2148350709280464,0.0008545547769612,2.0546747666320937,0.0014817009927396,12.85852608929532,712,303,230,121,52,107,1083,6855,9,178,63,48,93,204,366,510,530,1108,1028,916,748,1016,662,1356,620,9353,119,9320,152,8835,637,1237,8235,8565,907,6939,2533,4784,4688,4598,4874,9257,215,9001,471,7779,1222,7206,2266,8842,630,6669,2803,252,9220,177,9295,101,9371,2468,4371,1735,898,10,5442,4030,0,32,59,7,0,0,0,9,2,1,153,9200,9,1.179814385150812,1.368909512761021,1.2007042253521127,1.04014598540146,1.04014598540146,48.104201858108105 +80809,Panamá,Panamá,San Francisco,3154,0,28293,248,14,6,0,2,0,0,0,21,13,0,0,22664,154,1,4,22634,185,0,0,0,2,2,22814,0,1,5,0,0,1,0,2,17538,5271,5,1,0,0,8,21147,0,1608,0,0,68,22823,1371,1407,728,1581,3643,113,29,6337,8724,7481,196,38,47,22788,30,0,2,0,3,0,3134,190,314,19080,104,0,1,21584,1142,19,2,74,2,21940,0,253,0,0,0,0,0,0,628,2,0,31751,0,6.992430045509845,23.942008741495066,6.991889334474834,23.95070517730816,1.0308898917758402,4.089471147526618,2.482013758051089,23562,12043,16875,483,784,1097,966,496,313,249,178,386,1922,1936,742,162,121,203,213,124,167,56160,2488,4,49157,9491,4,55935,2713,4,57095,1555,2,14028,44622,2,2802,11226,44203,417,2,650,821,892,49,732,675,835,777,812,2021,5,14,123,734,919,1750,813,1575,10251,36,750,733,1156,2179,6543,6686,6395,1462,604,6946,24,54,59,568,9,34090,1496,18812,2,112,611,164,5236,7639,4688,310,939,25914,3598,2186,2140,1359,33,28,78,73,28243,33047,3033,21286,2347,7010,1420,11,92,210,2,95,19,17716,5257,1,1,9306,14148,140,923,1187,20172,1519,6408,588,9,552,9127,9215,5369,1506,4669,115,1121,620,3292,18936,503,422,643,1627,3101,3958,3337,5182,3564,3132,2049,3072,1663,4844,5257,642.0,646.0,641.0,709.0,691.0,696.0,738.0,711.0,675.0,741.0,671.0,710.0,691.0,678.0,620.0,680.0,603.0,585.0,538.0,629.0,582.0,616.0,679.0,767.0,752.0,825.0,879.0,955.0,988.0,1076.0,1166.0,1182.0,1314.0,1303.0,1237.0,1224.0,1241.0,1189.0,1151.0,1122.0,1138.0,1085.0,1100.0,1040.0,976.0,1006.0,972.0,889.0,840.0,886.0,866.0,840.0,805.0,758.0,747.0,699.0,744.0,718.0,633.0,675.0,652.0,624.0,581.0,544.0,521.0,487.0,503.0,454.0,485.0,452.0,422.0,337.0,339.0,351.0,342.0,299.0,273.0,274.0,247.0,217.0,219.0,192.0,176.0,160.0,171.0,137.0,130.0,99.0,94.0,93.0,88.0,62.0,67.0,60.0,42.0,32.0,26.0,32.0,18.0,9.0,7.0,6.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10260,43622,7408,0,3329,3561,3370,3035,3396,4723,6202,5927,5339,4593,4016,3469,2922,2381,1791,1310,918,553,319,117,19,0,35284,15496,10348,160,2,35541,18891,6696,160,2,6744,549,466,20138,1970,1964,19202,10256,1,10171,39963,11148,8,98,170,16,0,2,3,23,5,5,973,59991,4,1835,634,825,258,111,178,2929,54514,6,18437,7850,5363,128,820,28686,6,1.2547504134462857,3.375071720274056e-05,2.1584047267355984,5.908419497784343e-05,13.021912220590634,822,295,363,132,55,99,1327,20468,1,591,89,57,154,304,613,885,951,2166,2004,1881,1483,2492,1824,5954,2080,23399,163,23350,212,22749,813,3109,20453,19025,4537,20578,2984,11837,11725,12372,11190,23187,375,22711,851,20217,2494,19979,3583,22655,907,18370,5192,527,23035,426,23136,196,23366,6111,11448,3003,3000,22,14060,9502,0,29,67,8,0,1,2,7,3,3,402,23039,1,1.1975491858887382,1.401246607869742,1.3138195777351247,1.038062283737024,1.038062283737024,48.94151600033953 +80810,Panamá,Panamá,Parque Lefevre,6820,3,12712,464,8,0,0,0,1,2,3,8,16,0,0,15575,52,5,0,15201,431,0,0,0,0,0,15622,0,3,4,0,0,0,0,3,12506,3118,0,3,1,1,3,14708,3,803,0,1,117,15632,428,769,187,800,1975,158,50,3118,6246,5867,284,66,51,15571,51,0,5,0,5,0,8970,75,73,6512,0,0,2,14735,820,6,1,65,5,15205,0,0,0,0,0,0,0,0,426,1,0,20037,0,6.994015126603091,23.89161460046037,6.992436698454456,23.8993752055245,1.0241171954964177,3.815314738996929,2.320432446264073,16033,8002,11767,550,1567,811,840,517,270,396,198,293,1030,558,725,166,110,167,216,112,158,38209,2786,15,28111,12884,15,37699,3296,15,39833,1145,32,9406,31592,12,3684,5722,31136,433,23,578,507,500,77,547,563,658,611,659,1605,8,22,214,788,1014,1987,816,1826,7369,53,691,587,949,1560,2844,4239,4193,1018,240,3982,9,16,31,214,35,22180,1266,14625,14,90,414,133,4655,5181,3685,381,723,16862,1295,1699,1508,1753,19,19,19,120,19897,22935,2816,13153,1528,4864,679,6,65,183,11,190,27,12170,3335,8,8,9162,11221,262,702,623,11272,868,3723,217,35,343,4591,5336,3269,1358,3162,79,1698,850,2760,14030,671,396,704,1483,2955,4024,3044,3225,2162,1634,912,1457,846,1954,3335,373.0,473.0,470.0,506.0,460.0,473.0,495.0,519.0,503.0,475.0,530.0,487.0,504.0,449.0,445.0,475.0,439.0,377.0,396.0,420.0,409.0,450.0,457.0,490.0,455.0,573.0,570.0,599.0,670.0,652.0,737.0,772.0,808.0,872.0,867.0,831.0,865.0,829.0,811.0,751.0,833.0,772.0,716.0,683.0,658.0,662.0,661.0,628.0,600.0,535.0,588.0,531.0,549.0,519.0,525.0,473.0,498.0,525.0,468.0,469.0,453.0,436.0,451.0,454.0,378.0,403.0,373.0,387.0,379.0,331.0,343.0,292.0,310.0,262.0,289.0,250.0,249.0,257.0,220.0,211.0,162.0,145.0,151.0,121.0,132.0,105.0,85.0,96.0,76.0,72.0,80.0,46.0,44.0,36.0,30.0,14.0,27.0,9.0,12.0,10.0,8.0,6.0,4.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7162,29640,6030,0,2282,2465,2415,2107,2261,3064,4056,4087,3662,3086,2712,2433,2172,1873,1496,1187,711,434,236,72,21,0,27359,11761,3679,28,5,27445,13139,2215,28,5,6345,497,732,12145,1578,1201,13165,7162,7,8895,26033,7867,37,147,236,24,6,7,3,29,4,4,844,41511,17,2476,1044,989,358,142,296,4118,33392,17,11546,6295,5016,187,350,19421,17,1.3884073410488595,0.0003873904411408,2.1638418079096047,0.0006191471248355,12.291557713858795,1044,428,460,172,67,158,1750,11952,2,550,117,98,208,431,779,1108,1017,1919,1566,1184,830,1336,863,2724,1279,15851,182,15657,376,14628,1405,2209,13824,13946,2087,10821,5212,8558,7475,7251,8782,15558,475,15283,750,13120,2163,11019,5014,14916,1117,10433,5600,293,15740,213,15820,159,15874,3822,7941,3034,1236,14,9264,6769,0,42,94,10,4,5,2,8,2,3,356,15505,2,1.2399202343117093,1.42923911011404,1.332116788321168,1.063444108761329,1.063444108761329,50.573691760743465 +80811,Panamá,Panamá,Río Abajo,3469,8,8665,551,4,0,27,0,0,0,2,15,23,0,0,10041,45,0,8,9549,537,1,2,0,3,2,10091,2,0,0,0,0,0,0,1,9489,602,2,0,1,0,0,9816,0,183,0,2,93,10094,82,312,518,1032,540,107,8,2227,3213,3989,576,72,17,9954,137,0,1,0,2,0,5294,7,50,4742,0,0,1,9519,519,2,3,51,0,10048,0,0,0,0,0,1,0,0,44,1,0,12764,0,6.993531050955414,23.867635350318476,6.994128184713376,23.881966560509557,1.02516346344363,3.1803051317614424,2.0381414701803053,10386,4383,7581,402,1479,517,599,402,133,273,141,204,1513,32,501,154,100,153,214,148,113,24292,2624,5,15619,11297,5,22542,4374,5,26036,880,5,6551,20370,0,3925,2626,19880,485,5,540,250,305,75,340,407,442,391,465,1191,12,17,253,652,892,1824,683,1530,6739,24,237,385,677,1121,1365,1773,2689,237,91,1239,3,8,9,50,5,13600,1452,9949,1,67,708,163,2684,3576,2388,291,1010,10815,699,1207,508,1548,13,7,8,26,12648,15397,2460,8234,556,3337,155,5,27,57,16,201,29,7147,393,5,5,7636,9274,275,333,522,5520,213,1171,53,5,185,1635,2770,2247,1490,2617,25,1477,843,1763,9866,821,541,745,1337,2319,3340,2424,2832,1481,868,388,396,147,147,393,256.0,272.0,296.0,300.0,306.0,310.0,314.0,331.0,347.0,311.0,356.0,345.0,359.0,321.0,352.0,357.0,303.0,298.0,327.0,328.0,308.0,340.0,355.0,373.0,396.0,402.0,449.0,448.0,476.0,477.0,517.0,528.0,510.0,559.0,514.0,533.0,514.0,513.0,523.0,491.0,516.0,450.0,466.0,483.0,406.0,446.0,417.0,420.0,373.0,349.0,412.0,382.0,345.0,348.0,320.0,307.0,312.0,260.0,289.0,293.0,289.0,247.0,245.0,222.0,236.0,206.0,217.0,202.0,200.0,210.0,187.0,180.0,190.0,204.0,157.0,174.0,160.0,154.0,152.0,133.0,101.0,99.0,88.0,83.0,70.0,54.0,50.0,52.0,45.0,48.0,30.0,21.0,30.0,14.0,12.0,19.0,7.0,8.0,9.0,8.0,7.0,2.0,1.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,6,4776,19672,3591,6,1430,1613,1733,1613,1772,2252,2628,2574,2321,2005,1807,1461,1239,1035,918,773,441,249,107,51,17,6,21950,5085,959,51,0,21978,5278,738,51,0,5570,423,1329,5121,1113,561,9149,4774,5,6168,19886,1986,5,214,151,20,1,1,1,44,8,2,501,27097,5,4007,1502,1248,662,137,321,3470,16693,5,7994,4412,2791,134,90,12619,5,1.5069154300533063,0.0003601786486097,2.3102818669405454,0.0005705808513066,11.284899269031913,1605,573,547,298,59,165,1327,5811,1,479,132,101,207,400,636,1025,873,1749,1398,1008,640,781,383,423,113,10251,135,10125,261,9300,1086,1298,9088,9686,700,5413,4973,5428,4958,4212,6174,9950,436,9904,482,7881,2023,6012,4374,8475,1911,5456,4930,217,10169,132,10254,82,10304,2739,4703,2398,546,36,5327,5059,0,55,61,8,1,1,0,10,5,0,206,10038,1,1.213586643638457,1.4773555939359049,1.3076923076923077,1.0305882352941176,1.0305882352941176,50.00125168496052 +80812,Panamá,Panamá,Juan Díaz,14375,7,7639,150,9,0,0,3,19,0,1,3,15,0,0,18026,133,15,12,17908,266,0,0,0,7,5,18163,0,4,13,0,0,2,0,4,15724,2444,11,1,0,0,6,17687,6,350,1,0,142,18186,281,461,604,1033,1367,232,7,3208,4345,9906,576,129,22,18123,50,0,4,0,9,0,12865,991,924,3403,0,0,3,16936,1225,3,3,18,1,18062,0,0,0,0,0,0,0,0,122,1,1,22221,0,6.989646772228989,23.9322887830805,6.990532609899236,23.930461742885612,1.026668866160783,4.180743429011328,2.672055427251732,18689,9540,17987,631,3554,904,1126,814,258,805,223,304,881,867,1135,254,182,241,360,131,261,49718,4716,0,33210,21224,0,46756,7678,0,52669,1765,0,14280,40154,0,6670,7610,39408,746,0,903,666,677,113,791,855,977,928,1019,2912,15,54,624,1196,1705,3707,1402,2336,12566,58,353,907,1447,1950,3308,3940,4500,704,215,3326,11,11,37,212,9,24780,2021,23366,0,105,807,269,6902,8603,6368,607,886,19337,1389,2100,1436,2161,23,19,16,67,26812,29771,3832,14637,1447,5780,689,8,34,121,14,469,100,18166,1954,2,2,15650,17520,683,392,755,11149,652,3138,219,9,242,4420,4912,3610,2232,4061,77,2408,1537,3302,21504,1876,1127,1497,2680,4189,5719,3669,4310,2199,1491,704,967,474,2223,1954,513.0,504.0,547.0,585.0,665.0,664.0,706.0,741.0,756.0,735.0,783.0,824.0,758.0,767.0,753.0,756.0,749.0,728.0,702.0,701.0,642.0,746.0,805.0,738.0,720.0,813.0,741.0,779.0,728.0,649.0,736.0,782.0,782.0,821.0,744.0,799.0,756.0,829.0,775.0,761.0,802.0,810.0,818.0,781.0,808.0,793.0,808.0,808.0,760.0,702.0,880.0,825.0,848.0,816.0,850.0,755.0,736.0,699.0,752.0,749.0,709.0,612.0,603.0,594.0,567.0,560.0,504.0,533.0,466.0,529.0,448.0,411.0,413.0,394.0,420.0,389.0,377.0,361.0,342.0,316.0,277.0,233.0,215.0,191.0,186.0,185.0,147.0,124.0,118.0,91.0,85.0,54.0,55.0,36.0,37.0,35.0,18.0,25.0,11.0,6.0,9.0,7.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10301,37667,8615,0,2814,3602,3885,3636,3651,3710,3865,3920,4019,3871,4219,3691,3085,2592,2086,1785,1102,665,267,95,23,0,44949,8450,3071,113,0,45015,9076,2379,113,0,8135,735,663,14647,2391,1026,18687,10299,0,15523,35573,5487,0,373,450,41,5,10,0,111,13,3,975,54602,0,5736,2758,1926,889,258,443,7001,37572,0,14781,10364,7236,269,257,23676,0,1.6620568173300352,7.495689978262499e-05,2.4101465614430664,0.0001127395715896,11.337345138999346,2087,972,742,429,105,228,2570,11556,0,817,321,214,423,819,1164,1520,1352,2706,1949,1400,917,1164,646,2524,735,18469,220,18194,495,17026,1663,3341,15348,17366,1323,10302,8387,11503,7186,9697,8992,17971,718,17963,726,15057,2906,11433,7256,15758,2931,11334,7355,526,18163,379,18310,188,18501,3613,9257,4532,1287,32,10574,8115,0,87,133,13,2,5,0,33,6,1,335,18074,0,1.4321884514716094,1.5902462475295125,1.284991568296796,1.05933014354067,1.05933014354067,54.352025255497885 +80813,Panamá,Panamá,Pedregal,18144,145,2682,479,21,0,0,1,0,0,0,7,20,0,1,9074,7279,1208,175,16433,1128,5,3,0,143,24,17413,240,2,6,5,14,8,0,48,15321,250,1813,142,46,12,152,17256,59,120,0,1,300,17736,239,609,426,656,1622,160,2,2505,3305,10715,623,105,483,17226,203,2,288,3,14,0,16361,139,624,607,1,0,4,12298,5135,0,288,9,6,16058,1331,10,10,7,28,1,7,206,15,50,13,21409,91,6.728777515949193,22.3881257543537,6.829070636243462,22.724122075981377,1.0205232295895357,3.2489287325214256,2.0567207938655843,18127,9421,20131,1292,4081,686,932,752,216,862,221,245,696,20,868,334,143,363,393,68,206,47698,6811,0,20168,34341,0,41497,13012,0,51627,2880,2,16097,38412,0,12461,3636,36765,1644,3,1749,563,914,131,1109,1263,1517,1417,1451,5212,13,34,598,1939,2840,5596,1949,3232,13372,106,206,973,1253,1365,1684,1788,1460,152,76,508,2,1,4,24,8,22704,2848,23078,0,60,1049,568,3692,9565,8264,749,808,17681,952,2241,860,2944,28,38,21,227,28356,29326,3703,14005,853,5982,133,5,40,271,87,801,160,15768,967,0,0,24839,17485,639,238,478,4345,127,448,23,8,323,1354,2321,2602,2121,5279,239,4052,2636,4625,26247,3103,1367,1923,3010,4282,7600,3630,3213,1284,576,203,183,45,49,967,738.0,779.0,795.0,861.0,943.0,945.0,962.0,1026.0,977.0,1026.0,1068.0,1074.0,958.0,990.0,994.0,907.0,884.0,893.0,845.0,853.0,926.0,888.0,987.0,943.0,862.0,984.0,921.0,853.0,865.0,796.0,862.0,815.0,934.0,940.0,852.0,832.0,868.0,879.0,854.0,838.0,868.0,800.0,754.0,795.0,710.0,734.0,776.0,713.0,736.0,695.0,701.0,701.0,694.0,661.0,630.0,607.0,602.0,568.0,537.0,531.0,503.0,494.0,490.0,421.0,448.0,362.0,360.0,349.0,329.0,312.0,309.0,285.0,319.0,274.0,221.0,211.0,242.0,185.0,203.0,187.0,146.0,139.0,137.0,112.0,101.0,78.0,78.0,69.0,53.0,46.0,37.0,31.0,38.0,26.0,9.0,13.0,8.0,8.0,3.0,7.0,4.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,14136,38250,5296,0,4116,4936,5084,4382,4606,4419,4403,4271,3927,3654,3387,2845,2356,1712,1408,1028,635,324,141,39,9,0,54040,2837,684,120,1,54060,2980,521,120,1,13669,788,4331,8954,1685,499,13618,14132,6,24162,31966,1552,2,1106,2078,98,10,11,1,294,21,4,746,53312,1,4883,3327,2720,793,237,287,10535,34899,1,14248,13631,3692,275,51,25784,1,1.8548730944048912,0.0,2.7005146836209506,0.0,8.910908082244028,1646,1117,1092,377,104,140,3391,10260,0,1073,483,348,642,1168,1595,2632,1881,3208,1983,1230,628,677,281,177,94,17740,387,16892,1235,15553,2574,2386,15741,16998,1129,4982,13145,10293,7834,4741,13386,17106,1021,16677,1450,10792,5885,6762,11365,13194,4933,7222,10905,1474,16653,845,17282,193,17934,3593,9485,4607,442,23,10401,7726,0,211,599,33,3,8,0,81,9,1,245,16937,0,1.5623140495867769,1.6157575757575755,1.1797752808988764,1.0524344569288389,1.0524344569288389,49.09637557235064 +80824,Panamá,Panamá,Caimitillo,13049,60,354,9,0,0,0,0,1,0,14,0,15,0,0,4811,3828,1141,154,9513,267,8,2,0,126,18,9127,371,64,218,43,26,68,0,17,7359,372,1802,224,86,2,89,9638,192,46,5,0,53,9934,284,1318,696,295,704,229,12,4094,541,4693,203,9,394,8885,478,4,302,13,246,6,9476,30,263,25,17,116,7,6768,2640,3,325,183,15,8483,915,75,19,2,15,1,87,276,34,19,8,9439,4063,6.262641190752666,20.23171117914072,6.349414124353426,20.57637496041381,1.0190255687537748,3.4187638413529293,2.2705858667203542,10138,6526,13133,948,1305,413,287,257,174,404,113,99,281,19,421,161,70,162,146,67,107,28338,3560,0,14622,17276,0,24646,7252,0,29724,2174,0,11265,20633,0,7965,3300,19447,1186,0,1265,398,679,79,780,827,966,829,954,2924,3,14,150,1092,1337,2568,1028,1494,6928,40,154,668,961,1104,1127,1211,1542,186,83,489,1,1,1,14,1,13913,1559,12327,0,50,702,186,1050,6357,4239,317,364,10967,564,1621,302,1244,34,305,121,20,16885,17212,2687,8221,320,3687,123,4,80,56,35,333,56,11824,477,0,0,13090,9904,158,221,381,3396,186,449,13,1,120,1059,1990,2088,1203,2458,408,2440,1680,2026,16731,1668,821,1039,1235,1745,3211,2356,2706,1139,507,205,157,37,63,477,510.0,488.0,564.0,637.0,665.0,688.0,681.0,730.0,690.0,645.0,744.0,699.0,624.0,632.0,604.0,568.0,624.0,524.0,594.0,518.0,499.0,519.0,550.0,507.0,479.0,487.0,494.0,488.0,456.0,496.0,560.0,539.0,600.0,636.0,640.0,622.0,666.0,607.0,640.0,617.0,623.0,569.0,525.0,543.0,492.0,485.0,418.0,440.0,387.0,401.0,394.0,414.0,339.0,310.0,338.0,305.0,296.0,270.0,250.0,216.0,198.0,167.0,208.0,180.0,154.0,136.0,134.0,132.0,129.0,91.0,99.0,82.0,76.0,94.0,74.0,65.0,51.0,48.0,52.0,57.0,54.0,39.0,37.0,27.0,24.0,27.0,28.0,15.0,15.0,6.0,14.0,10.0,7.0,8.0,2.0,0.0,2.0,2.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,9601,22852,1643,1,2864,3434,3303,2828,2554,2421,2975,3152,2752,2131,1795,1337,907,622,425,273,181,91,41,6,4,1,33034,621,353,89,0,33041,664,303,89,0,8651,344,1173,6010,537,256,7527,9598,1,10277,23422,397,1,159,458,63,7,5,8,1187,30,11,367,31802,0,2441,1563,1890,560,158,158,6507,20820,0,9066,8778,974,105,60,15114,0,1.7484463276836155,0.0,2.5713067576209765,0.0,8.996539284981083,807,525,698,239,46,57,2037,5729,0,560,243,198,404,562,696,1080,921,1604,1359,937,566,515,207,158,113,9979,159,9326,812,8868,1270,1227,8911,8962,1176,2975,7163,5406,4732,2741,7397,9644,494,9137,1001,6570,2567,4770,5368,7760,2378,5631,4507,2599,7539,1059,9079,219,9919,1383,6606,1971,178,15,6553,3585,0,48,135,20,0,3,4,272,7,6,124,9519,0,1.6630552546045505,1.6952624839948784,1.2153846153846153,1.0277777777777777,1.0277777777777777,44.82955217991714 +80815,Panamá,Panamá,Chilibre,17728,160,72,56,7,0,0,1,19,0,28,0,19,0,0,879,11877,1628,591,13517,867,7,1,0,530,53,14639,192,2,23,6,30,40,0,43,10833,482,3323,54,49,4,230,14579,97,53,1,0,245,14975,46,709,585,400,1014,283,4,552,1101,12661,547,36,78,14444,197,0,284,1,49,0,14843,49,75,0,1,3,4,7661,7062,6,224,14,8,12797,874,16,123,15,50,1,3,907,93,74,22,17472,618,5.294951413750274,17.936509096222693,5.335427778183678,18.140936655220283,1.013956594323873,3.195392320534224,1.966477462437396,15203,8585,18672,1242,2925,393,526,390,120,731,134,107,546,8,967,263,131,313,285,223,156,39803,6631,4,11959,34475,4,32819,13615,4,43318,3116,4,14730,31708,0,12560,2170,29970,1734,4,1820,567,862,126,1080,1207,1437,1258,1284,5308,6,19,255,1846,2648,5019,1727,2587,10891,19,150,759,898,942,1099,1019,1198,95,40,247,2,0,2,15,6,17223,3054,20642,2,187,1246,608,2185,8647,8426,627,757,13493,705,2742,650,1928,23,88,34,50,24692,24890,3033,10454,660,5292,151,3,49,71,51,865,170,17195,1048,0,0,23222,13600,277,198,465,2832,90,218,13,6,109,750,1499,1758,1446,3561,185,4643,2576,3750,25803,3550,1088,1805,2262,3196,5025,2502,2113,722,259,68,73,27,41,1048,715.0,741.0,795.0,893.0,904.0,947.0,915.0,911.0,949.0,891.0,964.0,861.0,844.0,832.0,837.0,812.0,852.0,797.0,775.0,829.0,774.0,876.0,873.0,881.0,826.0,1013.0,899.0,866.0,809.0,764.0,768.0,776.0,729.0,709.0,733.0,736.0,694.0,673.0,749.0,650.0,684.0,607.0,646.0,613.0,590.0,585.0,585.0,603.0,600.0,565.0,600.0,539.0,575.0,522.0,492.0,481.0,462.0,453.0,441.0,436.0,421.0,379.0,357.0,379.0,339.0,335.0,284.0,247.0,246.0,254.0,200.0,207.0,208.0,168.0,194.0,155.0,153.0,137.0,123.0,96.0,95.0,79.0,66.0,60.0,62.0,58.0,75.0,45.0,42.0,37.0,31.0,18.0,23.0,14.0,11.0,10.0,7.0,4.0,3.0,3.0,3.0,2.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,12999,32817,3761,5,4048,4613,4338,4065,4230,4351,3715,3502,3140,2938,2728,2273,1875,1366,977,664,362,257,97,27,11,5,48272,824,358,125,3,48286,866,302,125,3,12334,578,2358,7637,1143,282,12251,12995,4,25790,23151,637,4,204,1320,103,9,11,3,280,33,4,538,47075,2,3100,3951,3181,650,119,215,10220,28144,2,10487,10912,2122,215,42,25801,3,1.9821811100292115,0.0,2.861274190041313,0.0,8.321406962204026,1035,1255,1232,287,53,91,3331,7919,0,1311,739,461,789,1241,1525,2230,1525,2341,1305,704,327,303,101,77,205,14897,306,13843,1360,12747,2456,2006,13197,13565,1638,2799,12404,7416,7787,2337,12866,14291,912,13408,1795,7819,5589,4615,10588,10385,4818,5587,9616,3165,12038,1493,13710,225,14978,2742,8974,3210,277,55,9396,5807,0,62,384,37,2,8,3,82,11,1,214,14399,0,1.6182985974570716,1.6312753965133044,1.3733333333333333,1.0363951473136914,1.0363951473136914,47.9457343945274 +80816,Panamá,Panamá,Las Cumbres,12960,43,584,151,11,3,0,12,2,0,0,2,7,0,0,2054,7151,1914,160,10452,667,3,1,0,128,28,11098,113,8,8,5,17,14,0,16,7651,211,2719,201,64,3,430,11102,57,48,0,0,72,11279,191,501,344,448,710,230,35,1210,1034,8342,336,45,312,10572,268,0,213,1,225,0,11049,42,94,87,1,1,5,5836,5160,0,265,13,5,9266,924,577,126,22,71,5,12,160,73,37,6,13485,290,5.083310114237949,17.769480821027212,5.166805981238971,18.252438005015325,1.042645624612111,3.422821172089724,2.205514673286639,11769,6992,15154,877,2435,403,519,369,135,576,138,147,374,35,750,245,124,249,213,687,333,32744,4860,0,12419,25185,0,25528,12076,0,35281,2321,2,11955,25649,0,9659,2296,24223,1423,3,1474,316,659,48,842,984,1206,947,1027,4548,1,15,170,1364,1937,3639,1257,1985,8360,51,194,584,844,822,1274,955,1412,129,72,436,6,4,6,30,6,14961,2303,16118,0,100,903,375,2039,7107,5927,452,593,11800,506,2109,676,1580,31,38,11,57,19991,19932,2447,9298,621,4166,109,4,52,111,86,475,94,14569,158,4,4,17977,10960,180,184,407,3139,120,382,27,6,194,770,1575,1731,1272,3113,169,3081,1727,3632,20987,1528,696,1192,1899,3217,4305,2297,2094,718,375,149,125,73,110,158,523.0,540.0,602.0,654.0,672.0,664.0,699.0,715.0,759.0,713.0,736.0,720.0,654.0,703.0,697.0,679.0,647.0,679.0,658.0,652.0,686.0,666.0,717.0,764.0,679.0,732.0,707.0,674.0,576.0,638.0,645.0,613.0,570.0,624.0,627.0,554.0,564.0,584.0,579.0,558.0,557.0,526.0,524.0,514.0,500.0,494.0,481.0,503.0,486.0,445.0,496.0,437.0,522.0,433.0,467.0,418.0,392.0,386.0,392.0,360.0,358.0,329.0,315.0,293.0,246.0,228.0,217.0,229.0,210.0,197.0,164.0,144.0,152.0,133.0,128.0,114.0,113.0,92.0,99.0,88.0,69.0,61.0,55.0,50.0,60.0,53.0,35.0,36.0,36.0,30.0,21.0,20.0,24.0,17.0,16.0,11.0,10.0,8.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10051,26946,2926,0,2991,3550,3510,3315,3512,3327,3079,2839,2621,2409,2355,1948,1541,1081,721,506,295,190,98,32,3,0,38614,839,402,68,0,38627,921,307,68,0,9739,351,820,6470,828,284,11378,10051,2,16008,23291,623,1,438,1279,141,23,32,12,515,47,5,595,36836,0,2240,2117,2104,404,165,120,9469,23304,0,9436,8919,2038,141,54,19335,0,1.8702848575712143,0.00023988005997,2.751064408007972,0.0003623516622882,8.703930065375848,717,694,795,168,59,52,3031,6253,0,967,328,222,418,812,1199,1604,1086,1988,1275,683,393,362,168,231,24,11640,129,10914,855,10111,1658,1714,10055,10661,1108,2387,9382,5982,5787,2458,9311,11291,478,10571,1198,5807,4764,4314,7455,7643,4126,4658,7111,2215,9554,1261,10508,148,11621,1809,7034,2684,242,28,7505,4264,0,79,387,37,8,11,0,122,7,3,199,10916,0,1.6945833686530474,1.6895820971433415,1.2621359223300972,1.0248756218905473,1.0248756218905473,48.03322287365112 +80825,Panamá,Panamá,Las Garzas,17637,55,58,52,1,0,322,4,12,2,0,0,14,0,0,3448,6789,2422,182,12245,414,9,4,0,150,19,12148,567,2,47,9,19,19,0,30,10350,105,2234,59,32,2,59,12553,115,40,0,0,133,12841,31,931,667,1821,1297,212,2,3584,609,7247,362,15,1024,11555,563,8,639,2,73,1,12651,27,122,11,0,1,29,6165,6072,6,566,29,3,9919,562,59,42,6,8,1,2,1091,1090,43,18,17152,1005,5.8144212523719165,18.914516129032258,5.7592030360531306,18.79629981024668,1.0137060976559458,3.000311502219453,1.890662720971887,13031,7567,17741,1318,1374,456,609,395,105,371,201,131,13674,7,733,323,94,205,208,218,163,37411,15828,185,10335,42904,185,32488,20751,185,49811,3435,178,14671,38753,0,12759,1912,36131,2443,179,2514,356,922,113,1252,1377,1665,1445,1597,7160,15,27,108,3094,3614,6355,2208,3290,11181,114,270,647,793,774,863,623,655,62,31,117,0,0,1,2,179,15555,2281,29720,29,133,940,424,586,8934,7105,388,12707,12335,544,2134,462,1649,31,131,32,64,35231,21749,1942,10346,449,4336,120,4,64,121,30,275,105,25173,2606,0,0,31059,13668,118,221,334,1856,49,100,1,179,200,675,845,1684,1324,4081,254,3147,1846,3780,36506,1942,742,1340,1721,2672,5172,2188,1488,369,121,34,31,5,43,2606,826.0,834.0,953.0,943.0,978.0,953.0,999.0,1026.0,928.0,955.0,1003.0,980.0,852.0,872.0,894.0,815.0,829.0,826.0,832.0,995.0,918.0,1072.0,1338.0,1388.0,1364.0,1563.0,1551.0,1547.0,1489.0,1383.0,1463.0,1277.0,1340.0,1257.0,1192.0,1050.0,1082.0,994.0,1038.0,931.0,967.0,839.0,868.0,784.0,764.0,727.0,665.0,650.0,574.0,510.0,563.0,440.0,474.0,408.0,360.0,346.0,309.0,299.0,290.0,277.0,231.0,206.0,195.0,146.0,139.0,133.0,120.0,110.0,84.0,88.0,81.0,64.0,54.0,69.0,58.0,56.0,47.0,37.0,40.0,34.0,31.0,19.0,25.0,20.0,23.0,14.0,14.0,9.0,5.0,5.0,9.0,4.0,7.0,4.0,4.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148,13996,41565,1271,148,4534,4861,4601,4297,6080,7533,6529,5095,4222,3126,2245,1521,917,535,326,214,118,47,28,2,1,148,54536,1833,459,148,4,54561,1904,363,148,4,16738,365,4615,5075,449,242,15324,13994,178,10554,45288,963,175,1397,4002,209,18,42,11,1517,302,8,843,48449,182,2721,3348,4037,1238,217,258,12724,32255,182,10103,10123,519,109,16,35931,179,1.873312686261906,0.0,2.866678875560846,0.0,7.791716391716392,696,632,986,295,67,54,2769,7532,0,1497,355,210,550,853,1271,2283,1379,1987,1112,460,204,116,21,42,677,12824,207,11579,1452,11150,1881,1275,11756,12256,775,2169,10862,6405,6626,2228,10803,12437,594,11317,1714,6563,4754,3635,9396,9712,3319,4295,8736,1335,11696,889,12142,151,12880,2302,8314,2172,243,341,7496,5535,0,187,922,45,7,12,5,302,75,3,216,11257,0,2.634684415195932,1.6264582710140592,1.3125,1.0338164251207729,1.0338164251207729,40.714987337886576 +80817,Panamá,Panamá,Pacora,25083,64,735,133,11,1,0,0,42,0,7,8,23,0,0,14067,5643,634,70,19933,411,8,1,0,52,9,20029,301,4,31,5,20,17,0,7,18932,142,1098,24,26,1,191,20133,75,54,0,1,151,20414,257,1274,407,517,2802,335,9,11673,2285,5799,411,15,231,20063,189,0,150,0,12,0,15955,1067,3331,57,2,0,2,15659,4608,0,122,23,2,18743,1183,125,4,5,5,1,26,266,32,18,6,23928,2179,6.4784300034910975,19.4376839060396,6.555533389855867,19.86644057652985,1.0130302733418242,3.4031546977564417,2.219065347310669,20710,12589,26812,2130,3007,853,852,797,326,750,374,267,794,22,803,279,107,378,268,267,266,58093,7326,0,25714,39705,0,53216,12203,0,61145,4274,0,22711,42708,0,17345,5366,40153,2555,0,2667,680,1523,135,1657,1821,2008,1739,2022,5798,13,32,279,2317,3009,6173,2256,3560,17472,97,321,1122,1467,1714,1857,1261,1841,146,78,332,2,1,2,16,1,28439,3110,25082,0,63,1197,469,1542,13193,9106,568,673,23813,892,2438,578,2690,34,163,58,148,34479,35804,4701,19101,624,5942,165,9,52,220,51,522,136,24915,885,0,0,28417,21724,311,425,842,4464,134,299,14,1,278,1675,2277,3700,2738,7345,263,4367,3410,5496,36085,2780,1177,1524,2241,4279,9942,5172,4201,1298,393,123,87,36,60,885,1127.0,1127.0,1252.0,1358.0,1416.0,1431.0,1464.0,1487.0,1553.0,1437.0,1539.0,1481.0,1422.0,1332.0,1341.0,1338.0,1221.0,1198.0,1172.0,1104.0,1060.0,1072.0,1130.0,1097.0,1091.0,1260.0,1216.0,1209.0,1163.0,1198.0,1331.0,1218.0,1386.0,1341.0,1291.0,1246.0,1295.0,1298.0,1283.0,1281.0,1211.0,1079.0,1102.0,1031.0,915.0,882.0,880.0,821.0,757.0,731.0,757.0,685.0,664.0,600.0,627.0,534.0,497.0,431.0,423.0,388.0,372.0,308.0,298.0,262.0,252.0,269.0,204.0,207.0,172.0,136.0,160.0,133.0,135.0,124.0,110.0,89.0,95.0,83.0,77.0,62.0,64.0,64.0,54.0,39.0,29.0,33.0,25.0,22.0,23.0,16.0,18.0,15.0,16.0,6.0,10.0,5.0,3.0,4.0,3.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,20767,47006,2510,0,6280,7372,7115,6033,5450,6046,6567,6403,5338,4071,3333,2273,1492,988,662,406,250,119,65,16,4,0,67268,2075,773,167,0,67288,2151,677,167,0,19074,631,1699,9613,905,285,17315,20760,1,17483,51818,981,1,4401,2137,214,15,19,12,875,121,4,901,61584,0,5525,4207,3773,1230,160,286,11029,44073,0,20292,19889,1474,205,33,28390,0,1.7069113654328625,0.0,2.577110733983878,0.0,8.472760126915471,1904,1364,1392,570,50,124,3435,11871,0,1181,399,277,467,921,1452,3199,2368,4335,2971,1511,697,496,132,111,163,20506,204,19770,940,18769,1941,2109,18601,19816,894,6547,14163,11737,8973,5871,14839,20033,677,19280,1430,13782,5498,8508,12202,16804,3906,9470,11240,1445,19265,758,19952,203,20507,3076,13065,4101,468,62,12636,8074,0,738,618,58,6,6,3,214,27,1,310,18729,0,1.6598786828422878,1.7236664740997496,1.2395833333333333,1.0230326295585412,1.0230326295585412,42.78305166586191 +80818,Panamá,Panamá,San Martín,2445,16,0,61,0,0,0,0,1,0,0,1,0,0,0,3,1614,111,21,1623,105,3,0,0,17,1,1697,4,0,22,3,0,19,0,4,1239,43,425,2,19,0,21,1689,38,2,0,0,20,1749,0,428,98,55,142,50,0,21,204,1424,95,3,2,1691,26,0,21,1,10,0,1701,9,37,2,0,0,0,568,1148,1,30,2,0,7,1541,76,9,1,6,1,15,0,92,1,0,0,2524,6.073275862068965,17.154556650246306,6.13115763546798,19.204433497536947,1.017724413950829,3.220125786163522,2.01600914808462,1781,1044,1934,188,268,32,39,29,18,74,16,7,53,2,122,70,22,31,31,35,13,4132,988,0,1189,3931,0,2405,2715,0,4685,435,0,1464,3656,0,1198,266,3383,273,0,281,55,104,9,126,145,213,150,178,885,0,1,9,162,226,486,152,241,1149,12,75,30,52,57,100,65,113,9,4,30,0,0,0,1,0,2004,246,2314,0,6,89,66,219,890,955,100,150,1356,105,326,62,238,4,88,3,16,2837,2648,337,1023,72,667,54,6,21,18,13,189,17,2097,227,0,0,2852,1313,10,65,35,261,10,17,1,0,19,102,128,186,100,292,124,409,301,589,2872,403,95,197,276,471,424,211,178,62,41,12,7,2,7,227,84.0,87.0,106.0,88.0,83.0,112.0,95.0,94.0,80.0,92.0,92.0,97.0,71.0,94.0,76.0,99.0,87.0,91.0,104.0,108.0,80.0,84.0,113.0,96.0,86.0,90.0,90.0,80.0,100.0,71.0,72.0,57.0,75.0,65.0,70.0,72.0,77.0,64.0,70.0,68.0,79.0,74.0,61.0,68.0,73.0,71.0,63.0,68.0,67.0,52.0,76.0,75.0,61.0,65.0,64.0,64.0,67.0,60.0,60.0,44.0,52.0,37.0,44.0,39.0,37.0,36.0,38.0,40.0,28.0,30.0,29.0,27.0,29.0,30.0,23.0,30.0,25.0,16.0,25.0,18.0,15.0,16.0,12.0,12.0,9.0,8.0,8.0,9.0,4.0,5.0,6.0,3.0,2.0,1.0,4.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1351,3590,544,0,448,473,430,489,459,431,339,351,355,321,341,295,209,172,138,114,64,34,16,4,2,0,5260,152,50,23,0,5260,158,44,23,0,1428,59,131,975,126,30,1385,1351,0,2534,2838,113,0,13,547,10,0,1,0,17,8,1,82,4806,0,60,194,359,29,62,19,849,3913,0,1115,1167,215,15,1,2972,0,2.0865384615384617,0.0,2.937123745819398,0.0,7.658340929808569,22,68,137,14,21,6,327,1186,0,165,118,46,101,162,258,226,151,221,94,53,34,31,12,14,94,1744,37,1593,188,1514,267,320,1461,1513,268,346,1435,710,1071,172,1609,1538,243,1447,334,781,666,441,1340,586,1195,776,1005,499,1282,473,1308,20,1761,400,1046,292,43,1,1304,477,0,2,145,4,0,1,0,3,2,1,30,1593,0,1.5920314253647587,1.4859708193041523,1.2142857142857142,1.064516129032258,1.064516129032258,50.52667040988209 +80819,Panamá,Panamá,Tocumen,24644,14,5488,2413,2,0,9,0,0,0,10,1,18,1,0,17268,9362,532,53,24851,2311,3,2,0,39,9,27165,12,7,6,3,5,10,0,7,23843,2367,203,55,9,0,738,26595,14,153,1,1,451,27215,362,764,520,2788,707,195,8,8439,7060,10175,1446,55,40,27106,57,3,36,0,13,0,21992,1072,3958,190,0,0,3,18800,8363,3,33,8,8,27045,121,14,8,1,0,0,0,0,22,1,3,32582,18,6.869168506254599,22.18568800588668,6.887821927888153,22.285356880058867,1.016534999081389,3.189895278339151,2.0422561087635493,27684,15077,31094,2163,5635,1065,1360,1187,412,1265,552,386,1444,37,1205,368,207,495,479,263,336,75611,8644,14,35888,48367,14,69446,14809,14,79341,4913,15,26023,58243,3,18248,7775,55312,2919,12,3100,688,1437,276,1787,1909,2219,2092,2113,7620,15,48,631,2902,3827,7669,2801,4578,21481,89,418,1903,2467,2571,2801,2668,2846,274,105,876,1,4,4,34,15,38230,4226,32820,7,130,1566,456,4359,15315,11327,863,956,31168,1472,3909,1531,3278,58,53,23,55,44299,45062,5949,24851,1585,8818,198,7,68,71,54,992,208,27827,3024,4,4,35841,29110,658,526,902,7114,254,830,33,15,84,2470,4020,4904,3633,9198,153,6046,4103,7845,41058,3806,1617,2370,3589,6478,12702,6245,4905,2006,827,305,281,69,79,3024,1151.0,1197.0,1319.0,1425.0,1471.0,1463.0,1517.0,1526.0,1545.0,1464.0,1624.0,1574.0,1486.0,1439.0,1494.0,1420.0,1402.0,1460.0,1469.0,1547.0,1589.0,1612.0,1632.0,1686.0,1483.0,1568.0,1478.0,1481.0,1311.0,1303.0,1373.0,1271.0,1339.0,1383.0,1256.0,1318.0,1418.0,1361.0,1376.0,1347.0,1351.0,1318.0,1373.0,1260.0,1258.0,1228.0,1217.0,1255.0,1217.0,1080.0,1238.0,1074.0,1137.0,980.0,980.0,913.0,855.0,859.0,857.0,781.0,724.0,661.0,652.0,595.0,552.0,540.0,491.0,495.0,519.0,426.0,402.0,344.0,388.0,326.0,311.0,286.0,241.0,175.0,192.0,144.0,139.0,130.0,111.0,108.0,105.0,67.0,70.0,61.0,45.0,52.0,25.0,36.0,35.0,23.0,12.0,20.0,18.0,6.0,7.0,3.0,7.0,4.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,21695,61298,6368,0,6563,7515,7617,7298,8002,7141,6622,6820,6560,5997,5409,4265,3184,2471,1771,1038,593,295,131,54,15,0,83167,4767,1233,193,1,83221,4956,991,193,0,21273,1196,5801,14858,1957,705,21875,21686,10,25843,61017,2495,6,5688,4975,267,51,56,6,333,67,7,1270,76629,12,7977,4325,3942,1393,352,463,18407,52488,14,25329,21815,4519,407,66,37217,8,1.7722962145690493,0.0001050778889852,2.608605660152052,0.000159216654062,9.07640917178635,2565,1419,1532,608,129,206,6134,15091,0,1405,582,407,722,1362,2359,4316,2799,5009,3257,1948,1100,1009,376,267,747,27161,523,25688,1996,23604,4080,3572,24112,26538,1146,8897,18787,15363,12321,7899,19785,26678,1006,24958,2726,17492,7466,11812,15872,22238,5446,11996,15688,1797,25887,899,26785,303,27381,5285,14820,6532,1047,22,17454,10230,0,956,1810,107,14,21,4,81,18,2,416,24255,0,1.5988955460910994,1.626434707283621,1.1203007518796992,1.0491493383742911,1.0491493383742911,47.39203149833839 +80820,Panamá,Panamá,Las Mañanitas,12608,98,1827,599,0,0,9,0,0,0,0,4,9,0,0,3233,8658,964,115,11572,1283,1,2,0,99,13,12913,24,2,4,4,8,4,0,11,10966,624,1173,54,21,3,129,12615,46,82,0,0,227,12970,66,408,274,408,928,78,0,1476,2280,8252,873,36,53,12735,68,0,164,0,3,0,12097,180,604,87,0,0,2,7653,5162,3,140,9,3,9789,3091,38,13,0,7,0,0,0,9,16,7,14608,546,6.847577024307168,21.35818238117356,6.834881560613098,21.615110698250504,1.0314572089437162,3.322667694680031,2.095065535851966,13390,7376,16373,1004,3528,452,601,554,168,862,224,166,528,15,675,250,106,269,214,149,192,37967,4558,0,16507,26018,0,32972,9553,0,40034,2491,0,12886,29639,0,9910,2976,28179,1460,0,1533,322,711,124,817,991,1259,989,1091,4341,7,32,290,1507,2221,4117,1545,2458,10231,86,118,844,1134,1221,1283,1224,1458,137,46,362,0,0,6,20,0,18126,2370,17524,0,78,932,271,2484,7725,6283,497,535,14606,744,2121,691,1753,33,36,22,39,22394,22847,2843,11822,738,4468,84,3,26,61,57,504,105,13614,238,0,0,19433,14025,303,138,433,3245,94,330,19,0,74,1041,1744,2127,1791,4089,143,3502,2031,3954,21507,2214,948,1427,2245,3381,6329,2893,2352,854,451,166,142,46,48,238,652.0,643.0,724.0,697.0,727.0,762.0,759.0,757.0,736.0,764.0,793.0,794.0,690.0,746.0,712.0,715.0,777.0,723.0,743.0,721.0,802.0,840.0,924.0,900.0,841.0,860.0,900.0,789.0,752.0,695.0,690.0,683.0,668.0,679.0,620.0,624.0,617.0,580.0,610.0,554.0,560.0,511.0,510.0,516.0,552.0,527.0,526.0,548.0,527.0,545.0,538.0,511.0,542.0,524.0,562.0,558.0,519.0,538.0,512.0,513.0,478.0,412.0,454.0,408.0,346.0,330.0,269.0,278.0,239.0,233.0,190.0,165.0,176.0,153.0,146.0,143.0,117.0,91.0,96.0,77.0,77.0,53.0,64.0,44.0,64.0,38.0,32.0,20.0,29.0,29.0,15.0,21.0,15.0,11.0,9.0,5.0,4.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0,10956,31044,3241,0,3443,3778,3735,3679,4307,3996,3340,2985,2649,2673,2677,2640,2098,1349,830,524,302,148,71,14,3,0,43159,1613,341,128,0,43176,1673,264,128,0,10650,592,4102,7396,1088,443,10018,10952,0,16380,28030,831,0,746,2773,144,11,12,0,511,209,4,1311,39520,0,4216,2577,1864,536,177,237,9000,26634,0,11609,10650,2639,225,16,20102,0,1.8772348033373063,0.0,2.725990233315247,0.0,8.894012068698746,1278,770,730,230,68,114,2884,7316,0,693,305,227,464,776,1208,2055,1401,2309,1480,951,548,546,190,193,32,13112,278,12351,1039,11455,1935,2012,11378,12678,712,3390,10000,7408,5982,3679,9711,12811,579,12084,1306,8043,4041,5284,8106,10295,3095,5490,7900,1065,12325,595,12795,144,13246,2299,7035,3730,326,10,8246,5144,0,129,759,42,5,4,0,152,46,1,433,11819,0,1.6711940298507462,1.705,1.2093023255813953,1.0561797752808988,1.0561797752808988,48.69865571321882 +80821,Panamá,Panamá,24 de Diciembre,27116,51,2137,805,0,0,0,0,59,0,5,7,18,0,0,10178,12066,1230,165,21804,1670,2,0,0,111,52,23450,134,4,5,2,12,15,0,17,20118,952,1430,318,41,9,771,23093,60,138,0,0,348,23639,344,1305,1057,1487,1936,316,25,6326,4372,11609,1137,38,157,23332,141,2,148,1,15,0,21879,447,1258,45,3,0,7,13736,9738,7,139,13,6,22459,885,105,37,2,55,1,6,34,35,18,2,28512,1686,6.704891466587061,21.79892532730607,6.773423173696107,22.157362787325685,1.0160328271077457,3.255552265324252,2.098692838106519,24043,13515,28848,1842,5236,855,1020,941,373,1329,413,318,1208,24,970,373,203,433,381,253,233,66893,8211,0,27758,47346,0,56797,18307,0,70523,4581,0,23260,51844,0,17675,5585,48686,3158,0,3263,505,1271,214,1595,1774,2235,1907,1960,7982,15,48,329,2685,3653,7420,2599,4102,19581,79,335,1229,1748,1718,1856,1839,2173,228,104,632,4,5,2,14,0,32198,4014,30686,0,152,1552,743,3234,13938,11538,897,1079,25637,1222,3370,1149,3609,83,70,31,195,39733,40232,4806,20673,1135,8205,200,13,80,254,41,811,189,26856,382,1,1,34907,24392,361,434,805,5225,201,555,18,0,299,1875,2856,3667,2736,7893,286,5788,3765,7047,39405,3609,1596,2503,3619,6090,11211,4902,3933,1523,657,240,188,45,62,382,1121.0,1146.0,1243.0,1351.0,1350.0,1349.0,1413.0,1363.0,1363.0,1368.0,1426.0,1405.0,1286.0,1347.0,1308.0,1354.0,1364.0,1315.0,1391.0,1437.0,1497.0,1401.0,1639.0,1563.0,1363.0,1487.0,1393.0,1333.0,1290.0,1208.0,1276.0,1150.0,1176.0,1231.0,1157.0,1053.0,1082.0,1061.0,1096.0,1011.0,1078.0,1089.0,1149.0,1122.0,1087.0,1085.0,1082.0,1096.0,1085.0,993.0,1090.0,1025.0,1010.0,970.0,939.0,876.0,827.0,833.0,753.0,770.0,697.0,682.0,638.0,588.0,475.0,434.0,429.0,391.0,365.0,324.0,318.0,239.0,271.0,243.0,223.0,192.0,173.0,158.0,137.0,120.0,105.0,76.0,79.0,63.0,59.0,69.0,49.0,45.0,31.0,35.0,23.0,18.0,30.0,21.0,10.0,4.0,6.0,7.0,3.0,4.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,19839,55367,4759,0,6211,6856,6772,6861,7463,6711,5990,5303,5525,5341,5034,4059,3080,1943,1294,780,382,229,102,24,5,0,75899,2927,925,214,0,75920,3096,735,214,0,19876,898,3304,12662,1598,494,21298,19835,0,26545,51729,1691,0,4347,3239,197,23,31,2,1183,387,7,856,69693,0,5598,4184,4394,1158,334,341,18957,44999,0,20951,19395,3272,330,55,35962,0,1.841204512480384,2.960945133686673e-05,2.720526765247876,4.494584026248371e-05,8.66609141499406,1800,1387,1631,518,132,144,6243,12188,0,1412,627,429,818,1437,2204,3691,2552,4356,2755,1599,917,763,232,193,33,23644,399,22398,1645,20875,3168,3419,20624,22679,1364,6560,17483,12691,11352,6630,17413,23116,927,21716,2327,14659,7057,9405,14638,17856,6187,9767,14276,1823,22220,1159,22884,292,23751,4316,13425,5721,581,64,14825,9218,0,668,1022,67,12,10,1,324,78,2,260,21599,0,1.6481934707761232,1.6688928526983864,1.2333333333333334,1.0451388888888888,1.0451388888888888,47.16632699746288 +80822,Panamá,Panamá,Alcalde Díaz,15635,51,1131,318,0,0,0,0,0,0,0,2,31,0,0,3772,9471,672,162,13226,689,4,1,0,144,13,13915,108,3,5,2,15,12,0,17,10400,739,2078,109,53,3,695,13754,38,76,0,0,209,14077,168,457,492,806,968,158,9,2384,1765,9053,637,41,197,13805,93,0,169,2,8,0,12572,518,918,61,2,2,4,9237,4688,2,127,19,4,13924,108,4,6,2,4,0,6,0,3,13,7,16739,429,6.660017098888572,22.23183243089199,6.697919635223711,22.353092049016816,1.0247922142501953,3.3808339845137456,2.197343183917028,14459,8077,16866,1115,3292,489,549,493,193,731,188,151,355,18,843,278,135,324,247,240,245,39569,4920,0,18493,25996,0,35776,8713,0,42087,2402,0,13947,30542,0,10387,3560,29223,1319,0,1352,399,706,146,884,1043,1239,1042,1010,4156,15,24,540,1481,2136,4067,1428,2282,10569,22,183,1002,1415,1475,1763,1652,1625,170,61,576,1,5,5,15,0,18728,2404,18791,0,60,919,247,3116,8311,6257,632,475,14650,690,2882,599,1762,34,24,17,32,23101,23875,3509,11261,608,4968,256,1,26,61,73,732,124,14422,494,0,0,18762,14881,555,201,595,4223,146,545,15,0,74,1302,2358,2475,1729,4000,89,3666,2363,3076,21688,2758,937,1538,2441,3155,5759,3215,2680,1227,567,197,186,76,58,494,592.0,573.0,599.0,723.0,726.0,720.0,749.0,775.0,803.0,793.0,798.0,801.0,772.0,809.0,795.0,732.0,783.0,739.0,757.0,758.0,716.0,794.0,832.0,761.0,801.0,813.0,760.0,687.0,664.0,613.0,650.0,634.0,672.0,659.0,692.0,624.0,637.0,672.0,701.0,637.0,692.0,689.0,686.0,640.0,630.0,635.0,643.0,653.0,622.0,670.0,618.0,587.0,592.0,572.0,531.0,507.0,470.0,472.0,504.0,482.0,427.0,397.0,428.0,359.0,345.0,314.0,324.0,318.0,308.0,248.0,292.0,270.0,215.0,232.0,202.0,177.0,175.0,160.0,122.0,119.0,103.0,84.0,87.0,72.0,66.0,68.0,54.0,60.0,36.0,39.0,30.0,34.0,31.0,18.0,12.0,7.0,7.0,10.0,3.0,2.0,2.0,1.0,2.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,11028,31639,4309,0,3213,3840,3975,3769,3904,3537,3307,3271,3337,3223,2900,2435,1956,1512,1211,753,412,257,125,29,10,0,45349,1039,510,78,0,45371,1134,393,78,0,10301,674,1977,8560,1276,417,12745,11026,0,19305,27023,648,0,453,1233,86,9,4,4,232,20,3,688,44244,0,3058,1903,1704,442,167,198,6952,32552,0,11965,11280,3165,250,22,20294,0,1.83626968503937,0.0,2.663306599955853,0.0,9.283038147138964,1009,646,668,199,73,88,2420,9356,0,732,426,269,536,910,1209,1896,1482,2496,1633,1005,620,617,257,222,116,14200,259,13504,955,12574,1885,2160,12299,13265,1194,3171,11288,7371,7088,3888,10571,13882,577,13232,1227,7838,5394,6057,8402,11913,2546,6771,7688,2161,12298,891,13568,138,14321,2502,8179,3481,297,0,8794,5665,0,99,388,30,6,1,2,72,3,1,233,13624,0,1.597690020056712,1.651220692993983,1.1703703703703705,1.0501474926253689,1.0501474926253689,50.13023030638357 +80823,Panamá,Panamá,Ernesto Córdoba Campos,23183,32,1049,22,8,0,0,4,8,0,0,0,5,0,0,11014,7741,1250,222,19433,572,3,59,0,151,9,19929,255,4,6,3,12,10,0,8,16646,769,1962,221,42,4,583,19896,35,147,0,1,148,20227,693,768,517,1252,545,262,22,6127,1973,11519,441,39,128,19912,105,0,201,0,9,0,15086,1515,2048,1565,11,0,2,14000,6069,3,139,13,3,19389,756,1,0,0,0,0,0,0,70,6,5,24302,9,6.8637943015983325,22.7951950759456,6.8833515338032365,23.065571329296137,1.0247194344193404,3.814900875067978,2.495278588025906,20732,12903,27756,1469,3806,907,765,675,468,1020,223,190,514,185,900,420,181,313,332,85,258,61164,6514,17,32952,34726,17,54432,13246,17,63935,3724,36,22818,44877,0,14025,8793,42790,2050,37,2211,766,1125,133,1424,1624,1880,1682,1811,6254,13,15,331,2185,2957,5214,2131,3232,14637,85,363,954,1423,1648,3136,3159,3859,490,166,2558,2,13,9,155,50,29159,3644,27393,1,89,1510,580,3458,13530,8926,682,797,23680,1218,2941,1077,2724,77,42,63,340,34883,36730,5437,17772,1021,6779,625,4,111,413,71,513,134,25150,936,25,25,27072,19372,343,327,594,9404,475,2401,159,50,470,3484,5263,4060,2328,5457,213,4460,2454,4614,34874,2431,1212,1860,2724,4207,7047,4093,4217,2555,1903,865,1291,590,808,936,873.0,898.0,1018.0,1129.0,1102.0,1216.0,1208.0,1304.0,1348.0,1320.0,1402.0,1289.0,1253.0,1253.0,1275.0,1202.0,1249.0,1193.0,1214.0,1209.0,1193.0,1218.0,1274.0,1206.0,1060.0,1211.0,1126.0,1074.0,992.0,934.0,962.0,932.0,961.0,1024.0,1009.0,971.0,1009.0,1042.0,1111.0,1125.0,1124.0,1134.0,1184.0,1188.0,1135.0,1157.0,1087.0,1138.0,1061.0,940.0,1006.0,976.0,875.0,838.0,813.0,704.0,672.0,679.0,634.0,638.0,637.0,480.0,534.0,423.0,414.0,404.0,371.0,346.0,363.0,292.0,283.0,268.0,278.0,240.0,225.0,213.0,171.0,175.0,140.0,137.0,99.0,93.0,79.0,84.0,79.0,66.0,63.0,43.0,45.0,27.0,25.0,23.0,39.0,16.0,15.0,11.0,17.0,6.0,4.0,8.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,17888,48972,4752,1,5020,6396,6472,6067,5951,5337,4888,5258,5765,5383,4508,3327,2488,1776,1294,836,434,244,118,46,4,1,67630,2289,1505,188,1,67699,2750,975,188,1,14321,723,3388,15498,1463,729,17565,17881,45,23734,46373,1456,50,453,1144,94,9,17,6,1738,82,10,1488,66544,28,4884,2086,2834,1025,303,328,13620,46507,26,19558,17139,3529,277,116,30960,34,1.6859509438808271,0.0008026197508668,2.547794117647059,0.0012420508744038,9.6251378939578,1576,697,1004,420,127,123,4213,12572,0,1285,400,310,642,958,1282,2364,1672,2835,2036,1530,1063,1534,964,1751,101,20525,207,19798,934,18899,1833,3183,17549,19343,1389,8235,12497,11502,9230,8056,12676,20115,617,19409,1323,13653,5756,11157,9575,16905,3827,11664,9068,2207,18525,1122,19610,279,20453,2697,12573,4929,533,20,13081,7651,0,102,340,29,2,9,3,414,16,6,448,19363,0,1.6809464148033924,1.7699498843484964,1.2621359223300972,1.0292479108635098,1.0292479108635098,47.86393015628015 +80826,Panamá,Panamá,Don Bosco,15580,21,3028,5,0,0,0,1,0,0,0,5,6,0,0,15719,12,15,0,15728,18,0,0,0,0,0,15728,0,1,17,0,0,0,0,0,14423,1303,16,3,0,0,1,15586,4,136,0,1,19,15746,383,450,363,701,889,99,3,6186,2034,7330,141,53,2,15731,7,0,3,0,5,0,9989,1028,3251,1474,0,0,4,15474,263,1,4,4,0,15522,0,0,0,0,0,0,0,13,210,1,0,18646,0,6.97564746810978,23.94697848215436,6.975003221234377,23.952261306532662,1.0197510478851772,4.183030610948812,2.787819128667598,16068,8912,16355,588,3384,946,730,618,338,832,186,269,502,178,818,205,121,204,242,108,206,45681,2601,0,36126,12156,0,44196,4086,0,47081,1201,0,13600,34682,0,6155,7445,34238,444,0,547,462,488,82,640,630,793,677,829,1742,3,24,570,863,1102,2266,1022,1651,12173,21,327,1224,1997,2531,3461,4915,4054,550,114,2399,5,6,15,99,0,23323,1641,19980,0,86,597,199,6639,8134,4431,449,327,19802,1082,1647,378,1611,24,21,26,87,23023,26883,5270,13983,372,4422,444,6,22,159,17,193,62,13111,1579,0,0,10284,18716,594,460,759,11274,477,2280,100,0,258,3706,5615,4377,2643,3194,53,1779,1644,1694,17292,1059,740,1142,2158,3197,4989,4379,5340,2966,1919,857,1040,464,785,1579,371.0,369.0,433.0,451.0,518.0,467.0,546.0,603.0,581.0,623.0,624.0,726.0,631.0,683.0,652.0,708.0,670.0,688.0,636.0,674.0,701.0,771.0,815.0,685.0,659.0,744.0,722.0,684.0,663.0,636.0,636.0,672.0,718.0,733.0,680.0,689.0,732.0,763.0,698.0,660.0,723.0,714.0,720.0,712.0,706.0,801.0,782.0,765.0,700.0,752.0,787.0,741.0,722.0,672.0,680.0,708.0,667.0,622.0,643.0,676.0,657.0,603.0,624.0,561.0,486.0,623.0,502.0,485.0,461.0,458.0,436.0,396.0,379.0,337.0,311.0,308.0,264.0,247.0,237.0,208.0,179.0,145.0,141.0,113.0,106.0,101.0,86.0,79.0,58.0,57.0,50.0,48.0,32.0,28.0,22.0,21.0,11.0,10.0,6.0,10.0,6.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,8278,34661,6967,0,2142,2820,3316,3376,3631,3449,3439,3542,3575,3800,3602,3316,2931,2529,1859,1264,684,381,180,58,12,0,43660,3869,2275,102,0,43722,4573,1509,102,0,7315,711,2413,13931,1954,1316,13992,8274,0,11349,36091,2466,0,587,192,29,8,10,5,49,7,9,585,48425,0,7572,2294,1610,928,376,399,6921,29806,0,16454,10529,6974,309,227,15413,0,1.4599183673469387,0.0,2.220195190406328,0.0,11.993107041237527,2521,820,619,394,148,174,2490,8902,0,367,93,62,201,449,670,967,1009,2290,2081,1833,1338,1820,999,1521,357,16022,46,15928,140,15429,639,3336,12732,15315,753,10808,5260,10625,5443,9956,6112,15726,342,15794,274,14093,1701,11950,4118,14932,1136,12164,3904,465,15603,263,15805,176,15892,2324,8548,4637,559,1,8929,7139,0,125,73,11,5,3,4,20,4,3,200,15620,0,1.4327587279855625,1.6729728047793888,1.2375690607734806,1.043956043956044,1.043956043956044,53.8159073935773 +81001,Panamá,San Miguelito,Amelia Denis de Icaza,10364,8,997,68,2,0,0,1,0,0,0,2,11,9,0,8056,651,160,15,8714,153,0,0,0,10,5,8849,9,4,13,1,2,2,0,2,8524,331,1,11,3,0,12,8732,3,93,0,0,54,8882,967,121,84,874,404,89,16,829,1908,5731,374,40,0,8861,15,0,6,0,0,0,7818,534,403,126,0,0,1,7444,1417,2,9,9,1,8842,15,2,0,0,0,0,0,0,20,0,3,11462,0,6.894118975053618,22.471836550400724,6.9017947849644425,22.6874365052489,1.0452600765593334,3.74296329655483,2.410155370412069,9297,4607,9282,423,2494,480,672,478,133,543,138,156,379,126,569,181,89,168,173,93,165,25280,2742,26,12788,15234,26,21316,6706,26,26984,1038,26,7042,20995,11,4868,2174,20330,650,15,704,230,318,76,417,487,648,522,583,2375,6,22,295,695,1089,2396,833,1702,6591,19,120,462,624,802,1311,1750,1513,183,76,1043,3,14,17,92,30,11928,1528,12442,20,93,589,302,3339,4241,3941,412,509,9233,646,1173,676,1125,31,12,33,237,14026,15182,2364,6711,716,2819,264,2,34,256,47,384,74,8983,257,6,6,10782,8822,308,141,343,4270,154,974,94,30,379,1200,2150,1627,1092,2277,56,1636,896,2142,11671,1675,753,1096,1763,2385,3322,1705,1687,863,570,308,398,236,519,257,250.0,272.0,314.0,324.0,333.0,349.0,355.0,352.0,375.0,366.0,396.0,380.0,352.0,371.0,360.0,395.0,373.0,385.0,376.0,389.0,377.0,453.0,470.0,480.0,510.0,489.0,495.0,450.0,438.0,425.0,446.0,365.0,410.0,389.0,348.0,363.0,361.0,387.0,380.0,314.0,410.0,342.0,385.0,343.0,330.0,378.0,354.0,370.0,343.0,351.0,453.0,388.0,439.0,388.0,402.0,408.0,379.0,412.0,408.0,374.0,388.0,334.0,348.0,321.0,328.0,284.0,290.0,303.0,246.0,271.0,241.0,244.0,224.0,198.0,190.0,184.0,170.0,145.0,165.0,151.0,139.0,141.0,130.0,81.0,97.0,96.0,64.0,72.0,43.0,47.0,41.0,24.0,34.0,18.0,12.0,14.0,14.0,7.0,6.0,7.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,5149,19644,4402,13,1493,1797,1859,1918,2290,2297,1958,1805,1810,1796,2070,1981,1719,1394,1097,815,588,322,129,48,9,13,25938,2392,808,53,17,25979,2605,554,53,17,5342,293,506,6338,1217,436,9907,5146,23,11600,15979,1607,22,161,403,41,4,5,2,86,12,4,367,28097,26,1973,1732,1179,407,182,106,4903,18700,26,7341,5723,3489,209,51,12369,26,1.8033596109924117,0.0004420540779488,2.599846474394122,0.0006579668823335,10.336346206518762,664,583,462,170,62,56,1605,5692,3,572,255,158,314,596,820,1000,776,1454,828,552,376,449,267,821,46,9192,105,8901,396,8261,1036,1683,7614,8738,559,3365,5932,5508,3789,3329,5968,8822,475,8723,574,6841,1882,4298,4999,7448,1849,3951,5346,430,8867,196,9101,78,9219,1689,4448,2769,391,12,5136,4161,1,35,139,15,3,2,1,29,6,3,125,8936,3,1.5067139327532495,1.6308948329573532,1.1674418604651162,1.076794657762938,1.076794657762938,54.66630808950086 +81002,Panamá,San Miguelito,Belisario Porras,14595,12,1342,42,0,0,0,0,0,0,0,4,4,0,0,10816,1645,710,112,12649,522,4,6,0,91,11,13149,91,18,2,5,8,2,0,8,13221,26,14,3,0,1,18,12981,18,71,1,1,211,13283,94,458,156,404,1463,120,13,743,2362,9233,880,21,44,13143,68,1,68,0,3,0,12490,45,175,569,0,0,4,8187,5044,2,39,9,2,12775,485,4,0,0,0,0,0,0,2,11,6,15999,0,6.51259047044632,18.11233413751508,6.532720144752714,18.51462605548854,1.0292102687645863,3.239177896559512,2.090566890009787,13676,6758,15367,870,3979,585,767,564,119,687,201,182,365,9,973,258,156,247,266,71,207,36286,5345,1,11759,29872,1,28367,13264,1,39335,2296,1,12065,29567,0,10501,1564,28172,1393,2,1455,463,668,114,875,1024,1292,1059,1159,4454,14,30,314,1621,2347,4622,1558,2756,9602,37,150,661,838,957,1137,972,969,99,30,338,2,1,2,10,2,16529,2225,18468,1,58,888,453,2966,7200,6869,705,728,12339,589,2101,864,2242,56,11,29,146,21831,22298,2751,9532,909,4906,83,3,28,165,30,836,123,13214,274,0,0,20951,12577,333,134,315,2508,78,315,10,2,200,821,1456,1638,1391,4122,114,3382,1567,4063,20857,3255,1029,1751,2525,3536,5650,2365,1720,608,298,96,106,26,33,274,597.0,582.0,630.0,688.0,734.0,722.0,770.0,721.0,734.0,728.0,800.0,808.0,698.0,688.0,683.0,723.0,707.0,679.0,708.0,668.0,705.0,698.0,811.0,759.0,634.0,782.0,759.0,665.0,636.0,627.0,606.0,620.0,622.0,600.0,596.0,601.0,590.0,592.0,600.0,563.0,578.0,587.0,578.0,599.0,545.0,595.0,613.0,574.0,592.0,543.0,590.0,562.0,570.0,521.0,451.0,441.0,455.0,426.0,402.0,414.0,362.0,371.0,373.0,315.0,313.0,318.0,297.0,294.0,273.0,280.0,295.0,251.0,292.0,249.0,220.0,210.0,169.0,181.0,164.0,175.0,138.0,115.0,112.0,84.0,90.0,83.0,83.0,51.0,44.0,35.0,24.0,24.0,20.0,17.0,13.0,7.0,3.0,6.0,3.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10583,28921,4625,0,3231,3675,3677,3485,3607,3469,3044,2946,2887,2917,2694,2138,1734,1462,1307,899,539,296,98,20,4,0,41083,2551,380,115,0,41098,2608,308,115,0,10119,498,3116,6370,1429,279,11739,10579,0,21819,20576,1734,0,382,928,113,4,16,11,1196,108,5,639,40727,0,2716,1837,2817,966,184,241,10003,25364,1,9566,9401,2974,225,31,21931,1,2.0083066084853582,0.0,2.84599891548532,0.0,8.5773301003875,952,625,1078,413,69,102,3025,7412,0,933,536,304,630,1127,1347,1980,1444,2353,1353,658,389,334,132,107,44,13388,288,12692,984,11715,1961,1761,11915,12741,935,2666,11010,7575,6101,1938,11738,12929,747,12627,1049,7382,5245,4025,9651,9183,4493,3519,10157,416,13260,255,13421,147,13529,2672,6682,4039,283,3,7513,6163,0,95,309,37,1,9,4,308,19,2,222,12670,0,1.595949996344762,1.6300899188537177,1.1926605504587156,1.0516039051603905,1.0516039051603905,50.43492249195671 +81003,Panamá,San Miguelito,José Domingo Espinar,13049,5,2800,10,6,0,2,0,0,0,2,6,7,0,0,13117,512,148,20,13705,72,0,2,0,18,0,13749,37,0,10,0,0,1,0,0,13534,247,15,1,0,0,0,13605,0,159,0,0,33,13797,320,440,93,595,510,69,40,4465,1876,7133,194,52,77,13757,28,0,11,1,0,0,10169,895,1233,1500,0,0,0,13113,661,3,17,2,1,13522,198,0,0,0,0,0,0,0,75,2,0,15887,0,6.921793002915452,23.54344023323615,6.922667638483965,23.56508746355685,1.028846850764659,4.076755816481844,2.746031746031746,14209,7882,14787,576,2497,935,739,594,329,689,184,234,582,211,685,181,149,211,286,97,147,40360,2626,32,29484,13502,32,39011,3975,32,41705,1276,37,12072,30946,0,5592,6480,30315,593,38,695,379,467,90,543,579,748,601,700,2197,8,18,338,764,1048,2297,908,1509,8797,56,447,1019,1468,2046,2799,4766,3716,513,143,3119,4,8,18,165,45,21163,1473,17423,15,54,666,157,5982,7175,3468,386,412,17334,1050,1845,558,1528,20,23,26,20,20725,23723,4702,11927,609,4510,574,4,48,30,17,279,64,10823,524,8,8,10431,14383,355,433,520,10195,492,3054,166,45,58,3319,5339,3887,1887,3017,78,1911,1259,1880,14413,1307,786,1109,2017,3191,4369,3534,4738,2833,1892,1088,1245,602,800,524,353.0,337.0,363.0,377.0,460.0,435.0,473.0,492.0,498.0,586.0,545.0,526.0,553.0,542.0,588.0,567.0,588.0,591.0,592.0,645.0,641.0,714.0,693.0,692.0,687.0,745.0,728.0,662.0,631.0,549.0,664.0,625.0,635.0,624.0,574.0,587.0,617.0,610.0,578.0,604.0,587.0,582.0,630.0,617.0,626.0,600.0,580.0,605.0,592.0,582.0,645.0,622.0,659.0,629.0,633.0,647.0,550.0,613.0,601.0,660.0,640.0,566.0,611.0,558.0,485.0,529.0,514.0,494.0,418.0,420.0,363.0,350.0,319.0,288.0,283.0,272.0,245.0,229.0,196.0,180.0,142.0,132.0,126.0,97.0,108.0,98.0,81.0,78.0,75.0,64.0,66.0,31.0,31.0,28.0,21.0,12.0,15.0,20.0,10.0,8.0,3.0,3.0,1.0,5.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7128,30963,6357,0,1890,2484,2754,2983,3427,3315,3122,2996,3042,2959,3188,3071,2860,2375,1603,1122,605,396,177,65,14,0,39289,3325,1792,41,1,39337,3880,1189,41,1,6420,806,2146,12194,1753,1313,12649,7127,40,11470,30918,2023,37,195,368,21,3,8,4,616,50,2,966,42190,25,4043,2165,1298,616,371,307,7249,28375,24,13909,8704,6429,261,153,14965,27,1.4995135060000926,0.0003706620951674,2.2855491329479767,0.0005780346820809,12.040541756659469,1399,812,522,266,152,155,2580,8322,1,206,105,77,206,413,652,876,870,1915,1596,1420,1021,1669,1059,1962,148,14132,77,14006,203,13473,736,2624,11585,13629,580,9024,5185,9141,5068,8497,5712,13897,312,13861,348,12210,1651,10083,4126,13001,1208,10384,3825,512,13697,265,13944,141,14068,2188,7501,3914,606,10,8393,5816,0,55,124,10,1,3,3,131,10,0,313,13558,1,1.457556790210282,1.668401434700049,1.1967213114754098,1.0355113636363635,1.0355113636363635,54.07734534449997 +81004,Panamá,San Miguelito,Mateo Iturralde,2449,1,1222,36,0,0,0,0,0,0,0,2,7,0,0,3025,15,1,3,2998,43,1,0,0,1,1,3040,1,0,1,0,1,1,0,0,2997,7,0,1,0,0,39,2999,2,23,0,0,20,3044,124,91,37,151,232,29,0,69,874,1913,164,21,3,3037,7,0,0,0,0,0,2834,3,10,193,3,0,1,2466,575,0,0,3,0,3038,0,0,0,0,0,0,0,0,6,0,0,3717,0,6.875576036866359,22.381830151415404,6.882817643186307,22.592165898617512,1.05946123521682,3.480289093298292,2.266425755584757,3234,1292,2783,139,893,160,325,245,36,184,66,68,200,13,254,82,51,90,71,24,47,8345,925,2,4028,5242,2,7347,1923,2,8904,366,2,2257,7014,1,1754,503,6862,151,1,169,89,118,47,139,150,234,153,173,726,1,11,101,181,345,807,267,471,2607,0,21,202,323,367,505,441,431,38,8,132,0,1,1,11,2,4085,443,4042,2,16,152,72,1180,1261,1176,208,217,3002,198,530,289,432,7,4,5,9,4595,5043,955,2051,286,1145,21,0,4,14,11,113,35,2643,1092,1,1,3341,3648,105,34,140,1133,32,125,12,2,17,292,569,551,429,883,20,689,338,740,3509,364,278,325,636,857,1071,648,498,197,84,36,16,10,17,1092,92.0,85.0,96.0,93.0,100.0,97.0,119.0,122.0,138.0,124.0,109.0,120.0,129.0,92.0,115.0,100.0,127.0,111.0,126.0,101.0,131.0,115.0,153.0,134.0,126.0,165.0,145.0,148.0,132.0,141.0,132.0,147.0,156.0,147.0,133.0,129.0,140.0,155.0,108.0,96.0,111.0,90.0,93.0,113.0,112.0,112.0,104.0,132.0,126.0,114.0,112.0,130.0,136.0,146.0,140.0,150.0,147.0,147.0,148.0,139.0,121.0,118.0,118.0,129.0,111.0,99.0,94.0,77.0,90.0,82.0,67.0,75.0,78.0,62.0,72.0,63.0,65.0,51.0,62.0,61.0,42.0,38.0,62.0,42.0,43.0,41.0,38.0,44.0,24.0,20.0,21.0,12.0,19.0,15.0,13.0,9.0,10.0,8.0,1.0,3.0,2.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,1631,6397,1609,1,466,600,565,565,659,731,715,628,519,588,664,731,597,442,354,302,227,167,80,31,6,1,8422,1108,99,7,2,8424,1122,83,7,2,1848,215,1125,1587,524,201,2505,1631,2,4036,5025,575,2,86,129,10,2,0,0,47,1,1,203,9157,2,976,518,578,188,55,38,1934,5349,2,2278,1874,1240,77,6,4161,2,1.8138556883576804,0.0002213368747233,2.578392621870883,0.0003293807641633,10.218095040464826,348,185,227,82,23,21,686,1660,2,215,74,73,91,206,298,383,291,497,317,175,121,106,37,43,298,3202,32,3105,129,2795,439,535,2699,3037,197,933,2301,1879,1355,1133,2101,3045,189,3017,217,2207,810,1300,1934,2474,760,1138,2096,69,3165,44,3190,22,3212,705,1280,1090,159,0,1654,1580,1,25,44,4,0,0,0,18,0,1,81,3059,2,1.4208410636982065,1.559369202226345,1.1428571428571428,1.0938775510204082,1.0938775510204082,55.79554593257037 +81005,Panamá,San Miguelito,Victoriano Lorenzo,4986,3,1487,99,8,0,0,0,0,0,0,0,17,0,0,4909,93,9,7,4805,206,0,0,0,4,3,5014,1,0,0,0,0,2,0,1,4779,236,1,0,0,0,2,4770,0,188,0,0,60,5018,347,252,35,236,644,34,9,643,1368,2773,154,80,0,5007,9,0,2,0,0,0,3861,202,23,927,4,0,1,4033,975,1,0,9,0,5015,2,0,0,0,0,0,0,0,0,0,1,6600,0,6.952959936216863,23.34084114012358,6.964520629858481,23.450667729718955,1.0346751693901952,3.4071343164607413,2.1253487445197288,5209,2391,4347,237,1232,192,397,304,67,257,97,113,280,58,345,105,52,69,74,19,95,13198,1311,13,7679,6830,13,11772,2737,13,14010,494,18,3648,10865,9,2473,1175,10567,289,9,313,142,209,41,212,243,296,293,260,1022,7,9,120,354,552,1410,419,731,3737,8,41,161,300,390,635,703,962,135,19,680,0,3,17,78,20,6722,673,5996,13,25,314,115,1588,2152,1821,263,172,5206,298,568,442,763,15,2,3,43,7318,7863,1246,3800,443,1597,140,0,10,104,11,225,23,3991,1025,6,6,5291,4723,132,73,165,2195,122,617,66,20,185,702,1203,885,539,1329,20,869,511,1152,5310,627,358,502,795,1126,1794,990,911,534,380,214,267,138,210,1025,169.0,152.0,159.0,179.0,169.0,186.0,201.0,182.0,189.0,191.0,212.0,199.0,174.0,187.0,183.0,198.0,157.0,179.0,193.0,190.0,203.0,223.0,239.0,193.0,238.0,247.0,256.0,217.0,207.0,237.0,244.0,261.0,220.0,259.0,224.0,251.0,230.0,229.0,209.0,231.0,233.0,212.0,213.0,218.0,200.0,200.0,192.0,178.0,190.0,150.0,199.0,176.0,197.0,204.0,197.0,169.0,195.0,179.0,196.0,193.0,195.0,156.0,186.0,161.0,125.0,121.0,120.0,133.0,132.0,97.0,131.0,119.0,116.0,107.0,107.0,85.0,92.0,90.0,76.0,92.0,64.0,52.0,60.0,48.0,47.0,41.0,51.0,33.0,29.0,39.0,17.0,18.0,16.0,12.0,20.0,11.0,7.0,9.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,2732,10249,2199,1,828,949,955,917,1096,1164,1208,1150,1076,910,973,932,823,603,580,435,271,193,83,29,5,1,12692,2062,398,15,14,12708,2173,272,15,13,2962,207,376,2951,644,253,5046,2731,11,6278,7650,1235,18,131,131,8,0,3,2,30,1,4,443,14408,20,1187,1434,667,226,55,57,2234,9303,18,3891,2853,1717,72,34,6597,17,1.6960546930636662,0.0008545791197835,2.5262230057293964,0.001322168356104,10.47078585073447,412,460,293,98,23,28,854,3040,1,265,116,86,131,276,373,548,445,785,523,359,215,303,188,396,183,5122,87,5014,195,4563,646,768,4441,4840,369,2204,3005,2748,2461,1898,3311,4972,237,4913,296,4074,839,2609,2600,4211,998,2248,2961,112,5097,69,5140,42,5167,1180,2349,1421,259,8,2911,2298,1,33,47,4,0,2,1,6,1,1,175,4938,1,1.4027218708069773,1.5071880391029326,1.1733333333333331,1.075,1.075,52.58736559139785 +81006,Panamá,San Miguelito,Arnulfo Arias,9862,22,441,5,3,0,0,0,0,0,0,1,2,0,0,4916,2482,865,105,7919,344,0,2,0,89,14,8040,315,5,1,0,4,0,0,3,8027,29,166,125,9,4,8,8248,9,51,0,0,60,8368,436,110,139,365,770,128,14,393,936,6374,510,41,114,8186,55,2,113,1,11,0,8033,170,127,34,2,0,2,4412,3867,0,88,0,1,7745,604,5,0,0,0,0,0,1,4,7,2,10336,0,5.781781182666986,18.37084031601628,5.831457984199186,18.510174766578885,1.0462476099426383,3.480640535372849,2.31560707456979,8758,4833,11690,797,3059,267,463,409,102,580,148,79,230,18,493,150,63,190,187,48,151,24808,4421,2,6869,22360,2,21544,7685,2,26959,2270,2,9331,19900,0,7952,1379,18711,1187,2,1238,400,601,84,766,791,1007,812,935,3296,4,28,90,1336,1949,3413,1185,1823,6226,42,116,353,469,414,471,486,618,40,21,200,0,0,1,12,4,10493,2029,12893,0,40,921,371,1395,5459,5160,418,461,8178,437,1430,512,1350,41,11,47,35,15328,16105,1851,6489,535,2946,111,2,66,41,25,314,97,10769,585,0,0,15836,7681,92,97,110,1365,33,186,11,4,74,525,761,1009,743,2780,150,2155,1038,3287,17245,1711,592,1055,1390,2183,3672,1350,938,282,168,74,87,43,58,585,489.0,495.0,589.0,629.0,659.0,596.0,641.0,641.0,632.0,647.0,634.0,635.0,563.0,503.0,573.0,551.0,515.0,565.0,500.0,566.0,509.0,576.0,584.0,585.0,513.0,585.0,533.0,498.0,475.0,483.0,472.0,477.0,494.0,449.0,439.0,427.0,468.0,408.0,447.0,407.0,409.0,370.0,378.0,376.0,346.0,377.0,339.0,339.0,339.0,308.0,325.0,297.0,301.0,282.0,307.0,315.0,281.0,298.0,301.0,278.0,302.0,269.0,283.0,220.0,207.0,249.0,189.0,163.0,185.0,146.0,143.0,130.0,106.0,115.0,89.0,81.0,62.0,66.0,50.0,45.0,44.0,29.0,32.0,34.0,28.0,20.0,23.0,15.0,17.0,14.0,8.0,11.0,12.0,9.0,6.0,3.0,0.0,0.0,4.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,8926,20373,2133,1,2861,3157,2908,2697,2767,2574,2331,2157,1879,1702,1512,1473,1281,932,583,304,167,89,46,10,2,1,30190,672,406,165,0,30199,711,358,165,0,7563,280,1153,4274,584,119,8533,8924,3,14488,16445,497,3,657,637,50,11,9,7,2376,69,4,422,27189,2,2704,2338,3163,1045,417,127,7714,13923,2,6434,6827,1394,139,18,16619,2,2.06971975393028,0.0,2.9460157126823794,0.0,7.899564152323991,864,706,1079,416,127,53,2086,3427,0,790,324,229,437,680,840,1383,888,1378,783,356,175,203,76,137,76,8658,100,8181,577,7625,1133,1117,7641,8242,516,1513,7245,4453,4305,1230,7528,8287,471,8154,604,4353,3801,2301,6457,6685,2073,2394,6364,824,7934,313,8445,76,8682,1297,4733,2541,187,3,4961,3797,0,116,164,14,7,7,2,515,16,3,126,7788,0,1.7495719666704714,1.838260472548796,1.28125,1.0504587155963303,1.0504587155963303,47.95604019182462 +81007,Panamá,San Miguelito,Belisario Frías,12389,9,188,52,0,0,13,0,0,0,0,0,2,0,0,7945,1005,309,30,9120,139,5,1,0,18,6,9056,223,1,1,1,3,1,0,3,9218,11,42,13,4,0,1,9191,11,22,0,0,65,9289,1724,201,68,614,629,112,1,149,1268,7223,379,30,240,9142,39,3,101,0,3,1,9268,6,3,11,0,0,1,6223,3025,0,40,1,0,8877,405,4,0,0,0,0,0,0,1,1,1,12653,0,6.867973293129443,22.924617704070645,6.870450139995692,22.944324790006466,1.058779201205727,3.480568414253418,2.295726127677898,9837,4896,11154,753,3657,304,561,465,73,630,140,107,492,3,635,247,91,211,188,155,238,27068,4130,1,8136,23062,1,22098,9100,1,29678,1520,1,8524,22675,0,7530,994,21673,1001,1,1018,319,463,81,650,716,922,793,835,3271,9,33,341,1213,1701,3745,1248,2153,7840,20,57,468,593,596,593,417,938,31,14,111,0,0,2,7,1,10704,1688,15505,0,133,858,283,2970,5248,6165,489,633,8775,327,1250,372,1188,52,5,28,32,16158,16914,2256,6395,398,2832,86,3,13,46,15,480,104,11136,169,0,0,15833,9762,347,55,171,1604,26,91,7,1,63,514,840,1145,1017,2827,66,2142,1246,2532,16531,1870,705,1330,2091,2511,4307,1834,1206,351,107,24,22,6,8,169,366.0,439.0,515.0,553.0,547.0,535.0,539.0,604.0,538.0,539.0,610.0,576.0,529.0,501.0,530.0,476.0,485.0,484.0,505.0,476.0,501.0,499.0,567.0,528.0,513.0,573.0,572.0,483.0,501.0,455.0,478.0,414.0,439.0,471.0,424.0,408.0,452.0,437.0,465.0,437.0,476.0,414.0,416.0,371.0,347.0,392.0,351.0,377.0,351.0,328.0,398.0,359.0,338.0,348.0,342.0,312.0,333.0,340.0,336.0,336.0,349.0,323.0,362.0,357.0,314.0,371.0,301.0,317.0,309.0,296.0,268.0,270.0,249.0,249.0,189.0,178.0,147.0,142.0,138.0,113.0,95.0,74.0,72.0,47.0,49.0,46.0,34.0,31.0,24.0,24.0,15.0,20.0,11.0,14.0,7.0,9.0,12.0,4.0,6.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7921,21013,4138,0,2420,2755,2746,2426,2608,2584,2226,2199,2024,1799,1785,1657,1705,1594,1225,718,337,159,67,35,3,0,31977,802,211,82,0,31988,824,178,82,0,7660,447,3244,4840,1069,238,7669,7905,0,14518,18006,548,0,539,774,69,12,11,5,575,14,12,500,30561,0,2307,2305,2451,705,170,194,9179,15761,0,6855,7489,2846,256,29,15596,1,2.0519163763066204,0.0,2.878931451612903,0.0,8.538340590227383,825,727,862,285,80,85,2649,4324,0,814,318,218,421,793,932,1564,1040,1728,967,486,245,213,45,26,25,9753,84,9325,512,8821,1016,1534,8303,9264,573,1868,7969,5960,3877,1962,7875,9321,516,9369,468,5418,3951,2863,6974,7099,2738,2970,6867,442,9395,200,9637,78,9759,1743,4712,3234,148,13,5582,4255,0,115,210,19,5,2,2,147,5,7,192,9133,0,1.6404060913705585,1.7171573604060917,1.26,1.0874200426439231,1.0874200426439231,52.83074107959744 +81008,Panamá,San Miguelito,Omar Torrijos,11188,15,1767,180,12,4,0,8,0,0,0,0,4,0,0,6896,2892,460,25,9818,430,0,0,0,23,2,10242,19,1,3,0,1,1,0,6,9858,312,25,60,2,1,15,10043,5,82,0,0,143,10273,491,351,145,1112,652,126,0,755,2247,6674,503,69,25,10239,15,0,12,0,7,0,9762,212,143,155,0,0,1,7906,2355,1,8,2,1,10097,135,4,0,0,0,1,0,0,28,6,2,13178,0,6.699491989058226,20.593493552168816,6.728800312622118,21.006252442360296,1.030760245303222,3.437068042441352,2.2302151270320256,10593,5007,10205,568,2973,414,637,497,129,589,158,158,439,36,797,292,156,193,235,152,277,27949,3144,2,13235,17858,2,25044,6049,2,29746,1347,2,8435,22659,1,6193,2242,21962,696,1,750,285,526,164,456,518,676,586,682,2756,4,32,517,790,1247,2957,986,1675,7748,28,153,698,929,1109,1282,1136,1557,166,79,552,1,6,4,38,2,13223,1511,13845,2,89,632,233,3646,5018,4143,570,468,10274,565,1474,590,1472,45,12,7,98,15668,16735,2661,7370,612,3442,243,1,87,121,9,426,74,9338,1107,2,2,12452,10842,524,190,424,3422,163,524,38,2,155,1097,1720,1818,1331,2878,54,2116,1277,2288,13605,1245,738,1192,1939,2655,3966,2282,1946,806,388,163,177,67,127,1107,332.0,296.0,315.0,365.0,402.0,421.0,399.0,416.0,421.0,455.0,475.0,477.0,419.0,428.0,480.0,452.0,450.0,411.0,451.0,469.0,495.0,502.0,521.0,524.0,486.0,556.0,525.0,482.0,415.0,450.0,467.0,472.0,513.0,438.0,436.0,423.0,383.0,447.0,452.0,420.0,407.0,422.0,437.0,472.0,430.0,409.0,425.0,471.0,442.0,398.0,449.0,423.0,450.0,408.0,412.0,423.0,372.0,339.0,331.0,341.0,298.0,283.0,317.0,280.0,262.0,279.0,277.0,267.0,277.0,297.0,253.0,299.0,278.0,268.0,277.0,263.0,261.0,199.0,192.0,172.0,146.0,125.0,123.0,98.0,100.0,82.0,81.0,58.0,51.0,40.0,35.0,29.0,29.0,21.0,21.0,21.0,6.0,11.0,4.0,8.0,5.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6101,21341,4961,0,1710,2112,2279,2233,2528,2428,2326,2125,2168,2145,2142,1806,1440,1397,1375,1087,592,312,135,50,13,0,29172,2438,744,49,0,29189,2715,450,49,0,6649,518,1341,5907,1383,488,10017,6100,0,12884,18102,1415,2,322,512,46,6,9,5,124,30,1,821,30525,2,2415,1477,1633,527,143,218,7094,18894,2,8089,6553,3802,186,30,13741,2,1.832247666375663,0.0001343093143509,2.613115407614112,0.0001993223041658,9.874147455482516,824,509,631,218,63,94,2567,5686,1,694,250,171,359,625,871,1358,999,1709,1200,661,411,450,205,268,358,10401,192,10026,567,9156,1437,1748,8845,9892,701,3062,7531,5758,4835,3498,7095,10103,490,9904,689,6591,3313,4512,6081,8091,2502,4271,6322,639,9954,240,10353,81,10512,2188,4924,3166,315,24,5963,4630,0,65,169,11,3,4,4,39,11,1,325,9960,1,1.475746444381652,1.5762456437788452,1.3112582781456954,1.061746987951807,1.061746987951807,53.68016614745586 +81009,Panamá,San Miguelito,Rufina Alfaro,13742,2,386,5,13,0,0,3,0,0,0,2,3,0,0,12498,222,17,3,12720,17,0,0,0,2,1,12729,0,0,11,0,0,0,0,0,12151,576,6,0,1,0,6,12551,0,177,0,0,12,12740,235,282,79,264,408,125,2,5662,1153,5754,128,41,2,12717,18,0,5,0,0,0,6837,1290,4432,181,0,0,0,12402,321,2,7,6,2,12636,0,0,0,0,0,0,0,0,103,1,0,14156,0,6.939616967394745,23.56117442228553,6.950617283950617,23.80294396961064,1.021193092621664,4.466483516483517,2.9703296703296704,13015,7958,14283,454,1691,922,576,459,411,470,152,188,438,248,770,167,130,186,251,129,208,38393,1952,11,32420,7925,11,37784,2561,11,39499,841,16,11975,28381,0,4035,7940,28009,353,19,425,343,328,60,423,472,574,540,626,1597,2,2,248,706,835,1515,800,1097,9373,18,382,754,1110,1621,3402,4234,4570,644,179,3270,8,25,21,130,22,19012,1569,17459,2,77,438,215,5871,7701,3024,378,485,16487,1019,1092,338,1312,17,30,17,77,18940,22325,4355,11516,344,3616,384,6,72,96,6,164,22,11749,912,1,1,7905,13284,279,473,484,11788,607,3057,143,22,171,3782,5652,3896,1802,2079,62,1101,850,1187,13688,814,811,851,1490,2313,2731,3525,4540,2869,2292,1200,1484,733,1012,912,198.0,197.0,227.0,287.0,317.0,327.0,362.0,433.0,403.0,472.0,484.0,561.0,571.0,651.0,583.0,601.0,631.0,633.0,699.0,645.0,655.0,687.0,659.0,654.0,614.0,631.0,542.0,492.0,451.0,434.0,467.0,439.0,454.0,409.0,416.0,432.0,402.0,397.0,466.0,450.0,501.0,523.0,557.0,597.0,586.0,654.0,687.0,662.0,760.0,699.0,806.0,824.0,782.0,715.0,732.0,683.0,620.0,640.0,601.0,572.0,536.0,465.0,483.0,418.0,385.0,416.0,380.0,353.0,369.0,377.0,338.0,299.0,366.0,314.0,309.0,275.0,299.0,265.0,263.0,228.0,202.0,166.0,162.0,145.0,125.0,110.0,92.0,82.0,80.0,55.0,41.0,39.0,37.0,40.0,27.0,19.0,27.0,16.0,11.0,7.0,2.0,1.0,3.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,6073,28848,6343,1,1226,1997,2850,3209,3269,2550,2185,2147,2764,3462,3859,3116,2287,1895,1626,1330,800,419,184,80,9,1,37103,2130,1992,40,0,37186,2527,1512,40,0,4214,478,214,13898,1617,996,13769,6073,6,9445,30004,1799,17,175,322,30,3,5,0,41,14,4,762,39896,13,4440,2029,861,438,302,307,6652,26221,15,13579,9337,6116,206,266,11752,9,1.418050193050193,4.826254826254826e-05,2.1737575157926785,7.610929294466855e-05,12.769223312734765,1543,721,350,209,111,168,2315,7598,0,357,63,60,114,236,408,543,676,1310,1369,1306,1095,1720,1153,2373,227,12971,44,12902,113,12646,369,2799,10216,12527,488,10182,2833,9196,3819,9173,3842,12798,217,12822,193,11850,972,10673,2342,12475,540,11108,1907,795,12220,313,12702,149,12866,1591,7663,3228,533,16,7926,5089,0,46,108,7,1,1,0,16,4,1,246,12585,0,1.453457140664569,1.713222316015655,1.1666666666666667,1.0429752066115705,1.0429752066115705,55.50779869381483 +81101,Panamá,Taboga,Taboga,496,1,44,0,0,0,0,0,0,0,0,0,4,0,0,184,48,1,1,231,2,1,0,0,0,0,232,0,0,1,0,0,0,0,1,226,0,6,1,1,0,0,229,1,1,0,0,3,234,5,233,23,14,9,23,0,0,27,197,9,1,0,222,9,0,3,0,0,0,221,4,7,2,0,0,0,163,65,0,2,4,0,13,51,126,0,0,0,0,0,0,44,0,0,0,545,6.589473684210526,22.05263157894737,6.747368421052632,22.36315789473684,1.051282051282051,4.333333333333333,2.8974358974358974,250,123,187,18,84,5,13,7,5,20,1,5,16,0,17,3,6,5,18,56,13,614,98,0,154,558,0,518,194,0,671,41,0,142,570,0,111,31,550,20,0,20,8,9,2,6,12,12,13,10,161,0,1,8,28,43,106,21,39,123,0,4,11,17,14,18,11,8,1,0,5,0,0,1,0,0,323,21,317,0,0,11,7,83,84,113,31,6,170,11,36,16,23,0,1,76,5,391,343,64,115,14,119,21,0,0,5,3,52,5,169,114,0,0,437,165,10,3,8,31,1,6,0,0,7,24,7,30,25,83,31,30,29,78,259,80,29,37,50,45,37,31,33,8,3,1,3,1,3,114,6.0,3.0,10.0,3.0,7.0,13.0,7.0,5.0,10.0,9.0,11.0,7.0,6.0,11.0,14.0,6.0,6.0,9.0,9.0,9.0,14.0,9.0,9.0,9.0,12.0,15.0,10.0,6.0,8.0,8.0,6.0,8.0,3.0,9.0,6.0,6.0,7.0,4.0,6.0,7.0,7.0,10.0,15.0,14.0,8.0,10.0,12.0,7.0,7.0,9.0,12.0,4.0,9.0,9.0,12.0,6.0,8.0,13.0,7.0,11.0,10.0,9.0,17.0,11.0,14.0,9.0,15.0,10.0,8.0,8.0,4.0,9.0,9.0,13.0,5.0,8.0,11.0,7.0,4.0,3.0,7.0,4.0,4.0,4.0,2.0,2.0,3.0,2.0,0.0,2.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,122,452,160,0,29,44,49,39,53,47,32,30,54,45,46,45,61,50,40,33,21,9,5,2,0,0,681,28,23,2,0,681,41,10,2,0,145,8,3,176,37,8,235,122,0,498,200,36,0,2,1,1,0,0,0,2,0,0,70,658,0,26,46,14,4,3,1,171,469,0,123,106,85,1,13,406,0,2.139610389610389,0.0,2.7797356828193838,0.0,8.486376021798366,12,22,6,3,1,0,61,145,0,15,19,6,17,26,28,14,22,33,20,9,3,4,2,3,25,248,2,236,14,216,34,33,217,234,16,93,157,157,93,13,237,237,13,232,18,142,90,65,185,183,67,46,204,39,211,10,240,0,250,71,104,66,9,0,166,84,0,1,1,1,0,0,0,0,0,0,28,219,0,1.564,1.372,1.0,1.0454545454545454,1.0454545454545454,59.904 +81102,Panamá,Taboga,Otoque Occidente,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,2,0,44,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,1,5,35,3,0,0,0,44,0,0,0,0,0,44,0,37,6,0,0,2,0,0,0,44,0,0,0,44,0,0,0,0,0,0,23,1,20,0,0,0,0,24,20,0,0,0,0,0,30,0,0,0,0,0,0,0,14,0,0,0,89,5.833333333333333,14.0,5.833333333333333,14.0,1.0,4.068181818181818,2.909090909090909,44,24,28,0,8,5,18,24,0,5,7,4,0,0,1,3,5,0,3,2,7,149,15,0,55,109,0,117,47,0,161,3,0,17,147,0,10,7,145,2,0,2,0,0,1,1,0,0,0,2,28,0,0,8,2,10,16,4,11,41,0,0,3,1,7,11,4,9,0,0,3,0,0,0,0,0,78,7,77,0,1,1,2,36,10,21,3,7,51,7,8,4,4,0,3,7,0,93,74,16,35,3,25,3,0,2,0,0,13,0,27,21,0,0,75,52,8,0,1,23,0,3,0,0,1,7,11,10,8,14,5,13,8,8,36,20,3,5,11,13,11,27,9,1,2,3,4,0,1,21,0.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,3.0,0.0,3.0,3.0,3.0,0.0,1.0,3.0,2.0,1.0,3.0,3.0,1.0,1.0,1.0,1.0,3.0,3.0,4.0,0.0,3.0,3.0,0.0,1.0,2.0,2.0,1.0,4.0,3.0,3.0,3.0,2.0,4.0,2.0,3.0,1.0,0.0,2.0,1.0,2.0,4.0,1.0,7.0,3.0,1.0,2.0,5.0,4.0,4.0,0.0,3.0,1.0,4.0,1.0,4.0,3.0,5.0,4.0,1.0,5.0,3.0,2.0,2.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,9,101,57,0,4,1,4,5,9,10,7,13,8,14,12,9,14,16,13,18,7,2,1,0,0,0,166,0,1,0,0,166,1,0,0,0,34,0,0,72,6,2,44,9,0,114,52,1,0,0,0,0,0,0,0,0,0,0,2,165,0,13,4,2,0,10,2,42,94,0,41,28,38,2,2,56,0,1.7397260273972603,0.0,2.3653846153846154,0.0,10.574850299401197,5,1,0,0,3,0,20,15,0,2,0,1,2,2,3,8,4,7,0,4,3,4,1,3,0,44,0,44,0,25,19,5,39,42,2,12,32,30,14,1,43,43,1,38,6,7,31,6,38,30,14,4,40,8,36,2,42,0,44,7,13,24,0,0,35,9,0,0,0,0,0,0,0,0,0,0,2,42,0,2.113636363636364,1.681818181818182,0.0,1.0,1.0,65.61363636363636 +81103,Panamá,Taboga,Otoque Oriente,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,44,3,2,53,2,1,0,1,0,0,57,0,0,0,0,0,0,0,0,0,0,48,1,0,8,0,57,0,0,0,0,0,57,1,71,3,0,2,14,0,0,0,55,2,0,0,56,0,0,0,0,1,0,43,0,14,0,0,0,0,32,25,0,0,0,0,0,55,1,0,0,0,0,0,0,1,0,0,0,148,3.267857142857143,6.142857142857143,3.392857142857143,6.839285714285714,1.0350877192982455,3.3859649122807016,2.333333333333333,59,46,72,0,3,3,1,2,0,1,0,1,0,0,2,3,1,0,1,4,3,118,67,0,5,180,0,73,112,0,177,8,0,40,145,0,36,4,142,3,0,3,2,3,2,1,5,1,4,4,102,0,0,1,7,5,23,4,5,12,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,65,10,98,0,0,4,4,0,27,49,5,17,7,3,3,0,6,0,1,50,1,101,87,6,4,0,52,1,0,7,1,0,25,0,66,18,0,0,159,12,1,0,0,1,0,0,0,0,1,2,0,0,0,3,50,6,5,8,128,35,6,0,1,0,0,0,0,0,0,0,0,0,0,18,1.0,0.0,1.0,1.0,2.0,2.0,3.0,2.0,3.0,0.0,3.0,5.0,4.0,4.0,0.0,1.0,6.0,5.0,3.0,4.0,2.0,4.0,5.0,3.0,1.0,0.0,0.0,2.0,0.0,2.0,5.0,1.0,3.0,5.0,3.0,0.0,3.0,3.0,4.0,0.0,6.0,4.0,1.0,4.0,1.0,3.0,3.0,2.0,2.0,2.0,5.0,3.0,2.0,3.0,3.0,3.0,4.0,3.0,2.0,1.0,1.0,2.0,3.0,0.0,0.0,4.0,1.0,2.0,2.0,0.0,3.0,2.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,31,128,29,0,5,10,16,19,15,4,17,10,16,12,16,13,6,9,6,6,5,1,1,0,1,0,186,0,2,0,0,186,0,2,0,0,49,0,0,47,11,0,50,31,0,178,9,1,0,0,0,0,0,0,0,0,0,0,2,186,0,0,9,11,1,0,0,47,120,0,4,19,0,0,0,165,0,2.4545454545454546,0.0,3.2962962962962963,0.0,6.5,0,3,4,0,0,0,14,38,0,20,10,14,10,3,1,0,0,0,0,0,0,0,0,0,1,59,0,58,1,49,10,16,43,53,6,5,54,27,32,0,59,44,15,55,4,4,51,0,59,27,32,1,58,14,45,5,54,1,58,7,45,7,0,0,49,10,0,0,0,0,0,0,0,0,0,0,1,58,0,1.7118644067796611,1.4745762711864407,0.0,1.0,1.0,55.71186440677966 +90101,Veraguas,Atalaya,Atalaya,3013,11,52,18,0,0,0,1,0,0,0,1,4,0,0,267,2063,64,7,2371,23,0,0,0,7,0,2367,0,0,6,1,6,21,0,0,160,1875,297,24,34,0,11,2348,25,10,0,0,18,2401,0,267,98,215,99,14,0,741,190,1398,68,3,1,2321,7,4,11,0,58,0,2126,80,195,0,0,0,0,1574,803,0,23,1,0,1854,431,74,0,0,0,0,0,0,25,17,0,2672,428,6.789317507418398,18.023738872403563,6.969054684188215,22.222551928783385,1.009579341940858,3.816326530612245,2.519366930445648,2429,1466,2747,212,375,86,99,80,29,92,25,25,68,29,105,29,16,45,49,34,22,6671,622,0,3565,3728,0,6191,1102,0,6789,504,0,2357,4936,0,1830,527,4733,203,0,213,132,149,23,149,207,212,189,197,751,0,0,8,165,259,433,166,260,1435,2,23,173,189,356,571,451,235,99,16,221,1,1,1,6,0,3444,222,2812,0,9,98,41,299,1305,987,127,94,2492,112,408,134,249,6,213,8,0,3824,3938,1137,1392,143,854,82,0,13,1,10,271,38,2029,17,0,0,2690,2036,8,41,190,1203,87,217,6,0,1,181,753,313,191,730,127,489,277,604,3413,471,225,306,472,500,799,394,565,338,137,37,52,8,28,17,126.0,107.0,112.0,124.0,122.0,159.0,126.0,130.0,151.0,127.0,126.0,132.0,95.0,95.0,116.0,111.0,111.0,110.0,98.0,132.0,106.0,98.0,129.0,107.0,125.0,139.0,132.0,116.0,121.0,146.0,129.0,153.0,155.0,154.0,150.0,128.0,146.0,147.0,126.0,135.0,107.0,100.0,97.0,99.0,83.0,102.0,86.0,79.0,74.0,89.0,89.0,88.0,80.0,85.0,78.0,85.0,90.0,64.0,77.0,63.0,62.0,64.0,62.0,52.0,47.0,57.0,38.0,50.0,53.0,44.0,37.0,43.0,27.0,32.0,37.0,25.0,29.0,32.0,22.0,24.0,18.0,18.0,12.0,12.0,16.0,14.0,6.0,10.0,5.0,12.0,8.0,5.0,7.0,3.0,0.0,5.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1848,5206,708,0,591,693,564,562,565,654,741,682,486,430,420,379,287,242,176,132,76,47,23,12,0,0,7624,61,65,12,0,7625,67,58,12,0,2043,78,394,1304,185,64,1846,1848,0,2648,5082,32,0,7,70,18,1,2,0,4,2,0,24,7634,0,110,76,442,40,13,14,922,6145,0,1963,2247,312,22,5,3213,0,1.7626914989486333,0.0,2.569237708615246,0.0,9.636047410461222,40,28,168,21,4,4,336,1828,0,69,77,49,100,177,218,259,204,390,282,227,122,134,60,52,4,2404,25,2299,130,2250,179,360,2069,2198,231,919,1510,1361,1068,588,1841,2322,107,2237,192,1619,618,1244,1185,1940,489,1373,1056,659,1770,546,1883,29,2400,388,1425,540,76,1,1574,855,0,3,21,5,1,2,0,0,0,0,9,2388,0,1.5736625514403293,1.620576131687243,1.0,1.043103448275862,1.043103448275862,48.73281185673117 +90102,Veraguas,Atalaya,El Barrito,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217,115,9,331,1,1,0,0,4,4,327,0,0,1,0,0,13,0,0,51,17,258,2,11,0,2,318,18,0,0,0,5,341,0,61,19,1,22,20,0,0,13,321,7,0,0,330,7,0,4,0,0,0,340,0,1,0,0,0,0,61,273,0,7,0,0,0,329,5,0,0,0,0,1,0,0,6,0,0,464,5.296407185628743,11.320359281437126,5.338323353293413,12.5,1.0117302052785924,3.357771260997068,2.19941348973607,345,196,388,13,67,8,8,7,2,21,1,1,5,1,37,5,9,6,5,14,1,792,217,0,124,885,0,283,726,0,899,110,0,245,764,0,221,24,700,64,0,64,12,18,0,25,24,61,33,39,236,0,0,0,29,46,66,14,34,195,1,4,5,7,14,38,10,28,3,2,1,0,0,0,0,0,407,52,438,0,3,13,25,18,136,227,44,13,165,15,87,20,24,0,141,3,1,557,506,58,172,21,183,17,0,1,4,2,93,4,372,1,0,0,589,225,0,3,9,67,3,1,0,0,4,4,19,8,25,54,115,83,27,120,568,118,53,48,69,58,88,15,32,10,2,0,0,1,0,1,15.0,7.0,21.0,11.0,23.0,21.0,12.0,18.0,15.0,23.0,17.0,17.0,15.0,13.0,5.0,7.0,15.0,16.0,8.0,10.0,10.0,22.0,13.0,13.0,17.0,16.0,15.0,10.0,23.0,17.0,23.0,17.0,14.0,15.0,14.0,14.0,17.0,14.0,14.0,15.0,19.0,16.0,14.0,11.0,22.0,10.0,19.0,7.0,10.0,19.0,8.0,12.0,11.0,11.0,15.0,14.0,10.0,18.0,10.0,12.0,13.0,11.0,7.0,6.0,9.0,13.0,6.0,11.0,8.0,7.0,10.0,10.0,4.0,10.0,8.0,4.0,8.0,8.0,7.0,2.0,6.0,2.0,5.0,1.0,2.0,0.0,3.0,3.0,3.0,3.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,233,683,147,0,77,89,67,56,75,81,83,74,82,65,57,64,46,45,42,29,16,12,2,1,0,0,1061,1,0,1,0,1061,1,0,1,0,309,9,11,162,39,1,299,233,0,592,470,1,0,0,31,11,0,0,0,0,0,0,2,1019,0,1,0,93,0,0,0,148,821,0,133,238,12,4,2,674,0,2.386634844868735,0.0,3.1933333333333334,0.0,7.391345249294449,0,0,43,0,0,0,42,260,0,44,31,12,30,45,44,50,14,38,19,10,3,4,1,0,0,331,14,296,49,289,56,41,304,276,69,35,310,207,138,3,342,289,56,281,64,92,189,62,283,95,250,106,239,170,175,146,199,8,337,68,192,81,4,0,243,102,0,0,4,2,0,0,0,0,0,0,0,339,0,1.6144927536231883,1.4666666666666666,0.0,1.08,1.08,54.32463768115942 +90103,Veraguas,Atalaya,La Montañuela,434,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,162,5,297,10,0,0,0,4,1,279,0,4,9,0,16,4,0,0,0,0,278,11,23,0,0,284,25,0,0,0,3,312,0,47,24,1,47,5,0,1,1,303,7,0,0,288,1,0,5,0,18,0,312,0,0,0,0,0,0,6,300,1,5,0,0,0,301,8,0,0,1,0,0,0,1,1,0,0,436,6.990291262135922,20.46925566343042,7.0,23.77022653721683,1.0,3.2371794871794872,2.227564102564102,312,164,316,15,36,13,9,2,4,5,2,0,2,1,30,9,7,7,8,7,3,541,307,0,49,799,0,170,678,0,730,118,0,246,602,0,225,21,523,79,0,81,11,7,0,16,29,38,30,35,260,0,0,0,15,47,33,17,40,132,1,0,2,9,10,12,3,12,6,0,2,0,0,0,0,0,306,8,451,0,0,6,0,16,166,176,83,10,94,14,7,6,23,0,165,0,0,442,439,47,59,6,191,0,0,6,0,20,91,9,137,4,0,0,576,149,0,0,7,29,2,2,0,0,0,5,18,5,4,32,161,20,14,55,371,190,31,103,39,54,30,30,27,2,0,0,0,0,0,4,6.0,6.0,12.0,9.0,15.0,12.0,16.0,13.0,12.0,15.0,17.0,21.0,10.0,22.0,15.0,11.0,18.0,21.0,17.0,15.0,15.0,9.0,12.0,10.0,10.0,7.0,12.0,8.0,9.0,8.0,10.0,12.0,11.0,14.0,12.0,12.0,7.0,8.0,7.0,11.0,11.0,20.0,14.0,11.0,9.0,16.0,14.0,9.0,9.0,11.0,14.0,8.0,7.0,7.0,14.0,14.0,12.0,11.0,11.0,12.0,9.0,8.0,13.0,6.0,8.0,4.0,7.0,4.0,7.0,3.0,1.0,9.0,5.0,7.0,5.0,6.0,8.0,6.0,6.0,6.0,3.0,6.0,3.0,1.0,5.0,4.0,0.0,2.0,0.0,0.0,0.0,2.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,201,564,116,0,48,68,85,82,56,44,59,45,65,59,50,60,44,25,27,32,18,6,6,1,1,0,881,0,0,0,0,881,0,0,0,0,269,5,28,89,54,2,233,201,0,547,334,0,0,2,11,1,0,0,0,0,0,0,0,867,0,5,2,20,2,0,0,14,838,0,85,185,11,5,0,595,0,2.445040214477212,0.0,3.339694656488549,0.0,6.745743473325766,0,1,7,1,0,0,7,296,0,15,30,14,52,46,48,30,20,39,6,10,2,0,0,0,0,296,16,248,64,237,75,21,291,247,65,15,297,202,110,2,310,242,70,236,76,40,196,41,271,70,242,95,217,182,130,168,144,1,311,75,181,53,3,0,195,117,0,0,4,0,0,0,0,0,0,0,0,308,0,1.4166666666666667,1.4070512820512822,0.0,1.0,1.0,52.86858974358975 +90104,Veraguas,Atalaya,La Carrillo,346,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,115,132,4,245,3,1,1,0,2,0,225,0,0,11,0,6,10,0,0,0,32,196,6,13,0,5,217,34,0,0,0,1,252,0,37,13,0,26,19,0,0,2,240,10,0,0,241,4,0,7,0,0,0,250,1,1,0,0,0,0,40,195,0,17,0,0,0,228,9,0,0,4,0,1,0,0,10,0,0,347,6.928270042194093,11.375527426160335,6.945147679324895,12.738396624472571,1.003968253968254,3.2063492063492065,2.123015873015873,253,128,232,14,23,14,10,1,1,7,1,1,0,1,26,10,6,4,4,38,1,456,195,0,55,596,0,119,532,0,572,79,0,124,527,0,108,16,475,52,0,53,3,6,1,15,29,41,35,26,178,0,0,0,12,35,47,18,14,82,1,2,3,4,11,12,5,13,1,2,2,0,0,0,0,0,228,63,309,0,5,10,39,19,82,154,49,5,65,8,17,9,10,0,174,0,0,376,310,37,50,9,175,4,0,8,0,4,85,5,236,11,0,0,462,99,0,3,4,31,0,1,0,0,0,6,14,7,2,24,166,26,8,38,384,113,29,40,28,31,18,8,11,11,1,1,0,0,0,11,10.0,7.0,12.0,6.0,8.0,11.0,12.0,3.0,11.0,6.0,22.0,7.0,4.0,9.0,10.0,3.0,7.0,8.0,8.0,2.0,4.0,10.0,8.0,13.0,6.0,10.0,10.0,11.0,5.0,7.0,9.0,7.0,11.0,6.0,5.0,9.0,8.0,8.0,9.0,7.0,7.0,13.0,12.0,11.0,8.0,8.0,10.0,2.0,5.0,7.0,9.0,5.0,14.0,14.0,2.0,11.0,9.0,5.0,14.0,4.0,19.0,13.0,8.0,13.0,4.0,5.0,9.0,7.0,8.0,9.0,11.0,8.0,6.0,8.0,10.0,3.0,4.0,4.0,5.0,3.0,3.0,3.0,3.0,2.0,3.0,2.0,3.0,2.0,3.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,138,418,130,0,43,43,52,28,41,43,38,41,51,32,44,43,57,38,43,19,14,11,1,4,0,0,686,0,0,0,0,686,0,0,0,0,215,1,6,76,40,7,203,138,0,458,228,0,0,0,14,10,0,0,0,0,0,0,0,662,0,0,0,37,0,0,0,130,519,0,57,128,16,2,1,482,0,2.562015503875969,0.0,3.3403141361256545,0.0,6.629737609329446,0,0,20,0,0,0,48,185,0,53,37,18,29,24,29,22,12,9,8,5,1,1,0,1,4,240,13,189,64,176,77,19,234,181,72,12,241,158,95,11,242,183,70,174,79,25,149,23,230,27,226,58,195,186,67,151,102,2,251,69,141,42,1,0,204,49,0,0,1,2,0,0,0,0,0,0,0,250,0,1.4861660079051384,1.225296442687747,0.0,1.125,1.125,56.20948616600791 +90105,Veraguas,Atalaya,San Antonio,2632,7,45,5,0,1,0,1,0,0,0,0,0,0,0,973,1117,50,7,2113,27,1,0,0,5,1,2123,0,0,4,0,4,16,0,0,64,1921,118,7,26,0,11,2120,11,8,0,0,8,2147,0,182,50,152,153,5,0,1154,239,720,32,1,1,2126,7,0,10,2,2,0,1181,46,918,0,0,2,0,1667,465,0,15,0,0,1917,209,5,0,0,0,0,0,0,1,15,0,1301,1390,6.702956358517128,19.6569685593618,6.898639136555608,21.82027217268888,1.0102468560782487,3.566837447601304,2.344666977177457,2169,1358,2690,207,199,87,104,67,28,61,28,26,74,17,80,34,26,47,35,7,16,6029,578,0,3036,3571,0,5649,958,0,6140,467,0,2425,4182,0,2032,393,3976,206,0,234,106,131,6,143,187,185,183,207,560,0,1,7,148,226,392,164,233,1594,6,102,133,165,283,492,295,205,56,14,141,0,0,0,8,0,3051,169,2556,0,6,48,19,175,1397,833,99,52,2556,72,171,106,192,9,50,5,41,3489,3626,1015,1432,110,509,89,0,6,41,17,117,21,2053,3,0,0,2275,2075,8,134,167,916,53,141,7,0,41,146,554,254,162,898,31,410,263,461,3524,284,170,189,310,439,879,361,500,294,96,22,26,8,10,3,116.0,130.0,119.0,143.0,136.0,139.0,133.0,143.0,150.0,130.0,143.0,153.0,119.0,116.0,123.0,109.0,115.0,103.0,103.0,109.0,100.0,115.0,111.0,105.0,113.0,129.0,142.0,133.0,140.0,143.0,150.0,136.0,146.0,142.0,147.0,137.0,155.0,137.0,137.0,92.0,134.0,92.0,112.0,95.0,104.0,90.0,81.0,76.0,77.0,58.0,79.0,52.0,64.0,71.0,50.0,42.0,51.0,39.0,57.0,51.0,39.0,35.0,30.0,23.0,23.0,25.0,31.0,33.0,14.0,17.0,21.0,11.0,12.0,16.0,17.0,22.0,10.0,16.0,7.0,12.0,5.0,13.0,12.0,5.0,9.0,3.0,4.0,3.0,6.0,6.0,2.0,6.0,2.0,5.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1993,4774,348,0,644,695,654,539,544,687,721,658,537,382,316,240,150,120,77,67,44,22,17,1,0,0,7007,52,45,11,0,7008,54,42,11,0,1996,63,198,1031,123,31,1680,1993,0,1959,5114,42,0,5,261,119,0,5,0,5,0,2,44,6674,0,121,159,503,29,8,7,815,5473,0,2156,2271,167,25,3,2493,0,1.6653157716987503,0.0,2.5,0.0,9.369782150386508,43,56,186,16,4,5,320,1539,0,53,41,28,42,107,183,331,204,466,278,175,101,103,31,26,0,2147,22,2079,90,2045,124,309,1860,2016,153,783,1386,1215,954,398,1771,2112,57,2033,136,1321,712,1113,1056,1875,294,1193,976,327,1842,322,1847,22,2147,302,1430,371,66,2,1437,732,0,4,61,24,0,1,0,0,0,0,11,2068,0,1.607093505297098,1.6701980654076465,1.0,1.0597014925373134,1.0597014925373134,43.542646380820656 +90201,Veraguas,Calobre,Calobre,1230,3,15,10,0,0,0,0,22,0,0,0,0,0,0,3,580,249,41,801,31,7,0,0,32,2,714,0,6,52,6,2,73,0,20,213,86,508,38,24,0,4,762,93,2,0,0,16,873,0,220,67,15,40,43,0,3,25,796,44,5,0,823,10,3,31,5,0,1,870,1,1,0,0,1,0,167,664,0,42,0,0,254,565,17,9,0,12,0,2,0,2,9,3,0,1280,6.7368421052631575,16.965311004784688,6.867224880382775,19.92344497607656,1.0080183276059564,3.583046964490264,2.4513172966781216,880,472,944,74,168,30,39,24,9,31,7,7,189,3,30,8,11,23,18,6,9,1871,838,0,395,2314,0,904,1805,0,2357,352,0,702,2007,0,652,50,1799,208,0,211,25,46,8,117,109,170,105,123,550,0,2,4,75,139,229,75,88,368,2,6,20,31,40,63,58,18,15,0,12,0,0,0,0,0,1007,55,1364,0,2,15,12,169,404,587,77,127,401,47,122,20,79,1,381,1,1,1547,1330,154,520,22,322,22,0,12,1,24,218,20,769,42,0,0,1789,456,4,11,28,120,9,9,0,0,1,31,60,39,35,119,151,89,63,474,1444,328,144,186,266,159,126,65,55,33,19,4,3,3,0,42,34.0,30.0,53.0,51.0,49.0,47.0,45.0,45.0,47.0,50.0,45.0,45.0,45.0,41.0,56.0,39.0,55.0,54.0,59.0,44.0,34.0,39.0,37.0,49.0,38.0,40.0,43.0,42.0,36.0,36.0,28.0,26.0,38.0,20.0,30.0,39.0,44.0,30.0,37.0,37.0,42.0,29.0,41.0,27.0,29.0,22.0,30.0,30.0,25.0,22.0,29.0,35.0,26.0,32.0,27.0,33.0,33.0,25.0,31.0,35.0,28.0,30.0,30.0,27.0,22.0,35.0,22.0,21.0,31.0,27.0,25.0,29.0,16.0,24.0,28.0,27.0,20.0,19.0,14.0,22.0,15.0,16.0,12.0,15.0,11.0,8.0,8.0,2.0,10.0,6.0,0.0,2.0,2.0,3.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,683,1714,480,0,217,234,232,251,197,197,142,187,168,129,149,157,137,136,122,102,69,34,9,6,2,0,2836,15,10,16,0,2838,15,8,16,0,739,16,260,408,108,17,646,683,0,1481,1384,12,0,14,100,143,0,0,0,2,0,3,6,2609,0,13,87,186,9,2,0,293,2287,0,326,636,163,20,4,1728,0,2.605924596050269,0.0,3.532051282051282,0.0,6.712200208550573,4,22,70,4,1,0,103,676,0,64,91,55,90,156,109,90,49,67,45,29,11,10,8,5,1,835,45,661,219,647,233,101,779,669,211,85,795,386,494,31,849,730,150,622,258,280,342,136,744,274,606,243,637,463,417,487,393,11,869,201,433,230,16,22,651,229,0,2,10,5,0,0,0,0,0,1,2,860,0,1.7150776053215078,1.4745011086474502,3.0,1.0,1.0,56.84659090909091 +90202,Veraguas,Calobre,Barnizal,174,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,97,8,114,4,3,0,0,5,0,0,0,2,85,0,1,38,0,0,0,0,109,12,4,0,1,77,44,0,1,0,4,126,0,15,4,1,28,4,0,0,0,126,0,0,0,98,0,0,25,1,2,0,126,0,0,0,0,0,0,5,103,0,18,0,0,0,115,0,0,0,6,0,2,0,1,1,1,0,178,6.539130434782609,21.860869565217392,6.904347826086957,23.669565217391305,1.0,2.7857142857142856,1.5476190476190477,126,67,118,14,35,3,2,0,0,2,0,1,2,0,2,3,0,1,5,2,3,267,78,0,28,317,0,69,276,0,271,74,0,65,280,0,65,0,218,62,0,66,2,0,0,10,15,25,20,23,63,0,0,0,9,22,34,11,9,21,0,0,1,2,1,5,3,0,2,0,1,0,0,0,0,0,139,3,166,0,1,1,1,2,47,94,11,12,22,7,7,7,1,0,97,0,0,201,169,13,50,8,67,0,0,3,0,14,60,9,17,0,0,0,272,27,0,0,1,6,1,1,0,0,0,5,3,4,3,9,58,1,1,58,228,66,23,16,12,11,6,1,3,2,2,0,0,0,0,0,2.0,9.0,6.0,8.0,7.0,11.0,4.0,4.0,4.0,7.0,5.0,5.0,3.0,7.0,8.0,4.0,9.0,6.0,9.0,5.0,3.0,4.0,3.0,7.0,4.0,3.0,5.0,4.0,1.0,5.0,1.0,4.0,7.0,3.0,4.0,2.0,1.0,4.0,5.0,4.0,3.0,10.0,5.0,6.0,4.0,6.0,4.0,2.0,7.0,3.0,5.0,4.0,2.0,1.0,5.0,4.0,1.0,4.0,3.0,6.0,2.0,3.0,3.0,4.0,4.0,1.0,4.0,4.0,1.0,3.0,4.0,3.0,6.0,0.0,6.0,0.0,3.0,4.0,2.0,2.0,2.0,5.0,3.0,5.0,4.0,1.0,5.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,90,208,72,0,32,30,28,33,21,18,19,16,28,22,17,18,16,13,19,11,19,9,1,0,0,0,370,0,0,0,0,370,0,0,0,0,125,0,2,24,7,0,122,90,0,207,163,0,0,0,0,0,0,0,0,0,0,0,0,370,0,0,0,149,1,0,0,68,152,0,19,73,4,0,0,274,0,3.291970802919708,0.0,4.347368421052631,0.0,5.2405405405405405,0,0,52,0,0,0,20,54,0,16,12,17,18,27,13,13,2,5,0,1,0,1,1,0,0,108,18,7,119,32,94,17,109,1,125,1,125,61,65,2,124,84,42,39,87,13,26,3,123,22,104,5,121,101,25,93,33,2,124,43,57,24,2,0,105,21,0,0,0,0,0,0,0,0,0,0,0,126,0,1.5952380952380951,1.3412698412698412,0.0,1.1666666666666667,1.1666666666666667,57.63492063492063 +90203,Veraguas,Calobre,Chitra,687,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,195,23,416,18,3,0,0,18,2,1,56,25,232,3,13,125,0,2,0,12,273,82,86,3,1,247,198,0,0,0,12,457,0,148,54,0,21,29,0,0,0,434,22,1,0,362,25,39,29,1,1,0,441,0,1,0,0,13,2,68,322,2,64,1,0,0,385,0,5,0,64,0,1,0,1,1,0,0,709,6.371428571428571,21.145454545454545,6.828571428571428,23.26753246753247,1.0043763676148796,3.2844638949671774,2.190371991247265,459,230,404,25,82,10,19,9,2,25,4,3,5,0,22,11,7,7,17,0,11,485,724,0,49,1160,0,335,874,0,1012,197,0,226,983,0,225,1,835,148,0,151,2,2,1,49,60,84,93,80,302,0,1,1,38,56,118,18,41,85,0,0,1,4,2,4,10,4,0,0,2,0,0,0,0,0,531,8,535,0,1,3,2,22,132,266,30,85,56,8,41,9,22,2,397,0,0,719,558,39,92,10,338,1,0,55,0,25,190,17,262,3,0,0,961,92,1,0,2,16,0,2,0,0,0,5,12,8,5,35,331,29,10,104,819,179,83,64,47,32,23,10,6,5,3,2,1,0,0,3,20.0,8.0,18.0,22.0,23.0,24.0,18.0,32.0,20.0,18.0,26.0,23.0,11.0,17.0,12.0,19.0,17.0,17.0,19.0,11.0,17.0,6.0,16.0,11.0,20.0,13.0,13.0,12.0,17.0,9.0,20.0,12.0,10.0,7.0,13.0,14.0,11.0,12.0,8.0,11.0,13.0,12.0,8.0,12.0,15.0,7.0,20.0,15.0,12.0,11.0,18.0,10.0,11.0,10.0,16.0,12.0,20.0,11.0,13.0,16.0,15.0,20.0,13.0,9.0,17.0,23.0,19.0,13.0,23.0,8.0,14.0,20.0,16.0,13.0,14.0,14.0,14.0,11.0,13.0,8.0,13.0,16.0,11.0,6.0,6.0,5.0,5.0,6.0,4.0,2.0,5.0,1.0,2.0,0.0,2.0,0.0,2.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,671,314,0,91,112,89,83,70,64,62,56,60,65,65,72,74,86,77,60,52,22,10,6,1,0,1273,1,1,2,0,1273,1,1,2,0,395,4,102,178,58,2,246,292,0,738,537,2,0,1,2,0,0,0,0,0,0,0,4,1270,0,4,6,434,10,0,0,420,403,0,44,207,32,5,0,989,0,3.741865509761389,0.0,4.686440677966102,0.0,5.398590446358653,1,5,141,1,0,0,168,143,0,102,48,55,57,90,50,19,13,12,5,2,3,2,1,0,0,399,60,59,400,173,286,34,425,30,429,0,459,213,246,6,453,170,289,135,324,87,48,11,448,34,425,25,434,375,84,274,185,18,441,155,199,102,3,0,357,102,0,0,1,0,0,0,0,0,0,0,2,456,0,1.5664488017429194,1.2156862745098038,0.0,1.0303030303030305,1.0303030303030305,60.93464052287582 +90204,Veraguas,Calobre,El Cocla,311,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,117,9,198,0,3,0,0,6,0,48,0,1,100,0,0,58,0,0,0,0,191,10,6,0,0,115,89,0,0,0,3,207,0,62,15,0,14,15,0,0,0,195,12,0,0,176,3,2,25,0,1,0,207,0,0,0,0,0,0,12,171,0,23,1,0,0,202,0,0,0,0,0,4,0,0,1,0,0,313,6.603960396039604,23.207920792079207,6.995049504950496,24.0,1.0,3.2705314009661834,2.0144927536231885,207,94,169,11,39,9,8,3,1,7,0,0,1,0,16,10,3,4,4,0,3,313,211,0,37,487,0,137,387,0,448,76,0,100,424,0,89,11,358,66,0,66,3,4,2,4,22,36,29,24,160,0,0,0,14,26,33,7,17,52,0,0,11,5,4,3,1,0,0,0,0,0,0,0,1,0,226,16,247,0,1,6,4,13,68,122,9,35,32,6,10,2,2,0,186,0,0,310,239,19,72,2,128,0,0,17,0,14,82,4,149,0,0,0,412,69,0,1,3,3,0,0,1,0,0,8,3,3,1,11,136,10,5,65,305,106,28,47,27,11,12,3,6,1,1,0,1,0,1,0,4.0,5.0,8.0,8.0,4.0,7.0,8.0,4.0,7.0,5.0,5.0,8.0,9.0,7.0,7.0,9.0,7.0,6.0,10.0,12.0,4.0,11.0,7.0,9.0,5.0,6.0,9.0,3.0,6.0,3.0,8.0,5.0,3.0,1.0,4.0,7.0,5.0,5.0,6.0,6.0,4.0,7.0,7.0,4.0,5.0,12.0,3.0,11.0,2.0,5.0,9.0,5.0,9.0,6.0,9.0,7.0,6.0,5.0,5.0,7.0,14.0,7.0,13.0,4.0,9.0,10.0,8.0,8.0,4.0,5.0,6.0,5.0,3.0,4.0,3.0,7.0,3.0,6.0,6.0,3.0,6.0,4.0,7.0,4.0,3.0,3.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,96,332,121,0,29,31,36,44,36,27,21,29,27,33,38,30,47,35,21,25,24,10,4,2,0,0,547,0,0,2,0,547,0,0,2,0,182,1,65,39,29,0,137,96,0,345,204,0,0,4,5,0,0,0,0,4,0,0,8,528,0,1,30,130,3,0,0,254,131,0,26,105,13,4,0,401,0,3.392156862745098,0.0,4.298013245033113,0.0,5.821493624772313,1,10,52,0,0,0,94,50,0,31,31,22,37,39,18,9,6,6,4,2,0,0,1,1,0,184,23,43,164,61,146,15,192,49,158,2,205,115,92,0,207,132,75,86,121,43,43,10,197,30,177,22,185,170,37,154,53,0,207,70,85,51,1,0,169,38,0,1,1,0,0,0,0,0,0,0,0,205,0,1.497584541062802,1.1545893719806763,1.0,1.0,1.0,59.56038647342995 +90205,Veraguas,Calobre,El Potrero,323,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,169,42,3,211,0,1,0,0,2,0,132,1,3,14,1,1,62,0,0,0,4,198,7,4,0,1,106,106,1,0,0,1,214,0,72,14,0,22,4,0,0,0,214,0,0,0,197,1,0,15,1,0,0,214,0,0,0,0,0,0,6,199,0,9,0,0,1,180,1,2,0,26,0,2,0,0,2,0,0,326,6.9010989010989015,18.923076923076923,6.972527472527473,22.906593406593405,1.0046728971962615,3.294392523364486,2.1448598130841123,215,103,177,25,37,12,4,4,1,9,0,3,1,0,7,7,1,3,8,3,3,384,179,0,30,533,0,264,299,0,476,87,0,109,454,0,108,1,386,68,0,69,0,6,0,18,20,28,32,37,117,1,0,1,22,20,42,21,22,80,0,0,6,3,7,6,5,0,0,0,0,0,0,0,0,0,243,2,269,0,0,1,1,20,75,127,18,29,40,3,8,3,5,0,184,1,0,323,268,15,40,3,146,1,0,39,0,5,80,4,39,0,0,0,406,90,1,3,4,10,0,0,0,0,0,7,2,2,4,14,171,10,5,30,398,59,48,24,23,10,12,5,7,4,1,0,0,0,0,0,4.0,4.0,12.0,8.0,9.0,7.0,10.0,8.0,7.0,8.0,8.0,11.0,6.0,9.0,6.0,8.0,6.0,15.0,13.0,11.0,14.0,11.0,8.0,9.0,8.0,4.0,6.0,2.0,9.0,5.0,5.0,3.0,8.0,4.0,7.0,6.0,2.0,5.0,3.0,9.0,5.0,6.0,3.0,9.0,10.0,9.0,7.0,9.0,8.0,4.0,8.0,15.0,9.0,5.0,10.0,4.0,9.0,5.0,7.0,5.0,4.0,6.0,3.0,7.0,5.0,6.0,10.0,5.0,3.0,4.0,4.0,3.0,4.0,9.0,7.0,6.0,5.0,2.0,6.0,8.0,5.0,7.0,5.0,3.0,1.0,4.0,5.0,2.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,117,353,121,0,37,40,40,53,50,26,27,25,33,37,47,30,25,28,27,27,21,15,0,2,1,0,589,0,2,0,0,589,0,2,0,0,166,2,15,74,27,7,184,116,0,418,173,0,0,2,0,0,0,0,0,0,0,0,4,585,0,1,8,54,1,0,0,68,459,0,26,112,18,2,0,433,0,3.5042735042735043,0.0,4.297142857142857,0.0,6.231810490693739,0,2,21,0,0,0,30,162,0,36,20,37,31,39,17,10,12,7,2,3,0,1,0,0,0,202,13,119,96,127,88,14,201,120,95,9,206,156,59,0,215,133,82,117,98,107,10,9,206,79,136,19,196,150,65,162,53,3,212,70,103,41,1,0,155,60,0,0,0,0,0,0,0,0,0,0,0,215,0,1.5023255813953489,1.2465116279069768,0.0,1.0,1.0,57.223255813953486 +90206,Veraguas,Calobre,La Laguna,437,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,20,235,5,8,0,0,12,0,140,1,1,50,1,0,67,0,0,0,0,229,23,8,0,0,154,102,0,0,0,4,260,0,67,32,1,17,61,0,0,1,249,10,0,0,238,2,2,18,0,0,0,259,0,1,0,0,0,0,8,225,0,27,0,0,14,223,0,6,3,7,0,0,0,1,5,1,0,438,6.789029535864979,17.70464135021097,6.962025316455696,20.35864978902953,1.0,3.123076923076923,2.0307692307692307,260,124,241,4,41,6,12,4,3,10,1,1,1,0,4,0,2,8,9,0,2,401,272,0,41,632,0,168,505,0,573,100,0,142,531,0,139,3,449,82,0,83,1,1,2,24,25,48,31,32,183,0,0,1,16,34,61,15,18,71,0,0,4,7,5,5,5,1,0,0,0,0,0,0,0,0,245,12,368,0,0,4,2,23,102,144,12,87,48,3,19,6,9,0,169,1,0,391,317,22,73,6,149,2,0,1,2,19,112,16,44,0,0,0,526,87,1,0,2,9,0,0,0,0,2,7,4,6,3,15,130,15,3,72,372,115,74,42,31,25,24,16,6,1,2,0,0,0,0,0,9.0,10.0,7.0,9.0,6.0,3.0,9.0,13.0,9.0,8.0,14.0,11.0,7.0,10.0,10.0,18.0,10.0,7.0,10.0,9.0,12.0,12.0,9.0,10.0,13.0,2.0,8.0,5.0,4.0,8.0,6.0,5.0,10.0,5.0,7.0,6.0,4.0,5.0,9.0,9.0,9.0,7.0,7.0,9.0,8.0,7.0,5.0,14.0,13.0,9.0,12.0,6.0,7.0,8.0,6.0,4.0,7.0,12.0,10.0,6.0,12.0,11.0,5.0,7.0,14.0,5.0,7.0,9.0,9.0,8.0,6.0,5.0,12.0,8.0,17.0,6.0,3.0,8.0,4.0,6.0,8.0,2.0,6.0,1.0,2.0,4.0,2.0,3.0,2.0,1.0,3.0,1.0,4.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,135,418,155,0,41,42,52,54,56,27,33,33,40,48,39,39,49,38,48,27,19,12,9,2,0,0,705,0,3,0,0,706,1,1,0,0,246,1,81,45,32,2,166,135,0,382,323,3,0,0,6,0,0,0,0,0,0,0,8,694,0,0,3,122,1,0,0,24,558,0,47,152,21,0,3,485,0,3.298892988929889,0.0,4.455497382198953,0.0,5.861581920903955,0,2,38,1,0,0,9,210,0,24,34,33,30,53,30,20,12,15,4,3,1,0,1,0,0,228,32,122,138,123,137,15,245,99,161,4,256,161,99,5,255,157,103,127,133,18,109,14,246,82,178,32,228,192,68,128,132,0,260,88,118,53,1,0,199,61,0,0,3,0,0,0,0,0,0,0,1,256,0,1.5038461538461538,1.2192307692307691,1.0,1.1176470588235294,1.1176470588235294,59.40769230769231 +90207,Veraguas,Calobre,La Raya de Calobre,270,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,49,15,153,3,4,0,0,11,0,149,0,0,7,0,0,15,0,0,0,0,170,0,1,0,0,142,25,0,0,0,4,171,0,71,19,0,7,15,0,0,0,161,10,0,0,159,2,1,9,0,0,0,171,0,0,0,0,0,0,18,139,0,14,0,0,0,162,0,0,3,5,0,0,0,0,1,0,0,283,7.0,15.37037037037037,7.0,23.703703703703702,1.0116959064327486,3.3157894736842106,2.216374269005848,173,94,166,20,17,2,4,3,1,3,2,0,13,0,3,1,0,0,0,1,1,365,105,0,24,446,0,255,215,0,413,57,0,95,375,0,85,10,342,33,0,34,5,5,0,9,22,37,24,21,93,0,0,0,14,28,42,11,22,69,0,4,5,5,4,10,5,1,0,0,0,0,0,0,0,0,213,11,200,0,0,6,5,10,59,114,2,15,68,2,18,4,13,0,116,0,0,268,230,23,88,4,91,4,0,10,1,3,56,4,120,0,0,0,321,88,0,1,2,12,0,0,0,0,1,6,5,4,3,14,78,26,22,65,226,52,29,50,48,33,31,15,10,2,1,0,1,0,0,0,8.0,8.0,8.0,4.0,10.0,11.0,9.0,4.0,7.0,5.0,4.0,6.0,4.0,6.0,8.0,8.0,8.0,10.0,6.0,11.0,11.0,6.0,7.0,10.0,10.0,15.0,5.0,8.0,7.0,5.0,5.0,2.0,4.0,5.0,3.0,2.0,3.0,7.0,4.0,6.0,8.0,4.0,4.0,5.0,2.0,7.0,4.0,4.0,9.0,7.0,7.0,8.0,10.0,3.0,5.0,4.0,7.0,6.0,7.0,4.0,5.0,2.0,8.0,4.0,9.0,0.0,4.0,0.0,3.0,4.0,3.0,2.0,5.0,3.0,6.0,5.0,3.0,4.0,2.0,6.0,7.0,3.0,7.0,2.0,5.0,3.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,102,311,85,0,38,36,28,43,44,40,19,22,23,31,33,28,28,11,19,20,24,7,3,1,0,0,492,5,0,1,0,492,5,0,1,0,161,0,27,53,21,1,133,102,0,332,162,4,0,0,16,21,0,0,0,0,0,0,0,461,0,0,0,3,0,0,0,6,489,0,53,111,14,1,0,319,0,2.7777777777777777,0.0,3.793893129770992,0.0,6.660642570281125,0,0,2,0,0,0,1,170,0,6,10,6,18,35,30,22,18,12,11,1,2,1,1,0,0,162,11,129,44,127,46,18,155,116,57,6,167,53,120,3,170,142,31,117,56,35,82,10,163,85,88,37,136,124,49,100,73,1,172,51,91,22,9,0,145,28,0,0,5,4,0,0,0,0,0,0,0,164,0,1.5491329479768785,1.329479768786127,0.0,1.0,1.0,57.44508670520232 +90208,Veraguas,Calobre,La Tetilla,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,49,0,137,3,0,0,0,0,0,120,2,0,14,0,0,4,0,0,2,0,130,4,4,0,0,117,21,0,0,0,2,140,0,23,14,0,11,30,0,0,1,139,0,0,0,137,0,0,2,0,1,0,140,0,0,0,0,0,0,15,124,0,1,0,0,1,121,1,0,0,15,0,2,0,0,0,0,0,218,6.723577235772358,17.83739837398374,6.926829268292683,22.3739837398374,1.0,3.3714285714285714,2.357142857142857,140,83,150,4,33,5,1,2,0,8,0,0,0,0,7,4,1,2,4,0,0,295,108,0,45,358,0,177,226,0,324,79,0,101,302,0,96,5,279,23,0,23,2,9,0,18,22,34,18,21,71,0,0,0,9,21,26,15,13,61,0,0,11,5,3,8,9,2,0,0,2,0,0,0,0,0,164,1,195,0,0,1,0,11,68,108,6,2,42,4,10,5,3,0,100,0,0,220,206,17,30,5,104,0,0,8,0,0,45,3,1,0,0,0,259,85,0,0,1,13,0,2,0,0,0,4,5,10,2,12,94,11,7,20,239,52,23,42,24,14,15,9,6,1,1,0,0,0,0,0,8.0,4.0,4.0,7.0,8.0,7.0,11.0,4.0,10.0,3.0,11.0,9.0,1.0,6.0,7.0,4.0,12.0,5.0,5.0,8.0,10.0,3.0,8.0,6.0,4.0,6.0,2.0,4.0,6.0,7.0,4.0,4.0,8.0,3.0,0.0,2.0,1.0,7.0,4.0,2.0,2.0,3.0,6.0,5.0,6.0,3.0,4.0,5.0,8.0,6.0,6.0,3.0,4.0,7.0,1.0,7.0,10.0,3.0,10.0,2.0,5.0,5.0,3.0,6.0,3.0,2.0,2.0,3.0,3.0,5.0,4.0,8.0,3.0,5.0,2.0,5.0,0.0,6.0,2.0,6.0,3.0,4.0,4.0,2.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,100,248,78,0,31,35,34,34,31,25,19,16,22,26,21,32,22,15,22,19,13,5,2,0,2,0,420,0,1,5,0,420,0,1,5,0,148,1,42,47,16,3,69,100,0,338,88,0,0,1,3,7,0,0,0,0,0,0,1,414,0,0,0,1,0,0,0,10,415,0,33,93,18,0,0,282,0,2.8926553672316384,0.0,3.696,0.0,6.741784037558685,0,0,0,0,0,0,3,137,0,8,7,12,22,37,20,10,5,11,3,5,0,0,0,0,0,129,11,114,26,100,40,23,117,118,22,3,137,75,65,3,137,111,29,107,33,107,0,16,124,72,68,39,101,95,45,97,43,3,137,33,75,32,0,0,106,34,0,1,1,1,0,0,0,0,0,0,1,136,0,1.5714285714285714,1.4714285714285715,0.0,1.0,1.0,57.15 +90209,Veraguas,Calobre,La Yeguada,636,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,203,30,370,22,10,0,0,20,0,242,1,12,107,3,2,54,0,1,0,16,338,15,53,0,0,284,125,0,0,0,13,422,0,142,35,1,37,15,0,0,0,413,9,0,0,298,40,72,12,0,0,0,418,1,1,0,0,2,0,45,301,0,68,8,0,1,371,3,0,2,29,0,13,0,0,3,0,0,652,6.962666666666666,22.632,6.997333333333334,23.776,1.0,3.438388625592417,2.3317535545023698,422,247,518,24,141,9,12,8,3,22,2,3,2,1,12,4,1,6,9,0,7,803,514,0,60,1257,0,318,999,0,1061,256,0,331,986,0,321,10,824,162,0,164,11,15,3,42,73,81,55,64,366,0,0,0,33,45,78,41,43,158,1,3,4,1,16,9,6,3,0,2,0,0,0,0,0,0,570,20,575,0,2,12,1,28,195,303,22,27,158,10,54,24,50,0,291,2,0,749,665,30,189,26,271,9,0,64,0,33,109,11,337,4,0,0,962,183,0,0,5,15,0,0,0,0,0,8,6,10,8,46,240,37,27,208,918,150,70,70,92,43,36,16,9,3,2,0,1,0,0,4,24.0,20.0,29.0,24.0,31.0,27.0,22.0,27.0,23.0,22.0,22.0,33.0,31.0,23.0,18.0,23.0,26.0,20.0,23.0,19.0,17.0,21.0,29.0,25.0,24.0,24.0,17.0,21.0,23.0,18.0,14.0,13.0,26.0,15.0,15.0,15.0,12.0,11.0,12.0,19.0,16.0,18.0,13.0,20.0,19.0,13.0,17.0,17.0,14.0,12.0,12.0,20.0,13.0,18.0,12.0,17.0,16.0,19.0,9.0,15.0,11.0,13.0,18.0,9.0,14.0,6.0,8.0,9.0,9.0,10.0,8.0,15.0,10.0,11.0,7.0,7.0,7.0,4.0,9.0,2.0,9.0,10.0,4.0,3.0,3.0,4.0,6.0,1.0,3.0,6.0,2.0,0.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,376,857,181,0,128,121,127,111,116,103,83,69,86,73,75,76,65,42,51,29,29,20,10,0,0,0,1410,0,1,3,0,1410,0,1,3,0,490,6,117,96,44,2,283,376,0,950,464,0,0,0,1,3,0,0,0,5,1,0,131,1273,0,9,62,212,14,20,6,286,805,0,58,136,37,3,0,1180,0,3.0867158671586714,0.0,4.124352331606218,0.0,5.6138613861386135,4,19,68,6,7,2,84,232,0,54,40,43,55,95,47,33,20,19,6,4,4,2,0,0,0,361,61,203,219,227,195,23,399,127,295,4,418,136,286,3,419,304,118,208,214,173,35,13,409,32,390,51,371,284,138,215,207,17,405,86,215,118,3,0,305,117,0,0,0,1,0,0,0,1,0,0,47,373,0,1.7748815165876777,1.5758293838862558,1.0,1.0833333333333333,1.0833333333333333,54.09715639810427 +90210,Veraguas,Calobre,Las Guías,794,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,214,13,546,7,3,0,0,10,0,491,7,2,19,0,6,41,0,0,38,0,482,17,26,0,3,496,60,0,0,0,10,566,0,156,25,0,35,36,0,0,6,533,27,0,0,520,7,4,33,2,0,0,565,0,0,0,0,1,0,86,438,0,42,0,0,2,546,0,3,0,1,0,5,0,4,5,0,0,818,6.908759124087592,16.416058394160583,6.91970802919708,16.666058394160583,1.007067137809187,3.374558303886926,2.351590106007067,570,293,572,33,111,11,18,13,4,25,6,14,22,2,14,4,1,6,8,0,2,1034,581,0,104,1511,0,594,1021,0,1457,158,0,437,1178,0,426,11,1064,114,0,115,12,23,1,36,61,83,58,69,419,0,0,0,54,66,117,40,61,232,1,4,9,26,21,23,37,19,13,2,11,0,0,1,1,0,507,38,902,0,2,24,8,67,280,486,29,40,291,6,38,33,34,0,136,0,1,888,806,84,245,33,169,6,0,1,1,17,186,19,411,2,0,0,1047,293,0,5,7,75,8,11,1,0,0,17,50,21,14,78,98,55,59,153,852,268,86,92,128,95,69,29,33,26,9,0,4,1,0,2,24.0,21.0,15.0,19.0,27.0,25.0,21.0,31.0,38.0,26.0,34.0,30.0,29.0,33.0,21.0,28.0,21.0,28.0,22.0,20.0,30.0,16.0,24.0,22.0,35.0,22.0,22.0,26.0,13.0,16.0,20.0,22.0,24.0,20.0,11.0,14.0,11.0,20.0,14.0,23.0,16.0,27.0,15.0,18.0,21.0,12.0,27.0,25.0,20.0,11.0,15.0,21.0,18.0,20.0,17.0,17.0,25.0,23.0,15.0,22.0,20.0,17.0,19.0,18.0,16.0,16.0,13.0,19.0,6.0,14.0,17.0,13.0,18.0,16.0,10.0,10.0,19.0,13.0,13.0,6.0,11.0,7.0,12.0,4.0,15.0,9.0,6.0,8.0,5.0,3.0,3.0,5.0,1.0,2.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,394,999,301,0,106,141,147,119,127,99,97,82,97,95,91,102,90,68,74,61,49,31,15,1,2,0,1680,3,11,0,0,1681,3,10,0,0,495,3,119,210,71,4,399,393,0,1046,641,7,0,2,79,24,0,0,0,0,0,0,6,1583,0,0,12,26,0,0,0,24,1632,0,240,503,68,4,0,879,0,2.71044776119403,0.0,3.708510638297872,0.0,7.121605667060212,0,3,15,0,0,0,9,543,0,27,72,33,73,101,79,55,33,44,18,16,4,9,3,3,0,533,37,419,151,411,159,55,515,424,146,33,537,343,227,9,561,415,155,384,186,253,131,63,507,217,353,142,428,232,338,262,308,1,569,151,283,122,14,0,420,150,0,1,17,4,0,0,0,0,0,0,1,547,0,1.5578947368421052,1.4140350877192982,1.0,1.0357142857142858,1.0357142857142858,58.098245614035086 +90211,Veraguas,Calobre,Monjarás,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,18,9,210,3,2,0,0,7,0,150,0,3,25,0,2,41,0,1,0,2,186,12,22,0,0,164,55,0,0,0,3,222,0,77,33,1,28,10,0,1,0,216,4,1,0,211,0,1,10,0,0,0,221,1,0,0,0,0,0,29,179,0,14,0,0,0,211,7,0,1,0,0,0,0,2,1,0,0,371,6.857798165137615,23.93577981651376,7.0,24.0,1.0045045045045045,3.2522522522522523,2.0045045045045047,223,116,187,7,27,7,9,0,3,6,1,3,4,1,13,10,3,5,5,0,0,356,217,0,64,509,0,76,497,0,476,97,0,116,457,0,106,10,382,75,0,77,0,3,0,16,18,48,28,26,145,0,0,0,19,22,36,9,25,70,1,1,4,6,6,4,5,4,0,0,0,0,0,0,0,0,201,15,317,0,0,5,2,35,73,144,12,53,38,5,19,7,6,0,139,0,0,330,264,21,57,7,105,0,0,24,0,8,86,5,78,0,0,0,431,91,0,2,0,9,0,0,0,0,0,6,4,4,7,13,107,9,6,60,343,114,32,25,30,15,13,9,4,7,1,1,0,0,0,0,9.0,3.0,4.0,5.0,4.0,4.0,3.0,12.0,11.0,6.0,11.0,5.0,8.0,11.0,11.0,6.0,7.0,12.0,6.0,10.0,8.0,7.0,8.0,5.0,5.0,8.0,9.0,4.0,4.0,6.0,3.0,4.0,9.0,8.0,3.0,4.0,7.0,5.0,8.0,11.0,7.0,8.0,9.0,4.0,8.0,8.0,7.0,6.0,5.0,5.0,9.0,9.0,7.0,8.0,10.0,8.0,8.0,6.0,9.0,4.0,7.0,7.0,7.0,7.0,5.0,8.0,8.0,4.0,5.0,10.0,4.0,12.0,2.0,8.0,7.0,4.0,4.0,11.0,5.0,4.0,4.0,1.0,2.0,2.0,11.0,4.0,4.0,4.0,2.0,3.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,107,345,142,0,25,36,46,41,33,31,27,35,36,31,43,35,33,35,33,28,20,17,6,2,1,0,592,0,1,1,0,592,0,1,1,0,192,2,47,71,35,3,137,107,0,343,251,0,0,0,1,1,0,0,0,0,0,0,1,591,0,0,7,126,3,0,0,167,291,0,32,134,35,0,0,393,0,3.075949367088608,0.0,4.165680473372781,0.0,6.094276094276094,0,6,58,1,0,0,69,89,0,34,22,29,30,41,28,13,10,7,4,1,1,3,0,0,0,210,13,134,89,139,84,19,204,119,104,5,218,123,100,4,219,147,76,127,96,36,91,19,204,63,160,38,185,153,70,146,77,2,221,67,101,50,5,0,165,58,0,0,1,1,0,0,0,0,0,0,1,220,0,1.4798206278026906,1.1838565022421526,0.0,1.1111111111111112,1.1111111111111112,58.937219730941706 +90212,Veraguas,Calobre,San José,249,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,167,22,158,16,7,0,0,13,2,0,0,4,109,1,5,77,0,0,0,1,189,4,2,0,0,73,105,0,0,0,18,196,0,30,5,0,18,7,0,0,0,193,3,0,0,169,4,2,19,1,1,0,194,1,0,0,0,0,1,14,151,0,30,1,0,0,166,0,10,2,15,0,0,0,0,3,0,0,256,6.945783132530121,23.349397590361445,6.945783132530121,23.49397590361446,1.0051020408163265,3.13265306122449,1.9948979591836733,197,96,264,8,65,7,6,3,0,12,1,4,5,0,5,3,5,2,2,0,2,339,292,0,30,601,0,212,419,0,449,182,0,148,483,0,146,2,351,132,0,138,0,4,0,37,40,37,30,32,127,0,1,0,13,17,66,10,26,43,0,0,2,0,4,2,1,1,0,0,0,0,0,0,0,0,307,1,248,0,0,1,0,2,98,124,8,16,29,0,7,11,0,0,261,0,0,380,288,9,90,13,159,0,0,37,0,23,60,5,81,0,0,0,503,48,0,0,1,4,0,0,0,0,0,2,2,3,4,7,193,3,2,92,449,79,49,38,31,8,8,2,2,2,0,0,0,0,0,0,15.0,9.0,6.0,7.0,17.0,9.0,11.0,14.0,15.0,9.0,16.0,11.0,16.0,12.0,7.0,12.0,14.0,12.0,17.0,15.0,13.0,9.0,13.0,8.0,12.0,10.0,11.0,12.0,4.0,8.0,5.0,6.0,9.0,4.0,5.0,5.0,9.0,8.0,13.0,6.0,13.0,4.0,7.0,10.0,5.0,5.0,4.0,8.0,11.0,7.0,4.0,3.0,6.0,4.0,6.0,5.0,6.0,10.0,4.0,2.0,8.0,9.0,4.0,10.0,7.0,10.0,2.0,6.0,8.0,7.0,7.0,6.0,6.0,3.0,2.0,9.0,1.0,4.0,3.0,4.0,2.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,174,402,92,0,54,58,62,70,55,45,29,41,39,35,23,27,38,33,24,21,8,4,2,0,0,0,667,0,0,1,0,667,0,0,1,0,212,1,18,34,11,1,217,174,0,472,196,0,0,0,0,0,0,0,0,0,0,0,2,666,0,1,1,235,3,0,0,107,321,0,19,80,2,0,0,567,0,3.495726495726496,0.0,4.74375,0.0,4.721556886227545,1,0,61,0,0,0,26,109,0,27,22,23,41,30,30,7,7,6,2,2,0,0,0,0,0,156,41,5,192,28,169,13,184,3,194,0,197,109,88,2,195,119,78,68,129,37,31,4,193,62,135,8,189,175,22,117,80,0,197,62,92,42,1,0,160,37,0,0,0,0,0,0,0,0,0,0,0,197,0,1.9289340101522845,1.4619289340101522,1.0,1.0909090909090908,1.0909090909090908,55.24873096446701 +90301,Veraguas,Cañazas,Cañazas,1876,191,2,0,0,0,0,0,0,0,0,0,3,0,0,3,871,518,48,1377,15,17,0,0,30,1,930,0,3,136,7,107,251,0,6,526,58,769,13,38,0,36,1023,392,1,0,0,24,1440,0,429,77,15,55,53,0,2,19,1361,57,1,0,1117,22,161,115,0,25,0,1437,1,1,1,0,0,0,316,874,0,250,0,0,958,208,80,23,35,49,0,19,0,0,62,6,1303,769,6.207865168539326,17.68860353130016,6.711878009630818,20.30577849117175,1.0125,3.555555555555556,2.4541666666666666,1461,806,2075,80,537,46,78,57,26,122,23,16,36,4,81,46,18,39,26,2,15,3162,1863,0,727,4298,0,2444,2581,0,4266,759,0,1553,3472,0,1430,123,2958,514,0,519,60,106,21,137,193,290,212,193,882,0,0,2,158,229,395,127,215,686,2,0,70,89,122,149,81,44,16,3,22,0,0,0,2,0,1715,135,2610,0,5,59,21,172,1001,1094,187,156,812,45,215,105,137,5,514,2,3,2729,2638,374,592,107,615,35,1,109,5,77,426,56,1594,16,0,0,3166,922,8,14,66,249,11,22,2,0,5,32,144,69,73,258,480,178,108,503,3384,555,213,194,236,212,263,84,124,44,33,1,3,3,2,16,80.0,77.0,94.0,91.0,94.0,81.0,101.0,96.0,102.0,91.0,98.0,81.0,92.0,90.0,95.0,110.0,109.0,120.0,101.0,86.0,85.0,107.0,95.0,85.0,85.0,74.0,92.0,63.0,59.0,68.0,53.0,65.0,56.0,40.0,54.0,53.0,69.0,59.0,75.0,80.0,60.0,62.0,67.0,49.0,55.0,57.0,57.0,62.0,54.0,51.0,62.0,51.0,49.0,61.0,62.0,36.0,43.0,48.0,50.0,59.0,54.0,43.0,56.0,49.0,32.0,43.0,45.0,38.0,47.0,31.0,47.0,26.0,34.0,38.0,32.0,29.0,32.0,25.0,22.0,21.0,26.0,23.0,14.0,21.0,23.0,23.0,15.0,18.0,9.0,6.0,10.0,6.0,8.0,6.0,3.0,2.0,2.0,1.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1363,3272,732,0,436,471,456,526,457,356,268,336,293,281,285,236,234,204,177,129,107,71,33,9,2,0,5333,5,20,9,0,5334,6,18,9,0,1297,37,390,758,211,11,1300,1363,0,3724,1625,18,0,2,90,29,0,0,0,0,3,1,43,5199,0,18,45,137,5,3,0,360,4799,0,650,964,174,14,2,3563,0,2.6442615454961134,0.0,3.750853242320819,0.0,6.760946525060556,5,19,53,2,1,0,116,1265,0,207,138,110,160,194,127,148,84,107,68,42,25,27,10,6,5,1257,204,787,674,789,672,143,1318,744,717,100,1361,861,600,142,1319,1069,392,788,673,538,250,259,1202,607,854,232,1229,944,517,903,558,13,1448,263,695,469,34,0,939,522,0,1,20,9,0,0,0,0,1,0,6,1424,0,1.867898699520876,1.8056125941136207,1.6,1.0638297872340423,1.0638297872340423,55.15947980835045 +90302,Veraguas,Cañazas,Cerro Plata,504,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,331,81,324,55,7,0,0,74,0,111,0,1,143,7,10,188,0,0,0,0,410,16,33,0,1,141,283,0,0,0,36,460,0,27,17,0,80,8,0,0,0,450,10,0,0,208,51,126,65,10,0,0,458,0,0,0,0,2,0,11,217,0,232,0,0,0,317,24,0,1,81,1,13,0,0,23,0,0,592,6.410557184750733,18.225806451612904,6.98533724340176,23.917888563049853,1.0043478260869565,2.776086956521739,1.6608695652173913,462,274,665,10,134,8,25,8,2,27,5,4,1,0,8,8,5,3,2,0,5,880,623,0,126,1377,0,531,972,0,1213,290,0,449,1054,0,449,0,904,150,0,152,19,32,2,74,86,93,90,93,366,0,0,0,65,59,139,43,38,141,0,0,2,3,1,1,3,1,0,0,0,0,0,0,0,0,662,10,642,0,0,3,5,3,277,301,56,5,64,28,10,9,11,0,545,0,0,879,746,22,70,9,405,1,1,159,0,65,133,7,409,8,0,0,1162,148,0,0,0,4,0,0,0,0,0,3,4,2,6,26,508,41,7,75,1084,223,75,77,64,58,21,4,5,4,1,0,0,1,0,8,25.0,28.0,29.0,40.0,33.0,30.0,25.0,34.0,36.0,31.0,38.0,45.0,31.0,36.0,33.0,40.0,37.0,32.0,31.0,24.0,18.0,11.0,26.0,24.0,28.0,21.0,22.0,15.0,16.0,23.0,16.0,26.0,14.0,22.0,19.0,23.0,14.0,13.0,21.0,22.0,15.0,9.0,13.0,18.0,15.0,16.0,23.0,18.0,16.0,25.0,20.0,13.0,22.0,16.0,14.0,14.0,10.0,15.0,9.0,11.0,16.0,13.0,14.0,9.0,7.0,11.0,7.0,13.0,11.0,11.0,12.0,14.0,14.0,9.0,2.0,7.0,5.0,12.0,6.0,7.0,2.0,9.0,8.0,8.0,7.0,5.0,3.0,5.0,2.0,1.0,5.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,494,929,202,0,155,156,183,164,107,97,97,93,70,98,85,59,59,53,51,37,34,16,9,2,0,0,1616,1,1,7,0,1616,1,1,7,0,451,3,58,193,70,0,356,494,0,1112,513,0,0,0,28,1,0,0,0,0,0,0,8,1588,0,1,58,10,1,0,0,12,1543,0,29,98,7,2,0,1489,0,3.3117338003502628,0.0,4.654639175257732,0.0,5.188923076923077,1,17,5,1,0,0,4,434,0,44,61,55,82,95,55,30,14,10,3,5,0,2,1,0,5,308,154,76,386,75,387,29,433,54,408,2,460,249,213,0,462,286,176,124,338,53,71,7,455,108,354,11,451,389,73,390,72,3,459,104,240,117,1,0,376,86,0,0,2,0,0,0,0,0,0,0,1,459,0,1.9025974025974024,1.6147186147186148,0.0,1.0666666666666669,1.0666666666666669,53.17748917748918 +90303,Veraguas,Cañazas,El Picador,887,24,0,0,0,0,0,0,0,0,0,0,0,0,0,1,11,555,118,511,56,88,0,0,27,3,0,0,4,187,13,142,338,1,0,0,0,539,105,38,3,0,63,615,0,0,0,7,685,0,157,14,2,12,41,0,0,1,668,16,0,0,101,12,529,39,1,2,1,679,2,0,1,0,3,0,2,128,2,546,7,0,1,335,81,4,15,152,2,84,0,0,11,0,0,911,6.059952038369304,18.32853717026379,6.959232613908873,23.93525179856115,1.0043795620437956,2.7124087591240875,1.508029197080292,688,444,1445,50,222,21,30,10,10,36,5,8,5,0,26,17,11,6,9,3,12,699,1992,0,15,2676,0,395,2296,0,2002,689,0,940,1751,0,933,7,1336,415,0,422,38,50,2,124,185,224,144,147,619,0,0,0,88,126,247,58,58,125,0,0,14,9,3,5,2,0,0,0,1,0,0,0,0,0,1000,22,1253,0,0,9,8,6,583,548,33,83,86,1,27,26,2,1,873,0,0,1624,1350,17,127,26,584,1,0,261,0,166,223,10,644,16,0,0,2116,156,0,0,0,2,0,1,0,0,0,2,2,5,5,20,828,12,1,147,2501,209,99,65,52,23,7,1,0,0,1,0,0,0,0,16,67.0,81.0,60.0,75.0,78.0,55.0,64.0,67.0,84.0,68.0,89.0,73.0,71.0,71.0,91.0,82.0,83.0,64.0,66.0,52.0,43.0,44.0,49.0,44.0,33.0,30.0,28.0,24.0,33.0,26.0,27.0,28.0,28.0,21.0,28.0,24.0,25.0,31.0,23.0,27.0,23.0,29.0,34.0,25.0,27.0,31.0,30.0,24.0,31.0,28.0,25.0,22.0,26.0,30.0,22.0,27.0,17.0,19.0,21.0,22.0,27.0,22.0,19.0,20.0,14.0,14.0,14.0,17.0,25.0,25.0,13.0,13.0,10.0,9.0,14.0,16.0,12.0,11.0,17.0,10.0,10.0,15.0,13.0,8.0,9.0,4.0,3.0,2.0,6.0,1.0,2.0,2.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1094,1578,302,0,361,338,395,347,213,141,132,130,138,144,125,106,102,95,59,66,55,16,7,3,1,0,2956,0,0,18,0,2956,0,0,18,0,633,13,123,372,103,1,637,1092,0,2788,186,0,0,1,19,55,0,0,0,1,0,2,8,2888,0,3,118,869,4,0,0,246,1734,0,75,139,7,3,1,2749,0,3.353768844221105,0.0,5.121311475409836,0.0,4.452925353059852,0,33,201,3,0,0,56,395,0,170,46,111,141,139,49,13,8,9,0,1,0,0,0,0,1,289,399,11,677,3,685,22,666,5,683,1,687,444,244,2,686,220,468,38,650,7,31,4,684,38,650,8,680,638,50,590,98,4,684,117,381,186,4,0,585,103,0,0,4,11,0,0,0,0,0,1,2,670,0,2.36046511627907,1.962209302325581,0.0,1.0294117647058822,1.0294117647058822,53.09011627906977 +90304,Veraguas,Cañazas,Los Valles,565,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,92,247,11,312,27,2,0,0,7,2,60,0,1,138,3,87,60,0,1,21,0,235,59,34,1,0,139,208,0,0,0,3,350,0,134,12,0,30,43,0,0,1,339,10,0,0,164,22,116,18,4,26,0,350,0,0,0,0,0,0,17,234,2,94,3,0,1,282,52,1,1,8,0,3,0,0,2,0,0,570,6.677611940298507,22.46268656716418,6.871641791044776,23.51641791044776,1.008571428571429,3.24,2.0485714285714285,354,195,564,26,67,4,9,4,2,6,3,4,2,0,7,11,5,3,4,1,8,612,532,0,101,1043,0,460,684,0,950,194,0,369,775,0,356,13,651,124,0,126,18,18,2,45,64,100,47,67,202,0,1,0,42,57,88,36,56,128,0,2,4,7,7,11,4,5,6,0,1,0,0,0,0,0,411,6,584,0,0,0,5,13,241,279,20,31,105,1,12,14,11,1,272,0,0,660,580,49,87,16,234,0,0,30,0,69,119,8,256,0,0,0,825,151,0,1,2,18,3,1,0,0,0,2,15,6,13,22,243,18,9,89,857,121,78,46,39,35,36,14,7,4,3,0,0,0,0,0,19.0,28.0,20.0,29.0,25.0,18.0,25.0,28.0,20.0,27.0,30.0,20.0,23.0,17.0,32.0,23.0,21.0,28.0,29.0,24.0,21.0,24.0,18.0,26.0,16.0,16.0,17.0,11.0,18.0,13.0,14.0,12.0,15.0,11.0,15.0,16.0,13.0,8.0,10.0,14.0,10.0,17.0,12.0,12.0,21.0,10.0,14.0,15.0,7.0,7.0,9.0,8.0,13.0,14.0,9.0,9.0,9.0,7.0,12.0,13.0,9.0,8.0,15.0,6.0,10.0,10.0,6.0,11.0,7.0,10.0,15.0,7.0,7.0,8.0,9.0,3.0,9.0,11.0,13.0,7.0,2.0,4.0,5.0,0.0,6.0,2.0,2.0,0.0,3.0,4.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,361,709,170,0,121,118,122,125,105,75,67,61,72,53,53,50,48,44,46,43,17,11,5,4,0,0,1237,0,0,3,0,1237,0,0,3,0,272,8,71,173,44,3,308,361,0,1014,226,0,0,0,22,0,0,0,0,0,0,0,5,1213,0,0,20,4,0,0,0,581,635,0,75,176,14,1,0,974,0,3.1125541125541125,0.0,4.622073578595318,0.0,5.662096774193548,0,8,0,0,0,0,166,180,0,54,39,42,50,60,30,25,17,24,4,6,1,0,1,0,0,276,78,50,304,53,301,21,333,29,325,2,352,239,115,2,352,207,147,93,261,70,23,18,336,107,247,18,336,293,61,262,92,6,348,92,198,63,1,0,285,69,0,0,8,0,0,0,0,0,0,0,1,345,0,1.8644067796610169,1.6384180790960452,0.0,1.0,1.0,55.07909604519774 +90305,Veraguas,Cañazas,San José,699,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,395,103,371,34,45,0,0,58,0,30,0,2,172,8,10,285,1,0,0,0,422,34,45,7,0,72,416,0,0,0,20,508,0,34,46,0,131,15,0,0,0,495,13,0,0,109,125,233,30,7,3,1,506,1,0,0,0,1,0,0,114,2,389,3,0,0,194,19,17,89,152,1,31,0,0,5,0,0,734,5.36150234741784,17.699530516431924,6.953051643192488,23.84037558685446,1.001968503937008,2.5393700787401574,1.468503937007874,509,307,840,36,154,18,14,6,2,36,2,3,10,0,8,5,9,7,5,1,11,695,1094,0,63,1726,0,132,1657,0,1416,373,0,530,1259,0,518,12,1029,230,0,233,26,27,2,87,112,124,111,98,462,0,0,0,71,75,126,40,66,119,0,0,4,0,2,0,1,3,0,0,0,0,0,0,0,0,863,5,648,0,0,1,2,8,280,281,43,36,28,16,21,4,6,2,789,0,0,1052,885,17,55,5,442,1,0,346,0,114,170,12,618,11,0,0,1387,124,0,0,2,3,0,0,0,0,0,1,3,7,4,17,745,22,7,62,1605,151,67,38,28,19,10,4,2,2,0,0,0,0,0,11,40.0,38.0,31.0,39.0,53.0,43.0,38.0,50.0,43.0,46.0,41.0,48.0,43.0,39.0,44.0,42.0,40.0,41.0,32.0,30.0,23.0,24.0,29.0,18.0,28.0,13.0,22.0,21.0,23.0,15.0,14.0,24.0,22.0,25.0,12.0,21.0,13.0,16.0,13.0,23.0,20.0,20.0,17.0,20.0,23.0,30.0,22.0,19.0,19.0,16.0,23.0,20.0,18.0,13.0,16.0,20.0,15.0,28.0,11.0,20.0,16.0,19.0,24.0,13.0,20.0,16.0,12.0,12.0,16.0,13.0,17.0,12.0,13.0,13.0,6.0,12.0,10.0,13.0,8.0,6.0,6.0,6.0,1.0,5.0,5.0,8.0,6.0,6.0,3.0,3.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,636,1066,235,0,201,220,215,185,122,94,97,86,100,106,90,94,92,69,61,49,23,26,4,3,0,0,1930,0,0,7,0,1930,0,0,7,0,511,5,107,223,78,1,376,636,0,1485,452,0,0,4,154,54,0,0,0,0,0,0,2,1723,0,1,1,43,3,2,0,77,1810,0,24,108,9,0,0,1796,0,3.6242603550295858,0.0,4.8474576271186445,0.0,4.815178110480124,0,0,21,1,1,0,27,459,0,137,49,98,87,78,31,13,5,6,3,0,0,0,0,0,2,265,244,25,484,21,488,21,488,12,497,2,507,345,164,7,502,263,246,42,467,33,9,2,507,5,504,9,500,464,45,461,48,8,501,103,268,131,7,0,414,95,0,0,27,15,0,0,0,0,0,0,1,466,0,2.0667976424361494,1.738703339882122,1.0,1.0714285714285714,1.0714285714285714,54.80550098231827 +90306,Veraguas,Cañazas,San Marcelo,594,41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,205,212,22,413,4,4,0,0,18,0,261,0,1,70,1,11,95,0,0,13,0,345,31,50,0,0,249,187,0,0,0,3,439,0,127,18,3,16,32,0,0,3,426,10,0,0,349,11,37,20,4,18,0,438,0,0,0,0,1,0,53,317,0,69,0,0,1,356,63,2,3,8,0,0,0,0,6,0,0,636,6.530952380952381,22.00952380952381,6.992857142857143,23.883333333333333,1.0182232346241458,3.207289293849658,2.0455580865603644,448,257,476,22,91,21,16,7,4,24,5,7,2,0,33,22,7,3,16,0,8,894,420,0,110,1204,0,501,813,0,1114,200,0,335,979,0,324,11,834,145,0,145,18,16,5,33,67,79,53,53,329,0,0,0,29,44,109,25,48,169,1,8,8,15,20,15,5,14,2,0,4,0,0,0,0,0,445,16,734,0,1,7,4,36,218,376,72,32,128,6,44,27,20,0,231,0,0,733,647,46,153,27,156,0,0,74,0,20,171,16,458,2,0,0,934,219,0,8,4,26,0,4,0,0,0,6,15,8,8,38,174,44,29,139,871,210,56,44,49,64,43,16,20,5,0,0,0,0,0,2,13.0,20.0,13.0,20.0,12.0,24.0,19.0,23.0,19.0,22.0,19.0,24.0,26.0,24.0,14.0,22.0,17.0,27.0,22.0,24.0,15.0,23.0,13.0,16.0,14.0,18.0,22.0,14.0,26.0,21.0,14.0,13.0,15.0,9.0,13.0,14.0,15.0,21.0,7.0,16.0,13.0,18.0,16.0,23.0,14.0,17.0,19.0,19.0,14.0,16.0,17.0,16.0,17.0,12.0,15.0,13.0,9.0,8.0,22.0,16.0,13.0,12.0,23.0,7.0,15.0,15.0,17.0,20.0,8.0,14.0,16.0,16.0,12.0,11.0,14.0,9.0,11.0,9.0,9.0,9.0,9.0,8.0,14.0,7.0,4.0,9.0,7.0,8.0,3.0,2.0,3.0,3.0,2.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,815,273,0,78,107,107,112,81,101,64,73,84,85,77,68,70,74,69,47,42,29,9,3,0,0,1377,0,2,1,0,1377,0,2,1,0,355,13,68,248,68,2,334,292,0,947,431,2,0,0,4,3,0,0,0,0,0,0,6,1367,0,2,24,264,3,41,4,385,657,0,114,276,37,7,0,946,0,2.9535714285714287,0.0,3.8365853658536575,0.0,6.254347826086956,0,5,90,2,13,2,151,185,0,89,56,41,57,71,39,32,18,22,13,4,3,2,0,0,0,379,69,228,220,225,223,28,420,193,255,11,437,269,179,1,447,346,102,248,200,116,132,48,400,136,312,63,385,348,100,373,75,3,445,104,236,106,2,0,355,93,0,0,3,3,0,0,0,0,0,0,3,439,0,1.6361607142857142,1.4441964285714286,0.0,1.0555555555555556,1.0555555555555556,58.033482142857146 +90307,Veraguas,Cañazas,El Aromillo,446,13,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,268,39,264,21,34,1,0,4,0,32,0,6,116,3,10,157,0,0,0,0,270,35,16,2,1,77,246,0,0,0,1,324,0,104,5,0,10,16,0,0,0,323,1,0,0,145,12,142,20,5,0,0,324,0,0,0,0,0,0,11,162,1,150,0,0,0,192,89,10,17,1,0,12,0,0,3,0,0,459,6.761565836298932,21.0,6.93950177935943,23.90747330960854,1.0,3.0771604938271606,1.808641975308642,324,186,440,22,40,23,21,7,5,10,3,13,4,0,11,11,7,8,9,1,9,569,480,0,10,1039,0,554,495,0,860,189,0,276,773,0,270,6,621,152,0,154,4,12,0,28,65,76,47,59,321,0,1,0,29,53,65,26,41,52,0,0,2,2,6,1,3,0,0,0,2,0,0,0,0,0,469,2,493,0,0,2,0,3,202,223,22,43,96,2,3,6,7,0,354,1,0,636,462,13,94,9,324,2,0,27,0,64,127,6,94,0,0,0,896,62,0,0,2,3,0,1,0,0,0,2,1,2,3,17,346,4,2,94,677,107,118,61,61,48,18,6,1,1,0,0,0,0,0,0,8.0,11.0,15.0,15.0,13.0,15.0,14.0,13.0,15.0,15.0,26.0,26.0,24.0,17.0,24.0,23.0,31.0,16.0,22.0,20.0,18.0,15.0,23.0,10.0,12.0,8.0,7.0,10.0,6.0,14.0,11.0,16.0,12.0,18.0,9.0,10.0,14.0,12.0,12.0,8.0,14.0,17.0,11.0,7.0,14.0,9.0,9.0,11.0,12.0,15.0,9.0,16.0,15.0,14.0,14.0,9.0,16.0,12.0,13.0,14.0,8.0,7.0,11.0,10.0,5.0,12.0,13.0,9.0,9.0,8.0,9.0,5.0,13.0,11.0,9.0,4.0,7.0,16.0,11.0,6.0,4.0,6.0,7.0,2.0,6.0,9.0,1.0,1.0,4.0,3.0,3.0,3.0,3.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,251,649,198,0,62,72,117,112,78,45,66,56,63,56,68,64,41,51,47,44,25,18,10,3,0,0,1098,0,0,0,0,1098,0,0,0,0,328,7,69,106,43,1,293,251,0,1016,82,0,0,0,0,0,0,0,0,0,1,1,1,1095,0,3,13,7,0,0,0,74,1001,0,107,117,9,0,0,865,0,3.0076335877862594,0.0,4.480314960629921,0.0,5.101092896174864,3,5,1,0,0,0,17,298,0,38,19,30,48,72,50,23,18,18,6,1,1,0,0,0,0,189,135,23,301,22,302,4,320,14,310,0,324,226,98,2,322,163,161,52,272,5,47,5,319,43,281,4,320,304,20,306,18,4,320,73,159,88,4,0,281,43,0,0,0,0,0,0,0,0,0,0,0,324,0,1.962962962962963,1.4259259259259258,0.0,1.0,1.0,57.129629629629626 +90308,Veraguas,Cañazas,Las Cruces,398,14,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,267,56,255,20,53,0,0,3,0,0,0,4,141,1,28,156,0,1,0,0,264,18,48,1,0,47,284,0,0,0,0,331,0,69,3,0,9,0,0,0,0,329,2,0,0,131,18,150,32,0,0,0,328,2,0,0,0,1,0,5,129,3,191,3,0,2,166,63,41,12,27,1,18,0,0,1,0,0,412,5.683982683982684,16.186147186147185,6.796536796536796,23.77489177489177,1.003021148036254,2.610271903323263,1.5166163141993958,332,222,624,15,64,15,11,5,3,14,5,2,0,0,13,13,2,4,3,0,7,481,735,0,23,1193,0,245,971,0,955,261,0,398,818,0,389,9,655,163,0,165,14,33,1,61,89,80,77,75,275,0,1,0,43,44,102,15,45,71,0,2,7,3,5,3,1,4,0,0,0,0,0,0,0,0,424,7,639,0,1,2,3,0,263,327,29,20,56,12,11,5,2,1,343,0,0,727,585,11,52,5,271,3,0,88,0,23,99,4,410,9,0,0,974,92,0,0,0,4,0,0,0,0,0,3,2,1,3,23,332,17,4,46,1091,95,36,24,24,17,10,4,0,0,2,0,0,0,0,9,29.0,14.0,23.0,30.0,16.0,27.0,28.0,24.0,32.0,19.0,36.0,31.0,27.0,26.0,30.0,31.0,27.0,46.0,31.0,23.0,24.0,19.0,13.0,23.0,13.0,11.0,9.0,20.0,14.0,12.0,8.0,17.0,13.0,14.0,11.0,12.0,12.0,13.0,16.0,14.0,18.0,14.0,12.0,19.0,17.0,15.0,13.0,17.0,12.0,9.0,10.0,7.0,20.0,15.0,10.0,12.0,8.0,8.0,15.0,15.0,11.0,6.0,11.0,5.0,13.0,6.0,7.0,13.0,15.0,8.0,9.0,4.0,12.0,6.0,4.0,8.0,8.0,8.0,6.0,4.0,5.0,7.0,2.0,5.0,5.0,3.0,0.0,4.0,2.0,2.0,3.0,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,392,758,162,0,112,130,150,158,92,66,63,67,80,66,62,58,46,49,35,34,24,11,9,0,0,0,1308,0,0,4,0,1308,0,0,4,0,347,0,33,165,46,1,329,391,0,1216,96,0,0,0,1,0,0,0,0,0,0,0,3,1308,0,1,48,1,1,3,0,29,1229,0,40,68,1,0,0,1203,0,3.1958333333333333,0.0,4.9727891156462585,0.0,4.772103658536586,0,8,1,0,1,0,12,310,0,99,37,48,52,47,26,10,8,4,0,0,0,0,1,0,0,189,143,9,323,8,324,4,328,2,330,0,332,154,178,4,328,122,210,19,313,3,16,5,327,12,320,4,328,312,20,292,40,14,318,58,194,80,0,0,285,47,0,0,0,0,0,0,0,0,0,0,0,332,0,2.1897590361445785,1.7620481927710845,0.0,1.0526315789473684,1.0526315789473684,55.04819277108434 +90401,Veraguas,La Mesa,La Mesa,1504,10,4,3,0,0,0,0,0,0,0,0,3,0,0,7,717,309,6,1029,4,4,0,0,2,0,869,0,5,48,10,9,94,1,3,547,36,423,10,21,1,1,925,110,0,0,0,4,1039,0,312,29,7,80,54,0,2,30,943,63,1,0,950,20,5,50,0,14,0,1039,0,0,0,0,0,0,268,704,0,67,0,0,718,280,0,12,8,5,0,7,0,0,5,4,923,601,6.557114228456914,18.51503006012024,6.8346693386773545,20.59719438877756,1.012512030798845,3.640038498556304,2.468719923002888,1055,530,1217,61,304,48,69,34,16,72,17,18,13,4,100,100,22,30,18,2,23,2460,844,0,774,2530,0,1728,1576,0,3004,300,0,901,2403,0,804,97,2201,202,0,203,29,50,11,63,88,146,119,128,544,1,0,3,92,147,254,84,136,607,2,2,53,59,88,113,171,76,4,3,25,1,0,0,2,0,1108,219,1685,0,39,109,49,198,620,677,127,63,661,28,164,62,57,0,300,0,3,1763,1695,376,627,62,187,3,0,17,3,26,215,36,1089,2,0,0,1803,810,3,7,48,313,2,24,2,0,1,29,244,57,40,103,89,130,55,579,1760,445,154,223,192,148,194,92,118,91,33,4,1,1,0,2,28.0,23.0,56.0,47.0,61.0,42.0,41.0,44.0,57.0,47.0,53.0,53.0,51.0,52.0,55.0,63.0,41.0,54.0,53.0,52.0,47.0,52.0,52.0,56.0,48.0,49.0,53.0,56.0,54.0,36.0,58.0,49.0,41.0,33.0,44.0,43.0,34.0,42.0,40.0,45.0,40.0,39.0,49.0,36.0,30.0,39.0,43.0,41.0,41.0,45.0,28.0,43.0,36.0,51.0,54.0,46.0,49.0,46.0,39.0,48.0,41.0,36.0,37.0,34.0,23.0,39.0,34.0,26.0,23.0,22.0,37.0,26.0,27.0,25.0,24.0,20.0,30.0,27.0,21.0,16.0,21.0,23.0,9.0,13.0,14.0,9.0,11.0,10.0,5.0,7.0,3.0,1.0,5.0,3.0,1.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,710,2209,539,0,215,231,264,263,255,248,225,204,194,209,212,228,171,144,139,114,80,42,13,6,1,0,3433,18,4,3,0,3433,21,1,3,0,934,13,61,438,120,11,1171,710,0,2286,1152,20,0,0,101,14,1,1,0,0,0,0,36,3305,0,17,25,226,4,2,1,554,2629,0,538,818,190,9,1,1902,0,2.3727891156462584,0.0,3.4128902316213496,0.0,8.23742047426258,6,6,62,1,1,1,164,814,0,107,99,54,121,123,114,85,58,102,65,38,31,33,18,4,0,965,90,806,249,774,281,123,932,748,307,102,953,543,512,101,954,759,296,792,263,400,392,272,783,521,534,246,809,461,594,379,676,15,1040,234,485,322,14,0,614,441,0,0,22,4,1,1,0,0,0,0,11,1016,0,1.671090047393365,1.6066350710900474,1.0,1.0178571428571428,1.0178571428571428,56.43317535545024 +90402,Veraguas,La Mesa,Bisvalles,897,32,3,0,0,0,0,0,0,0,0,2,1,0,0,0,263,388,11,639,12,0,0,0,10,1,440,0,1,125,7,18,41,0,30,59,2,530,22,46,0,3,428,231,0,0,0,3,662,0,186,26,0,31,27,0,1,5,635,19,2,0,522,23,47,57,9,4,0,659,0,0,0,0,3,0,66,504,0,92,0,0,1,528,52,48,4,20,0,5,0,0,0,4,0,935,6.714285714285714,16.263339070567987,6.982788296041308,21.204819277108435,1.0075528700906344,3.382175226586103,2.2462235649546827,670,344,810,33,169,19,39,17,4,34,5,5,19,1,46,19,6,8,14,3,6,1373,688,0,238,1823,0,711,1350,0,1805,256,0,516,1545,0,500,16,1355,190,0,190,11,22,4,53,91,105,92,77,519,0,1,3,58,95,173,65,88,295,0,1,6,15,9,41,20,18,5,1,3,0,0,0,0,0,592,43,1225,0,0,14,4,53,367,629,44,132,295,17,58,29,19,1,180,0,27,1192,977,86,291,33,79,7,0,99,31,12,203,16,911,4,0,0,1441,325,4,1,8,76,2,3,0,0,30,10,33,11,14,78,130,69,32,228,1344,261,76,122,92,131,55,39,28,12,3,0,2,0,0,4,27.0,24.0,27.0,30.0,32.0,37.0,27.0,34.0,35.0,36.0,42.0,33.0,27.0,27.0,48.0,48.0,41.0,43.0,33.0,38.0,41.0,29.0,26.0,24.0,29.0,22.0,38.0,26.0,25.0,22.0,30.0,19.0,20.0,15.0,24.0,28.0,16.0,25.0,21.0,30.0,33.0,22.0,25.0,24.0,25.0,26.0,23.0,28.0,21.0,26.0,22.0,42.0,19.0,23.0,25.0,26.0,21.0,21.0,22.0,22.0,20.0,21.0,29.0,18.0,18.0,24.0,17.0,24.0,16.0,13.0,13.0,18.0,17.0,22.0,18.0,15.0,16.0,14.0,16.0,19.0,18.0,10.0,14.0,13.0,9.0,6.0,6.0,5.0,5.0,3.0,2.0,2.0,2.0,0.0,2.0,4.0,2.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,486,1315,368,0,140,169,177,203,149,133,108,120,129,124,131,112,106,94,88,80,64,25,8,7,2,0,2162,3,4,0,0,2165,4,0,0,0,541,8,22,287,104,10,711,486,0,1512,653,4,0,0,45,6,0,0,0,0,0,0,5,2113,0,7,23,199,0,0,1,50,1889,0,238,545,53,4,2,1327,0,3.0059101654846336,0.0,4.068846815834768,0.0,6.57630244352236,2,5,62,0,0,1,21,579,0,152,92,35,70,56,85,58,34,36,29,8,4,3,2,1,2,602,68,376,294,384,286,60,610,358,312,28,642,382,288,6,664,515,155,398,272,219,179,89,581,207,463,86,584,422,248,340,330,3,667,155,334,163,18,0,490,180,0,0,8,2,0,0,0,0,0,0,2,658,0,1.7791044776119402,1.4582089552238806,1.0,1.0,1.0,57.93582089552239 +90403,Veraguas,La Mesa,Boró,798,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,178,331,43,478,31,25,0,0,18,0,253,0,10,115,3,2,167,2,0,66,0,411,26,49,0,0,324,209,0,0,0,19,552,0,158,19,0,29,42,0,0,3,525,24,0,0,376,31,0,108,6,31,0,552,0,0,0,0,0,0,28,401,0,123,0,0,0,456,13,4,3,61,0,6,0,0,9,0,0,801,5.929637526652452,10.872068230277186,5.8742004264392325,11.857142857142858,1.0072463768115942,3.105072463768116,2.0090579710144927,557,258,496,41,113,8,26,13,3,24,2,7,17,0,38,14,15,12,7,0,17,999,511,0,169,1341,0,620,890,0,1257,253,0,353,1157,0,340,13,958,199,0,200,8,27,0,35,56,83,65,96,318,0,0,0,36,61,141,33,62,200,1,4,13,5,18,20,15,11,1,0,1,0,0,0,0,0,600,35,745,0,2,18,4,37,234,330,63,81,138,15,50,17,18,0,393,0,0,879,686,65,190,20,293,4,0,59,0,30,194,19,352,27,0,0,1091,238,0,2,8,39,1,1,0,0,0,5,18,14,11,68,295,34,16,174,934,238,90,87,58,41,38,24,21,6,0,0,1,0,0,27,14.0,17.0,12.0,12.0,22.0,15.0,28.0,24.0,17.0,24.0,22.0,23.0,29.0,24.0,28.0,28.0,25.0,30.0,25.0,23.0,24.0,14.0,23.0,12.0,25.0,16.0,22.0,19.0,13.0,16.0,22.0,13.0,16.0,18.0,19.0,13.0,15.0,18.0,23.0,20.0,20.0,17.0,18.0,16.0,19.0,15.0,19.0,22.0,19.0,19.0,9.0,22.0,20.0,18.0,14.0,12.0,20.0,14.0,24.0,12.0,27.0,18.0,17.0,18.0,21.0,21.0,12.0,16.0,19.0,17.0,12.0,20.0,10.0,10.0,20.0,11.0,16.0,14.0,11.0,11.0,10.0,11.0,7.0,8.0,6.0,5.0,9.0,5.0,6.0,6.0,6.0,2.0,3.0,5.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,311,942,312,0,77,108,126,131,98,86,88,89,90,94,83,82,101,85,72,63,42,31,17,1,1,0,1562,0,1,2,0,1562,0,1,2,0,497,8,32,129,65,4,519,311,0,1053,511,1,0,2,13,0,0,0,0,6,0,0,12,1532,0,1,4,96,2,0,0,279,1183,0,98,312,45,4,2,1104,0,3.1243781094527363,0.0,4.0488372093023255,0.0,6.297124600638978,0,2,28,0,0,0,102,425,0,117,60,67,69,94,47,31,24,29,8,5,3,0,2,0,0,465,92,222,335,213,344,38,519,214,343,19,538,333,224,10,547,363,194,218,339,156,62,40,517,165,392,60,497,433,124,430,127,2,555,176,251,118,12,0,403,154,0,0,4,0,0,0,0,0,0,0,4,549,0,1.578096947935368,1.2315978456014365,1.0,1.0303030303030305,1.0303030303030305,58.30520646319569 +90404,Veraguas,La Mesa,Llano Grande,367,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,114,15,247,11,3,0,0,12,0,206,4,0,24,0,5,34,0,0,7,11,240,3,12,0,0,207,57,0,0,0,9,273,0,89,5,0,11,17,0,0,3,253,15,2,0,238,3,0,22,1,9,0,273,0,0,0,0,0,0,27,227,0,19,0,0,0,236,9,6,0,17,0,0,0,0,4,1,0,395,6.551020408163265,16.738775510204082,6.987755102040817,21.355102040816327,1.021978021978022,3.3443223443223444,2.326007326007326,279,139,232,24,56,9,9,8,5,12,3,0,5,1,16,4,1,0,7,0,6,530,224,0,107,647,0,173,581,0,678,76,0,183,571,0,163,20,508,63,0,64,8,5,2,15,34,46,46,23,187,1,0,2,19,29,46,17,28,97,1,2,9,12,14,22,9,13,2,0,1,0,0,0,0,0,240,22,424,0,1,7,9,24,112,243,23,22,89,8,43,10,16,0,96,0,0,413,369,33,133,11,72,1,0,11,1,7,95,7,248,0,0,0,502,133,2,4,9,34,1,1,0,0,1,6,13,7,9,33,34,31,12,116,447,124,33,38,51,36,21,13,9,6,2,2,0,0,0,0,6.0,7.0,4.0,11.0,14.0,9.0,6.0,14.0,14.0,11.0,17.0,12.0,7.0,11.0,11.0,5.0,11.0,16.0,5.0,9.0,13.0,11.0,7.0,9.0,10.0,9.0,12.0,11.0,10.0,7.0,11.0,12.0,11.0,19.0,11.0,5.0,3.0,11.0,10.0,8.0,8.0,13.0,7.0,8.0,8.0,7.0,9.0,13.0,10.0,13.0,14.0,13.0,9.0,13.0,9.0,4.0,8.0,13.0,10.0,5.0,10.0,14.0,5.0,2.0,7.0,8.0,3.0,6.0,10.0,7.0,5.0,7.0,9.0,7.0,5.0,4.0,9.0,7.0,5.0,9.0,6.0,6.0,3.0,8.0,7.0,2.0,9.0,0.0,1.0,2.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,154,478,150,0,42,54,58,46,50,49,64,37,44,52,58,40,38,34,33,34,30,14,5,0,0,0,781,1,0,0,0,781,1,0,0,0,229,4,5,106,44,5,235,154,0,401,381,0,0,1,7,4,0,0,0,0,0,0,1,769,0,9,5,12,1,0,0,6,749,0,55,170,25,1,0,531,0,2.682242990654206,0.0,3.424892703862661,0.0,6.932225063938619,3,4,5,1,0,0,2,264,0,62,37,14,30,39,31,21,15,13,10,3,2,1,0,1,0,257,22,203,76,187,92,24,255,176,103,17,262,141,138,1,278,220,59,198,81,62,136,35,244,60,219,53,226,173,106,180,99,4,275,83,128,64,4,0,198,81,0,0,1,1,0,0,0,0,0,0,1,276,0,1.4802867383512546,1.3225806451612905,0.0,1.1176470588235294,1.1176470588235294,58.05017921146953 +90405,Veraguas,La Mesa,San Bartolo,495,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,221,30,302,34,13,0,0,17,0,280,0,1,19,5,7,54,0,0,30,0,294,16,24,1,1,210,152,1,0,0,3,366,0,92,27,1,24,5,0,1,2,346,17,0,0,307,4,3,50,0,2,0,366,0,0,0,0,0,0,42,260,0,64,0,0,0,261,45,0,18,29,0,3,0,0,9,1,0,515,5.205882352941177,8.666666666666666,5.620915032679738,10.96078431372549,1.0191256830601092,3.2540983606557377,2.0956284153005464,373,179,369,31,67,12,28,9,3,13,6,2,7,0,12,4,10,7,9,0,2,722,315,0,114,923,0,491,546,0,858,179,0,271,766,0,253,18,686,80,0,81,12,19,0,49,57,63,47,42,180,0,0,1,41,37,97,28,46,149,0,1,11,17,19,14,10,9,6,0,1,0,0,0,0,0,387,30,507,0,0,13,10,32,163,249,17,46,139,13,36,14,13,0,193,0,2,593,506,58,179,14,149,0,0,8,2,32,110,12,290,3,0,0,686,186,1,1,14,32,3,1,0,0,2,5,16,11,16,60,107,32,15,153,682,136,47,42,55,30,37,34,17,9,5,1,0,1,0,3,13.0,14.0,17.0,18.0,17.0,14.0,23.0,20.0,23.0,16.0,18.0,10.0,10.0,31.0,13.0,19.0,18.0,16.0,14.0,21.0,16.0,16.0,12.0,19.0,18.0,14.0,14.0,14.0,10.0,16.0,10.0,16.0,18.0,10.0,9.0,9.0,12.0,15.0,11.0,10.0,12.0,14.0,10.0,11.0,16.0,10.0,11.0,10.0,6.0,10.0,20.0,8.0,5.0,21.0,15.0,9.0,16.0,9.0,8.0,17.0,16.0,13.0,21.0,9.0,12.0,7.0,13.0,15.0,9.0,6.0,13.0,5.0,10.0,7.0,8.0,9.0,6.0,5.0,3.0,6.0,4.0,9.0,4.0,2.0,5.0,1.0,8.0,1.0,3.0,3.0,3.0,4.0,3.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,257,666,176,0,79,96,82,88,81,68,63,57,63,47,69,59,71,50,43,29,24,16,12,2,0,0,1096,1,1,1,0,1096,1,1,1,0,338,8,81,82,63,1,270,256,0,694,404,1,0,8,17,1,0,0,0,0,1,0,4,1068,0,0,11,49,1,0,1,90,947,0,107,182,36,1,0,773,0,3.148325358851675,0.0,4.04,0.0,6.586897179253867,0,5,19,1,0,0,41,307,0,78,34,38,42,53,28,20,22,32,10,9,5,0,0,1,1,314,59,227,146,194,179,37,336,198,175,20,353,220,153,0,373,278,95,211,162,164,47,45,328,145,228,57,316,263,110,255,118,1,372,111,172,84,6,0,274,99,0,1,1,0,0,0,0,0,1,0,1,369,0,1.5898123324396782,1.35656836461126,1.0,1.0909090909090908,1.0909090909090908,55.76675603217158 +90406,Veraguas,La Mesa,Los Milagros,640,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,80,26,427,5,0,0,0,26,0,440,0,0,0,0,2,16,0,0,239,5,189,3,16,0,6,421,27,0,0,0,10,458,0,147,28,0,12,8,0,4,9,430,15,0,0,418,2,0,13,0,25,0,458,0,0,0,0,0,0,93,351,0,13,1,0,0,444,11,0,0,0,0,0,0,0,0,3,0,653,6.887912087912088,19.085714285714285,6.8901098901098905,19.283516483516483,1.0,3.537117903930131,2.434497816593886,458,275,536,47,88,12,27,14,3,29,6,1,4,0,37,19,4,14,4,2,9,1153,253,0,327,1079,0,912,494,0,1260,146,0,392,1014,0,355,37,914,100,0,100,12,23,1,35,49,73,52,42,263,0,0,4,43,52,109,37,59,223,0,1,22,37,30,59,42,20,6,2,10,0,0,0,0,0,506,25,728,0,0,13,4,51,255,335,55,32,273,12,81,21,27,0,114,0,2,781,719,76,304,23,106,0,0,19,2,19,100,13,487,0,0,0,803,318,4,2,15,103,4,10,0,0,2,17,46,18,10,65,38,99,35,201,853,147,60,59,96,111,95,27,23,21,5,2,1,0,0,0,21.0,19.0,32.0,22.0,28.0,21.0,23.0,23.0,30.0,22.0,27.0,21.0,24.0,27.0,18.0,19.0,22.0,22.0,18.0,19.0,20.0,21.0,30.0,26.0,27.0,31.0,32.0,19.0,23.0,17.0,18.0,29.0,22.0,19.0,11.0,22.0,15.0,24.0,23.0,22.0,25.0,25.0,19.0,11.0,18.0,19.0,14.0,11.0,17.0,16.0,20.0,22.0,10.0,16.0,17.0,13.0,10.0,18.0,16.0,8.0,18.0,10.0,19.0,8.0,10.0,14.0,7.0,20.0,12.0,7.0,6.0,10.0,11.0,10.0,10.0,11.0,10.0,4.0,7.0,5.0,8.0,5.0,14.0,4.0,2.0,2.0,3.0,5.0,2.0,4.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,358,941,201,0,122,119,117,100,124,122,99,106,98,77,85,65,65,60,47,37,33,16,5,1,2,0,1496,4,0,0,0,1496,4,0,0,0,446,7,75,206,49,1,358,358,0,765,733,2,0,0,54,3,0,0,0,1,0,0,5,1437,0,4,16,37,2,0,0,40,1401,0,208,404,57,5,0,826,0,2.4155405405405403,0.0,3.2860576923076925,0.0,7.61,1,6,13,0,0,0,16,422,0,49,41,19,42,63,55,52,41,51,18,11,8,3,2,3,0,433,25,386,72,359,99,34,424,359,99,39,419,272,186,19,439,393,65,378,80,123,255,132,326,301,157,132,326,197,261,171,287,2,456,87,263,105,3,0,344,114,0,0,10,1,0,0,0,1,0,0,0,446,0,1.705240174672489,1.5698689956331875,0.0,1.0952380952380951,1.0952380952380951,53.02838427947598 +90407,Veraguas,La Mesa,El Higo,642,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,347,34,367,81,3,1,0,30,0,271,0,2,72,2,27,106,0,2,22,0,439,8,12,0,1,316,145,0,0,0,21,482,0,119,19,0,12,14,0,3,5,455,19,0,0,351,23,2,97,6,3,0,481,0,0,0,0,0,1,41,354,0,86,0,1,0,354,58,23,0,26,0,15,0,0,5,1,0,646,6.12378640776699,12.109223300970871,6.327669902912621,13.79368932038835,1.008298755186722,3.0518672199170123,1.825726141078838,486,286,657,47,104,7,17,21,1,26,1,2,10,0,28,7,3,8,10,2,4,962,569,0,105,1426,0,631,900,0,1303,228,0,468,1063,0,446,22,924,139,0,140,11,24,14,53,55,76,46,71,396,0,0,0,43,71,104,47,84,227,0,2,9,12,5,15,11,10,4,0,1,0,0,0,0,0,468,118,759,0,3,65,19,30,311,348,31,39,262,4,39,42,11,0,173,0,0,859,806,46,264,42,154,7,0,18,0,54,110,10,507,3,0,0,1049,262,0,0,3,28,2,1,0,0,0,6,10,11,9,77,137,65,12,259,1127,147,63,61,88,63,74,20,13,4,1,0,1,0,0,3,34.0,31.0,31.0,38.0,36.0,31.0,21.0,32.0,32.0,34.0,40.0,33.0,40.0,27.0,31.0,26.0,34.0,30.0,31.0,27.0,34.0,26.0,39.0,27.0,32.0,38.0,23.0,21.0,21.0,19.0,23.0,8.0,26.0,28.0,16.0,21.0,15.0,22.0,30.0,16.0,19.0,19.0,15.0,14.0,18.0,12.0,8.0,18.0,15.0,21.0,18.0,15.0,19.0,12.0,15.0,14.0,15.0,17.0,12.0,10.0,12.0,10.0,14.0,18.0,6.0,10.0,10.0,14.0,6.0,11.0,14.0,10.0,7.0,9.0,6.0,12.0,6.0,10.0,4.0,4.0,1.0,3.0,4.0,5.0,4.0,3.0,5.0,4.0,6.0,3.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,491,999,175,0,170,150,171,148,158,122,101,104,85,74,79,68,60,51,46,36,17,21,4,0,0,0,1641,19,0,5,0,1641,19,0,5,0,522,7,6,146,41,5,447,491,0,1021,634,10,0,0,23,11,0,0,0,0,0,0,14,1617,0,0,5,72,3,0,0,111,1474,0,201,294,31,5,0,1134,0,2.921507064364208,0.0,4.117370892018779,0.0,6.198198198198198,0,4,19,1,0,0,37,425,0,78,38,46,48,74,73,54,27,28,16,1,1,2,0,0,0,424,62,221,265,195,291,50,436,223,263,14,472,174,312,9,477,321,165,203,283,132,71,43,443,70,416,47,439,269,217,223,263,1,485,100,275,107,4,0,329,157,0,0,6,4,0,0,0,0,0,0,6,470,0,1.7674897119341564,1.6584362139917694,1.0,1.05,1.05,50.79423868312757 +90501,Veraguas,Las Palmas,Las Palmas,961,0,6,0,0,0,0,0,0,0,0,1,0,0,0,1,334,354,23,642,47,13,0,0,9,1,541,0,2,39,11,6,104,0,9,242,14,372,42,41,0,1,510,195,0,0,0,7,712,0,153,25,9,37,31,0,1,15,675,19,2,0,528,98,17,37,15,17,0,704,0,1,0,0,7,0,94,501,0,117,0,0,420,228,0,5,0,46,0,5,0,0,0,8,0,968,6.746913580246914,22.776234567901238,6.979938271604938,23.794753086419757,1.0112359550561798,3.532303370786517,2.438202247191011,721,380,878,49,206,35,33,22,7,36,11,2,6,2,27,23,10,15,18,4,5,1628,630,0,352,1906,0,1122,1136,0,1966,292,0,649,1609,0,615,34,1412,197,0,201,29,37,1,78,105,95,69,85,459,0,0,1,57,69,157,55,71,429,0,1,21,23,40,60,34,66,4,0,11,0,0,0,0,0,757,72,1172,0,0,40,21,84,401,480,79,128,283,23,108,20,59,1,325,1,0,1275,1113,181,274,22,318,1,0,24,0,28,222,21,633,61,0,0,1311,509,1,2,22,141,4,11,0,0,0,9,99,27,26,93,192,98,34,251,1375,279,118,116,106,85,100,28,56,40,16,3,4,1,0,61,27.0,24.0,43.0,36.0,33.0,43.0,43.0,53.0,47.0,38.0,41.0,36.0,43.0,25.0,35.0,37.0,29.0,36.0,36.0,34.0,27.0,42.0,33.0,37.0,36.0,29.0,38.0,35.0,38.0,32.0,34.0,37.0,28.0,29.0,26.0,35.0,19.0,20.0,33.0,22.0,25.0,19.0,25.0,22.0,26.0,23.0,28.0,19.0,23.0,24.0,38.0,26.0,30.0,26.0,25.0,13.0,20.0,30.0,21.0,33.0,21.0,22.0,29.0,21.0,19.0,27.0,27.0,17.0,23.0,24.0,17.0,19.0,19.0,22.0,13.0,15.0,11.0,13.0,13.0,18.0,15.0,13.0,8.0,12.0,12.0,15.0,10.0,9.0,7.0,10.0,5.0,5.0,2.0,2.0,4.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,567,1410,411,0,163,224,180,172,175,172,154,129,117,117,145,117,112,118,90,70,60,51,18,4,0,0,2374,0,8,6,0,2374,0,8,6,0,705,9,13,242,89,2,761,567,0,1462,926,0,0,1,21,4,0,0,0,5,0,0,14,2343,0,8,12,93,5,0,1,140,2129,0,218,454,87,3,0,1626,0,2.934689507494647,0.0,3.852897473997028,0.0,7.165410385259632,4,3,36,1,0,0,42,635,0,85,63,53,94,117,72,60,32,55,31,21,10,14,5,4,4,625,96,434,287,458,263,108,613,399,322,15,706,244,477,26,695,500,221,438,283,158,280,116,605,262,459,103,618,311,410,247,474,5,716,156,366,191,8,0,504,217,0,0,5,2,0,0,0,0,0,0,5,709,0,1.7683772538141471,1.5436893203883495,1.5,1.0277777777777777,1.0277777777777777,57.49098474341193 +90502,Veraguas,Las Palmas,Cerro de Casa,672,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,474,53,435,47,15,0,0,37,1,0,0,3,275,15,10,231,0,1,0,0,493,28,13,1,0,74,461,0,0,0,0,535,0,96,19,0,41,14,0,0,2,523,9,1,0,56,403,1,34,40,1,0,510,0,0,0,1,24,0,8,136,0,384,7,0,0,195,37,0,2,295,0,2,0,0,4,0,0,705,4.6594827586206895,11.762931034482758,6.974137931034483,23.642241379310345,1.0037383177570094,3.1345794392523363,1.9570093457943925,537,358,1013,41,163,13,12,11,8,29,5,3,4,1,21,34,6,5,9,1,85,650,1356,0,68,1938,0,445,1561,0,1638,368,0,664,1342,0,658,6,1065,277,0,281,8,48,1,62,99,124,117,127,479,0,0,0,67,104,176,53,66,136,2,0,12,11,11,13,1,4,2,0,2,0,0,0,0,0,602,12,1118,0,2,6,3,2,439,560,23,94,44,13,19,8,6,0,520,2,0,1199,999,28,139,8,241,1,1,194,0,150,206,14,985,2,0,0,1538,173,0,1,4,13,1,2,0,0,0,4,5,4,11,9,415,17,3,146,1684,261,51,71,61,32,19,4,4,4,5,0,0,0,0,2,37.0,46.0,56.0,53.0,52.0,28.0,50.0,52.0,44.0,48.0,50.0,45.0,60.0,61.0,55.0,73.0,45.0,46.0,37.0,32.0,32.0,32.0,28.0,29.0,29.0,24.0,23.0,25.0,20.0,23.0,18.0,22.0,28.0,21.0,23.0,28.0,20.0,18.0,27.0,30.0,27.0,18.0,20.0,24.0,27.0,15.0,22.0,19.0,19.0,24.0,16.0,22.0,14.0,11.0,24.0,21.0,12.0,14.0,9.0,20.0,15.0,17.0,16.0,18.0,15.0,12.0,9.0,21.0,20.0,17.0,9.0,13.0,18.0,6.0,15.0,10.0,7.0,9.0,12.0,13.0,9.0,5.0,11.0,5.0,7.0,8.0,6.0,8.0,5.0,1.0,2.0,2.0,4.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,737,1192,269,0,244,222,271,233,150,115,112,123,116,99,87,76,81,79,61,51,37,28,8,3,2,0,2190,0,0,8,0,2190,0,0,8,0,634,14,69,192,73,0,479,737,0,1612,586,0,0,5,438,11,0,0,0,0,0,0,13,1731,0,1,109,149,0,0,0,120,1819,0,34,119,2,0,0,2043,0,3.5745222929936307,0.0,5.055226824457594,0.0,5.121929026387625,1,32,39,0,0,0,29,436,0,140,70,53,84,81,43,31,9,13,4,4,1,1,2,0,1,282,255,16,521,16,521,30,507,0,537,0,537,239,298,2,535,229,308,18,519,5,13,14,523,104,433,18,519,427,110,404,133,5,532,82,320,134,1,0,444,93,0,0,97,2,0,0,0,0,0,0,1,437,0,2.2327746741154564,1.8603351955307263,0.0,1.0333333333333334,1.0333333333333334,54.55679702048417 +90503,Veraguas,Las Palmas,Corozal,372,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,137,14,244,14,3,0,0,11,0,155,0,2,56,10,2,46,0,1,63,2,171,15,20,0,1,160,107,0,0,0,5,272,0,61,13,0,15,13,0,0,1,270,1,0,0,208,56,0,3,4,1,0,267,0,2,0,0,3,0,23,180,0,69,0,0,0,150,97,0,0,17,0,6,0,1,1,0,0,374,6.392712550607287,19.40080971659919,6.894736842105263,23.615384615384617,1.0036764705882353,3.551470588235294,2.2794117647058822,273,177,326,11,55,6,5,6,4,14,0,2,3,0,23,18,6,10,7,4,3,510,337,0,117,730,0,173,674,0,762,85,0,222,625,0,208,14,572,53,0,53,8,9,10,28,34,39,35,49,263,0,0,0,20,31,54,18,20,101,0,0,6,16,14,15,8,15,0,0,1,0,0,0,0,0,283,22,465,0,3,13,2,10,135,265,48,7,79,17,22,5,6,2,174,0,0,466,416,40,108,5,136,9,0,7,0,22,118,8,227,6,0,0,594,138,0,2,9,26,0,1,0,0,0,5,20,3,9,31,132,26,4,75,591,116,33,32,30,19,17,13,15,5,5,0,0,0,0,6,6.0,10.0,7.0,12.0,8.0,6.0,14.0,23.0,15.0,11.0,10.0,16.0,16.0,13.0,13.0,16.0,13.0,12.0,18.0,13.0,8.0,9.0,17.0,12.0,12.0,15.0,11.0,16.0,9.0,7.0,13.0,16.0,6.0,8.0,15.0,10.0,7.0,7.0,11.0,9.0,5.0,13.0,8.0,9.0,5.0,5.0,7.0,15.0,12.0,11.0,11.0,10.0,8.0,19.0,9.0,11.0,9.0,7.0,13.0,7.0,19.0,7.0,13.0,9.0,10.0,5.0,7.0,4.0,7.0,6.0,7.0,14.0,8.0,2.0,12.0,8.0,12.0,7.0,7.0,4.0,8.0,7.0,6.0,5.0,3.0,2.0,5.0,2.0,3.0,2.0,0.0,0.0,4.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,180,542,160,0,43,69,68,72,58,58,58,44,40,50,57,47,58,29,43,38,29,14,5,2,0,0,882,0,0,0,0,882,0,0,0,0,250,5,22,160,31,1,233,180,0,553,329,0,0,0,0,0,0,0,0,1,0,0,6,875,0,0,0,22,0,0,0,108,752,0,55,198,10,0,0,619,0,3.1215469613259668,0.0,4.239043824701195,0.0,6.621315192743764,0,0,13,0,0,0,48,212,0,57,30,33,34,41,20,13,13,17,7,3,0,2,2,0,1,230,43,138,135,151,122,62,211,116,157,7,266,82,191,3,270,182,91,149,124,98,51,22,251,37,236,24,249,194,79,218,55,2,271,56,163,53,1,0,227,46,0,0,0,0,0,0,0,0,0,0,3,270,0,1.706959706959707,1.5238095238095235,1.0,1.1428571428571428,1.1428571428571428,58.23076923076923 +90504,Veraguas,Las Palmas,El María,464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,226,19,302,12,4,0,0,15,0,181,0,2,63,19,3,38,0,27,28,7,272,23,3,0,0,175,149,0,0,0,9,333,1,87,7,1,16,19,0,0,0,320,13,0,0,184,117,2,14,16,0,0,321,0,0,0,0,12,0,12,219,0,102,0,0,0,229,65,0,0,28,0,6,0,0,5,0,0,464,6.187074829931973,17.79591836734694,6.741496598639456,22.448979591836736,1.0,3.4894894894894897,1.8738738738738736,333,165,362,14,86,13,21,15,1,17,4,3,6,0,22,7,8,3,11,0,2,616,369,0,57,928,0,192,793,0,818,167,0,230,755,0,219,11,614,141,0,141,10,16,2,24,40,50,61,54,266,1,3,0,27,36,59,22,25,106,0,0,6,9,5,3,4,11,2,0,2,0,0,0,0,0,365,5,502,0,0,4,0,19,138,247,20,78,77,6,11,14,8,0,250,0,0,581,459,28,101,14,188,0,0,35,0,17,101,12,186,0,0,0,724,126,0,2,2,15,1,2,0,0,0,3,7,6,7,31,193,12,4,107,737,115,63,31,32,18,18,7,7,7,3,1,1,0,0,0,16.0,14.0,11.0,14.0,14.0,21.0,25.0,16.0,20.0,17.0,21.0,18.0,16.0,9.0,22.0,12.0,16.0,17.0,13.0,14.0,17.0,8.0,17.0,9.0,13.0,9.0,8.0,7.0,13.0,11.0,10.0,13.0,10.0,9.0,8.0,10.0,6.0,15.0,13.0,11.0,14.0,21.0,15.0,15.0,8.0,9.0,13.0,8.0,13.0,9.0,13.0,12.0,8.0,5.0,11.0,13.0,13.0,16.0,5.0,11.0,12.0,13.0,16.0,11.0,7.0,17.0,6.0,11.0,13.0,18.0,13.0,12.0,9.0,8.0,5.0,8.0,3.0,9.0,15.0,6.0,4.0,8.0,3.0,4.0,6.0,6.0,2.0,3.0,3.0,5.0,1.0,3.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,254,580,206,0,69,99,86,72,64,48,50,55,73,52,49,58,59,65,47,41,25,19,8,1,0,0,1037,0,1,2,0,1038,0,0,2,0,258,7,23,146,42,2,308,254,0,712,328,0,0,0,47,0,0,0,0,0,0,0,7,986,0,0,10,4,0,0,0,29,997,0,41,162,23,2,0,812,0,3.2125984251968505,0.0,4.366666666666666,0.0,5.616346153846154,0,5,2,0,0,0,8,318,0,94,42,38,29,56,23,13,13,11,5,3,3,2,1,0,0,263,70,137,196,147,186,41,292,112,221,4,329,52,281,3,330,258,75,136,197,53,83,10,323,104,229,26,307,250,83,249,84,3,330,90,154,83,6,0,260,73,0,0,10,0,0,0,0,0,0,0,3,320,0,1.7447447447447448,1.3783783783783785,0.0,1.105263157894737,1.105263157894737,58.93993993993994 +90505,Veraguas,Las Palmas,El Prado,492,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,103,225,21,300,28,5,0,0,16,0,194,0,5,39,3,10,90,0,8,22,1,281,17,28,0,0,177,172,0,0,0,0,349,0,65,14,2,39,23,0,0,4,323,22,0,0,235,41,21,44,6,2,0,346,0,0,0,0,3,0,24,234,0,91,0,0,0,285,16,5,24,8,0,1,0,1,6,3,0,495,5.04983388704319,11.667774086378737,6.770764119601329,22.56810631229236,1.008595988538682,3.2148997134670485,2.1432664756446997,355,189,454,23,141,15,21,7,2,26,3,3,17,0,19,3,3,7,10,3,0,765,397,0,158,1004,0,538,624,0,1006,156,0,347,815,0,328,19,705,110,0,112,7,16,11,35,35,81,55,46,287,0,0,0,34,46,77,21,55,154,0,1,17,13,14,22,7,11,3,2,0,0,0,0,0,0,377,26,618,0,0,6,6,13,225,356,23,1,130,3,45,26,27,1,163,0,0,673,583,46,87,26,202,0,0,34,0,26,125,8,402,3,0,0,777,208,0,0,9,25,2,0,0,0,0,5,21,1,10,61,150,56,16,83,824,142,71,56,55,38,30,15,9,9,3,1,0,0,0,3,16.0,25.0,22.0,31.0,25.0,19.0,19.0,26.0,16.0,36.0,32.0,15.0,28.0,22.0,19.0,19.0,19.0,27.0,24.0,16.0,21.0,13.0,21.0,20.0,16.0,18.0,17.0,13.0,12.0,24.0,25.0,24.0,16.0,15.0,14.0,10.0,12.0,18.0,14.0,14.0,11.0,16.0,17.0,14.0,9.0,11.0,12.0,12.0,13.0,14.0,9.0,10.0,12.0,13.0,10.0,8.0,13.0,8.0,6.0,14.0,11.0,5.0,10.0,11.0,17.0,7.0,14.0,10.0,5.0,10.0,5.0,10.0,7.0,8.0,13.0,8.0,9.0,9.0,3.0,6.0,6.0,8.0,4.0,4.0,7.0,2.0,4.0,3.0,3.0,3.0,1.0,3.0,0.0,0.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,351,728,177,0,119,116,116,105,91,84,94,68,67,62,54,49,54,46,43,35,29,15,6,3,0,0,1252,0,3,1,0,1252,0,3,1,0,389,7,31,110,37,1,330,351,0,767,488,1,0,0,115,5,0,0,0,0,0,0,5,1131,0,4,7,101,0,0,0,81,1063,0,77,197,14,1,1,966,0,3.0,0.0,4.128834355828221,0.0,6.268312101910828,1,3,27,0,0,0,22,302,0,53,40,38,47,55,47,16,14,18,9,8,4,1,1,0,1,292,63,152,203,153,202,69,286,134,221,3,352,184,171,8,347,283,72,155,200,75,80,50,305,180,175,41,314,244,111,211,144,5,350,73,175,96,11,0,257,98,0,0,23,0,0,0,0,0,0,0,0,332,0,1.895774647887324,1.6422535211267606,0.0,1.0,1.0,54.60281690140845 +90506,Veraguas,Las Palmas,El Rincón,984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,537,71,569,89,12,1,0,58,0,283,0,1,124,3,17,297,0,4,0,0,560,64,105,0,0,222,487,0,0,0,20,729,0,145,60,3,32,15,0,0,2,698,28,1,0,397,102,46,126,36,21,1,726,0,1,0,0,2,0,19,472,2,236,0,0,0,545,22,9,36,111,0,1,0,0,3,2,0,984,4.324514991181658,12.24514991181658,6.282186948853616,19.62962962962963,1.0013717421124828,3.0260631001371743,1.7503429355281208,730,403,1143,32,200,18,33,25,7,28,3,4,9,0,29,18,8,4,8,1,8,1402,1060,0,132,2330,0,1003,1459,0,2107,355,0,776,1686,0,764,12,1498,188,0,200,29,53,7,78,115,130,124,126,574,0,0,4,98,125,179,66,85,348,0,0,21,17,21,27,17,13,2,1,2,0,0,0,0,0,948,41,1139,0,1,20,6,21,459,606,32,21,261,17,64,32,22,0,577,0,0,1461,1174,59,298,33,464,5,0,113,1,58,244,24,826,1,0,0,1655,407,4,0,10,48,2,2,0,0,1,10,20,10,8,83,486,71,19,281,1685,334,108,140,157,72,71,35,16,10,4,1,1,0,0,1,42.0,41.0,42.0,48.0,51.0,51.0,58.0,55.0,56.0,63.0,55.0,56.0,52.0,49.0,53.0,60.0,50.0,46.0,45.0,38.0,45.0,48.0,36.0,39.0,37.0,32.0,32.0,24.0,49.0,27.0,32.0,24.0,33.0,31.0,34.0,32.0,26.0,26.0,26.0,38.0,26.0,35.0,36.0,26.0,31.0,21.0,25.0,26.0,24.0,28.0,22.0,21.0,20.0,34.0,16.0,28.0,18.0,27.0,21.0,29.0,20.0,26.0,24.0,20.0,17.0,25.0,20.0,24.0,15.0,13.0,25.0,13.0,19.0,9.0,16.0,9.0,21.0,9.0,13.0,9.0,14.0,12.0,4.0,6.0,12.0,14.0,6.0,5.0,1.0,4.0,6.0,2.0,3.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,772,1531,332,0,224,283,265,239,205,164,154,148,154,124,113,123,107,97,82,61,48,30,13,1,0,0,2622,1,0,12,0,2622,1,0,12,0,736,7,105,241,81,3,692,770,0,2134,500,1,0,2,114,2,0,0,0,0,0,0,18,2499,0,3,39,98,1,1,0,228,2265,0,196,332,25,1,0,2081,0,3.228448275862069,0.0,4.482142857142857,0.0,6.1669829222011385,1,14,36,1,1,0,81,596,0,52,70,67,114,169,85,71,36,31,18,9,4,2,1,0,1,493,237,173,557,149,581,61,669,181,549,5,725,249,481,5,725,441,289,188,542,115,73,43,687,187,543,40,690,582,148,500,230,8,722,160,374,191,5,0,579,151,0,0,21,2,0,0,0,0,0,0,3,704,0,2.0013698630136987,1.6082191780821915,1.0,1.022222222222222,1.022222222222222,53.90821917808219 +90507,Veraguas,Las Palmas,Lolá,385,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,120,141,5,256,5,2,0,0,2,1,220,0,0,13,4,3,19,0,7,19,0,196,16,35,0,0,169,95,0,0,0,2,266,0,74,16,0,19,10,0,0,2,257,6,1,0,200,27,8,13,4,14,0,263,0,0,1,0,1,1,26,212,0,28,0,0,0,216,36,0,1,3,0,4,0,0,4,2,0,386,6.801587301587301,15.785714285714286,6.988095238095238,23.69047619047619,1.0150375939849623,3.387218045112782,2.323308270676692,271,165,319,32,71,10,13,2,2,21,3,0,6,0,10,4,1,4,6,0,1,548,319,0,128,739,0,353,514,0,764,103,0,221,646,0,211,10,585,61,0,61,1,17,3,26,33,44,42,37,222,0,0,0,15,31,50,30,21,128,0,0,17,13,9,31,20,14,0,0,2,0,0,0,0,0,257,13,526,0,0,8,2,32,157,252,27,58,52,7,22,4,15,0,163,0,1,494,421,38,77,4,116,13,0,15,1,27,105,9,334,6,0,0,562,173,0,1,3,55,0,2,0,0,1,6,19,5,2,20,112,17,9,79,601,121,41,34,27,28,14,12,13,11,6,0,1,0,0,6,11.0,13.0,10.0,14.0,9.0,10.0,19.0,8.0,13.0,12.0,14.0,13.0,9.0,10.0,13.0,16.0,16.0,15.0,20.0,16.0,18.0,15.0,15.0,10.0,13.0,16.0,14.0,12.0,11.0,10.0,9.0,8.0,10.0,10.0,10.0,5.0,7.0,5.0,10.0,6.0,8.0,7.0,9.0,9.0,6.0,10.0,8.0,12.0,6.0,15.0,10.0,13.0,16.0,10.0,11.0,14.0,7.0,11.0,17.0,11.0,9.0,9.0,19.0,15.0,5.0,9.0,6.0,11.0,5.0,5.0,10.0,6.0,9.0,6.0,6.0,7.0,6.0,12.0,8.0,5.0,3.0,5.0,4.0,9.0,9.0,4.0,8.0,0.0,4.0,2.0,2.0,3.0,2.0,3.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,178,564,173,0,57,62,59,83,71,63,47,33,39,51,60,60,57,36,37,38,30,18,12,1,1,0,906,6,1,2,0,906,6,1,2,0,258,2,14,140,48,4,271,178,0,599,311,5,0,0,2,0,0,0,0,0,0,0,6,907,0,11,4,50,0,0,0,65,785,0,56,144,32,2,2,679,0,2.847645429362881,0.0,4.081967213114754,0.0,7.043715846994536,2,1,21,0,0,0,27,220,0,51,34,29,33,43,19,18,8,10,9,7,4,3,0,1,1,238,33,182,89,189,82,41,230,102,169,5,266,165,106,5,266,227,44,174,97,51,123,41,230,73,198,35,236,170,101,190,81,1,270,60,142,64,5,0,223,48,0,0,0,0,0,0,0,0,0,0,3,268,0,1.822878228782288,1.5535055350553506,0.0,1.0,1.0,60.61254612546126 +90508,Veraguas,Las Palmas,Pixvae,306,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,56,30,153,20,16,0,0,14,0,0,0,3,155,2,5,33,0,5,120,4,74,0,5,0,0,141,55,0,0,0,7,203,0,57,5,1,29,15,0,0,5,187,11,0,0,148,37,0,14,3,1,0,201,0,0,0,0,2,0,16,141,0,45,1,0,0,154,29,0,0,5,0,15,0,0,0,0,0,310,5.994535519125683,19.688524590163933,6.612021857923497,21.781420765027324,1.0098522167487685,3.0886699507389164,1.9064039408866995,205,101,264,7,47,3,10,9,1,11,4,1,9,1,5,6,2,8,1,5,4,242,399,0,31,610,0,128,513,0,557,84,0,184,457,0,184,0,390,67,0,67,5,12,0,23,30,30,32,41,104,0,0,0,26,39,73,32,24,88,0,0,5,2,1,1,2,3,1,0,0,0,0,0,0,0,231,41,298,0,1,18,18,4,107,155,12,20,61,16,21,4,6,0,77,77,0,385,288,17,101,4,109,3,14,14,0,15,55,2,191,0,0,0,467,98,0,0,0,4,1,0,0,0,0,4,6,3,3,28,103,18,9,98,427,84,29,41,27,35,16,5,4,3,2,0,0,0,0,0,3.0,10.0,7.0,12.0,10.0,7.0,14.0,14.0,13.0,13.0,13.0,16.0,10.0,7.0,15.0,7.0,21.0,15.0,11.0,8.0,11.0,12.0,7.0,9.0,10.0,12.0,9.0,10.0,13.0,7.0,6.0,10.0,10.0,9.0,6.0,8.0,8.0,7.0,12.0,4.0,4.0,9.0,7.0,6.0,7.0,8.0,9.0,4.0,6.0,8.0,7.0,10.0,4.0,11.0,8.0,6.0,8.0,6.0,6.0,5.0,8.0,12.0,5.0,10.0,4.0,5.0,8.0,8.0,6.0,8.0,5.0,3.0,6.0,4.0,3.0,1.0,0.0,8.0,0.0,3.0,1.0,4.0,2.0,1.0,0.0,2.0,1.0,1.0,2.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,164,420,89,0,42,61,61,62,49,51,41,39,33,35,40,31,39,35,21,12,8,8,4,1,0,0,671,0,2,0,0,671,0,2,0,0,218,2,4,41,8,1,235,164,0,432,239,2,0,0,18,0,0,0,0,1,0,0,1,653,0,2,16,3,0,0,0,46,606,0,43,111,7,1,1,510,0,3.2184873949579837,0.0,4.466666666666667,0.0,6.169390787518574,1,6,1,0,0,0,10,187,0,35,21,19,22,30,33,18,8,9,6,2,1,1,0,0,0,166,39,23,182,59,146,17,188,19,186,0,205,90,115,0,205,11,194,62,143,18,44,5,200,2,203,11,194,39,166,46,159,1,204,55,102,45,3,0,142,63,0,0,7,0,0,0,0,0,0,0,0,198,0,1.8780487804878048,1.4048780487804875,0.0,1.0,1.0,54.77560975609756 +90509,Veraguas,Las Palmas,Puerto Vidal,607,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,101,341,39,422,20,20,0,0,19,0,273,0,0,137,4,5,61,0,1,118,0,335,13,15,0,0,279,194,0,0,0,8,481,0,66,14,4,30,13,0,0,6,463,11,1,0,203,220,0,10,43,5,0,460,0,0,0,2,19,0,27,245,0,207,2,0,0,316,70,4,4,71,0,13,0,0,3,0,0,610,5.4689119170984455,13.217616580310882,6.398963730569948,17.147668393782382,1.0145530145530146,3.32016632016632,2.226611226611227,488,292,741,35,183,18,12,13,7,33,6,2,37,2,26,11,0,10,7,2,8,804,931,0,84,1651,0,583,1152,0,1430,305,0,464,1271,0,451,13,1055,216,0,221,15,30,4,56,82,83,73,86,384,1,0,2,49,75,159,54,70,210,0,0,14,10,12,16,9,14,3,0,3,0,0,0,0,0,485,76,981,0,8,36,25,39,299,486,36,121,185,49,60,20,21,0,169,39,11,1033,836,34,314,20,140,1,0,34,11,48,158,13,695,13,0,0,1249,249,2,0,7,33,0,2,0,0,12,10,11,8,7,45,99,52,20,297,1228,185,80,96,131,65,33,19,14,4,1,0,0,0,0,13,25.0,40.0,34.0,35.0,41.0,31.0,30.0,38.0,29.0,24.0,39.0,34.0,32.0,22.0,32.0,43.0,40.0,44.0,49.0,49.0,25.0,33.0,34.0,26.0,34.0,37.0,22.0,23.0,21.0,20.0,21.0,19.0,18.0,22.0,21.0,13.0,22.0,23.0,31.0,27.0,20.0,17.0,18.0,14.0,28.0,15.0,19.0,9.0,22.0,13.0,15.0,20.0,9.0,17.0,15.0,17.0,21.0,18.0,11.0,14.0,10.0,25.0,13.0,13.0,25.0,11.0,20.0,11.0,13.0,13.0,17.0,19.0,9.0,22.0,13.0,15.0,10.0,8.0,4.0,7.0,5.0,6.0,4.0,8.0,5.0,7.0,5.0,4.0,2.0,2.0,3.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,486,1135,248,0,175,152,159,225,152,123,101,116,97,78,76,81,86,68,80,44,28,20,6,2,0,0,1859,0,2,8,0,1859,1,1,8,0,603,3,54,129,46,2,546,486,0,1175,693,1,0,0,119,19,1,0,0,2,0,0,24,1704,0,2,14,158,4,0,1,116,1574,0,99,261,43,1,0,1465,0,3.011477761836442,0.0,4.237068965517241,0.0,5.887640449438202,0,4,50,1,0,1,44,388,0,73,58,38,50,91,66,45,22,27,7,3,2,1,1,0,4,375,113,211,277,219,269,60,428,219,269,11,477,195,293,3,485,237,251,184,304,158,26,27,461,89,399,42,446,215,273,259,229,2,486,95,241,144,8,2,371,117,0,0,28,0,0,0,0,0,0,0,5,455,0,2.108163265306122,1.706122448979592,0.0,1.0,1.0,55.12090163934426 +90510,Veraguas,Las Palmas,San Martín de Porres,317,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,208,6,265,7,3,0,0,3,0,141,0,2,45,8,1,81,0,0,0,0,245,4,29,0,0,163,115,0,0,0,0,278,0,72,11,1,17,12,0,0,0,275,3,0,0,171,19,2,78,7,1,0,277,0,0,0,0,1,0,22,159,0,97,0,0,0,172,48,15,0,40,0,2,0,1,0,0,0,391,5.090909090909091,13.586363636363636,6.777272727272727,22.536363636363635,1.014388489208633,3.273381294964029,2.097122302158273,282,179,576,18,137,4,18,9,4,28,5,5,1,0,11,4,2,4,3,1,8,738,399,0,133,1004,0,567,570,0,947,190,0,433,704,0,419,14,587,117,0,117,9,52,2,42,53,57,60,51,181,0,0,0,30,61,73,38,46,163,1,3,20,13,6,19,3,30,2,1,4,0,0,0,0,0,253,41,641,0,3,19,7,23,262,317,12,27,120,80,18,17,15,0,36,1,0,625,641,50,85,18,36,4,4,90,0,34,58,2,721,13,0,0,670,213,0,2,3,42,1,4,0,0,0,8,24,8,11,42,70,42,10,79,928,102,41,44,42,28,25,16,11,11,4,1,0,0,0,13,33.0,27.0,36.0,33.0,30.0,38.0,37.0,31.0,29.0,37.0,29.0,32.0,24.0,24.0,28.0,22.0,29.0,27.0,25.0,28.0,24.0,24.0,30.0,21.0,16.0,17.0,14.0,14.0,13.0,17.0,12.0,20.0,14.0,11.0,17.0,14.0,11.0,21.0,12.0,13.0,8.0,10.0,10.0,14.0,10.0,15.0,7.0,15.0,6.0,12.0,7.0,7.0,10.0,13.0,12.0,6.0,8.0,4.0,7.0,8.0,5.0,8.0,8.0,8.0,5.0,9.0,7.0,8.0,6.0,3.0,10.0,1.0,5.0,9.0,7.0,2.0,6.0,4.0,5.0,1.0,2.0,4.0,1.0,4.0,3.0,2.0,0.0,2.0,4.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,468,689,109,0,159,172,137,131,115,75,74,71,52,55,49,33,34,33,32,18,14,9,3,0,0,0,1247,0,6,13,0,1247,1,5,13,0,384,5,26,108,25,2,248,468,0,902,364,0,0,0,760,29,0,0,0,0,0,0,1,476,0,12,5,28,2,0,1,329,889,0,81,171,19,5,0,990,0,2.637149028077754,0.0,4.027972027972028,0.0,6.09478672985782,2,2,5,0,0,0,95,178,0,77,30,14,20,29,24,27,19,12,10,8,4,3,0,0,5,220,62,105,177,105,177,90,192,95,187,5,277,140,142,0,282,222,60,110,172,83,27,41,241,185,97,37,245,183,99,191,91,1,281,42,146,93,1,0,215,67,0,0,133,9,0,0,0,0,0,0,0,140,0,2.2163120567375887,2.273049645390071,0.0,1.0,1.0,51.283687943262414 +90511,Veraguas,Las Palmas,Viguí,365,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,209,32,230,19,11,0,0,21,0,101,0,0,51,4,9,115,0,1,0,0,229,6,46,0,0,100,180,0,0,0,1,281,0,44,13,0,27,10,0,0,0,280,1,0,0,211,25,30,13,2,0,0,280,0,1,0,0,0,0,8,210,0,63,0,0,0,209,23,0,1,41,0,2,0,1,4,0,0,375,5.008620689655173,13.607758620689657,6.547413793103448,21.469827586206897,1.0,3.1423487544483986,2.088967971530249,281,165,474,19,99,12,10,19,3,21,2,3,1,0,13,13,2,6,2,2,2,470,547,0,62,955,0,313,704,0,836,181,0,350,667,0,345,5,550,117,0,126,7,23,1,36,52,57,36,57,204,0,1,0,42,62,94,29,28,102,0,0,13,10,13,15,3,5,1,0,0,0,0,0,0,0,290,9,570,0,0,6,1,9,229,276,17,39,54,3,11,8,5,0,216,0,0,567,542,35,23,8,171,0,0,60,0,75,116,8,393,1,0,0,707,141,0,0,2,19,0,0,0,0,0,3,15,2,4,9,209,24,7,26,886,101,41,13,13,21,11,8,6,5,3,0,0,0,0,1,20.0,21.0,26.0,25.0,25.0,26.0,24.0,25.0,26.0,22.0,28.0,24.0,16.0,24.0,30.0,35.0,20.0,20.0,29.0,11.0,13.0,19.0,12.0,9.0,15.0,15.0,12.0,11.0,11.0,12.0,11.0,17.0,12.0,12.0,11.0,14.0,12.0,10.0,17.0,12.0,9.0,13.0,9.0,5.0,13.0,7.0,9.0,10.0,8.0,10.0,7.0,9.0,9.0,7.0,9.0,5.0,7.0,5.0,12.0,17.0,8.0,10.0,12.0,9.0,5.0,9.0,8.0,16.0,5.0,6.0,9.0,8.0,9.0,4.0,8.0,8.0,8.0,3.0,3.0,6.0,5.0,5.0,3.0,1.0,6.0,5.0,4.0,5.0,2.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,362,596,151,0,117,123,122,115,68,61,63,65,49,44,41,46,44,44,38,28,20,18,3,0,0,0,1107,0,0,2,0,1107,0,0,2,0,317,2,27,98,48,2,253,362,0,678,431,0,0,1,249,12,0,0,0,0,0,0,4,843,0,0,0,16,0,0,0,126,967,0,37,136,13,1,0,922,0,3.3942992874109263,0.0,4.573943661971831,0.0,5.711451758340847,0,0,9,0,0,0,25,247,0,73,29,46,43,32,19,12,7,8,6,4,1,1,0,0,0,203,78,69,212,65,216,32,249,48,233,0,281,119,162,4,277,136,145,69,212,48,21,11,270,65,216,11,270,212,69,223,58,5,276,46,150,84,1,0,201,80,0,0,41,1,0,0,0,0,0,0,1,238,0,2.01779359430605,1.9288256227758007,0.0,1.0714285714285714,1.0714285714285714,55.25978647686833 +90512,Veraguas,Las Palmas,Zapotillo,439,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,233,14,291,6,3,0,0,10,1,149,0,2,89,3,1,67,0,0,79,0,219,9,4,0,0,181,128,0,0,0,2,311,0,90,7,1,37,0,0,0,4,291,16,0,0,171,115,2,5,18,0,0,291,0,0,0,0,20,0,4,201,0,105,1,0,0,182,38,5,15,23,2,44,0,2,0,0,0,446,6.722727272727273,18.222727272727276,6.781818181818182,18.87272727272727,1.0,2.9292604501607715,1.819935691318328,311,158,360,7,84,5,12,13,3,22,2,4,11,0,21,7,4,3,2,0,2,436,472,0,20,888,0,156,752,0,756,152,0,200,708,0,194,6,594,114,0,118,3,10,4,35,35,43,41,60,252,0,3,0,20,39,60,23,43,88,0,0,4,5,6,7,1,6,1,0,1,0,0,0,0,0,328,44,445,0,7,20,14,12,136,250,15,32,98,81,8,9,7,1,165,0,0,533,459,34,91,10,229,0,0,5,0,24,99,6,338,0,0,0,696,110,0,0,3,6,1,1,0,0,0,7,4,5,7,36,200,12,3,98,690,116,46,40,55,16,18,4,4,2,1,0,0,0,0,0,18.0,16.0,31.0,19.0,17.0,16.0,16.0,17.0,11.0,14.0,19.0,20.0,15.0,15.0,11.0,13.0,12.0,15.0,19.0,16.0,14.0,15.0,29.0,11.0,12.0,12.0,14.0,14.0,8.0,16.0,10.0,6.0,8.0,11.0,11.0,11.0,7.0,19.0,9.0,15.0,5.0,8.0,10.0,11.0,10.0,15.0,12.0,14.0,10.0,14.0,8.0,8.0,9.0,10.0,12.0,12.0,8.0,4.0,11.0,12.0,7.0,11.0,6.0,8.0,11.0,10.0,7.0,14.0,16.0,9.0,7.0,9.0,6.0,6.0,9.0,7.0,6.0,7.0,6.0,5.0,7.0,2.0,3.0,4.0,7.0,7.0,0.0,2.0,1.0,1.0,3.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,255,573,164,0,101,74,80,75,81,64,46,61,44,65,47,47,43,56,37,31,23,11,5,1,0,0,987,0,0,5,0,987,0,0,5,0,318,2,23,90,27,1,276,255,0,577,415,0,0,1,42,2,0,0,0,1,0,0,2,944,0,0,34,47,0,0,0,73,838,0,60,167,11,4,0,750,0,3.157608695652174,0.0,4.0777777777777775,0.0,5.517137096774194,0,13,22,0,0,0,24,252,0,75,26,33,39,70,30,11,11,11,4,1,0,0,0,0,0,240,71,119,192,135,176,30,281,107,204,4,307,130,181,5,306,184,127,107,204,91,16,5,306,61,250,14,297,134,177,80,231,0,311,79,147,76,9,0,223,88,0,0,10,1,0,0,0,0,0,0,2,298,0,1.7138263665594855,1.4758842443729905,0.0,1.0,1.0,56.58520900321543 +90513,Veraguas,Las Palmas,Manuel E. Amador Terrero,319,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,190,46,192,7,24,0,0,22,0,13,0,4,99,2,5,122,0,0,0,2,160,50,30,3,0,53,185,0,0,0,7,245,0,35,6,0,28,41,0,0,0,243,2,0,0,97,72,24,35,17,0,0,241,1,0,0,0,3,0,2,89,1,149,4,0,0,142,0,0,0,94,0,1,0,1,7,0,0,355,5.035211267605634,14.93661971830986,6.880281690140845,22.901408450704224,1.0,2.440816326530612,1.3959183673469389,245,135,366,19,47,5,7,4,2,13,0,2,3,0,11,9,0,1,2,1,4,405,371,0,44,732,0,121,655,0,647,129,0,205,571,0,202,3,465,106,0,108,5,6,0,19,36,42,36,40,221,0,0,0,31,48,47,13,24,74,0,0,3,5,4,2,3,6,2,0,1,0,0,0,0,0,306,3,367,0,0,2,1,6,137,187,21,16,36,11,10,8,0,0,243,1,0,474,374,9,55,10,198,1,0,36,0,23,49,5,250,1,0,0,576,85,0,0,2,10,2,1,0,0,0,1,4,2,2,12,225,9,5,49,678,71,27,21,18,12,11,5,2,1,1,0,0,0,0,1,12.0,19.0,23.0,18.0,23.0,13.0,15.0,15.0,21.0,13.0,19.0,16.0,19.0,17.0,22.0,14.0,16.0,17.0,11.0,12.0,10.0,16.0,13.0,19.0,11.0,14.0,13.0,14.0,8.0,8.0,11.0,7.0,7.0,10.0,4.0,7.0,8.0,7.0,9.0,11.0,9.0,11.0,2.0,11.0,9.0,13.0,6.0,5.0,5.0,10.0,10.0,6.0,7.0,7.0,8.0,8.0,8.0,11.0,8.0,8.0,5.0,9.0,11.0,6.0,9.0,6.0,3.0,6.0,4.0,2.0,8.0,3.0,4.0,7.0,3.0,6.0,9.0,7.0,6.0,5.0,5.0,2.0,5.0,0.0,5.0,2.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,479,104,0,95,77,93,70,69,57,39,42,42,39,38,43,40,21,25,33,17,4,3,1,0,0,848,0,0,0,0,848,0,0,0,0,242,2,29,85,32,0,193,265,0,663,185,0,0,0,4,0,0,0,0,0,0,0,2,842,0,0,1,92,0,0,0,261,494,0,23,67,6,1,0,751,0,3.295918367346939,0.0,4.747422680412371,0.0,5.4375,0,1,20,0,0,0,80,144,0,73,20,34,44,39,12,8,9,1,1,3,0,1,0,0,0,130,115,11,234,8,237,11,234,9,236,0,245,88,157,2,243,145,100,28,217,10,18,5,240,18,227,6,239,205,40,135,110,11,234,61,130,52,2,0,208,37,0,0,0,0,0,0,0,0,0,0,0,245,0,1.9346938775510203,1.526530612244898,0.0,1.1333333333333333,1.1333333333333333,53.10612244897959 +90601,Veraguas,Montijo,Montijo,968,9,0,9,0,0,0,0,0,0,0,0,0,0,0,107,584,67,18,734,24,1,0,0,17,0,750,0,1,1,3,0,18,0,3,634,9,110,6,16,0,1,737,22,1,0,0,16,776,0,144,35,2,21,8,0,70,31,654,21,0,0,765,4,0,5,1,1,0,762,0,14,0,0,0,0,371,395,0,10,0,0,647,92,20,0,0,1,0,2,0,6,8,0,794,192,6.573122529644269,21.387351778656125,6.60737812911726,21.6231884057971,1.0077319587628866,4.112113402061856,2.804123711340206,782,425,815,66,204,22,33,41,13,52,4,10,29,5,31,18,11,31,30,4,15,2107,277,0,1036,1348,0,1941,443,0,2218,166,0,691,1693,0,542,149,1615,78,0,81,20,36,21,50,63,76,59,56,287,1,1,5,74,86,159,59,91,533,1,15,60,68,114,126,128,44,20,10,37,0,0,0,3,0,1069,89,1024,0,8,41,14,139,413,371,55,46,712,40,106,46,83,0,111,34,0,1284,1217,371,366,47,311,25,0,12,0,6,149,31,523,16,0,0,1018,764,5,14,43,282,16,37,3,0,0,49,167,83,67,232,96,136,61,267,992,210,120,150,194,157,216,123,156,86,47,8,13,4,9,16,29.0,27.0,28.0,33.0,34.0,31.0,34.0,39.0,27.0,37.0,45.0,35.0,31.0,36.0,25.0,38.0,43.0,30.0,43.0,38.0,39.0,35.0,42.0,42.0,38.0,44.0,36.0,34.0,37.0,30.0,39.0,35.0,38.0,37.0,33.0,27.0,34.0,21.0,28.0,23.0,32.0,28.0,27.0,28.0,32.0,29.0,25.0,35.0,30.0,33.0,36.0,25.0,47.0,35.0,34.0,33.0,34.0,36.0,37.0,31.0,26.0,35.0,28.0,23.0,22.0,22.0,23.0,14.0,17.0,27.0,12.0,21.0,16.0,18.0,12.0,13.0,11.0,17.0,8.0,15.0,8.0,14.0,16.0,9.0,9.0,7.0,3.0,7.0,4.0,4.0,4.0,3.0,1.0,3.0,2.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,491,1665,345,0,151,168,172,192,196,181,182,133,147,152,177,171,134,103,79,64,56,25,13,5,0,0,2473,6,16,6,0,2473,6,16,6,0,593,38,13,418,84,6,858,491,0,1025,1455,21,0,11,86,17,2,1,0,4,1,0,36,2343,0,103,213,336,14,10,8,667,1150,0,525,731,144,14,1,1086,0,2.060240963855421,0.0,2.877717391304348,0.0,9.336665333866453,42,72,116,5,4,2,226,315,0,18,32,16,45,72,84,70,75,121,80,62,34,35,17,21,0,756,26,729,53,709,73,137,645,729,53,264,518,479,303,208,574,717,65,706,76,485,221,368,414,590,192,318,464,281,501,324,458,16,766,149,392,211,30,0,510,272,0,4,22,6,0,1,0,0,0,0,8,741,0,1.641943734015345,1.5562659846547315,1.0,1.0196078431372548,1.0196078431372548,55.30562659846547 +90602,Veraguas,Montijo,Gobernadora,119,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,46,4,60,9,1,0,0,3,0,0,0,2,62,0,0,9,0,0,0,0,71,0,2,0,0,69,4,0,0,0,0,73,0,31,5,0,9,3,0,0,1,68,4,0,0,67,4,0,1,0,1,0,70,0,1,0,0,2,0,12,58,0,3,0,0,0,51,21,0,0,0,0,1,0,0,0,0,0,121,4.486111111111111,8.23611111111111,7.0,24.0,1.0136986301369864,3.7260273972602738,2.5753424657534247,74,39,74,5,23,0,2,1,1,1,3,1,2,0,0,0,0,2,0,0,0,185,24,0,25,184,0,167,42,0,189,20,0,44,165,0,42,2,151,14,0,14,2,6,0,3,11,8,12,10,64,0,0,0,8,7,28,5,12,16,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,99,6,75,0,0,4,1,4,18,35,0,18,16,3,5,2,10,0,5,61,0,136,90,8,1,3,89,0,0,1,0,5,20,1,36,0,0,0,161,16,0,0,1,2,0,0,0,0,0,3,2,3,1,8,64,7,2,15,121,51,14,16,12,2,4,3,1,0,2,0,0,0,0,0,2.0,6.0,3.0,6.0,3.0,8.0,2.0,4.0,9.0,3.0,7.0,2.0,3.0,3.0,0.0,1.0,0.0,6.0,2.0,4.0,1.0,1.0,2.0,3.0,5.0,9.0,3.0,2.0,2.0,0.0,1.0,3.0,4.0,3.0,3.0,2.0,2.0,5.0,1.0,4.0,2.0,3.0,3.0,2.0,4.0,2.0,2.0,2.0,2.0,2.0,1.0,3.0,3.0,3.0,3.0,0.0,3.0,2.0,2.0,2.0,6.0,3.0,3.0,2.0,3.0,2.0,4.0,3.0,2.0,2.0,3.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,3.0,1.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,61,132,33,0,20,26,15,13,12,16,14,14,14,10,13,9,17,13,6,3,8,2,0,0,1,0,224,0,1,1,0,224,0,1,1,0,72,5,19,12,6,0,51,61,0,176,49,1,0,0,0,0,0,0,0,0,0,0,1,225,0,0,2,18,6,1,0,189,10,0,9,27,4,0,0,186,0,3.536231884057971,0.0,4.2075471698113205,0.0,5.831858407079646,0,2,4,3,1,0,62,2,0,9,9,6,8,15,15,4,2,1,3,2,0,0,0,0,0,70,4,8,66,43,31,18,56,19,55,2,72,34,40,3,71,66,8,33,41,0,33,9,65,58,16,1,73,27,47,25,49,1,73,26,24,22,2,0,65,9,0,0,0,0,0,0,0,0,0,0,0,74,0,1.837837837837838,1.2162162162162162,0.0,1.0,1.0,54.95945945945946 +90603,Veraguas,Montijo,La Garceana,144,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,62,5,85,2,1,0,0,4,0,74,0,0,6,0,0,12,0,0,0,0,83,5,4,0,0,88,4,0,0,0,0,92,0,34,9,1,5,4,0,0,1,91,0,0,0,87,3,0,0,0,2,0,92,0,0,0,0,0,0,10,81,0,1,0,0,3,76,0,0,0,10,0,0,0,0,1,2,0,145,5.544303797468355,14.974683544303796,5.848101265822785,17.0126582278481,1.0108695652173914,3.108695652173913,2.0760869565217392,93,42,35,4,11,3,1,0,1,2,0,0,0,0,8,4,4,1,0,0,0,118,68,0,6,180,0,10,176,0,162,24,0,29,157,0,27,2,133,24,0,24,0,2,0,1,10,18,10,9,61,0,0,0,2,8,10,3,5,16,0,1,0,0,1,1,2,1,1,0,0,0,0,0,0,0,71,2,104,0,0,0,2,3,19,76,6,0,14,5,4,1,2,0,45,2,0,119,73,9,25,1,31,3,0,4,0,4,35,2,49,7,0,0,154,19,0,0,0,4,0,0,0,0,0,2,1,1,0,2,35,5,2,25,80,44,15,17,11,6,5,3,1,1,1,0,1,0,0,7,1.0,0.0,3.0,2.0,0.0,2.0,0.0,2.0,3.0,2.0,1.0,4.0,1.0,3.0,0.0,0.0,0.0,4.0,1.0,2.0,3.0,3.0,0.0,0.0,4.0,2.0,1.0,0.0,0.0,3.0,1.0,1.0,0.0,2.0,2.0,1.0,2.0,3.0,1.0,1.0,4.0,6.0,2.0,0.0,4.0,6.0,4.0,3.0,1.0,3.0,3.0,1.0,4.0,4.0,5.0,2.0,3.0,2.0,1.0,3.0,2.0,2.0,3.0,4.0,4.0,2.0,7.0,1.0,3.0,2.0,3.0,3.0,3.0,2.0,4.0,3.0,4.0,5.0,0.0,1.0,3.0,2.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,24,113,55,0,6,9,9,7,10,6,6,8,16,17,17,11,15,15,15,13,11,1,0,0,0,0,192,0,0,0,0,192,0,0,0,0,75,0,0,21,5,1,66,24,0,126,66,0,0,0,0,0,0,0,0,0,0,0,2,190,0,0,0,15,0,0,0,126,51,0,13,44,3,0,0,132,0,2.8125,0.0,3.423076923076923,0.0,5.661458333333333,0,0,7,0,0,0,59,27,0,14,13,9,19,15,3,6,4,3,1,1,0,1,0,0,4,91,2,67,26,57,36,18,75,61,32,1,92,46,47,1,92,55,38,53,40,10,43,3,90,3,90,8,85,57,36,47,46,2,91,45,37,11,0,0,81,12,0,0,0,0,0,0,0,0,0,0,2,91,0,1.2795698924731185,0.7849462365591398,0.0,1.0,1.0,59.66666666666666 +90604,Veraguas,Montijo,Leones,125,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,39,5,54,1,2,0,0,3,0,0,0,12,43,0,0,4,0,1,0,0,52,2,6,0,0,58,2,0,0,0,0,60,0,50,8,0,4,6,0,0,0,60,0,0,0,54,3,0,2,0,1,0,60,0,0,0,0,0,0,1,59,0,0,0,0,0,0,47,0,0,12,0,0,0,1,0,0,0,128,5.659574468085107,14.829787234042554,7.0,24.0,1.0166666666666666,3.4833333333333334,2.4166666666666665,61,29,39,4,7,2,0,2,2,4,0,0,3,0,2,1,0,1,1,0,1,106,41,0,1,146,0,70,77,0,122,25,0,16,131,0,16,0,106,25,0,25,1,0,1,5,2,8,9,6,49,0,0,0,1,4,7,1,7,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,81,0,54,0,0,0,0,3,7,36,2,6,16,0,2,1,0,0,13,49,0,86,67,3,2,1,63,0,0,12,0,1,16,2,45,0,0,0,114,20,0,0,0,1,0,0,0,0,0,1,0,0,0,14,61,3,0,2,80,24,11,13,18,3,2,2,0,0,0,0,0,0,0,0,2.0,2.0,1.0,1.0,1.0,3.0,2.0,1.0,1.0,4.0,1.0,1.0,1.0,3.0,1.0,1.0,1.0,2.0,7.0,0.0,4.0,4.0,4.0,0.0,3.0,1.0,1.0,3.0,3.0,4.0,2.0,1.0,2.0,1.0,0.0,1.0,2.0,0.0,1.0,2.0,1.0,1.0,1.0,1.0,0.0,2.0,0.0,4.0,1.0,2.0,1.0,3.0,5.0,3.0,0.0,2.0,3.0,6.0,2.0,5.0,3.0,1.0,3.0,2.0,2.0,0.0,1.0,2.0,3.0,2.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,25,104,24,0,7,11,7,11,15,12,6,6,4,9,12,18,11,8,5,2,5,2,1,1,0,0,153,0,0,0,0,153,0,0,0,0,63,0,8,11,1,0,45,25,0,97,56,0,0,0,0,1,0,0,0,0,0,0,1,151,0,0,3,50,5,0,0,57,38,0,4,20,3,0,0,126,0,3.23728813559322,0.0,4.113636363636363,0.0,5.477124183006536,0,2,21,5,0,0,19,14,0,8,9,11,4,14,7,4,1,3,0,0,0,0,0,0,0,61,0,7,54,31,30,5,56,17,44,3,58,37,24,0,61,46,15,21,40,2,19,1,60,32,29,4,57,41,20,49,12,0,61,24,21,13,3,0,51,10,0,0,0,0,0,0,0,0,0,0,0,61,0,1.4098360655737705,1.098360655737705,0.0,1.0,1.0,57.42622950819672 +90605,Veraguas,Montijo,Pilón,425,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,268,31,2,296,3,1,0,0,1,0,285,0,0,1,0,11,2,0,2,158,4,139,0,0,0,0,285,6,1,0,0,9,301,0,85,11,5,26,1,0,1,10,282,8,0,0,294,2,0,4,0,1,0,294,1,6,0,0,0,0,95,201,0,5,0,0,1,294,2,0,0,1,0,1,0,0,1,1,0,429,6.434343434343434,15.723905723905723,6.777777777777778,19.23905723905724,1.0066445182724253,3.840531561461794,2.750830564784053,303,144,250,20,59,11,20,16,7,16,3,2,22,1,12,3,3,9,5,0,1,724,119,0,271,572,0,628,215,0,791,52,0,205,638,0,182,23,609,29,0,29,9,10,4,8,24,31,32,24,165,0,0,0,23,46,74,12,30,161,0,1,8,15,29,34,29,21,5,2,17,0,0,0,0,0,386,21,380,0,1,7,10,45,134,129,15,57,179,14,44,23,30,0,102,14,0,455,419,92,154,24,125,7,0,4,0,2,86,6,158,0,0,0,465,205,0,4,17,73,6,17,0,0,0,17,41,16,12,62,57,40,22,140,393,127,41,43,59,31,77,28,33,12,19,2,4,3,2,0,12.0,2.0,9.0,8.0,6.0,13.0,4.0,8.0,17.0,8.0,12.0,15.0,10.0,12.0,16.0,16.0,7.0,7.0,12.0,10.0,15.0,16.0,12.0,11.0,12.0,11.0,15.0,14.0,11.0,12.0,8.0,11.0,8.0,7.0,6.0,9.0,12.0,11.0,13.0,5.0,5.0,10.0,8.0,8.0,11.0,16.0,10.0,9.0,11.0,12.0,8.0,14.0,10.0,19.0,14.0,12.0,12.0,15.0,12.0,14.0,14.0,8.0,10.0,15.0,9.0,9.0,10.0,6.0,10.0,8.0,7.0,5.0,11.0,7.0,8.0,4.0,6.0,4.0,6.0,4.0,10.0,8.0,6.0,6.0,6.0,4.0,2.0,5.0,3.0,2.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,152,557,165,0,37,50,65,52,66,63,40,50,42,58,65,65,56,43,38,24,36,16,6,0,2,0,870,2,2,0,0,870,2,2,0,0,216,6,4,121,37,8,330,152,0,513,357,4,0,4,3,1,0,0,0,0,0,0,15,851,0,14,43,139,6,3,4,263,402,0,132,212,44,4,1,481,0,2.2559366754617414,0.0,3.111940298507463,0.0,8.712814645308924,9,21,57,4,3,3,90,116,0,18,26,21,27,47,23,25,33,29,8,16,9,12,3,6,0,290,13,268,35,265,38,70,233,251,52,46,257,174,129,24,279,262,41,260,43,127,133,77,226,101,202,85,218,118,185,133,170,2,301,73,136,78,16,0,211,92,0,1,0,1,0,0,0,0,0,0,6,295,0,1.5016501650165015,1.3828382838283828,1.5,1.0,1.0,58.02640264026402 +90606,Veraguas,Montijo,Cébaco,185,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,21,76,2,85,13,2,0,0,0,0,0,0,3,89,0,0,8,0,0,0,0,84,2,14,0,0,92,7,0,0,0,1,100,0,64,9,1,1,11,0,0,0,95,5,0,0,83,14,0,1,1,1,0,94,0,2,0,0,4,0,2,94,0,4,0,0,0,22,50,0,0,28,0,0,0,0,0,0,0,188,6.736111111111111,22.47222222222222,7.0,24.0,1.0,3.27,2.21,102,60,99,4,11,1,1,2,1,1,1,0,2,0,3,0,0,1,1,0,2,205,60,0,25,240,0,154,111,0,235,30,0,47,218,0,45,2,191,27,0,27,2,2,0,8,9,22,11,16,100,0,0,0,3,10,13,7,6,17,0,0,1,2,3,1,4,1,0,0,0,0,0,0,0,0,129,1,113,0,0,1,0,1,32,60,2,18,20,2,9,5,1,0,19,73,0,158,127,8,11,5,98,0,0,7,0,9,31,3,72,0,0,0,214,23,0,0,0,6,0,0,0,0,0,1,2,1,1,10,86,11,7,11,158,36,35,19,10,13,6,3,1,2,2,0,0,0,0,0,6.0,5.0,2.0,7.0,1.0,7.0,5.0,3.0,3.0,3.0,4.0,7.0,6.0,4.0,1.0,2.0,4.0,7.0,9.0,2.0,4.0,6.0,2.0,2.0,2.0,2.0,3.0,4.0,3.0,4.0,3.0,6.0,2.0,4.0,5.0,6.0,4.0,3.0,3.0,5.0,4.0,4.0,7.0,2.0,6.0,3.0,4.0,8.0,1.0,4.0,6.0,2.0,1.0,5.0,5.0,2.0,1.0,2.0,1.0,2.0,5.0,2.0,1.0,3.0,3.0,2.0,3.0,4.0,1.0,2.0,4.0,4.0,0.0,2.0,1.0,2.0,0.0,1.0,3.0,0.0,3.0,1.0,0.0,1.0,2.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,64,181,40,0,21,21,22,24,16,16,20,21,23,20,19,8,14,12,11,6,7,4,0,0,0,0,282,3,0,0,0,282,3,0,0,0,98,3,12,33,3,1,71,64,0,186,96,3,0,7,2,1,0,0,0,0,0,0,5,270,0,0,0,137,9,0,0,112,27,0,13,16,1,0,0,255,0,2.9320388349514563,0.0,4.084507042253521,0.0,5.480701754385965,0,0,42,5,0,0,46,9,0,7,12,15,16,20,12,9,3,2,3,0,1,0,0,0,0,97,5,5,97,25,77,6,96,11,91,2,100,45,57,4,98,81,21,24,78,1,23,5,97,59,43,0,102,39,63,56,46,0,102,33,54,13,2,0,92,10,0,0,0,1,0,0,0,0,0,0,0,101,0,1.5490196078431373,1.2450980392156863,0.0,1.0,1.0,51.65686274509804 +90607,Veraguas,Montijo,Costa Hermosa,598,14,0,0,0,0,0,0,0,0,0,0,2,0,0,0,308,135,61,423,20,0,0,19,42,0,490,0,0,3,0,2,7,0,2,33,318,133,5,15,0,0,483,4,0,0,0,17,504,0,66,18,2,17,5,0,0,19,454,31,0,0,487,5,0,12,0,0,0,499,4,1,0,0,0,0,189,302,0,13,0,0,0,490,10,0,0,1,0,0,0,0,3,0,0,614,5.704,5.568,5.704,6.022,1.001984126984127,3.4662698412698414,2.4603174603174605,507,274,555,80,157,14,29,25,12,26,5,5,32,0,28,9,6,57,6,3,6,1451,153,0,461,1143,0,1272,332,0,1397,207,0,446,1158,0,382,64,1078,80,0,81,24,32,43,52,68,56,60,51,241,0,1,3,61,103,151,54,67,291,0,3,19,21,41,32,30,7,2,2,8,0,0,0,0,0,585,40,803,0,0,7,22,61,283,371,26,62,245,14,97,19,65,1,72,105,0,890,831,120,220,20,248,7,0,3,0,19,119,25,394,4,0,0,969,353,3,9,19,64,3,8,0,0,0,12,33,32,16,133,119,68,26,186,908,185,95,106,117,81,113,41,38,22,6,2,3,0,0,4,28.0,27.0,24.0,38.0,34.0,28.0,33.0,29.0,31.0,21.0,36.0,35.0,16.0,24.0,35.0,31.0,30.0,31.0,24.0,27.0,31.0,30.0,29.0,20.0,30.0,31.0,31.0,41.0,16.0,23.0,22.0,18.0,12.0,17.0,17.0,18.0,22.0,14.0,22.0,17.0,30.0,16.0,20.0,26.0,21.0,15.0,31.0,21.0,24.0,19.0,16.0,29.0,16.0,17.0,21.0,9.0,18.0,13.0,15.0,21.0,18.0,12.0,11.0,21.0,10.0,18.0,10.0,11.0,15.0,12.0,8.0,9.0,8.0,18.0,11.0,16.0,7.0,7.0,5.0,8.0,2.0,9.0,8.0,5.0,3.0,2.0,0.0,1.0,2.0,4.0,3.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,439,1074,208,0,151,142,146,143,140,142,86,93,113,110,99,76,72,66,54,43,27,9,7,1,1,0,1694,14,8,5,0,1694,14,8,5,0,495,13,85,157,57,2,473,439,0,1091,618,12,0,1,4,0,0,0,0,5,0,0,22,1689,0,27,29,522,13,5,0,400,725,0,172,389,60,8,1,1091,0,2.5266187050359714,0.0,3.37782340862423,0.0,7.142940151074956,9,12,171,6,2,0,136,171,0,23,27,29,41,87,66,59,59,56,28,13,5,5,5,2,0,491,16,450,57,423,84,57,450,453,54,64,443,222,285,49,458,470,37,432,75,290,142,117,390,425,82,111,396,148,359,150,357,1,506,90,249,147,21,0,357,150,0,1,0,0,0,0,0,0,0,0,8,498,0,1.755424063116371,1.6390532544378698,1.0,1.0,1.0,52.50295857988166 +90608,Veraguas,Montijo,Unión del Norte,413,5,0,4,0,0,0,0,0,0,0,0,0,0,0,0,260,15,11,273,2,0,0,0,11,0,266,0,1,7,0,0,12,0,0,92,0,191,1,2,0,0,269,11,0,0,0,6,286,0,83,33,4,14,2,0,11,3,263,9,0,0,280,0,0,4,0,2,0,285,0,1,0,0,0,0,81,200,0,5,0,0,1,260,18,0,0,0,0,0,0,2,4,1,0,422,6.534050179211469,16.59856630824373,7.0,19.8673835125448,1.006993006993007,3.772727272727273,2.685314685314685,288,158,262,27,41,17,10,3,1,12,3,2,8,0,20,19,6,8,2,2,8,623,175,0,227,571,0,522,276,0,713,85,0,181,617,0,158,23,560,57,0,58,5,17,0,23,26,35,28,19,160,0,0,0,28,32,62,22,39,112,0,1,3,15,24,24,45,10,3,1,6,0,0,0,0,0,319,38,365,0,2,19,2,37,109,141,15,63,177,12,50,9,21,0,81,0,0,443,389,70,154,13,109,3,0,1,0,12,93,9,172,0,0,0,478,154,0,1,11,69,3,6,0,0,0,11,35,27,9,57,44,58,11,105,360,119,50,40,62,39,84,24,25,10,12,5,1,1,0,0,6.0,8.0,8.0,12.0,18.0,7.0,15.0,14.0,11.0,11.0,12.0,5.0,13.0,4.0,11.0,8.0,9.0,12.0,14.0,11.0,9.0,11.0,10.0,21.0,13.0,10.0,14.0,13.0,14.0,13.0,18.0,14.0,7.0,9.0,8.0,8.0,11.0,8.0,8.0,12.0,12.0,8.0,11.0,4.0,6.0,7.0,5.0,11.0,11.0,12.0,4.0,13.0,14.0,6.0,6.0,11.0,15.0,16.0,13.0,12.0,13.0,7.0,7.0,10.0,6.0,6.0,13.0,11.0,10.0,2.0,8.0,7.0,3.0,12.0,3.0,5.0,4.0,4.0,9.0,6.0,5.0,3.0,5.0,6.0,6.0,2.0,4.0,1.0,3.0,1.0,2.0,2.0,1.0,1.0,3.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,155,525,152,0,52,58,45,54,64,64,56,47,41,46,43,67,43,42,33,28,25,11,9,4,0,0,829,2,0,1,0,829,2,0,1,0,227,2,7,136,36,6,263,155,0,477,355,0,0,0,22,0,0,0,0,9,0,0,6,795,0,7,8,24,0,0,1,48,744,0,134,220,30,6,1,441,0,2.6426426426426426,0.0,3.587982832618026,0.0,7.810096153846154,3,1,9,0,0,0,23,252,0,11,24,14,28,39,31,40,21,33,19,10,5,7,4,2,0,278,10,243,45,232,56,28,260,250,38,35,253,146,142,25,263,251,37,237,51,97,140,71,217,171,117,84,204,168,120,100,188,7,281,65,160,56,7,0,212,76,0,0,3,0,0,0,0,0,0,0,2,283,0,1.5381944444444444,1.3506944444444444,0.0,1.0625,1.0625,55.73611111111112 +90701,Veraguas,Río de Jesús,Río de Jesús,1228,0,1,0,0,0,0,0,0,0,0,0,3,0,0,7,638,193,14,827,11,4,0,0,10,0,790,0,0,8,4,1,46,0,3,651,3,160,15,18,0,5,765,67,1,0,0,19,852,0,226,29,7,80,35,0,2,28,790,32,0,0,774,13,2,37,4,22,0,841,3,8,0,0,0,0,250,558,0,43,0,1,369,440,24,0,0,10,0,1,0,0,6,2,0,1232,6.518607442977191,18.72749099639856,6.657863145258103,19.98079231692677,1.0,3.582159624413145,2.5187793427230045,855,447,787,44,185,23,33,20,11,44,8,11,13,1,54,15,4,9,23,11,11,1892,499,0,600,1791,0,1552,839,0,2188,203,0,634,1757,0,547,87,1639,118,0,120,30,31,7,65,49,81,88,78,456,0,0,1,73,80,179,63,107,450,0,11,27,37,76,130,78,30,12,2,29,0,0,1,0,0,852,111,1236,0,5,63,38,142,432,469,124,69,480,36,81,25,61,1,239,5,0,1300,1182,290,359,29,231,11,0,8,0,30,235,16,597,87,0,0,1314,580,2,13,33,215,13,29,0,0,0,51,118,62,69,99,100,97,62,305,1067,301,129,174,133,108,228,79,88,47,21,8,5,1,6,87,24.0,23.0,19.0,25.0,41.0,25.0,31.0,31.0,32.0,32.0,43.0,29.0,30.0,34.0,31.0,39.0,39.0,37.0,39.0,27.0,37.0,42.0,44.0,37.0,35.0,36.0,33.0,36.0,30.0,28.0,29.0,23.0,26.0,30.0,32.0,37.0,27.0,42.0,33.0,26.0,37.0,21.0,31.0,30.0,30.0,38.0,29.0,32.0,25.0,27.0,27.0,36.0,31.0,38.0,31.0,26.0,41.0,25.0,32.0,30.0,34.0,28.0,18.0,29.0,25.0,27.0,22.0,28.0,13.0,26.0,22.0,11.0,19.0,21.0,14.0,13.0,25.0,20.0,21.0,11.0,17.0,14.0,14.0,17.0,18.0,19.0,6.0,9.0,5.0,4.0,8.0,5.0,2.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,450,1595,437,0,132,151,167,181,195,163,140,165,149,151,163,154,134,116,87,90,80,43,18,2,1,0,2467,12,1,2,0,2467,12,1,2,0,668,9,51,402,129,14,759,450,0,1552,925,5,0,2,12,4,0,0,0,0,0,0,26,2438,0,12,8,459,8,0,2,286,1707,0,409,718,139,4,2,1210,0,2.400570884871551,0.0,3.195973154362416,0.0,8.395648670427075,0,3,180,2,0,2,111,557,0,47,71,45,88,102,92,106,69,92,55,30,16,20,4,8,7,815,40,722,133,693,162,109,746,684,171,143,712,491,364,86,769,726,129,688,167,346,342,240,615,520,335,269,586,370,485,377,478,5,850,209,429,203,14,0,561,294,0,0,2,2,0,0,0,0,0,0,1,850,0,1.52046783625731,1.3824561403508773,1.0,1.022222222222222,1.022222222222222,56.28771929824561 +90702,Veraguas,Río de Jesús,Las Huacas,401,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,179,18,250,23,4,0,0,14,0,246,0,0,3,1,2,34,0,5,140,1,134,2,13,0,1,230,48,0,0,0,13,291,0,57,12,1,30,14,0,0,3,264,23,0,1,261,18,0,3,7,0,2,285,0,0,0,0,6,0,19,248,0,23,1,0,2,273,0,0,0,3,0,0,0,0,11,2,0,405,6.090909090909091,12.487272727272726,6.654545454545454,14.309090909090909,1.0034364261168385,3.209621993127148,1.9140893470790377,292,148,258,35,69,7,21,6,0,5,1,3,5,0,22,17,2,13,12,37,23,474,331,0,44,761,0,305,500,0,658,147,0,193,612,0,181,12,523,89,0,89,0,10,0,28,44,45,39,20,216,0,0,0,25,40,51,19,34,105,0,0,7,8,9,13,2,1,0,0,0,0,0,0,0,0,286,29,423,0,0,15,13,15,130,191,16,71,84,15,31,6,26,1,108,42,0,457,393,51,108,6,133,1,0,14,0,44,117,8,123,58,0,0,593,126,0,1,2,16,0,0,0,0,0,7,5,11,4,27,121,34,11,95,396,147,56,55,46,33,30,19,6,3,1,0,0,0,0,58,13.0,9.0,11.0,12.0,9.0,10.0,13.0,9.0,16.0,10.0,15.0,12.0,14.0,13.0,16.0,12.0,10.0,17.0,16.0,12.0,10.0,14.0,16.0,14.0,14.0,10.0,16.0,6.0,7.0,9.0,7.0,8.0,10.0,9.0,6.0,6.0,4.0,9.0,6.0,9.0,4.0,12.0,12.0,14.0,10.0,9.0,12.0,14.0,9.0,10.0,11.0,13.0,17.0,18.0,7.0,15.0,7.0,10.0,7.0,5.0,4.0,10.0,7.0,6.0,8.0,7.0,3.0,8.0,8.0,14.0,6.0,6.0,8.0,4.0,7.0,6.0,11.0,5.0,7.0,8.0,5.0,4.0,3.0,6.0,6.0,5.0,3.0,3.0,3.0,4.0,4.0,1.0,3.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,182,508,160,0,54,58,70,67,68,48,40,34,52,54,66,44,35,40,31,37,24,18,9,1,0,0,848,0,1,1,0,848,0,1,1,0,285,0,12,50,27,1,293,182,0,479,371,0,0,0,13,14,0,0,0,0,0,0,0,823,0,2,1,312,6,10,0,284,235,0,62,177,16,2,1,592,0,3.0479041916167664,0.0,3.954356846473029,0.0,6.092941176470588,1,1,107,4,3,0,99,77,0,27,31,29,61,38,38,21,17,11,6,4,2,3,0,0,4,262,30,202,90,200,92,14,278,200,92,10,282,168,124,0,292,186,106,180,112,80,100,13,279,87,205,32,260,173,119,192,100,3,289,93,128,66,5,0,215,77,0,0,1,2,0,0,0,0,0,0,0,289,0,1.5650684931506849,1.345890410958904,1.0,1.0384615384615383,1.0384615384615383,57.53767123287671 +90703,Veraguas,Río de Jesús,Los Castillos,313,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,26,8,189,2,0,0,0,8,0,196,0,0,0,0,0,3,0,0,180,0,17,1,1,0,0,186,2,0,0,0,11,199,0,94,12,0,9,0,0,0,3,191,5,0,0,199,0,0,0,0,0,0,197,2,0,0,0,0,0,78,121,0,0,0,0,0,192,5,0,0,0,0,0,0,1,1,0,0,314,6.964467005076142,23.522842639593907,6.964467005076142,23.639593908629443,1.0,3.884422110552764,2.7939698492462317,199,97,139,7,36,2,6,3,4,12,2,1,0,1,11,5,4,4,0,0,4,359,130,0,148,341,0,240,249,0,462,27,0,123,366,0,105,18,352,14,0,14,5,6,1,12,9,15,14,18,109,0,0,2,12,16,30,9,11,82,0,3,13,12,21,17,41,10,1,0,6,0,0,0,0,0,191,8,257,0,0,6,1,47,74,93,2,41,120,2,19,11,6,0,41,0,0,258,251,86,61,11,34,5,0,2,0,1,68,1,93,0,0,0,248,134,2,3,8,54,1,6,0,0,0,9,40,9,13,21,10,18,16,63,202,89,17,28,34,20,47,22,22,13,11,0,1,0,3,0,7.0,1.0,4.0,8.0,4.0,5.0,7.0,7.0,6.0,4.0,4.0,7.0,6.0,6.0,6.0,6.0,7.0,6.0,10.0,0.0,3.0,9.0,2.0,11.0,11.0,13.0,5.0,5.0,8.0,2.0,2.0,3.0,7.0,3.0,10.0,7.0,3.0,4.0,3.0,2.0,4.0,4.0,4.0,5.0,4.0,7.0,9.0,3.0,5.0,3.0,4.0,10.0,4.0,9.0,12.0,11.0,10.0,9.0,8.0,6.0,6.0,5.0,3.0,8.0,6.0,4.0,4.0,5.0,5.0,8.0,6.0,8.0,8.0,7.0,6.0,3.0,7.0,7.0,4.0,4.0,4.0,2.0,6.0,2.0,4.0,2.0,4.0,3.0,1.0,3.0,1.0,3.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,82,301,126,0,24,29,29,29,36,33,25,19,21,27,39,44,28,26,35,25,18,13,8,0,1,0,507,0,1,1,0,507,0,1,1,0,136,3,7,89,42,2,148,82,0,302,207,0,0,0,4,0,0,0,0,1,0,0,1,503,0,7,11,21,1,0,1,39,429,0,98,175,47,2,0,187,0,2.3891402714932126,0.0,3.10062893081761,0.0,8.943025540275048,0,4,9,0,0,0,20,166,0,12,27,11,23,16,13,19,16,26,10,11,1,9,2,3,0,191,8,184,15,173,26,19,180,171,28,34,165,110,89,42,157,146,53,178,21,95,83,53,146,55,144,76,123,40,159,113,86,0,199,65,89,44,1,0,127,72,0,0,2,0,0,0,0,0,0,0,0,197,0,1.2964824120603016,1.2613065326633166,0.0,1.0,1.0,61.14572864321608 +90704,Veraguas,Río de Jesús,Utirá,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,69,30,3,93,8,2,0,0,1,0,99,0,0,3,0,0,0,0,2,83,0,16,0,3,0,2,88,8,1,0,0,7,104,0,42,7,0,10,4,0,0,0,96,8,0,0,102,1,0,0,1,0,0,103,0,0,0,0,1,0,19,83,0,2,0,0,0,102,0,0,0,0,0,0,0,0,1,1,0,167,6.950980392156863,19.49019607843137,6.950980392156863,22.11764705882353,1.0,3.6538461538461537,2.6538461538461537,104,47,72,6,23,5,8,1,1,5,1,0,0,0,5,3,2,1,2,0,0,185,80,0,60,205,0,112,153,0,242,23,0,60,205,0,58,2,189,16,0,16,5,1,0,7,8,15,7,9,89,0,0,1,10,8,16,6,10,28,0,0,5,3,7,9,4,0,1,0,0,0,0,0,0,0,105,3,136,0,0,1,1,18,36,43,12,27,33,5,10,0,6,2,52,0,0,151,122,29,33,0,43,3,0,0,0,5,42,0,34,4,0,0,186,43,1,0,3,10,1,0,0,0,0,4,6,2,6,12,26,9,5,38,95,47,37,24,22,8,23,4,5,1,3,0,0,0,0,4,2.0,2.0,3.0,1.0,6.0,1.0,2.0,7.0,1.0,4.0,1.0,3.0,5.0,1.0,3.0,0.0,5.0,2.0,6.0,4.0,4.0,3.0,3.0,2.0,3.0,0.0,3.0,1.0,2.0,5.0,4.0,0.0,6.0,3.0,1.0,3.0,1.0,3.0,3.0,2.0,3.0,1.0,3.0,3.0,4.0,3.0,6.0,2.0,4.0,4.0,5.0,7.0,5.0,5.0,5.0,7.0,6.0,4.0,3.0,2.0,2.0,5.0,3.0,1.0,4.0,2.0,3.0,1.0,1.0,4.0,8.0,1.0,3.0,3.0,0.0,8.0,2.0,2.0,3.0,2.0,4.0,2.0,2.0,4.0,1.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,42,166,65,0,14,15,13,17,15,11,14,12,14,19,27,22,15,11,15,17,13,6,0,3,0,0,273,0,0,0,0,273,0,0,0,0,92,1,5,29,24,0,80,42,0,215,58,0,0,0,0,0,0,0,0,0,0,0,8,265,0,0,0,6,3,0,0,3,261,0,31,66,17,1,0,158,0,3.504854368932039,0.0,3.963855421686747,0.0,7.0,0,0,1,0,0,0,3,100,0,2,10,8,16,22,12,10,4,12,2,1,1,2,1,0,1,95,9,91,13,79,25,3,101,90,14,3,101,69,35,0,104,70,34,72,32,49,23,14,90,36,68,14,90,65,39,56,48,0,104,34,45,25,0,0,79,25,0,0,0,0,0,0,0,0,0,0,1,103,0,1.4519230769230769,1.1730769230769231,0.0,1.0,1.0,61.59615384615385 +90705,Veraguas,Río de Jesús,Catorce de Noviembre,363,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,135,15,242,6,4,0,0,11,0,198,0,1,17,0,0,45,0,2,121,1,122,11,8,0,0,199,54,0,0,0,10,263,0,60,15,0,18,12,0,0,0,249,13,1,0,226,20,0,9,5,3,0,261,1,1,0,0,0,0,36,200,0,24,3,0,0,234,11,0,0,6,0,0,0,1,11,0,0,368,5.889795918367347,16.057142857142857,5.979591836734694,18.83265306122449,1.0038022813688212,3.44106463878327,2.414448669201521,264,125,197,11,42,13,28,4,4,12,3,0,5,0,44,10,6,3,10,7,10,403,275,0,44,634,0,259,419,0,535,143,0,150,528,0,143,7,439,89,0,92,5,13,0,39,29,36,32,43,156,0,0,1,17,14,37,18,19,79,0,1,3,8,12,14,4,1,1,1,2,0,0,0,1,0,205,30,385,0,0,13,17,29,88,160,43,65,46,7,23,8,16,0,126,2,0,386,322,34,55,9,120,1,0,9,0,23,117,5,134,27,0,0,492,96,1,1,5,20,2,2,1,0,0,3,8,7,5,19,111,29,6,47,335,154,43,44,38,21,27,4,4,7,3,0,0,1,0,27,3.0,15.0,10.0,2.0,7.0,6.0,13.0,12.0,13.0,7.0,10.0,11.0,6.0,8.0,12.0,9.0,6.0,6.0,3.0,4.0,7.0,8.0,8.0,5.0,8.0,8.0,6.0,8.0,7.0,3.0,10.0,11.0,11.0,7.0,5.0,5.0,4.0,3.0,7.0,5.0,5.0,9.0,12.0,6.0,9.0,7.0,8.0,6.0,7.0,5.0,15.0,13.0,13.0,6.0,8.0,7.0,8.0,6.0,10.0,15.0,7.0,13.0,12.0,11.0,8.0,12.0,8.0,12.0,6.0,9.0,11.0,12.0,4.0,6.0,18.0,15.0,4.0,5.0,6.0,5.0,5.0,2.0,1.0,6.0,5.0,3.0,3.0,3.0,2.0,5.0,2.0,1.0,4.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,135,390,183,0,37,51,47,28,36,32,44,24,41,33,55,46,51,47,51,35,19,16,9,4,2,0,708,0,0,0,0,708,0,0,0,0,217,2,40,79,45,0,190,135,0,502,204,2,0,0,7,0,0,0,0,1,0,0,4,696,0,5,1,165,3,0,0,294,240,0,34,160,27,1,1,485,0,3.3191489361702127,0.0,4.061032863849765,0.0,5.860169491525424,2,0,69,1,0,0,102,90,0,28,48,23,43,40,26,24,11,8,2,3,5,1,1,0,1,226,38,173,91,169,95,17,247,162,102,15,249,147,117,0,264,164,100,165,99,28,137,18,246,47,217,32,232,179,85,184,80,1,263,90,113,56,5,0,189,75,0,0,1,0,0,0,0,0,0,0,1,262,0,1.4621212121212122,1.2196969696969695,0.0,1.0,1.0,60.246212121212125 +90801,Veraguas,San Francisco,San Francisco,1008,8,0,0,0,0,0,0,0,0,0,0,3,0,0,0,624,128,6,747,5,2,0,0,4,0,691,0,2,34,1,10,19,0,1,610,2,107,7,27,1,4,697,46,1,0,0,14,758,1,185,31,3,20,18,0,13,25,684,35,0,1,719,2,4,25,1,7,0,729,1,24,1,0,2,1,304,428,0,26,0,0,605,74,44,15,0,4,0,6,0,1,6,3,701,318,6.8478561549100965,21.244813278008294,6.911479944674966,22.525587828492394,1.0105540897097625,3.926121372031662,2.6728232189973613,769,409,873,33,275,17,49,30,13,53,10,9,26,1,46,18,5,15,10,4,10,2019,419,0,944,1494,0,1660,778,0,2258,180,0,710,1728,0,618,92,1613,115,0,124,20,36,4,55,68,79,72,77,293,0,1,9,72,107,124,49,105,595,0,3,17,37,78,56,52,236,18,2,45,0,0,0,4,0,924,66,1214,0,2,35,7,204,451,438,38,83,586,41,126,36,80,3,81,1,1,1291,1276,336,332,44,214,17,0,11,1,22,145,17,748,5,0,0,1051,699,9,5,52,325,15,44,4,0,1,51,173,65,60,153,45,116,54,272,1261,230,92,114,153,169,196,93,127,61,43,10,8,0,5,5,28.0,26.0,36.0,39.0,35.0,42.0,30.0,48.0,46.0,33.0,40.0,39.0,27.0,47.0,47.0,27.0,34.0,38.0,34.0,37.0,35.0,26.0,40.0,50.0,39.0,41.0,45.0,39.0,32.0,52.0,41.0,33.0,26.0,34.0,38.0,27.0,32.0,29.0,24.0,28.0,28.0,31.0,22.0,20.0,22.0,35.0,32.0,32.0,33.0,20.0,32.0,33.0,42.0,31.0,37.0,30.0,27.0,33.0,27.0,28.0,26.0,22.0,28.0,27.0,24.0,24.0,15.0,19.0,15.0,21.0,19.0,17.0,25.0,20.0,16.0,19.0,18.0,17.0,23.0,13.0,17.0,12.0,15.0,11.0,11.0,10.0,9.0,8.0,5.0,4.0,5.0,2.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,563,1603,401,0,164,199,200,170,190,209,172,140,123,152,175,145,127,94,97,90,66,36,13,3,2,0,2546,8,9,4,0,2546,8,9,4,0,611,18,79,426,99,8,763,563,0,1416,1140,11,0,0,32,34,0,0,0,0,0,0,26,2475,0,7,8,23,2,0,3,193,2331,0,518,655,205,16,2,1171,0,2.1989150090415914,0.0,3.1163101604278074,0.0,9.176470588235292,2,3,8,2,0,1,75,678,0,31,56,22,47,83,95,85,67,84,57,52,33,29,13,12,0,734,35,657,112,628,141,127,642,606,163,164,605,419,350,172,597,670,99,625,144,412,213,294,475,431,338,288,481,258,511,185,584,15,754,156,348,248,17,0,500,269,0,0,12,4,0,0,0,0,0,0,7,746,0,1.6788036410923275,1.659297789336801,1.1,1.0,1.0,56.50975292587776 +90802,Veraguas,San Francisco,Corral Falso,280,5,0,0,0,0,0,0,0,0,0,0,3,0,0,0,91,81,6,167,5,1,0,0,5,0,159,5,0,3,2,0,8,0,1,6,4,139,9,20,0,0,151,18,0,0,0,9,178,0,76,13,1,7,10,0,0,1,161,16,0,0,165,0,0,8,0,5,0,174,0,4,0,0,0,0,29,142,0,7,0,0,0,176,0,0,0,1,0,1,0,0,0,0,0,288,6.914772727272728,21.522727272727277,6.948863636363637,22.164772727272727,1.0280898876404494,3.679775280898877,2.2191011235955056,186,85,170,16,32,3,2,3,2,13,0,1,2,0,13,3,0,6,3,0,3,406,72,0,125,353,0,304,174,0,433,45,0,117,361,0,102,15,340,21,0,22,0,10,2,8,17,29,16,24,89,0,0,1,15,29,48,16,17,83,0,0,3,5,9,2,3,23,3,0,4,0,0,0,0,0,201,5,230,0,0,4,0,17,80,112,21,0,99,2,12,2,10,0,80,0,0,275,240,31,94,2,74,0,0,4,0,10,34,9,136,0,0,0,299,99,1,0,4,27,2,4,0,0,0,10,15,6,4,11,57,32,15,56,263,43,37,19,44,42,37,10,10,5,4,0,0,0,1,0,12.0,9.0,7.0,9.0,7.0,11.0,6.0,6.0,8.0,4.0,9.0,6.0,7.0,6.0,9.0,5.0,6.0,7.0,11.0,4.0,13.0,9.0,8.0,10.0,9.0,9.0,4.0,12.0,8.0,4.0,6.0,2.0,8.0,7.0,9.0,12.0,1.0,6.0,7.0,8.0,5.0,5.0,3.0,7.0,9.0,4.0,4.0,5.0,4.0,7.0,11.0,8.0,7.0,4.0,6.0,4.0,5.0,6.0,6.0,3.0,8.0,4.0,3.0,10.0,3.0,4.0,4.0,6.0,5.0,4.0,2.0,5.0,5.0,1.0,8.0,4.0,0.0,4.0,3.0,4.0,2.0,0.0,1.0,0.0,3.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,116,326,73,0,44,35,37,33,49,37,32,34,29,24,36,24,28,23,21,15,6,6,0,2,0,0,513,0,0,2,0,513,0,0,2,0,153,2,10,66,24,1,143,116,0,311,204,0,0,1,23,15,0,0,0,0,0,0,2,474,0,1,3,10,3,5,0,208,285,0,92,110,23,2,0,288,0,2.3054187192118225,0.0,3.198529411764706,0.0,7.467961165048544,0,1,5,2,2,0,71,105,0,17,12,18,11,27,24,27,12,12,9,10,3,0,0,1,0,172,14,146,40,144,42,33,153,141,45,17,169,91,95,3,183,159,27,140,46,46,94,34,152,111,75,55,131,120,66,117,69,2,184,65,84,35,2,0,121,65,0,1,8,1,0,0,0,0,0,0,2,174,0,1.478494623655914,1.2903225806451613,1.0,1.0,1.0,53.7258064516129 +90803,Veraguas,San Francisco,Los Hatillos,563,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,288,30,358,5,14,0,0,16,0,58,0,5,138,10,0,182,0,0,17,2,258,54,60,1,1,136,256,0,0,0,1,393,0,81,35,0,23,35,0,0,1,383,8,1,0,234,28,36,79,11,4,1,385,0,0,0,0,8,0,19,257,0,116,1,0,0,241,24,8,6,80,1,27,0,1,5,0,0,567,5.4,15.10943396226415,6.916981132075471,23.41509433962264,1.0,2.8193384223918576,1.7404580152671756,393,193,416,11,98,19,15,4,2,19,3,2,3,0,13,7,5,11,7,1,8,693,409,0,96,1006,0,349,753,0,924,178,0,246,856,0,225,21,740,116,0,117,4,8,4,44,62,68,59,57,274,0,0,0,25,29,68,35,37,145,1,2,9,8,15,19,4,6,1,0,1,0,0,0,0,0,593,14,409,0,0,13,0,13,146,187,33,30,79,4,17,16,7,0,479,0,0,681,497,42,62,16,337,1,0,143,1,63,127,13,329,11,0,0,801,181,0,2,5,25,1,1,0,0,1,4,13,8,7,25,461,16,3,69,681,187,67,75,63,25,34,10,15,6,1,2,0,0,1,11,23.0,24.0,15.0,14.0,12.0,15.0,11.0,18.0,15.0,15.0,13.0,15.0,14.0,15.0,14.0,17.0,27.0,23.0,24.0,30.0,21.0,18.0,24.0,8.0,13.0,11.0,11.0,11.0,10.0,14.0,12.0,13.0,10.0,7.0,10.0,10.0,15.0,21.0,15.0,13.0,14.0,15.0,15.0,11.0,21.0,20.0,17.0,14.0,16.0,14.0,9.0,16.0,16.0,12.0,16.0,12.0,9.0,18.0,14.0,17.0,16.0,12.0,15.0,4.0,8.0,9.0,12.0,15.0,10.0,9.0,11.0,15.0,12.0,8.0,12.0,11.0,6.0,9.0,8.0,7.0,9.0,6.0,5.0,6.0,6.0,6.0,0.0,3.0,2.0,1.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,233,739,206,0,88,74,71,121,84,57,52,74,76,81,69,70,55,55,58,41,32,12,7,1,0,0,1171,0,1,6,0,1171,0,1,6,0,316,3,55,150,64,1,356,233,0,884,293,1,0,1,1,0,0,0,0,1,0,0,3,1172,0,3,3,71,0,0,0,71,1030,0,69,154,11,5,0,939,0,3.0,0.0,3.989864864864865,0.0,5.999151103565365,1,1,19,0,0,0,26,346,0,54,46,38,68,73,37,26,14,17,8,3,4,3,0,1,1,292,101,60,333,71,322,39,354,60,333,4,389,255,138,3,390,239,154,112,281,70,42,27,366,98,295,29,364,366,27,184,209,1,392,123,175,92,3,0,325,68,0,1,0,0,0,0,0,0,0,0,1,391,0,1.732824427480916,1.2646310432569974,1.0,1.0,1.0,57.56234096692112 +90804,Veraguas,San Francisco,Remance,543,30,0,0,0,0,0,0,0,0,1,0,1,0,0,0,87,307,28,380,14,8,0,0,20,0,131,0,0,120,3,3,163,0,2,0,1,332,53,35,0,1,98,316,0,0,0,8,422,0,111,18,0,13,9,0,0,0,403,19,0,0,264,2,64,74,18,0,0,418,1,2,0,1,0,0,11,287,3,121,0,0,0,253,53,2,14,67,0,23,0,0,9,1,0,575,6.26797385620915,18.366013071895424,6.898692810457517,22.062091503267972,1.0,2.9526066350710902,1.853080568720379,423,253,552,11,65,20,43,6,3,19,3,3,51,0,22,18,4,11,13,0,15,756,615,0,62,1309,0,306,1065,0,1097,274,0,294,1077,0,288,6,899,178,0,178,4,21,5,45,79,98,83,100,396,0,0,1,37,43,94,35,32,95,0,0,2,7,2,4,3,7,0,0,0,0,0,0,0,0,578,11,656,0,4,3,2,25,193,311,39,88,217,0,15,10,5,0,340,0,0,897,555,30,264,11,201,2,0,79,0,58,143,12,373,0,0,0,1124,111,1,0,0,9,0,0,0,0,0,6,4,4,2,35,260,9,7,262,944,148,58,53,120,72,32,14,8,1,1,0,0,0,1,0,17.0,17.0,17.0,30.0,23.0,21.0,22.0,19.0,14.0,27.0,29.0,27.0,30.0,25.0,16.0,21.0,19.0,22.0,26.0,15.0,21.0,15.0,17.0,20.0,16.0,21.0,19.0,13.0,11.0,18.0,16.0,18.0,20.0,8.0,15.0,14.0,13.0,12.0,18.0,13.0,16.0,16.0,18.0,20.0,16.0,25.0,25.0,15.0,27.0,17.0,21.0,20.0,9.0,21.0,19.0,15.0,19.0,14.0,21.0,16.0,20.0,17.0,23.0,14.0,14.0,18.0,18.0,14.0,16.0,6.0,12.0,10.0,15.0,12.0,6.0,10.0,10.0,12.0,7.0,10.0,5.0,7.0,8.0,5.0,5.0,8.0,1.0,7.0,4.0,3.0,2.0,1.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,334,879,239,0,104,103,127,103,89,82,77,70,86,109,90,85,88,72,55,49,30,23,8,2,0,0,1450,0,0,2,0,1450,0,0,2,0,374,5,55,209,48,7,420,334,0,1060,392,0,0,2,13,2,0,3,0,0,0,0,8,1424,0,2,8,15,4,0,0,30,1393,0,183,239,27,7,0,996,0,3.882608695652174,0.0,4.833333333333333,0.0,5.096418732782369,0,1,2,2,0,0,9,409,0,63,26,39,57,64,72,37,28,28,4,3,1,0,0,0,0,296,127,113,310,114,309,26,397,111,312,2,421,244,179,3,420,274,149,155,268,12,143,13,410,58,365,13,410,359,64,298,125,4,419,93,229,98,3,1,380,43,0,1,2,0,0,0,0,0,0,0,0,420,0,2.115566037735849,1.3089622641509433,0.0,1.0454545454545454,1.0454545454545454,57.43735224586288 +90805,Veraguas,San Francisco,San Juan,701,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,173,286,45,432,28,1,0,0,43,1,301,0,1,79,2,2,118,0,2,125,1,300,27,48,0,4,296,166,0,0,0,43,505,0,127,30,3,27,9,0,1,4,475,25,0,0,391,11,22,78,3,0,0,502,0,1,0,0,2,0,35,393,0,75,2,0,0,471,7,0,3,9,0,4,0,3,7,1,0,704,6.2845188284518825,20.90376569037657,6.939330543933054,23.661087866108787,1.0,2.9623762376237623,1.8633663366336637,508,278,614,31,141,12,20,7,2,29,2,6,11,0,43,40,12,11,10,5,19,1234,334,0,231,1337,0,826,742,0,1314,254,0,400,1168,0,377,23,979,189,0,189,10,21,1,45,75,74,77,77,327,0,1,0,50,54,92,41,69,228,7,8,10,9,19,22,9,48,1,0,4,0,0,0,0,0,778,17,616,0,4,7,6,27,249,238,20,82,249,24,68,25,27,0,399,0,0,910,751,107,272,25,280,3,0,105,0,40,136,16,327,0,0,0,1046,292,0,5,16,47,1,4,0,0,0,11,24,22,16,90,323,59,20,230,927,162,94,81,117,100,90,41,27,14,5,1,1,1,0,0,21.0,23.0,20.0,29.0,27.0,23.0,25.0,29.0,29.0,24.0,26.0,24.0,22.0,33.0,22.0,32.0,20.0,30.0,26.0,27.0,25.0,21.0,24.0,22.0,19.0,23.0,30.0,25.0,32.0,25.0,28.0,27.0,19.0,22.0,19.0,18.0,29.0,16.0,23.0,8.0,18.0,12.0,27.0,12.0,13.0,14.0,20.0,16.0,14.0,20.0,24.0,12.0,20.0,21.0,20.0,18.0,18.0,17.0,22.0,24.0,11.0,21.0,20.0,19.0,20.0,7.0,15.0,13.0,18.0,8.0,13.0,16.0,9.0,11.0,14.0,7.0,11.0,7.0,13.0,7.0,4.0,9.0,8.0,6.0,5.0,2.0,8.0,2.0,7.0,5.0,4.0,5.0,2.0,0.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,377,1043,241,0,120,130,127,135,111,135,115,94,82,84,97,99,91,61,63,45,32,24,14,2,0,0,1651,3,1,6,0,1652,3,0,6,0,442,2,51,227,79,0,483,377,0,1049,610,2,0,0,7,12,0,0,0,5,0,0,6,1631,0,1,2,19,0,0,0,59,1580,0,226,329,39,6,2,1059,0,2.990610328638497,0.0,3.8533333333333335,0.0,6.50632149307646,0,1,9,0,0,0,17,481,0,63,28,40,47,69,66,55,41,37,29,11,8,8,2,1,0,421,87,238,270,243,265,41,467,218,290,7,501,208,300,3,505,394,114,273,235,31,242,66,442,254,254,64,444,370,138,255,253,10,498,130,243,127,8,0,396,112,0,0,2,1,0,0,0,0,0,0,2,503,0,1.7913385826771653,1.4783464566929134,0.0,1.08,1.08,56.43307086614173 +90806,Veraguas,San Francisco,San José,953,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,528,39,691,32,7,1,0,24,7,346,0,0,128,2,3,278,0,5,35,4,606,43,69,3,2,369,382,3,0,0,8,762,1,166,58,0,23,14,0,0,3,742,17,0,0,522,34,38,163,2,3,0,753,1,4,0,0,4,0,51,522,0,185,4,0,1,573,37,13,7,97,0,21,0,1,11,1,0,1024,4.4779050736497545,8.376432078559738,6.903436988543372,23.30441898527005,1.0026246719160106,2.8188976377952755,1.7506561679790027,764,465,1074,65,225,25,27,15,6,41,11,9,7,0,26,24,14,23,19,0,16,1636,919,0,195,2360,0,758,1797,0,2062,493,0,665,1890,0,652,13,1543,347,0,351,33,42,9,70,104,111,111,114,528,0,1,0,81,105,213,73,110,380,2,1,12,20,24,19,25,12,1,1,2,0,0,0,0,0,1076,32,1173,0,0,26,3,45,423,491,63,151,310,12,55,39,30,0,639,0,0,1478,1256,67,280,42,493,2,4,197,0,78,213,29,811,2,0,0,1782,439,0,2,13,42,1,2,0,0,0,8,12,12,16,88,610,68,35,259,1817,295,105,96,137,148,80,24,19,11,0,0,0,0,0,2,37.0,52.0,42.0,48.0,51.0,47.0,40.0,48.0,42.0,46.0,45.0,47.0,55.0,59.0,50.0,52.0,47.0,51.0,39.0,50.0,44.0,48.0,46.0,42.0,42.0,37.0,41.0,51.0,36.0,35.0,42.0,36.0,37.0,33.0,28.0,27.0,22.0,22.0,37.0,23.0,27.0,28.0,32.0,40.0,30.0,29.0,35.0,36.0,27.0,39.0,33.0,25.0,30.0,28.0,28.0,21.0,28.0,27.0,14.0,27.0,27.0,25.0,26.0,19.0,21.0,19.0,21.0,20.0,17.0,17.0,20.0,18.0,19.0,12.0,21.0,20.0,12.0,19.0,17.0,9.0,8.0,18.0,11.0,8.0,9.0,9.0,9.0,5.0,3.0,3.0,2.0,1.0,3.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,709,1670,355,0,230,223,256,239,222,200,176,131,157,166,144,117,118,94,90,77,54,29,8,1,2,0,2722,0,3,9,0,2722,0,3,9,0,720,14,79,373,86,4,749,709,0,2017,715,2,0,2,12,1,0,0,0,4,0,0,8,2707,0,1,4,178,3,0,0,159,2389,0,223,430,40,10,1,2030,0,3.0224171539961016,0.0,4.152974504249292,0.0,6.029261155815655,1,1,52,1,0,0,35,674,0,102,71,58,97,113,126,77,42,46,20,10,1,1,0,0,0,616,148,271,493,270,494,39,725,126,638,8,756,376,388,13,751,542,222,312,452,132,180,41,723,163,601,55,709,549,215,259,505,4,760,159,406,194,5,0,618,146,0,0,5,0,0,0,0,0,0,0,4,755,0,1.9345549738219896,1.643979057591623,1.0,1.0344827586206895,1.0344827586206895,54.22120418848168 +90901,Veraguas,Santa Fe,Santa Fe,1370,9,43,0,0,0,0,0,0,0,0,0,3,0,0,0,686,230,9,903,13,5,1,0,3,0,658,0,6,127,3,13,118,0,0,403,33,390,21,72,0,6,753,164,1,0,0,7,925,0,353,35,21,51,37,0,2,60,812,50,1,0,798,55,2,40,18,12,0,863,20,33,2,0,7,0,294,551,0,73,7,0,318,400,164,4,0,25,1,8,0,1,4,0,0,1425,6.73015873015873,23.124716553287985,6.926303854875283,23.75170068027211,1.0032432432432432,3.5394594594594597,2.3124324324324323,931,471,954,75,257,26,32,24,14,53,9,6,11,3,33,15,9,15,12,3,8,1854,837,0,512,2179,0,944,1747,0,2339,352,0,753,1938,0,707,46,1668,270,0,271,23,49,2,78,76,104,84,81,547,0,0,0,62,89,183,74,113,459,0,7,38,47,56,121,59,28,13,3,19,0,0,1,4,0,871,30,1529,0,2,14,8,191,478,757,75,28,399,92,98,22,74,6,194,1,1,1449,1417,191,250,27,336,5,0,77,1,26,237,14,709,1,0,0,1574,579,1,11,35,197,10,19,4,0,0,38,82,47,46,131,225,93,61,178,1674,327,64,124,157,158,139,61,86,41,21,6,5,0,2,1,44.0,37.0,49.0,45.0,28.0,40.0,48.0,65.0,36.0,44.0,43.0,44.0,43.0,48.0,43.0,46.0,49.0,49.0,43.0,34.0,35.0,31.0,38.0,44.0,44.0,35.0,35.0,29.0,46.0,31.0,29.0,30.0,32.0,40.0,43.0,29.0,29.0,35.0,29.0,43.0,29.0,39.0,30.0,27.0,23.0,39.0,32.0,31.0,26.0,41.0,35.0,31.0,24.0,31.0,25.0,24.0,21.0,32.0,25.0,35.0,28.0,33.0,32.0,35.0,20.0,25.0,36.0,24.0,28.0,27.0,23.0,27.0,25.0,24.0,24.0,24.0,25.0,18.0,23.0,15.0,17.0,16.0,16.0,18.0,18.0,21.0,9.0,8.0,6.0,9.0,6.0,5.0,3.0,4.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,657,1676,533,0,203,233,221,221,192,176,174,165,148,169,146,137,148,140,123,105,85,53,20,5,2,0,2760,39,61,6,0,2760,41,59,6,0,745,10,14,387,95,12,946,657,0,1920,857,89,0,2,70,120,0,0,0,0,0,1,30,2643,0,7,1,152,2,0,3,102,2599,0,309,618,162,10,28,1739,0,2.553962900505902,0.0,3.4313022700119475,0.0,7.38834612700628,1,1,46,1,0,0,37,845,0,109,107,58,92,114,112,75,53,90,47,32,17,10,7,5,0,867,64,589,342,592,339,127,804,377,554,49,882,496,435,78,853,708,223,500,431,400,100,213,718,412,519,235,696,498,433,437,494,36,895,255,433,233,10,0,648,283,0,0,16,34,0,0,0,0,0,0,4,877,0,1.556390977443609,1.5220193340494093,1.0,1.0,1.0,57.93555316863588 +90902,Veraguas,Santa Fe,Calovébora,1397,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,581,362,577,83,63,266,1,28,4,0,0,81,205,55,17,663,1,0,12,0,721,192,80,17,0,231,787,0,1,0,3,1022,23,326,22,5,38,12,0,0,1,988,32,1,0,25,839,9,4,80,13,52,323,2,98,0,1,597,1,13,86,0,57,779,87,0,345,29,0,28,215,9,375,0,0,21,0,0,1448,6.197860962566845,21.78342245989305,6.783422459893048,23.43582887700535,1.012720156555773,2.723091976516634,1.5303326810176126,1035,770,3337,131,554,31,95,134,22,142,49,25,48,0,19,16,1,9,9,2,20,1197,4286,0,64,5419,0,696,4787,0,3456,2027,0,1788,3695,0,1784,4,2058,1637,0,1653,76,106,5,222,258,317,285,290,773,0,1,3,204,265,468,100,145,222,0,2,23,16,13,16,5,12,2,0,1,0,0,0,0,0,1904,26,2289,0,9,4,10,9,963,1196,51,70,99,115,46,24,17,3,1264,353,0,3226,3147,49,145,26,1207,7,0,486,1,243,79,14,2694,3,0,0,3904,274,3,1,2,32,2,1,0,0,1,5,21,7,16,65,1220,107,23,465,5706,273,102,82,107,44,19,17,9,6,5,0,0,0,0,3,216.0,228.0,211.0,235.0,222.0,200.0,208.0,232.0,224.0,178.0,185.0,209.0,173.0,167.0,174.0,165.0,156.0,151.0,148.0,125.0,125.0,108.0,111.0,97.0,94.0,86.0,84.0,83.0,86.0,82.0,71.0,61.0,71.0,68.0,69.0,61.0,52.0,58.0,52.0,65.0,49.0,48.0,58.0,45.0,39.0,39.0,42.0,38.0,55.0,39.0,50.0,32.0,25.0,37.0,26.0,22.0,20.0,19.0,18.0,14.0,22.0,14.0,18.0,21.0,21.0,14.0,15.0,19.0,12.0,14.0,10.0,6.0,9.0,8.0,11.0,8.0,8.0,3.0,3.0,3.0,5.0,5.0,2.0,4.0,2.0,0.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3062,3140,171,0,1112,1042,908,745,535,421,340,288,239,213,170,93,96,74,44,25,18,7,2,1,0,0,5837,3,0,533,0,5837,3,0,533,0,1929,2,103,150,72,5,1056,3056,0,4855,1515,3,0,1,4050,987,0,0,1,0,0,0,4,1330,0,1,10,24,7,0,0,1184,5147,0,45,59,9,1,0,6259,0,3.058767319636885,0.0,4.835370823145884,0.0,3.661070139651656,1,6,8,2,0,0,282,736,0,295,115,140,149,154,87,29,24,20,13,3,2,1,1,1,1,389,646,87,948,118,917,198,837,18,1017,2,1033,320,715,8,1027,217,818,117,918,55,62,13,1022,76,959,5,1030,847,188,602,433,11,1024,76,592,323,44,0,863,172,0,0,532,171,0,0,0,0,0,0,2,330,0,3.116908212560386,3.0405797101449274,1.0,1.1666666666666667,1.1666666666666667,44.21062801932367 +90903,Veraguas,Santa Fe,El Alto,652,9,0,0,0,0,0,0,0,0,0,0,3,0,0,0,246,181,19,422,5,2,0,0,16,1,299,0,6,65,8,3,65,0,0,41,0,284,81,32,0,8,309,126,0,0,0,11,446,0,147,37,2,16,13,0,0,4,430,12,0,0,369,47,0,8,20,1,1,438,0,0,0,0,8,0,72,313,0,60,1,0,0,341,94,0,0,7,1,0,0,0,3,0,0,664,6.866666666666666,23.620689655172413,6.91264367816092,23.91264367816092,1.0,3.405829596412556,2.345291479820628,449,239,497,24,93,8,13,4,3,18,1,4,8,1,27,15,5,1,15,8,15,951,335,0,96,1190,0,385,901,0,1118,168,0,352,934,0,336,16,815,119,0,120,8,11,2,44,69,84,68,64,307,0,0,0,36,52,94,47,35,187,0,3,3,4,7,8,3,19,7,1,3,0,0,0,0,0,469,19,659,0,2,11,2,45,232,299,47,36,93,5,51,13,10,0,309,0,3,740,622,64,169,13,211,0,0,24,3,18,151,9,326,4,0,0,902,200,0,3,5,27,8,2,0,0,3,11,14,6,13,29,190,52,10,160,747,193,78,76,106,62,50,18,10,9,6,0,3,0,0,4,21.0,15.0,22.0,18.0,21.0,26.0,22.0,26.0,28.0,16.0,25.0,24.0,24.0,16.0,32.0,23.0,23.0,22.0,18.0,15.0,17.0,19.0,23.0,18.0,22.0,17.0,22.0,15.0,14.0,13.0,16.0,8.0,17.0,14.0,14.0,10.0,21.0,18.0,17.0,17.0,11.0,13.0,12.0,13.0,10.0,9.0,13.0,17.0,12.0,16.0,18.0,16.0,13.0,16.0,8.0,12.0,15.0,16.0,19.0,17.0,20.0,13.0,17.0,14.0,15.0,18.0,9.0,9.0,19.0,9.0,18.0,11.0,11.0,16.0,5.0,16.0,9.0,11.0,11.0,6.0,3.0,2.0,7.0,6.0,4.0,7.0,5.0,3.0,4.0,3.0,2.0,2.0,3.0,1.0,1.0,3.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,336,788,238,0,97,118,121,101,99,81,69,83,59,67,71,79,79,64,61,53,22,22,9,7,0,0,1356,1,4,1,0,1356,4,1,1,0,430,0,46,128,42,2,378,336,0,897,465,0,0,0,20,26,0,0,0,2,0,1,48,1265,0,1,8,26,0,0,1,141,1185,0,77,233,42,5,1,1004,0,3.001926782273603,0.0,3.768041237113402,0.0,6.208516886930984,1,4,13,0,0,0,55,376,0,31,57,33,53,98,53,38,32,23,7,14,2,3,0,2,0,401,48,251,198,255,194,71,378,117,332,2,447,163,286,4,445,356,93,215,234,183,32,47,402,169,280,41,408,353,96,299,150,23,426,113,235,95,6,0,324,125,0,0,8,9,0,0,0,0,0,1,11,420,0,1.648106904231626,1.3853006681514477,0.0,1.0,1.0,56.83518930957684 +90904,Veraguas,Santa Fe,El Cuay,597,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,313,6,404,5,4,0,0,2,0,48,0,7,149,2,12,197,0,0,0,5,330,27,53,0,0,194,218,0,0,0,3,415,1,109,9,0,70,24,0,0,0,408,7,0,0,270,20,81,44,0,0,0,413,0,0,2,0,0,0,44,225,0,145,1,0,0,361,34,8,0,4,0,8,0,0,0,0,0,628,6.622784810126582,20.167088607594938,6.911392405063292,23.696202531645568,1.002409638554217,2.633734939759036,1.3879518072289156,416,243,455,32,88,19,14,0,0,15,1,1,3,0,7,9,6,4,1,2,6,716,486,0,81,1121,0,249,953,0,925,277,0,326,876,0,305,21,666,210,0,215,6,13,1,46,60,78,44,47,266,0,0,0,28,38,86,25,36,142,0,4,11,17,12,16,4,2,3,0,1,0,1,0,0,0,429,15,627,0,0,4,9,17,217,351,23,19,111,7,16,20,9,1,273,0,2,686,601,37,135,20,225,2,1,17,2,30,159,1,118,0,0,0,858,179,0,4,4,22,2,2,0,0,2,4,8,2,8,33,236,21,19,111,878,168,65,35,49,29,31,14,11,2,4,0,0,0,1,0,19.0,24.0,22.0,20.0,24.0,15.0,20.0,25.0,22.0,25.0,21.0,20.0,28.0,15.0,20.0,30.0,26.0,22.0,21.0,20.0,16.0,14.0,19.0,13.0,18.0,17.0,18.0,9.0,13.0,15.0,15.0,13.0,15.0,8.0,14.0,13.0,8.0,15.0,12.0,20.0,17.0,9.0,21.0,11.0,20.0,8.0,7.0,20.0,9.0,13.0,21.0,13.0,14.0,8.0,12.0,12.0,12.0,17.0,15.0,14.0,10.0,17.0,13.0,6.0,11.0,9.0,11.0,8.0,19.0,9.0,10.0,6.0,13.0,12.0,14.0,11.0,9.0,5.0,4.0,11.0,6.0,10.0,15.0,6.0,10.0,7.0,8.0,2.0,3.0,4.0,3.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,320,734,233,0,109,107,104,119,80,72,65,68,78,57,68,70,57,56,55,40,47,24,6,3,2,0,1286,0,0,1,0,1286,0,0,1,0,367,4,27,190,41,4,334,320,0,904,383,0,0,1,18,5,0,0,0,0,0,0,1,1262,0,0,2,179,6,1,0,59,1040,0,99,248,16,1,1,922,0,3.357873210633947,0.0,4.446064139941691,0.0,5.52059052059052,0,1,64,2,0,0,16,333,0,98,46,59,57,52,32,24,17,14,6,5,3,2,0,1,0,328,88,65,351,89,327,48,368,33,383,3,413,238,178,4,412,245,171,92,324,34,58,15,401,24,392,22,394,355,61,280,136,6,410,117,211,85,3,0,350,66,0,0,2,2,0,0,0,0,0,0,0,412,0,1.6490384615384617,1.4447115384615383,1.0,1.0,1.0,56.80769230769231 +90905,Veraguas,Santa Fe,El Pantano,412,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,58,0,247,4,0,0,0,0,0,227,0,0,12,1,3,8,0,0,4,8,207,2,26,0,4,217,32,0,0,0,2,251,0,77,13,2,67,5,0,0,3,244,4,0,0,229,11,0,2,9,0,0,247,1,0,0,0,3,0,46,195,0,9,1,0,0,231,19,0,0,0,0,0,0,0,1,0,0,415,6.928,23.496,6.972,23.784,1.00398406374502,3.3266932270916336,2.1553784860557768,252,115,192,16,42,8,10,3,2,6,0,3,9,0,10,6,3,9,7,0,1,519,117,0,61,575,0,283,353,0,559,77,0,144,492,0,133,11,435,57,0,57,8,6,3,14,22,28,37,28,172,0,0,2,10,25,44,20,24,96,0,5,1,8,4,11,5,2,1,0,3,0,0,0,0,0,198,7,387,0,2,1,1,45,94,215,7,26,58,6,20,3,15,2,98,1,0,369,289,32,33,3,63,3,0,69,0,24,105,6,60,3,0,0,454,111,2,5,0,16,1,3,0,0,0,4,11,6,7,23,92,13,12,37,342,124,29,38,43,34,26,8,4,2,3,0,2,0,0,3,5.0,4.0,8.0,5.0,10.0,6.0,6.0,9.0,7.0,6.0,12.0,13.0,11.0,7.0,16.0,10.0,7.0,9.0,6.0,8.0,7.0,8.0,13.0,7.0,6.0,3.0,7.0,3.0,4.0,5.0,7.0,6.0,12.0,4.0,7.0,7.0,4.0,2.0,7.0,6.0,8.0,4.0,10.0,7.0,6.0,8.0,3.0,5.0,10.0,10.0,11.0,7.0,8.0,11.0,6.0,5.0,8.0,9.0,5.0,9.0,8.0,7.0,12.0,7.0,10.0,8.0,4.0,13.0,8.0,6.0,4.0,6.0,8.0,8.0,9.0,8.0,12.0,2.0,7.0,9.0,10.0,10.0,9.0,5.0,9.0,6.0,2.0,1.0,0.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,125,359,174,0,32,34,59,40,41,22,36,26,35,36,43,36,44,39,35,38,43,11,6,1,1,0,646,11,1,0,0,646,11,1,0,0,190,1,2,83,31,3,223,125,0,411,236,11,0,0,42,28,0,0,0,0,0,0,3,585,0,0,10,4,0,0,0,0,644,0,54,157,43,6,1,397,0,2.738636363636364,0.0,3.6256410256410256,0.0,6.67629179331307,0,1,0,0,0,0,0,251,0,28,33,24,39,34,43,19,8,15,3,1,1,3,0,1,0,240,12,204,48,177,75,28,224,128,124,1,251,154,98,1,251,216,36,164,88,86,78,17,235,94,158,39,213,186,66,183,69,2,250,88,109,47,8,0,196,56,0,0,7,8,0,0,0,0,0,0,0,237,0,1.4642857142857142,1.1468253968253967,1.5,1.0,1.0,62.44444444444444 +90906,Veraguas,Santa Fe,Gatú o Gatucito,473,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,262,12,335,4,1,2,0,9,0,0,0,1,186,6,0,158,0,0,0,2,308,22,18,1,0,97,253,0,0,0,1,351,0,44,35,3,33,11,0,0,0,348,3,0,0,249,41,28,25,7,1,0,347,0,0,0,0,4,0,16,219,0,112,4,0,0,293,52,0,0,2,0,3,0,0,1,0,0,477,6.840579710144928,23.020289855072463,6.947826086956522,23.57971014492753,1.0,2.871794871794872,1.603988603988604,351,235,710,15,99,6,7,9,2,15,0,1,1,0,20,15,2,7,4,0,8,380,923,0,8,1295,0,217,1086,0,987,316,0,415,888,0,412,3,756,132,0,132,19,33,5,62,121,127,104,109,293,1,0,0,46,63,126,15,19,22,0,0,2,1,0,1,0,2,0,0,0,0,0,0,0,0,494,4,601,0,0,3,0,2,236,305,20,38,20,2,4,1,5,0,463,0,0,815,636,12,17,1,356,0,0,109,0,7,114,11,445,1,0,0,1071,26,0,0,0,2,0,0,0,0,0,3,2,0,4,9,449,4,6,21,1252,108,34,18,20,4,8,3,3,0,0,0,0,0,0,1,22.0,42.0,45.0,39.0,34.0,34.0,32.0,25.0,43.0,36.0,41.0,44.0,35.0,26.0,25.0,45.0,25.0,31.0,27.0,19.0,20.0,23.0,16.0,22.0,22.0,15.0,16.0,16.0,18.0,16.0,14.0,14.0,16.0,15.0,18.0,9.0,15.0,16.0,15.0,19.0,13.0,17.0,13.0,9.0,15.0,16.0,12.0,13.0,13.0,11.0,13.0,9.0,14.0,14.0,11.0,8.0,6.0,14.0,8.0,8.0,14.0,11.0,11.0,7.0,12.0,11.0,8.0,8.0,6.0,9.0,4.0,7.0,12.0,6.0,8.0,11.0,4.0,7.0,3.0,10.0,4.0,4.0,6.0,3.0,3.0,7.0,1.0,1.0,3.0,0.0,2.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,523,774,154,0,182,170,171,147,103,81,77,74,67,65,61,44,55,42,37,35,20,12,7,1,0,0,1443,0,0,8,0,1443,0,0,8,0,431,2,58,87,35,0,315,523,0,1208,243,0,0,1,0,0,0,0,0,0,0,0,8,1442,0,2,0,264,3,0,0,376,806,0,11,45,0,2,0,1393,0,3.6666666666666665,0.0,5.117460317460317,0.0,4.194348725017229,1,0,67,0,0,0,69,214,0,87,35,53,83,62,15,6,5,4,1,0,0,0,0,0,0,238,113,17,334,74,277,10,341,3,348,2,349,115,236,4,347,100,251,31,320,6,25,1,350,32,319,11,340,326,25,280,71,8,343,59,211,80,1,0,296,55,0,0,0,0,0,0,0,0,0,0,1,350,0,2.321937321937322,1.811965811965812,0.0,1.0769230769230769,1.0769230769230769,54.47293447293448 +90907,Veraguas,Santa Fe,Río Luis,894,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,543,35,549,40,3,19,0,10,3,0,0,10,280,29,15,289,1,0,12,3,441,76,82,3,7,114,507,0,0,0,3,624,4,266,27,1,7,14,0,0,0,616,8,0,0,74,450,1,3,48,26,22,439,3,4,0,1,176,1,11,125,0,28,382,78,0,315,79,0,0,95,6,121,0,1,7,0,0,943,6.106598984771574,22.195431472081214,6.931472081218274,23.918781725888326,1.0064102564102564,2.8365384615384617,1.6057692307692308,628,427,1440,93,228,17,25,39,7,37,11,11,38,0,24,14,3,9,7,3,18,661,2003,0,89,2575,0,259,2405,0,2084,580,0,1015,1649,0,1009,6,1206,443,0,445,32,61,2,89,114,114,111,128,401,0,0,0,102,141,249,70,101,313,0,2,13,19,19,69,16,38,11,0,4,0,0,0,0,0,962,37,1161,0,4,8,25,8,589,476,34,54,134,12,22,14,7,0,808,1,0,1483,1518,106,61,15,482,1,0,333,0,17,92,3,758,0,0,0,1656,375,0,3,5,113,5,3,0,0,0,10,55,13,9,35,795,17,7,58,2608,126,63,45,34,23,30,19,19,19,10,2,2,1,0,0,73.0,96.0,77.0,91.0,99.0,91.0,70.0,81.0,86.0,77.0,76.0,100.0,66.0,74.0,78.0,71.0,71.0,66.0,67.0,44.0,50.0,39.0,48.0,43.0,36.0,47.0,47.0,32.0,51.0,36.0,34.0,31.0,34.0,25.0,30.0,44.0,34.0,33.0,34.0,35.0,28.0,28.0,28.0,26.0,22.0,23.0,19.0,22.0,21.0,15.0,33.0,17.0,19.0,26.0,19.0,14.0,14.0,17.0,22.0,20.0,16.0,20.0,17.0,11.0,15.0,17.0,14.0,8.0,15.0,8.0,10.0,4.0,11.0,9.0,9.0,14.0,5.0,7.0,2.0,6.0,6.0,3.0,7.0,2.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,4.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1235,1594,172,0,436,405,394,319,216,213,154,180,132,100,114,87,79,62,43,34,19,4,9,1,0,0,2936,1,1,63,0,2936,1,1,63,0,866,3,77,144,53,1,622,1235,0,2361,638,2,0,0,159,1653,0,0,0,0,0,0,241,948,0,0,2,7,0,0,0,842,2150,0,99,164,9,1,0,2728,0,2.716404077849861,0.0,4.243491577335376,0.0,5.630123292235921,0,1,2,0,0,0,201,424,0,136,56,99,102,95,35,31,13,25,11,12,3,6,2,2,0,224,404,28,600,40,588,73,555,4,624,1,627,108,520,4,624,140,488,49,579,35,14,24,604,17,611,20,608,495,133,363,265,15,613,76,357,166,29,0,502,126,0,0,30,339,0,0,0,0,0,0,56,203,0,2.361464968152866,2.417197452229299,0.0,1.0454545454545454,1.0454545454545454,47.93630573248408 +90908,Veraguas,Santa Fe,Rubén Cantú,453,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,234,21,315,4,16,0,0,4,1,0,0,4,173,3,3,157,0,0,0,0,266,43,30,1,0,115,221,1,0,0,3,340,0,64,17,1,23,16,0,0,0,333,7,0,0,203,61,46,14,16,0,0,333,1,0,0,0,6,0,19,209,0,105,7,0,0,246,60,0,0,21,0,13,0,0,0,0,0,461,6.869281045751634,23.640522875816995,6.973856209150327,23.924836601307188,1.0029411764705882,2.9558823529411766,1.5794117647058823,341,181,364,14,70,9,13,4,6,15,2,3,3,0,19,10,6,2,8,2,4,586,381,0,60,907,0,195,772,0,726,241,0,219,748,0,217,2,574,174,0,178,13,13,1,21,51,60,41,49,304,0,0,0,23,27,47,17,32,70,0,0,0,7,3,6,0,4,0,0,0,0,0,0,0,0,405,2,470,0,0,0,1,9,149,235,20,57,29,5,8,4,4,1,356,0,0,592,433,18,14,5,327,0,0,43,0,17,152,7,223,0,0,0,786,86,0,0,0,5,0,0,0,0,0,4,1,4,3,8,357,10,4,16,775,151,45,12,11,8,14,5,2,0,2,0,0,0,0,0,11.0,16.0,18.0,13.0,13.0,13.0,17.0,13.0,22.0,12.0,15.0,21.0,16.0,15.0,11.0,30.0,17.0,22.0,7.0,10.0,9.0,12.0,15.0,10.0,7.0,15.0,11.0,10.0,12.0,7.0,11.0,8.0,12.0,9.0,8.0,9.0,10.0,13.0,12.0,12.0,10.0,7.0,15.0,14.0,16.0,12.0,10.0,21.0,7.0,11.0,16.0,8.0,12.0,17.0,6.0,12.0,6.0,18.0,12.0,15.0,11.0,12.0,15.0,16.0,11.0,11.0,8.0,9.0,13.0,7.0,14.0,5.0,11.0,9.0,13.0,3.0,7.0,6.0,5.0,12.0,5.0,4.0,6.0,2.0,5.0,4.0,7.0,4.0,2.0,4.0,4.0,3.0,0.0,0.0,3.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,226,608,191,0,71,77,78,86,53,55,48,56,62,61,59,63,65,48,52,33,22,21,10,4,1,0,1022,0,0,3,0,1022,0,0,3,0,341,5,23,85,53,1,292,225,0,728,297,0,0,0,1,0,0,0,0,1,2,0,1,1020,0,0,4,301,3,0,0,582,135,0,26,99,12,0,0,888,0,3.619565217391304,0.0,4.6603053435114505,0.0,4.886829268292683,0,0,109,2,0,0,187,43,0,86,51,69,60,40,13,7,6,6,1,1,0,1,0,0,0,253,88,13,328,64,277,17,324,7,334,2,339,154,187,3,338,188,153,58,283,24,34,8,333,50,291,17,324,302,39,272,69,7,334,96,164,79,2,0,266,75,0,0,0,0,0,0,0,0,0,0,0,341,0,1.7360703812316716,1.2697947214076246,0.0,1.1538461538461535,1.1538461538461535,58.69208211143695 +91001,Veraguas,Santiago,Santiago,7286,19,1402,262,1,2,0,0,0,0,0,3,7,1,0,3706,3527,106,19,7132,207,0,0,0,18,1,7327,0,3,17,0,3,6,0,2,6557,623,144,5,20,0,9,7212,6,51,0,0,89,7358,11,489,87,673,299,52,0,2004,1330,3866,130,25,3,7326,4,0,24,1,3,0,6597,121,623,13,0,1,3,5920,1424,1,12,0,1,7318,16,1,4,0,0,0,0,0,10,7,2,8532,451,6.970552147239264,23.65562372188139,6.984458077709611,23.78023176550784,1.0164446860559937,4.208888284860016,2.657787442239739,7489,3953,7839,273,1469,351,394,283,132,359,79,76,338,201,411,111,65,119,117,20,110,20528,1796,0,14008,8316,0,19174,3150,0,21447,877,0,6955,15369,0,4739,2216,14877,492,0,537,250,277,71,339,371,489,417,407,1436,0,2,53,457,620,1185,507,766,4232,28,118,519,669,1213,2200,2270,1217,422,59,1114,2,5,5,67,0,10140,817,9568,0,95,332,131,2375,4378,2255,297,263,8402,381,607,395,817,19,123,7,9,11111,12125,4147,3600,426,2275,244,1,56,11,22,494,71,5152,20,0,0,6318,6605,59,106,540,5316,403,1109,69,0,9,962,3163,1226,686,1778,138,1070,560,1365,8646,1299,646,809,1439,1605,2421,1273,1817,1311,844,326,366,138,276,20,234.0,200.0,221.0,257.0,279.0,282.0,287.0,302.0,318.0,331.0,318.0,294.0,312.0,324.0,332.0,351.0,337.0,346.0,386.0,406.0,369.0,360.0,413.0,349.0,368.0,360.0,359.0,301.0,306.0,287.0,293.0,292.0,289.0,285.0,292.0,264.0,265.0,324.0,295.0,259.0,329.0,308.0,325.0,338.0,339.0,295.0,323.0,317.0,298.0,291.0,309.0,308.0,312.0,294.0,277.0,274.0,280.0,297.0,284.0,275.0,279.0,276.0,282.0,305.0,249.0,250.0,215.0,218.0,229.0,202.0,216.0,167.0,187.0,146.0,145.0,140.0,113.0,117.0,107.0,92.0,83.0,95.0,85.0,75.0,66.0,60.0,64.0,45.0,33.0,30.0,30.0,18.0,30.0,12.0,12.0,12.0,9.0,6.0,3.0,1.0,4.0,3.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0,4291,15620,3325,0,1191,1520,1580,1826,1859,1613,1451,1407,1639,1524,1500,1410,1391,1114,861,569,404,232,102,31,12,0,22477,406,334,19,0,22497,469,251,19,0,3888,232,247,5534,813,341,7891,4290,0,7257,15591,388,0,31,588,93,0,1,2,13,2,2,277,22227,0,381,433,851,66,25,24,1347,20109,0,6515,6002,2730,139,22,7828,0,1.70671834625323,0.0,2.4962520821765684,0.0,11.345326217937682,149,154,358,28,12,13,527,6248,0,132,120,103,210,404,546,772,526,1041,833,706,519,664,348,553,2,7410,79,7127,362,6894,595,1698,5791,7107,382,4071,3418,4498,2991,3079,4410,7214,275,7009,480,5465,1544,4886,2603,6527,962,4734,2755,1093,6396,877,6612,103,7386,1322,3952,1841,374,4,4408,3081,0,9,172,24,0,0,1,3,1,0,79,7200,0,1.4828506606165754,1.6181769651674898,1.1149425287356325,1.0276381909547738,1.0276381909547738,53.74108692749365 +91002,Veraguas,Santiago,La Colorada,1119,9,3,3,0,0,0,0,0,0,0,0,2,0,0,10,780,70,14,853,7,2,0,0,12,0,816,0,3,22,1,3,28,0,1,11,646,178,4,31,0,4,836,21,2,0,0,15,874,0,72,41,27,111,9,0,158,30,663,21,1,1,848,11,2,8,0,5,0,795,10,67,1,0,0,1,430,425,1,17,1,0,451,384,16,1,0,15,0,1,0,1,5,0,0,1136,6.749706227967097,20.615746180963573,6.793184488836663,22.562867215041127,1.005720823798627,3.9210526315789473,2.566361556064073,881,516,806,72,158,39,30,22,19,60,8,12,24,5,39,14,7,21,16,12,10,2189,328,0,1036,1481,0,1901,616,0,2353,164,0,692,1825,0,517,175,1756,69,0,77,34,30,7,47,60,80,65,76,340,0,0,4,53,98,166,44,94,448,3,3,55,82,104,195,135,65,60,7,77,0,0,0,8,0,1183,84,1042,0,0,40,28,138,406,376,112,10,770,98,96,46,71,1,159,2,0,1348,1304,412,411,50,291,32,0,47,0,3,198,19,606,7,0,0,1063,659,4,12,45,400,41,77,8,0,1,63,281,77,89,181,101,167,79,228,1024,324,96,142,169,172,242,108,145,110,62,20,16,4,11,7,29.0,26.0,35.0,45.0,37.0,32.0,31.0,29.0,43.0,36.0,33.0,41.0,31.0,42.0,30.0,30.0,30.0,18.0,39.0,39.0,33.0,50.0,33.0,33.0,42.0,38.0,36.0,46.0,40.0,39.0,40.0,36.0,38.0,29.0,38.0,39.0,33.0,34.0,29.0,31.0,25.0,35.0,31.0,28.0,34.0,42.0,37.0,46.0,28.0,31.0,34.0,30.0,46.0,42.0,37.0,44.0,30.0,27.0,40.0,32.0,29.0,27.0,37.0,19.0,25.0,16.0,30.0,19.0,27.0,14.0,19.0,13.0,21.0,16.0,17.0,13.0,21.0,21.0,18.0,15.0,15.0,14.0,6.0,15.0,10.0,12.0,12.0,7.0,8.0,2.0,6.0,4.0,5.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,520,1729,403,0,172,171,177,156,191,199,181,166,153,184,189,173,137,106,86,88,60,41,18,2,2,0,2626,16,10,0,0,2626,16,10,0,0,666,21,69,557,103,22,694,520,0,1333,1309,10,0,1,32,5,0,0,0,1,0,0,6,2607,0,46,16,79,2,1,0,170,2338,0,616,795,145,16,0,1080,0,1.9824407374890252,0.0,2.6448828606658448,0.0,9.690799396681747,11,10,36,0,0,0,72,752,0,41,50,28,69,75,75,90,60,114,74,71,45,45,19,23,0,859,22,800,81,772,109,187,694,752,129,335,546,516,365,225,656,794,87,771,110,511,260,415,466,610,271,464,417,307,574,334,547,20,861,176,466,214,25,0,620,261,0,1,12,1,0,0,0,0,0,0,2,865,0,1.5300794551645858,1.4801362088535754,1.0,1.0,1.0,54.64018161180477 +91003,Veraguas,Santiago,La Peña,2209,19,53,3,0,0,0,0,0,0,0,0,1,0,0,272,1242,243,16,1715,42,2,0,0,14,0,1679,0,8,47,1,5,26,0,7,1164,113,372,44,66,1,13,1680,69,6,0,0,18,1773,0,225,89,74,102,21,0,322,161,1172,112,6,0,1707,8,1,46,0,11,0,1730,2,39,2,0,0,0,900,820,2,51,0,0,953,565,221,5,0,14,0,2,0,5,6,2,1250,1035,6.794134560092007,19.2541690626797,6.8384128809660725,20.91431857389304,1.0208685843203609,3.643542019176537,2.4489565707839818,1811,1051,2147,152,337,66,98,51,30,88,37,19,47,9,94,36,19,45,22,21,30,4794,763,0,2233,3324,0,4291,1266,0,5142,415,0,1796,3761,0,1533,263,3543,218,0,230,72,97,8,126,148,159,138,178,627,0,2,10,186,229,398,132,248,1082,5,43,138,171,206,374,210,171,39,17,105,0,0,0,8,0,2326,167,2478,0,2,62,19,304,1083,917,80,94,1796,60,224,128,105,2,147,0,6,2988,2955,676,1201,133,375,66,0,11,6,18,183,29,1562,3,0,0,2391,1561,10,52,105,705,39,100,8,0,6,104,413,187,130,452,67,372,195,567,2706,582,184,249,393,481,573,226,287,155,59,12,11,9,13,3,95.0,85.0,94.0,112.0,110.0,89.0,104.0,106.0,103.0,74.0,104.0,105.0,84.0,115.0,80.0,101.0,93.0,83.0,69.0,106.0,118.0,93.0,110.0,113.0,115.0,99.0,100.0,103.0,113.0,115.0,118.0,100.0,112.0,102.0,80.0,92.0,81.0,80.0,65.0,86.0,77.0,79.0,74.0,63.0,71.0,56.0,63.0,79.0,55.0,58.0,64.0,59.0,74.0,53.0,46.0,61.0,56.0,58.0,51.0,56.0,51.0,31.0,53.0,43.0,47.0,26.0,28.0,38.0,32.0,33.0,38.0,26.0,29.0,25.0,23.0,28.0,19.0,25.0,13.0,24.0,17.0,15.0,24.0,10.0,19.0,12.0,6.0,6.0,7.0,6.0,6.0,10.0,1.0,3.0,3.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1460,3925,558,0,496,476,488,452,549,530,512,404,364,311,296,282,225,157,141,109,85,37,23,5,1,0,5858,32,41,12,0,5858,37,36,12,0,1617,48,72,865,153,43,1686,1459,0,2739,3167,37,0,5,417,31,0,0,0,0,0,0,30,5460,0,45,22,209,7,2,2,344,5312,0,1385,1588,309,32,8,2621,0,1.9296685529506872,0.0,2.796713329275715,0.0,9.065118626956084,17,7,80,4,1,2,123,1577,0,46,62,46,86,182,198,246,195,316,154,115,57,63,17,26,1,1775,36,1637,174,1566,245,274,1537,1588,223,397,1414,934,877,324,1487,1696,115,1603,208,1069,534,779,1032,1343,468,810,1001,491,1320,423,1388,34,1777,297,1047,420,47,0,1223,588,0,2,98,9,0,0,0,0,0,0,9,1693,0,1.6499171728326891,1.631695196024296,1.1111111111111112,1.0389610389610389,1.0389610389610389,48.8967421314191 +91004,Veraguas,Santiago,La Raya de Santa María,836,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,505,126,16,587,45,0,0,0,14,2,631,0,0,6,3,3,3,0,2,0,59,483,71,33,0,2,619,14,0,0,0,15,648,0,112,33,8,21,15,0,2,29,583,33,1,0,632,2,0,7,0,7,0,642,0,5,1,0,0,0,214,427,0,7,0,0,0,623,19,2,0,0,1,0,0,2,1,0,0,839,6.839563862928349,9.806853582554515,6.942367601246106,12.638629283489095,1.0200617283950617,3.6512345679012346,2.325617283950617,661,358,633,61,186,11,17,9,8,37,9,5,113,1,48,17,9,23,12,21,21,1613,380,0,374,1619,0,1175,818,0,1824,169,0,521,1472,0,473,48,1371,101,0,106,33,20,12,47,64,66,51,52,403,0,1,1,50,127,158,72,97,374,1,5,19,42,50,23,27,72,7,1,10,0,0,0,2,0,794,54,958,0,1,10,11,168,299,437,35,19,654,18,33,29,46,0,54,1,7,1124,985,133,544,30,104,14,0,10,7,15,90,19,499,66,0,0,1172,494,1,8,11,103,6,9,2,0,7,31,42,68,49,105,18,118,117,293,850,206,80,105,174,217,246,57,61,23,7,7,6,1,3,66,29.0,29.0,30.0,28.0,31.0,27.0,31.0,39.0,32.0,27.0,31.0,32.0,27.0,19.0,32.0,23.0,33.0,34.0,26.0,27.0,30.0,27.0,36.0,38.0,25.0,29.0,30.0,38.0,29.0,39.0,31.0,28.0,21.0,30.0,25.0,28.0,26.0,23.0,26.0,26.0,31.0,19.0,27.0,25.0,24.0,22.0,29.0,33.0,23.0,21.0,22.0,22.0,33.0,28.0,24.0,22.0,29.0,22.0,31.0,17.0,30.0,19.0,16.0,20.0,18.0,24.0,16.0,20.0,28.0,19.0,22.0,12.0,17.0,16.0,10.0,15.0,15.0,13.0,7.0,4.0,10.0,11.0,14.0,9.0,8.0,6.0,7.0,5.0,6.0,2.0,3.0,2.0,3.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,444,1335,330,0,147,156,141,143,156,165,135,129,126,128,129,121,103,107,77,54,52,26,12,2,0,0,2084,13,8,4,0,2085,15,5,4,0,586,17,21,348,84,7,602,444,0,1400,699,10,0,5,92,35,0,0,0,0,0,0,77,1900,0,34,32,231,9,2,0,197,1604,0,537,539,175,17,0,841,0,2.246189917936694,0.0,2.9950248756218905,0.0,7.834044570886676,6,13,82,5,1,0,73,481,0,19,28,25,35,75,83,120,79,92,45,20,14,10,3,8,5,648,13,608,53,581,80,86,575,610,51,115,546,390,271,63,598,586,75,580,81,241,339,157,504,402,259,282,379,314,347,355,306,5,656,147,329,168,17,2,460,201,0,2,5,7,0,0,0,0,0,0,32,615,0,1.6953242835595776,1.4856711915535443,0.0,1.064516129032258,1.064516129032258,55.83509833585477 +91005,Veraguas,Santiago,Ponuga,720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,375,159,12,529,7,5,1,0,6,0,444,0,1,14,4,4,77,0,4,128,15,347,22,32,0,4,480,57,0,1,0,10,548,0,74,18,2,44,34,0,5,15,506,21,1,0,440,49,0,22,3,33,1,542,0,1,2,1,2,0,87,403,0,56,1,1,0,437,29,16,5,50,0,0,0,5,4,2,0,720,5.266094420600858,6.124463519313305,5.929184549356223,9.163090128755364,1.0127737226277371,3.291970802919708,2.147810218978102,555,260,418,20,110,26,23,18,3,23,3,2,16,0,26,5,8,10,11,8,4,1022,397,0,176,1243,0,520,899,0,1221,198,0,327,1092,0,290,37,962,130,0,131,12,18,2,39,65,69,53,49,314,0,0,1,32,58,114,31,51,248,0,6,4,18,14,44,20,12,4,2,6,0,0,2,0,0,491,46,778,0,3,11,10,55,204,449,53,17,223,79,53,15,31,0,129,2,0,779,698,115,186,17,177,10,0,26,1,2,176,7,448,7,0,0,934,287,1,8,12,63,4,6,0,0,1,11,35,15,12,75,122,61,25,180,746,299,41,76,90,60,56,34,45,15,6,0,2,0,0,7,12.0,15.0,14.0,17.0,14.0,12.0,19.0,19.0,22.0,18.0,23.0,14.0,14.0,13.0,18.0,17.0,23.0,31.0,18.0,21.0,14.0,20.0,16.0,16.0,17.0,33.0,14.0,20.0,16.0,12.0,18.0,22.0,16.0,19.0,23.0,20.0,17.0,14.0,16.0,18.0,18.0,11.0,17.0,16.0,18.0,24.0,13.0,20.0,11.0,21.0,20.0,30.0,13.0,20.0,28.0,22.0,21.0,24.0,21.0,25.0,9.0,17.0,24.0,13.0,22.0,16.0,16.0,16.0,9.0,11.0,8.0,16.0,11.0,20.0,16.0,13.0,17.0,12.0,10.0,17.0,12.0,6.0,5.0,5.0,11.0,9.0,7.0,6.0,2.0,2.0,4.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,244,949,284,0,72,90,82,110,83,95,98,85,80,89,111,113,85,68,71,69,39,26,9,1,1,0,1467,3,5,2,0,1467,3,5,2,0,418,13,20,199,88,5,490,244,0,768,706,3,0,0,3,0,0,0,0,1,0,0,5,1468,0,2,3,90,1,2,0,209,1170,0,196,384,49,4,2,842,0,2.7166123778501627,0.0,3.482300884955752,0.0,7.055517941773866,0,1,25,0,1,0,78,450,0,71,93,29,77,65,62,55,23,32,16,12,9,9,0,0,2,516,39,413,142,390,165,55,500,390,165,49,506,208,347,29,526,413,142,354,201,225,129,92,463,123,432,123,432,259,296,228,327,3,552,165,254,124,12,0,396,159,0,0,2,0,0,0,0,0,0,0,3,550,0,1.4036036036036037,1.2576576576576577,1.0,1.0285714285714285,1.0285714285714285,57.52972972972973 +91006,Veraguas,Santiago,San Pedro del Espino,844,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,43,4,605,7,1,0,0,3,0,601,0,0,2,2,3,8,0,0,256,127,168,10,52,0,3,592,20,1,0,0,3,616,0,175,17,2,18,19,0,5,13,566,32,0,0,606,3,0,7,0,0,0,612,0,4,0,0,0,0,266,343,0,7,0,0,0,567,45,1,0,1,0,0,0,1,1,0,0,847,6.839869281045751,14.794117647058824,6.861111111111111,15.356209150326798,1.0097402597402598,3.4431818181818183,2.095779220779221,622,359,727,25,122,13,29,6,5,30,4,3,23,6,43,18,9,11,19,1,8,1487,390,0,551,1326,0,1078,799,0,1730,147,0,539,1338,0,479,60,1243,95,0,96,16,32,7,46,50,72,45,64,338,0,0,1,39,63,140,44,65,358,0,10,44,43,58,126,65,6,18,4,24,0,0,1,2,0,634,64,992,0,1,34,17,147,347,433,45,20,480,12,68,23,33,0,70,0,5,1008,966,179,378,27,95,4,0,3,5,24,136,21,704,1,0,0,929,509,2,11,20,182,10,26,1,0,4,38,99,56,36,125,19,94,40,187,920,247,49,118,136,140,162,52,70,43,22,6,3,3,2,1,17.0,22.0,33.0,25.0,24.0,32.0,29.0,32.0,37.0,33.0,25.0,27.0,26.0,28.0,33.0,24.0,41.0,21.0,21.0,38.0,25.0,33.0,26.0,34.0,37.0,40.0,28.0,29.0,30.0,25.0,27.0,27.0,25.0,19.0,19.0,26.0,21.0,17.0,16.0,20.0,24.0,22.0,29.0,31.0,18.0,19.0,25.0,22.0,31.0,25.0,25.0,29.0,27.0,22.0,28.0,21.0,23.0,25.0,26.0,16.0,20.0,17.0,18.0,23.0,19.0,16.0,7.0,21.0,14.0,18.0,12.0,21.0,18.0,22.0,9.0,13.0,15.0,8.0,11.0,14.0,12.0,3.0,13.0,4.0,9.0,10.0,5.0,6.0,5.0,1.0,2.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,423,1254,297,0,121,163,139,145,155,152,117,100,124,122,131,111,97,76,82,61,41,27,8,2,0,0,1969,2,3,0,0,1969,4,1,0,0,440,9,20,400,66,4,612,423,0,1304,668,2,0,2,51,7,0,0,0,0,0,0,10,1904,0,14,13,43,2,0,1,75,1826,0,352,511,130,22,0,959,0,2.2375757575757578,0.0,3.050086355785837,0.0,8.491894630192503,7,7,23,1,0,0,19,565,0,35,50,15,43,79,96,73,37,71,41,36,16,15,9,6,0,612,10,560,62,533,89,75,547,541,81,118,504,277,345,89,533,519,103,533,89,267,266,184,438,323,299,225,397,252,370,310,312,2,620,125,349,128,20,0,438,184,0,0,12,5,0,0,0,0,0,0,2,603,0,1.6205787781350482,1.5530546623794212,1.0,1.0217391304347827,1.0217391304347827,55.05144694533762 +91007,Veraguas,Santiago,Canto del Llano,4682,36,314,112,0,0,0,1,3,0,0,0,1,0,0,2185,1672,177,10,3906,128,0,0,0,10,0,4023,0,0,8,1,3,8,0,1,3423,439,116,6,25,0,35,3979,22,11,0,0,32,4044,0,386,314,139,215,46,0,1533,592,1759,156,4,0,4001,2,1,23,0,17,0,3617,15,412,0,0,0,0,2993,1029,1,21,0,0,3250,707,80,0,0,1,1,0,0,1,4,0,2514,2635,6.976219965320783,23.757740896705474,6.982660391379738,23.864255635372803,1.0136003956478734,3.751730959446093,2.452274975272008,4100,2363,4882,335,743,172,243,146,74,238,80,27,224,51,180,187,36,61,70,46,84,11662,1230,0,6988,5904,0,10808,2084,0,12170,722,0,4458,8434,0,3623,835,8028,406,0,427,156,206,45,252,263,311,279,302,993,4,3,11,278,379,755,281,491,2706,9,72,263,375,589,942,1072,558,265,41,534,1,2,5,22,0,5961,380,5274,0,45,123,73,800,2710,1514,137,113,4797,252,472,165,430,15,121,11,4,6668,7010,2184,2686,182,1071,97,1,40,6,41,283,38,3643,14,0,0,4143,3982,14,95,251,2390,199,518,23,0,7,405,1527,615,363,1183,84,706,468,983,5876,723,330,479,715,994,1533,682,972,664,334,116,132,51,63,14,195.0,189.0,188.0,214.0,211.0,228.0,191.0,227.0,210.0,210.0,243.0,241.0,210.0,202.0,197.0,221.0,222.0,209.0,230.0,236.0,221.0,227.0,251.0,219.0,251.0,260.0,245.0,258.0,258.0,226.0,252.0,225.0,239.0,207.0,185.0,195.0,205.0,187.0,211.0,176.0,194.0,208.0,183.0,177.0,202.0,185.0,152.0,149.0,150.0,142.0,169.0,139.0,145.0,147.0,155.0,138.0,136.0,119.0,122.0,129.0,125.0,110.0,113.0,98.0,94.0,120.0,92.0,88.0,88.0,85.0,71.0,53.0,74.0,51.0,56.0,46.0,37.0,33.0,43.0,30.0,36.0,14.0,24.0,28.0,24.0,23.0,20.0,16.0,15.0,10.0,7.0,7.0,9.0,4.0,5.0,4.0,4.0,1.0,2.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3156,9297,1225,0,997,1066,1093,1118,1169,1247,1108,974,964,778,755,644,540,473,305,189,126,84,32,12,4,0,13399,155,114,10,0,13403,211,54,10,0,3254,153,291,2420,325,185,3895,3155,0,3877,9676,125,0,21,574,195,1,4,7,13,2,2,103,12756,0,216,261,863,47,38,18,2202,10033,0,4002,3975,871,75,7,4748,0,1.6922436750998668,0.0,2.5382639958911146,0.0,10.382585173270948,81,71,322,21,18,7,765,2815,0,96,84,43,100,197,366,480,334,670,497,380,226,290,143,190,3,4063,37,3866,234,3766,334,797,3303,3776,324,1627,2473,2117,1983,1214,2886,3959,141,3734,366,2649,1085,2392,1708,3431,669,2320,1780,748,3352,641,3459,63,4037,619,2331,1000,150,4,2579,1521,0,7,149,46,0,3,1,2,1,1,36,3854,0,1.624756335282651,1.7080896686159843,1.1219512195121952,1.0472972972972974,1.0472972972972974,48.56268292682927 +91008,Veraguas,Santiago,Los Algarrobos,3133,16,22,3,0,0,0,0,0,0,0,0,2,0,0,420,1621,445,21,2411,75,6,0,0,15,0,2436,0,1,9,2,2,56,0,1,1362,310,675,40,115,0,5,2415,56,3,0,0,33,2507,0,347,96,65,123,36,0,550,128,1768,57,3,1,2407,16,1,54,0,29,0,2017,7,476,0,2,0,5,928,1338,0,50,5,186,1315,1104,64,1,0,1,0,0,0,0,22,0,1495,1681,6.347966169955699,15.467176802255336,6.48610551751913,16.997583568264197,1.022736338252892,3.625049860390906,2.370562425209413,2566,1492,2938,182,415,105,126,74,30,128,46,22,81,13,148,43,34,66,25,45,39,6411,1284,0,2681,5014,0,5607,2088,0,7090,605,0,2456,5239,0,2137,319,4907,332,0,341,112,128,26,197,245,314,194,201,1041,0,0,7,191,287,503,205,305,1456,12,76,146,215,274,402,362,258,57,14,122,1,0,0,3,0,3122,340,3384,0,5,158,86,322,1464,1364,160,74,2202,107,374,136,241,27,278,1,1,4086,4132,969,1509,143,644,90,0,11,1,27,337,43,2185,3,0,0,3432,2098,7,71,115,939,61,120,3,0,4,127,629,194,171,666,87,452,223,909,3761,995,253,356,504,580,659,256,399,283,112,16,26,7,8,3,127.0,120.0,136.0,140.0,128.0,146.0,131.0,155.0,146.0,143.0,125.0,126.0,125.0,119.0,123.0,137.0,129.0,115.0,127.0,130.0,140.0,117.0,121.0,152.0,131.0,164.0,153.0,127.0,111.0,166.0,156.0,139.0,136.0,145.0,119.0,94.0,111.0,118.0,138.0,110.0,107.0,115.0,99.0,90.0,89.0,101.0,111.0,85.0,95.0,84.0,95.0,94.0,96.0,72.0,98.0,67.0,71.0,68.0,83.0,79.0,67.0,76.0,61.0,72.0,57.0,65.0,64.0,52.0,52.0,48.0,35.0,46.0,33.0,32.0,38.0,26.0,33.0,25.0,32.0,25.0,24.0,28.0,20.0,16.0,25.0,19.0,14.0,15.0,6.0,8.0,4.0,10.0,3.0,5.0,3.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1990,5418,810,0,651,721,618,638,661,721,695,571,500,476,455,368,333,281,184,141,113,62,25,3,1,0,8116,57,31,14,0,8117,60,27,14,0,2304,49,105,1196,212,21,2341,1990,0,3955,4235,28,0,7,417,25,0,0,1,1,1,1,19,7746,0,47,120,320,16,5,9,411,7290,0,1815,2404,333,38,4,3624,0,1.9965227470298463,0.0,2.8436565570269114,0.0,8.773180822584571,15,28,118,6,2,2,145,2250,0,105,146,75,162,236,309,324,206,384,214,146,103,93,35,26,0,2505,61,2337,229,2236,330,349,2217,2232,334,607,1959,1260,1306,450,2116,2325,241,2256,310,1524,732,1034,1532,1824,742,1046,1520,701,1865,460,2106,32,2534,479,1465,556,66,0,1691,875,0,1,88,6,0,0,0,1,1,1,4,2464,0,1.5923616523772408,1.6102883865939206,1.1,1.054945054945055,1.054945054945055,49.354637568199536 +91009,Veraguas,Santiago,Carlos Santana Ávila,2061,21,2,0,0,0,0,0,0,0,0,0,0,0,0,16,1430,201,28,1587,60,5,0,0,22,1,1635,0,3,7,1,7,18,0,4,264,590,711,35,71,0,4,1619,35,2,0,0,19,1675,3,159,81,55,87,24,0,221,95,1293,64,2,0,1633,9,0,23,1,9,0,1505,2,166,0,2,0,0,827,821,1,24,2,0,597,977,90,2,0,4,0,0,0,1,2,2,0,2084,6.942908653846154,17.99158653846154,6.982572115384615,19.15564903846154,1.0197014925373131,3.733134328358209,2.5092537313432834,1708,1013,1990,156,314,48,46,23,18,87,21,20,46,10,87,30,10,32,36,29,17,4407,740,0,1716,3431,0,3672,1475,0,4779,368,0,1694,3453,0,1383,311,3277,176,0,185,90,89,17,132,133,181,135,148,637,1,0,6,159,242,359,147,211,1016,2,7,108,151,194,227,270,175,42,3,76,0,0,0,4,0,2040,184,2341,0,19,67,27,255,964,954,115,53,1685,73,117,69,193,3,68,0,0,2765,2735,572,1133,74,384,33,0,1,11,12,205,23,1092,115,0,0,2283,1470,6,22,75,603,30,72,4,0,13,78,349,155,101,488,28,351,299,362,2282,596,196,274,319,408,543,215,287,165,50,14,22,5,9,115,77.0,93.0,79.0,104.0,96.0,91.0,94.0,94.0,100.0,107.0,88.0,86.0,84.0,82.0,89.0,80.0,88.0,69.0,93.0,78.0,87.0,83.0,98.0,91.0,74.0,80.0,99.0,86.0,98.0,96.0,86.0,92.0,98.0,96.0,87.0,98.0,79.0,80.0,82.0,80.0,64.0,70.0,67.0,69.0,62.0,72.0,78.0,78.0,46.0,50.0,54.0,62.0,59.0,53.0,56.0,51.0,55.0,46.0,48.0,50.0,46.0,53.0,43.0,49.0,33.0,43.0,31.0,39.0,34.0,31.0,34.0,25.0,23.0,30.0,25.0,21.0,27.0,17.0,11.0,20.0,20.0,20.0,20.0,8.0,12.0,6.0,9.0,8.0,4.0,6.0,3.0,6.0,2.0,1.0,2.0,2.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1364,3592,544,0,449,486,429,408,433,459,459,419,332,324,284,250,224,178,137,96,80,33,14,6,0,0,5419,32,47,2,0,5423,38,37,2,0,1356,46,101,977,132,41,1483,1364,0,2642,2824,34,0,5,271,59,0,2,0,6,0,1,37,5119,0,76,125,338,14,1,1,1410,3535,0,1307,1609,237,33,2,2312,0,1.9908096280087528,0.0,2.7946936197094123,0.0,8.864363636363636,21,50,125,6,1,0,454,1051,0,50,82,40,102,159,172,214,169,278,157,94,62,84,18,19,8,1678,30,1571,137,1547,161,288,1420,1514,194,503,1205,953,755,245,1463,1588,120,1524,184,897,627,702,1006,1169,539,903,805,553,1155,514,1194,13,1695,283,1021,356,48,0,1094,614,0,0,64,19,0,2,0,1,0,0,9,1613,0,1.6188524590163935,1.601288056206089,1.0,1.0175438596491229,1.0175438596491229,49.73067915690866 +91010,Veraguas,Santiago,Edwin Fábrega,1501,24,1,11,0,0,0,0,0,0,1,0,7,0,0,114,966,101,21,1142,39,1,0,0,20,0,1163,0,0,3,2,9,23,0,2,52,738,335,9,61,0,7,1152,20,6,0,0,24,1202,0,123,53,56,97,6,0,220,47,890,43,2,0,1171,1,1,26,0,3,0,1128,4,69,1,0,0,0,655,525,0,22,0,0,531,559,85,1,0,2,0,0,0,9,14,1,0,1545,6.576170212765957,16.78468085106383,6.845106382978724,18.86042553191489,1.0099833610648918,4.021630615640599,2.548252911813644,1221,723,1393,68,326,50,61,39,14,84,11,9,48,7,65,27,10,25,30,25,17,3289,552,0,1546,2295,0,2715,1126,0,3579,262,0,1223,2618,0,1027,196,2478,140,0,142,41,66,14,83,98,124,95,110,518,0,0,3,94,163,285,117,165,757,6,4,53,94,118,231,239,53,67,9,88,0,0,1,3,0,1510,182,1769,0,1,113,32,233,756,666,64,50,1081,58,251,62,107,9,95,1,3,2011,2043,531,582,65,439,26,0,22,2,35,163,28,1061,33,0,0,1732,1008,4,14,69,496,49,86,3,0,3,81,318,128,113,321,68,272,106,282,1783,451,131,159,223,247,383,168,202,165,54,19,16,7,13,33,46.0,46.0,62.0,59.0,64.0,62.0,58.0,74.0,63.0,59.0,68.0,61.0,54.0,61.0,55.0,69.0,64.0,67.0,65.0,62.0,64.0,64.0,70.0,64.0,66.0,66.0,58.0,60.0,52.0,46.0,63.0,52.0,41.0,53.0,61.0,62.0,51.0,59.0,55.0,43.0,51.0,60.0,62.0,63.0,49.0,62.0,53.0,47.0,46.0,46.0,64.0,54.0,40.0,53.0,34.0,42.0,65.0,44.0,41.0,43.0,45.0,47.0,39.0,35.0,42.0,39.0,37.0,32.0,24.0,25.0,29.0,20.0,21.0,23.0,19.0,15.0,14.0,17.0,11.0,15.0,11.0,21.0,14.0,14.0,10.0,10.0,1.0,3.0,4.0,7.0,8.0,3.0,4.0,1.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,892,2704,458,0,277,316,299,327,328,282,270,270,285,254,245,235,208,157,112,72,70,25,18,4,0,0,4000,28,23,3,0,4001,33,17,3,0,961,39,76,787,119,33,1147,892,0,1898,2131,25,0,7,118,20,2,0,0,1,1,1,22,3882,0,29,33,205,15,1,3,589,3179,0,914,1106,217,27,6,1784,0,1.994311717861206,0.0,2.8561816652649283,0.0,9.182289097187963,14,20,61,8,0,2,210,906,0,43,66,32,74,102,118,149,96,145,130,83,59,60,33,20,4,1193,28,1125,96,1098,123,204,1017,1120,101,362,859,723,498,307,914,1128,93,1117,104,629,488,527,694,821,400,592,629,391,830,375,846,11,1210,204,641,340,36,1,751,470,0,1,27,7,2,0,0,0,0,0,3,1181,0,1.6456628477905073,1.6718494271685762,1.1,1.0,1.0,52.71171171171172 +91011,Veraguas,Santiago,San Martín de Porres,4585,9,828,284,0,0,0,0,0,0,2,0,6,0,0,2428,2198,82,6,4472,236,2,0,0,4,0,4691,0,0,1,0,4,16,0,2,3107,1492,83,8,16,0,8,4626,7,13,0,0,68,4714,5,363,49,344,152,79,0,1101,999,2508,88,11,7,4656,1,0,25,0,32,0,4702,5,5,1,0,0,1,3007,1690,0,17,0,0,4702,3,2,0,0,0,0,0,0,0,4,3,5714,0,6.935415338857021,22.600169959634588,6.950074357340132,22.70958147439983,1.019304200254561,3.7528638099278746,2.444420873992363,4811,2539,5688,321,1307,229,293,233,78,293,65,50,230,19,190,62,44,98,67,20,49,13615,1689,0,8042,7262,0,12612,2692,0,14358,946,0,5284,10020,0,4454,830,9548,472,0,501,200,237,46,290,337,375,307,341,1246,0,2,33,367,548,1035,436,613,3449,16,63,370,487,650,1129,1052,584,154,22,394,2,1,4,13,0,6272,482,7065,0,8,177,87,1033,3391,2191,259,191,4807,292,726,237,529,27,35,8,10,7745,8411,2168,2736,259,1365,118,1,10,14,32,353,55,5124,31,0,0,5391,5050,36,98,241,2465,128,398,12,0,14,295,1479,501,396,1445,66,967,490,1101,7547,964,515,688,1040,1172,1560,721,886,594,263,60,67,24,24,31,207.0,202.0,217.0,226.0,263.0,229.0,241.0,270.0,231.0,251.0,229.0,258.0,222.0,245.0,253.0,226.0,264.0,264.0,297.0,310.0,288.0,358.0,361.0,337.0,311.0,359.0,247.0,262.0,249.0,202.0,257.0,205.0,228.0,225.0,203.0,216.0,226.0,191.0,198.0,171.0,201.0,181.0,218.0,218.0,200.0,231.0,186.0,210.0,195.0,175.0,206.0,191.0,217.0,210.0,175.0,166.0,173.0,152.0,183.0,156.0,164.0,149.0,147.0,137.0,120.0,121.0,114.0,126.0,123.0,94.0,93.0,72.0,77.0,81.0,84.0,51.0,55.0,44.0,59.0,50.0,33.0,34.0,35.0,30.0,33.0,25.0,30.0,20.0,18.0,23.0,10.0,11.0,16.0,10.0,5.0,6.0,5.0,4.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3544,11016,1596,0,1115,1222,1207,1361,1655,1319,1118,1002,1018,997,999,830,717,578,407,259,165,116,52,17,2,0,15938,148,61,9,0,15940,172,35,9,0,3516,151,411,2737,476,141,5181,3543,0,7305,8748,103,0,7,719,159,2,0,0,9,0,0,127,15133,0,305,187,836,38,15,23,2144,12608,0,3812,4217,1080,84,11,6952,0,1.8592132505175984,0.0,2.737900691389064,0.0,10.036518940331764,86,78,292,19,6,9,776,3545,0,241,128,99,193,402,469,605,437,704,494,361,232,258,101,77,4,4728,83,4424,387,4296,515,965,3846,4492,319,1531,3280,2592,2219,1359,3452,4564,247,4358,453,2736,1622,2612,2199,3822,989,2311,2500,391,4420,325,4486,62,4749,859,2432,1345,175,2,2819,1992,0,3,194,42,0,0,0,2,0,0,33,4537,0,1.6091834614585498,1.747558695200499,1.0476190476190477,1.0578034682080926,1.0578034682080926,50.40095614217418 +91012,Veraguas,Santiago,Urracá,890,7,0,0,0,0,0,0,5,0,0,0,0,0,0,25,467,111,11,600,3,0,1,0,7,3,579,0,3,6,1,3,17,0,5,120,157,245,34,58,0,0,564,42,3,0,0,5,614,0,132,56,52,32,11,0,68,14,501,28,2,1,580,3,0,29,0,2,0,588,7,16,1,2,0,0,223,366,1,23,1,0,0,560,41,2,0,1,0,0,0,2,6,2,0,902,6.963394342762063,22.274542429284526,6.991680532445924,23.05657237936772,1.004885993485342,3.552117263843648,2.2931596091205213,617,336,609,45,123,18,30,22,7,32,12,3,247,0,58,17,5,10,7,17,4,1452,521,0,544,1429,0,959,1014,0,1800,173,0,544,1429,0,481,63,1298,131,0,133,33,36,2,37,60,92,70,61,287,0,0,0,53,78,149,54,70,430,0,2,14,16,41,89,40,88,16,2,19,0,0,0,1,0,756,54,949,0,6,20,19,138,320,413,74,4,471,30,45,20,57,0,173,0,0,1160,941,181,435,22,147,4,1,3,3,20,124,9,502,27,0,0,1000,476,2,5,35,208,13,19,1,0,3,25,96,41,38,97,46,98,81,285,915,257,45,123,208,162,163,53,84,41,12,4,2,2,3,27,36.0,26.0,36.0,30.0,42.0,43.0,29.0,31.0,35.0,34.0,38.0,42.0,32.0,27.0,29.0,31.0,31.0,43.0,35.0,31.0,27.0,35.0,35.0,36.0,33.0,34.0,37.0,31.0,28.0,29.0,34.0,31.0,37.0,27.0,30.0,34.0,26.0,18.0,16.0,23.0,25.0,23.0,28.0,28.0,11.0,18.0,29.0,29.0,15.0,11.0,27.0,33.0,19.0,21.0,18.0,29.0,16.0,24.0,25.0,18.0,21.0,20.0,22.0,15.0,21.0,24.0,18.0,20.0,10.0,4.0,11.0,12.0,16.0,10.0,13.0,16.0,11.0,8.0,9.0,10.0,8.0,9.0,11.0,5.0,6.0,4.0,9.0,6.0,4.0,4.0,2.0,3.0,5.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,510,1318,273,0,170,172,168,171,166,159,159,117,115,102,118,112,99,76,62,54,39,27,14,1,0,0,2088,7,4,2,0,2088,10,1,2,0,564,12,42,343,59,6,565,510,0,972,1125,4,0,3,157,159,0,0,1,0,0,2,17,1762,0,13,50,153,8,11,5,472,1389,0,404,565,123,20,0,989,0,2.0166666666666666,0.0,2.848148148148148,0.0,8.104236078058067,5,20,57,3,3,2,144,383,0,22,65,15,44,60,75,72,51,84,50,27,17,12,6,7,10,597,20,545,72,530,87,101,516,501,116,107,510,366,251,87,530,499,118,521,96,290,231,202,415,298,319,266,351,237,380,242,375,6,611,158,303,140,16,5,465,152,0,1,19,13,0,0,1,0,0,1,1,581,0,1.864951768488746,1.5128617363344052,1.0,1.05,1.05,54.43760129659643 +91013,Veraguas,Santiago,Rodrigo Luque,2670,22,266,36,0,0,0,0,0,0,0,0,9,0,0,391,2045,89,13,2449,76,0,0,0,13,0,2519,0,0,2,0,1,12,0,4,2108,309,91,5,14,1,10,2496,9,7,0,0,26,2538,0,139,39,112,76,90,0,945,354,1185,43,4,7,2511,1,0,21,0,5,0,2244,7,286,0,0,0,1,1770,705,0,17,0,46,2241,179,104,3,0,0,0,0,0,1,10,0,1268,1735,6.944928684627575,22.40253565768621,6.967908082408875,22.83993660855785,1.0094562647754135,3.7868400315208826,2.438140267927502,2571,1559,3509,262,449,93,120,134,61,140,40,20,113,43,71,45,27,52,42,12,33,7684,898,0,4317,4265,0,7095,1487,0,7987,595,0,3261,5321,0,2629,632,5021,300,0,323,130,169,36,174,217,237,208,217,707,2,1,21,221,267,556,238,289,1704,3,30,180,271,327,492,699,417,136,30,272,0,3,2,3,0,3812,325,3449,0,59,58,57,289,1954,981,92,133,3016,172,336,156,297,16,63,2,31,4460,4654,1381,1552,169,822,107,1,19,38,15,175,37,2540,19,0,0,2990,2416,21,50,180,1567,108,250,4,0,38,241,1044,283,235,727,74,578,289,628,4308,481,216,349,456,661,878,355,586,419,222,51,63,17,33,19,129.0,117.0,137.0,149.0,168.0,161.0,164.0,161.0,163.0,179.0,173.0,158.0,144.0,167.0,150.0,175.0,183.0,150.0,154.0,185.0,189.0,154.0,170.0,149.0,154.0,154.0,131.0,153.0,135.0,128.0,146.0,122.0,149.0,150.0,127.0,121.0,140.0,150.0,135.0,147.0,137.0,122.0,131.0,118.0,125.0,136.0,117.0,121.0,126.0,117.0,109.0,107.0,86.0,118.0,80.0,79.0,96.0,90.0,91.0,61.0,66.0,59.0,69.0,52.0,46.0,60.0,44.0,53.0,32.0,32.0,36.0,22.0,31.0,27.0,25.0,14.0,28.0,15.0,18.0,12.0,21.0,19.0,11.0,9.0,12.0,11.0,10.0,6.0,8.0,6.0,7.0,2.0,3.0,0.0,2.0,3.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2320,6210,584,0,700,828,792,847,816,701,694,693,633,617,500,417,292,221,141,87,72,41,14,8,0,0,8953,74,82,5,0,8955,84,70,5,0,2106,90,365,1613,174,69,2377,2320,0,2571,6478,65,0,9,880,111,5,2,0,4,0,1,75,8027,0,99,124,380,37,13,10,608,7843,0,2489,2868,357,24,4,3372,0,1.680195222193681,0.0,2.5749395648670426,0.0,9.864384463462804,26,44,134,16,6,7,222,2116,0,95,55,38,65,134,204,322,214,378,294,262,153,163,103,80,2,2542,29,2402,169,2325,246,431,2140,2345,226,1000,1571,1349,1222,623,1948,2476,95,2353,218,1582,771,1457,1114,2038,533,1451,1120,492,2079,506,2065,45,2526,327,1564,570,110,0,1660,911,0,2,176,22,0,2,0,2,0,0,19,2348,0,1.734733566705562,1.810190587320109,1.0,1.0384615384615383,1.0384615384615383,47.51925320886814 +91014,Veraguas,Santiago,Nuevo Santiago,2142,0,1140,97,0,0,15,0,0,0,0,0,3,0,0,2051,730,44,5,2754,71,1,0,0,4,0,2818,0,2,4,0,2,2,0,2,2569,101,115,7,12,0,26,2788,9,10,0,0,23,2830,1,182,49,154,130,33,0,1689,290,823,28,0,0,2809,3,1,5,0,12,0,1794,5,127,904,0,0,0,2270,557,0,3,0,0,2707,116,3,1,0,0,1,0,0,0,1,1,2921,476,6.959660297239915,22.645789101203118,6.981245576786978,23.326610049539987,1.0095406360424029,3.650530035335689,2.5498233215547703,2860,1624,4166,174,489,124,152,100,43,109,31,32,747,26,175,53,27,86,60,34,45,8375,1645,0,4464,5556,0,7449,2571,0,9371,649,0,4014,6006,0,3345,669,5711,295,0,313,183,174,30,257,239,286,275,282,854,1,3,7,294,431,730,323,470,2011,3,24,214,321,379,679,368,493,107,12,241,0,4,0,12,0,4032,294,4463,0,9,112,47,345,2457,1110,128,423,3124,181,330,227,319,6,58,5,16,5388,5289,1287,1735,248,879,77,0,24,16,30,157,37,2910,79,0,0,3912,2945,7,32,226,1325,98,229,15,0,17,194,812,379,260,905,63,612,256,828,5415,650,291,400,586,696,959,368,560,346,152,48,67,17,43,79,148.0,154.0,178.0,177.0,203.0,211.0,172.0,244.0,208.0,193.0,207.0,221.0,176.0,199.0,199.0,197.0,183.0,159.0,173.0,167.0,198.0,186.0,211.0,198.0,183.0,228.0,201.0,204.0,184.0,168.0,208.0,168.0,213.0,188.0,200.0,174.0,161.0,182.0,197.0,165.0,148.0,132.0,163.0,132.0,127.0,141.0,118.0,117.0,125.0,100.0,103.0,93.0,108.0,95.0,81.0,85.0,75.0,90.0,76.0,67.0,71.0,58.0,80.0,63.0,55.0,58.0,51.0,51.0,36.0,33.0,37.0,26.0,22.0,20.0,28.0,14.0,23.0,22.0,23.0,22.0,15.0,9.0,18.0,12.0,6.0,4.0,12.0,11.0,6.0,6.0,7.0,4.0,2.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2890,7199,588,0,860,1028,1002,879,976,985,977,879,702,601,480,393,327,229,133,104,60,39,15,6,2,0,10463,104,94,16,0,10467,117,77,16,0,2485,95,326,1506,188,74,3115,2888,0,2224,8382,71,0,16,761,134,1,2,0,21,0,0,47,9695,0,151,215,644,57,15,18,1441,8136,0,2427,2806,363,27,6,5048,0,1.748397435897436,0.0,2.655504096900606,0.0,9.429989697480565,41,45,204,14,5,4,448,2099,0,80,48,47,111,224,304,406,246,488,299,192,117,145,69,78,3,2836,24,2710,150,2627,233,451,2409,2676,184,978,1882,1365,1495,754,2106,2789,71,2692,168,1741,951,1495,1365,2107,753,1345,1515,411,2449,393,2467,49,2811,350,1781,652,77,15,1572,1288,0,3,152,33,1,1,0,4,0,0,13,2653,0,1.874086956521739,1.839652173913044,1.2142857142857142,1.0384615384615383,1.0384615384615383,45.518181818181816 +91015,Veraguas,Santiago,Santiago Este,531,2,16,0,0,0,0,0,0,0,0,0,0,0,0,1,362,80,12,421,22,1,0,0,11,0,430,0,0,10,3,0,6,0,6,5,359,69,3,17,0,2,434,11,1,0,0,9,455,0,39,18,0,27,10,0,2,19,406,28,0,0,425,0,12,4,0,14,0,450,1,2,0,2,0,0,126,318,0,11,0,0,0,427,24,1,0,0,0,1,0,0,2,0,0,549,6.800443458980045,10.490022172949002,6.986696230598669,12.753880266075388,1.0175824175824175,3.7406593406593407,2.345054945054945,463,229,431,37,161,13,22,22,2,43,3,6,17,0,41,18,5,38,22,10,13,1198,180,0,467,911,0,1006,372,0,1285,93,0,376,1002,0,299,77,968,34,0,35,15,20,8,29,26,48,40,36,244,0,0,1,37,77,107,41,73,294,1,11,28,26,48,45,49,18,4,3,14,0,0,0,0,0,548,51,668,0,1,8,1,139,230,255,34,10,432,15,36,22,58,0,31,0,1,713,736,195,236,24,135,1,0,3,1,11,45,7,389,9,0,0,725,393,1,11,24,96,3,14,0,0,1,35,56,49,29,95,14,101,68,151,575,152,45,91,139,78,183,58,68,29,13,5,4,0,0,9,19.0,13.0,17.0,22.0,17.0,15.0,21.0,17.0,21.0,20.0,25.0,24.0,19.0,24.0,18.0,17.0,19.0,15.0,16.0,13.0,26.0,27.0,27.0,22.0,17.0,21.0,24.0,17.0,19.0,15.0,24.0,17.0,18.0,12.0,18.0,13.0,12.0,19.0,16.0,12.0,26.0,17.0,23.0,14.0,18.0,23.0,17.0,17.0,19.0,22.0,20.0,22.0,13.0,19.0,20.0,13.0,11.0,22.0,20.0,17.0,21.0,20.0,19.0,17.0,17.0,12.0,16.0,18.0,12.0,19.0,10.0,10.0,7.0,15.0,7.0,9.0,6.0,7.0,14.0,6.0,10.0,7.0,7.0,5.0,8.0,6.0,3.0,3.0,5.0,1.0,0.0,0.0,1.0,2.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,292,923,234,0,88,94,110,80,119,96,89,72,98,98,94,83,94,77,49,42,37,18,5,5,1,0,1437,3,8,1,0,1438,3,7,1,0,366,23,32,228,56,3,449,292,0,975,468,6,0,1,30,12,0,0,0,0,0,0,12,1394,0,69,59,241,6,0,12,388,674,0,314,439,153,11,0,532,0,2.0838414634146343,0.0,2.768577494692144,0.0,8.641821946169772,27,14,88,5,0,6,137,186,0,12,17,15,16,46,61,69,48,80,34,26,16,15,1,5,2,448,15,411,52,411,52,90,373,426,37,112,351,287,176,78,385,433,30,408,55,236,172,163,300,340,123,202,261,204,259,183,280,11,452,99,210,139,15,0,292,171,0,0,6,3,0,0,0,0,0,0,2,452,0,1.5399568034557236,1.58963282937365,1.0,1.08,1.08,58.09287257019439 +91016,Veraguas,Santiago,Santiago Sur,590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,250,155,11,398,7,5,0,0,6,0,326,0,1,42,9,3,35,0,0,0,6,384,5,20,0,1,368,48,0,0,0,0,416,0,121,6,0,24,23,0,3,6,379,28,0,0,294,85,8,10,3,16,0,407,1,0,0,0,8,0,35,314,0,67,0,0,0,288,70,9,42,0,0,4,0,1,1,1,0,590,5.164804469273743,9.91899441340782,5.653631284916201,12.631284916201118,1.0120192307692308,3.5913461538461537,2.1899038461538463,421,237,433,29,77,10,14,7,3,12,5,6,13,0,19,9,10,4,16,13,5,888,327,0,93,1122,0,186,1029,0,1051,164,0,326,889,0,304,22,749,140,0,153,2,16,0,25,49,54,47,54,264,0,0,1,31,74,108,33,40,161,0,1,8,20,16,21,14,16,3,1,3,0,0,0,0,0,386,53,647,0,11,31,9,10,220,309,38,70,117,16,52,10,11,0,189,30,0,665,602,70,183,11,154,2,0,3,2,28,120,6,299,5,0,0,821,211,1,2,7,39,2,3,0,0,2,6,22,8,12,61,101,35,12,180,634,263,49,71,86,53,24,44,23,14,1,0,0,0,0,5,10.0,13.0,17.0,12.0,21.0,18.0,21.0,24.0,26.0,19.0,26.0,19.0,23.0,15.0,22.0,33.0,16.0,15.0,22.0,14.0,13.0,22.0,16.0,18.0,22.0,30.0,14.0,19.0,18.0,8.0,16.0,15.0,9.0,13.0,15.0,14.0,18.0,21.0,14.0,10.0,16.0,11.0,8.0,24.0,11.0,19.0,16.0,11.0,14.0,15.0,15.0,20.0,12.0,18.0,15.0,15.0,13.0,10.0,9.0,23.0,13.0,15.0,9.0,15.0,18.0,10.0,16.0,15.0,10.0,10.0,12.0,8.0,12.0,4.0,8.0,7.0,7.0,10.0,5.0,10.0,7.0,7.0,4.0,4.0,4.0,2.0,5.0,4.0,4.0,2.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,286,790,191,0,73,108,105,100,91,89,68,77,70,75,80,70,70,61,44,39,26,17,3,0,1,0,1262,3,0,2,0,1262,3,0,2,0,413,1,8,134,27,2,396,286,0,680,585,2,0,0,17,9,0,0,0,0,0,0,5,1236,0,14,7,151,4,0,0,299,792,0,107,256,11,1,0,892,0,2.777562862669245,0.0,3.8114754098360657,0.0,6.6732438831886345,3,3,65,3,0,0,95,252,0,27,65,23,58,81,51,31,27,29,11,7,6,3,2,0,0,403,18,291,130,275,146,45,376,267,154,17,404,114,307,9,412,324,97,240,181,163,77,39,382,18,403,77,344,193,228,184,237,4,417,99,228,82,12,0,314,107,0,0,6,2,0,0,0,0,0,0,2,411,0,1.5795724465558194,1.429928741092637,0.0,1.0,1.0,54.82422802850356 +91101,Veraguas,Soná,Soná,4007,72,18,28,0,1,0,0,0,0,0,0,3,0,0,1666,1054,551,69,3131,140,0,0,0,65,4,3208,6,1,36,8,21,55,0,5,2863,139,295,5,25,2,11,3185,79,3,0,0,73,3340,0,256,47,119,252,111,0,384,177,2607,143,1,28,3174,65,0,82,18,0,1,3309,11,7,0,1,12,0,1574,1649,0,115,2,0,1859,1392,29,5,1,8,0,9,0,1,32,4,2585,1544,6.6832317073170735,16.647865853658537,6.720731707317073,16.79359756097561,1.0134730538922156,3.804491017964072,2.568263473053892,3388,1909,4447,247,1231,174,184,149,35,252,53,31,136,6,140,58,36,91,66,23,57,9407,2223,0,3509,8121,0,7106,4524,0,10554,1076,0,3908,7722,0,3454,454,7043,679,0,721,140,208,50,253,319,471,374,359,1511,6,21,14,358,522,918,299,455,2125,4,14,171,298,472,638,439,288,52,7,120,0,1,1,1,0,4039,582,5846,0,40,238,133,609,2561,2002,165,509,2733,202,533,246,402,11,290,55,5,6097,6145,1385,1650,254,1021,130,0,29,8,43,665,49,4257,24,0,0,5813,2857,16,37,347,1227,49,119,2,0,8,181,606,303,289,894,174,601,284,1281,6771,1055,427,460,773,660,672,398,478,305,135,29,27,8,20,24,152.0,130.0,162.0,168.0,172.0,191.0,192.0,186.0,212.0,210.0,221.0,202.0,196.0,230.0,209.0,233.0,219.0,183.0,202.0,197.0,192.0,206.0,202.0,212.0,194.0,178.0,193.0,177.0,169.0,174.0,145.0,151.0,160.0,154.0,154.0,165.0,146.0,159.0,163.0,165.0,147.0,165.0,155.0,136.0,156.0,163.0,153.0,123.0,133.0,145.0,142.0,129.0,144.0,133.0,130.0,131.0,118.0,119.0,118.0,127.0,125.0,123.0,104.0,110.0,101.0,94.0,94.0,84.0,99.0,87.0,76.0,67.0,83.0,68.0,62.0,65.0,54.0,55.0,60.0,41.0,52.0,45.0,47.0,47.0,59.0,35.0,45.0,25.0,27.0,17.0,28.0,18.0,11.0,10.0,10.0,9.0,2.0,6.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2833,7823,1586,0,784,991,1058,1034,1006,891,764,798,759,717,678,613,563,458,356,275,250,149,77,19,2,0,12130,63,38,11,0,12130,72,29,11,0,2787,70,276,2061,441,56,3719,2832,0,5675,6513,54,0,6,95,4,0,1,0,6,0,0,72,12058,0,113,96,469,43,5,9,849,10658,0,2192,3707,635,40,1,5667,0,2.249763481551561,0.0,3.216666666666667,0.0,8.462506126449927,47,34,168,18,3,2,266,2850,0,274,201,133,226,365,398,363,264,397,246,172,116,135,42,46,7,3281,107,2886,502,2949,439,631,2757,3030,358,732,2656,1522,1866,698,2690,3038,350,2755,633,2306,449,1299,2089,2170,1218,1127,2261,427,2961,389,2999,13,3375,472,1747,1082,87,1,2077,1311,0,2,32,1,0,1,0,0,0,0,20,3332,0,1.7990557686633226,1.813219238713485,1.0666666666666669,1.044776119402985,1.044776119402985,54.55578512396694 +91102,Veraguas,Soná,Bahía Honda,299,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,133,26,151,10,18,0,0,8,0,0,0,8,115,1,14,49,0,0,0,0,177,3,7,0,0,114,71,0,0,0,2,187,0,70,12,1,30,5,0,0,0,170,17,0,0,112,64,1,6,4,0,0,181,1,0,0,0,5,0,7,124,1,53,2,0,0,129,8,9,6,5,0,29,0,0,0,1,0,305,3.905109489051095,6.043795620437956,5.160583941605839,15.54014598540146,1.0160427807486632,2.786096256684492,1.6844919786096255,190,111,273,7,55,1,8,1,1,11,2,0,8,0,7,4,1,2,3,1,4,207,416,0,10,613,0,32,591,0,545,78,0,181,442,0,178,3,380,62,0,62,7,3,1,20,31,31,43,53,160,0,0,0,21,28,84,11,19,47,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,243,7,300,0,0,2,5,2,125,154,7,12,52,7,4,3,8,0,93,79,0,390,278,9,53,3,166,1,0,14,0,30,42,1,208,1,0,0,501,48,0,0,0,1,0,0,0,0,0,1,1,0,4,25,163,4,4,48,494,79,32,11,15,19,13,1,3,0,0,0,0,0,0,1,8.0,6.0,13.0,18.0,10.0,13.0,8.0,13.0,21.0,8.0,19.0,17.0,17.0,17.0,16.0,11.0,12.0,11.0,9.0,10.0,10.0,3.0,7.0,14.0,6.0,8.0,15.0,11.0,7.0,5.0,10.0,7.0,11.0,8.0,12.0,8.0,7.0,5.0,11.0,4.0,11.0,6.0,9.0,6.0,8.0,2.0,8.0,6.0,6.0,8.0,5.0,9.0,14.0,4.0,7.0,5.0,6.0,17.0,8.0,8.0,7.0,3.0,4.0,5.0,6.0,1.0,3.0,0.0,4.0,6.0,5.0,5.0,3.0,6.0,4.0,4.0,3.0,2.0,6.0,1.0,1.0,1.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,204,400,64,0,55,63,86,53,40,46,48,35,40,30,39,44,25,14,23,16,7,1,3,0,0,0,667,1,0,0,0,667,1,0,0,0,214,5,14,50,10,2,169,204,0,600,67,1,0,0,8,1,0,0,0,0,0,0,5,654,0,2,4,204,3,0,0,417,38,0,33,44,3,0,0,588,0,3.257918552036199,0.0,4.503355704697986,0.0,5.410179640718563,1,3,70,1,0,0,108,7,0,39,23,22,32,28,21,15,3,6,1,0,0,0,0,0,0,142,48,30,160,38,152,19,171,13,177,1,189,79,111,0,190,60,130,18,172,13,5,1,189,0,190,0,190,89,101,60,130,4,186,47,101,37,5,0,165,25,0,0,3,1,0,0,0,0,0,0,3,183,0,2.0526315789473686,1.4631578947368422,0.0,1.0,1.0,53.357894736842105 +91103,Veraguas,Soná,Calidonia,506,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,247,94,289,0,72,4,0,18,0,104,2,5,126,24,6,115,0,1,31,1,307,30,13,1,0,152,229,1,0,0,1,383,0,81,5,1,18,31,0,0,1,364,18,0,0,129,205,2,16,31,0,0,341,2,0,0,0,40,0,7,133,0,232,11,0,0,152,18,0,0,175,1,26,0,0,11,0,0,519,4.8,14.152941176470588,5.511764705882353,16.611764705882354,1.0026109660574412,2.671018276762402,1.4464751958224542,384,207,436,56,126,10,20,7,2,20,3,2,13,0,18,16,8,0,12,2,9,738,463,0,34,1167,0,168,1033,0,984,217,0,309,892,0,304,5,704,188,0,189,4,12,2,35,67,103,66,67,300,0,1,0,26,47,107,22,31,84,0,0,2,8,5,11,3,7,1,0,1,0,0,0,0,0,446,6,619,0,0,3,2,12,212,307,31,57,82,7,10,7,7,0,337,0,0,731,555,27,157,8,200,3,0,55,0,47,124,9,436,1,0,0,949,105,0,0,3,13,0,1,0,0,0,8,7,6,4,31,224,11,12,149,867,154,115,46,27,21,29,16,5,3,2,0,0,0,0,1,21.0,18.0,17.0,29.0,20.0,19.0,22.0,20.0,34.0,15.0,31.0,26.0,21.0,24.0,27.0,19.0,28.0,17.0,29.0,18.0,13.0,25.0,17.0,17.0,14.0,11.0,16.0,11.0,17.0,17.0,19.0,12.0,6.0,12.0,7.0,12.0,9.0,17.0,13.0,13.0,16.0,14.0,14.0,18.0,9.0,17.0,10.0,15.0,11.0,23.0,22.0,14.0,10.0,6.0,15.0,14.0,9.0,11.0,14.0,16.0,14.0,15.0,19.0,14.0,13.0,12.0,14.0,13.0,9.0,12.0,11.0,9.0,13.0,11.0,8.0,9.0,7.0,3.0,7.0,4.0,3.0,6.0,12.0,7.0,6.0,5.0,5.0,3.0,3.0,2.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,344,742,200,0,105,110,129,111,86,72,56,64,71,76,67,64,75,60,52,30,34,18,5,0,1,0,1275,1,0,10,0,1275,1,0,10,0,402,3,81,87,47,0,322,344,0,861,424,1,0,1,16,4,0,0,0,0,0,0,7,1258,0,0,4,26,0,1,0,7,1248,0,57,193,14,2,1,1019,0,3.1842696629213485,0.0,4.42443729903537,0.0,5.116640746500778,0,2,13,0,0,0,5,364,0,66,48,46,57,72,38,16,14,18,6,2,1,0,0,0,0,252,132,83,301,97,287,42,342,74,310,5,379,244,140,12,372,259,125,80,304,28,52,8,376,17,367,28,356,296,88,287,97,5,379,95,188,93,8,0,324,60,0,0,4,2,0,0,0,0,0,0,1,377,0,1.9036458333333333,1.4453125,0.0,1.0,1.0,57.578125 +91104,Veraguas,Soná,Cativé,295,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,174,20,194,3,10,0,0,10,0,70,0,0,97,1,0,49,0,0,0,0,192,17,7,0,1,102,115,0,0,0,0,217,0,75,8,0,7,19,0,0,1,209,6,0,1,69,125,0,10,11,0,2,197,0,0,0,0,20,0,1,118,0,97,1,0,0,136,9,0,32,15,0,25,0,0,0,0,0,326,6.075862068965518,15.427586206896551,6.855172413793103,22.689655172413797,1.0,1.6267281105990783,0.6175115207373272,217,142,262,14,43,13,8,2,4,11,4,4,1,0,6,2,2,2,9,4,1,335,340,0,8,667,0,36,639,0,546,129,0,168,507,0,165,3,415,92,0,93,2,4,0,25,42,52,31,35,205,0,0,0,24,24,49,18,17,37,0,0,2,0,7,8,0,0,0,0,0,0,0,0,0,0,236,38,337,0,3,9,23,5,102,191,9,30,24,1,7,6,2,0,226,0,1,396,329,18,73,6,145,1,0,23,1,44,51,6,248,3,0,0,557,48,0,0,1,5,0,0,0,0,1,2,3,5,4,4,166,6,3,80,580,44,38,24,11,7,13,2,1,1,1,0,0,0,0,3,10.0,15.0,11.0,14.0,11.0,8.0,7.0,10.0,16.0,12.0,8.0,16.0,12.0,10.0,13.0,15.0,20.0,8.0,17.0,10.0,14.0,10.0,8.0,9.0,8.0,10.0,10.0,7.0,5.0,8.0,9.0,7.0,11.0,12.0,7.0,10.0,9.0,13.0,7.0,4.0,5.0,12.0,5.0,13.0,7.0,8.0,6.0,12.0,8.0,6.0,6.0,11.0,6.0,13.0,8.0,8.0,6.0,9.0,13.0,8.0,9.0,5.0,10.0,7.0,5.0,8.0,11.0,6.0,5.0,4.0,8.0,7.0,7.0,6.0,4.0,3.0,3.0,2.0,3.0,1.0,5.0,3.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,173,454,98,0,61,53,59,70,49,40,46,43,42,40,44,44,36,34,32,12,10,3,6,1,0,0,719,0,0,6,0,719,0,0,6,0,223,2,1,98,14,0,214,173,0,424,301,0,0,0,1,0,0,0,0,0,1,0,2,721,0,1,0,158,0,0,0,221,345,0,27,99,5,0,0,594,0,3.147058823529412,0.0,4.423913043478261,0.0,5.055172413793104,0,0,46,0,0,0,61,110,0,67,19,33,41,23,10,13,6,2,0,2,0,0,0,0,1,160,57,60,157,68,149,27,190,55,162,2,215,75,142,3,214,117,100,51,166,1,50,9,208,4,213,11,206,192,25,156,61,0,217,37,122,57,1,0,197,20,0,0,1,0,0,0,0,0,1,0,2,213,0,1.824884792626728,1.5161290322580645,0.0,1.0,1.0,53.40092165898618 +91105,Veraguas,Soná,El Marañón,878,199,0,3,0,0,0,0,0,0,0,0,0,0,0,0,249,491,67,634,106,23,0,0,42,2,541,3,4,76,15,11,152,0,5,239,21,465,13,48,1,20,575,196,1,0,0,35,807,0,179,46,1,24,23,0,1,10,744,52,0,0,572,76,0,89,46,24,0,799,0,1,0,0,7,0,95,511,0,200,1,0,6,675,18,43,15,21,0,18,0,1,7,3,0,1080,5.901287553648069,16.505007153075823,6.683834048640915,21.14878397711016,1.0049566294919454,2.603469640644362,1.546468401486989,811,430,998,46,197,24,38,11,6,40,7,12,19,1,41,10,7,28,19,23,12,1631,862,0,278,2215,0,955,1538,0,2108,385,0,678,1815,0,632,46,1582,233,0,233,16,49,30,74,88,139,107,106,611,2,6,1,79,105,130,77,60,349,3,15,30,35,37,50,40,10,8,0,3,0,0,0,0,0,911,90,1239,0,1,37,32,37,443,519,40,200,315,19,67,81,111,0,390,1,0,1399,1241,106,480,82,300,4,0,12,0,25,237,16,806,0,0,0,1659,460,1,17,13,84,4,2,0,0,0,11,36,18,30,129,162,75,76,464,1711,337,109,113,116,98,78,36,29,7,5,0,1,0,0,0,36.0,39.0,36.0,36.0,41.0,49.0,49.0,37.0,35.0,42.0,55.0,40.0,40.0,52.0,41.0,52.0,50.0,39.0,36.0,37.0,45.0,34.0,39.0,25.0,38.0,44.0,38.0,42.0,35.0,32.0,42.0,28.0,35.0,37.0,36.0,40.0,22.0,35.0,26.0,38.0,35.0,32.0,43.0,37.0,36.0,39.0,33.0,24.0,28.0,33.0,22.0,22.0,32.0,30.0,28.0,19.0,27.0,29.0,30.0,30.0,29.0,16.0,35.0,26.0,21.0,16.0,22.0,23.0,18.0,19.0,15.0,17.0,21.0,10.0,16.0,13.0,10.0,18.0,11.0,12.0,13.0,14.0,20.0,11.0,11.0,5.0,2.0,8.0,4.0,6.0,6.0,2.0,5.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,628,1661,351,0,188,212,228,214,181,191,178,161,183,157,134,135,127,98,79,64,69,25,15,0,1,0,2629,4,0,7,0,2629,4,0,7,0,759,12,29,269,72,2,869,628,0,1581,1059,0,0,1,8,1,0,0,0,0,0,0,33,2597,0,6,11,321,5,0,0,644,1653,0,238,588,37,3,0,1774,0,2.70706106870229,0.0,3.660220994475138,0.0,6.476893939393939,1,6,112,2,0,0,212,478,0,122,99,81,109,140,91,46,40,45,21,11,2,2,2,0,0,690,121,439,372,439,372,61,750,447,364,40,771,417,394,7,804,584,227,429,382,219,210,116,695,292,519,139,672,439,372,378,433,2,809,191,418,187,15,0,560,251,0,0,2,0,0,0,0,0,0,0,5,804,0,1.7250308261405671,1.530209617755857,1.5,1.0588235294117647,1.0588235294117647,54.26387176325524 +91106,Veraguas,Soná,Guarumal,765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,264,239,24,483,20,2,0,0,21,1,460,0,2,24,2,0,37,0,2,50,0,435,8,34,0,0,498,19,1,0,0,9,527,0,135,20,1,71,11,0,0,16,503,6,2,0,467,47,0,4,7,2,0,511,0,1,0,0,15,0,65,424,0,37,1,0,4,490,0,0,0,18,0,10,0,0,4,1,0,765,6.72672064777328,16.546558704453442,6.947368421052632,18.65182186234818,1.0075901328273245,3.3851992409867173,2.225806451612903,531,285,391,61,90,13,19,10,7,21,2,7,19,0,17,7,4,13,9,12,15,1046,350,0,119,1277,0,644,752,0,1250,146,0,318,1078,0,300,18,984,94,0,94,18,11,0,37,50,81,83,88,333,0,1,5,50,67,118,30,41,206,0,5,7,12,16,24,5,11,1,0,2,0,0,0,0,0,522,16,766,0,0,8,6,45,217,425,25,54,113,26,33,10,57,1,173,117,1,769,687,66,206,10,220,9,12,7,1,11,187,10,404,1,0,0,1010,232,5,5,13,37,1,1,0,0,1,14,20,4,21,65,145,33,27,208,754,251,92,93,92,58,54,21,22,12,4,0,0,0,2,1,13.0,17.0,12.0,18.0,15.0,11.0,14.0,17.0,17.0,18.0,22.0,25.0,24.0,18.0,24.0,17.0,26.0,20.0,22.0,17.0,16.0,17.0,26.0,16.0,28.0,10.0,16.0,10.0,17.0,18.0,15.0,10.0,17.0,13.0,9.0,20.0,16.0,14.0,18.0,11.0,13.0,12.0,21.0,19.0,16.0,20.0,13.0,18.0,21.0,20.0,18.0,20.0,35.0,22.0,25.0,14.0,23.0,11.0,26.0,18.0,18.0,19.0,23.0,14.0,20.0,15.0,20.0,22.0,15.0,16.0,15.0,15.0,16.0,9.0,18.0,12.0,8.0,8.0,11.0,12.0,10.0,7.0,11.0,10.0,8.0,2.0,3.0,5.0,2.0,7.0,5.0,4.0,3.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,898,293,0,75,77,113,102,103,71,64,79,81,92,120,92,94,88,73,51,46,19,12,4,0,0,1453,1,2,0,0,1453,1,2,0,0,411,11,19,239,56,1,454,265,0,922,531,3,0,0,3,0,0,0,0,0,0,0,5,1448,0,10,16,167,6,1,0,223,1033,0,120,382,46,5,0,903,0,2.842809364548495,0.0,3.687927107061504,0.0,6.640796703296704,3,7,61,3,1,0,83,373,0,48,74,42,88,89,74,35,23,29,9,9,4,3,1,3,0,513,18,391,140,409,122,55,476,403,128,28,503,224,307,16,515,418,113,359,172,240,119,45,486,204,327,94,437,183,348,216,315,1,530,158,250,109,14,0,417,114,0,0,0,0,0,0,0,0,0,0,2,529,0,1.448210922787194,1.2937853107344632,0.0,1.105263157894737,1.105263157894737,58.15254237288136 +91107,Veraguas,Soná,La Soledad,654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,259,12,428,27,3,0,0,8,1,375,0,4,40,4,6,38,0,0,153,105,186,5,18,0,0,420,36,1,0,0,10,467,0,127,19,0,12,29,0,1,6,453,7,0,0,369,71,1,12,14,0,0,438,1,0,0,0,28,0,79,311,0,77,0,0,1,447,9,0,0,8,0,2,0,0,0,0,0,654,5.964989059080962,9.824945295404817,6.457330415754924,14.11159737417943,1.0107066381156318,3.6423982869379015,2.28051391862955,472,287,509,52,102,12,9,10,5,18,3,6,11,0,57,16,9,7,16,14,6,1028,405,0,121,1312,0,226,1207,0,1237,196,0,383,1050,0,366,17,882,168,0,168,9,11,8,48,54,59,59,60,344,0,1,2,36,53,112,42,74,218,0,5,3,5,14,16,3,24,1,0,4,0,0,0,0,0,523,53,734,0,0,38,10,27,263,346,18,80,195,30,46,15,23,1,235,3,0,813,683,76,334,16,62,4,0,56,0,21,146,5,457,3,0,0,1014,230,2,6,15,38,1,4,0,0,0,6,24,10,16,56,84,33,30,317,849,198,69,80,127,61,51,19,27,5,2,1,2,1,1,3,6.0,13.0,22.0,22.0,20.0,17.0,14.0,35.0,18.0,19.0,25.0,18.0,35.0,25.0,22.0,27.0,27.0,34.0,32.0,26.0,26.0,19.0,25.0,17.0,23.0,16.0,10.0,16.0,12.0,13.0,9.0,19.0,24.0,18.0,16.0,16.0,21.0,22.0,19.0,19.0,21.0,16.0,24.0,25.0,20.0,17.0,17.0,21.0,25.0,19.0,12.0,16.0,17.0,18.0,15.0,12.0,22.0,19.0,15.0,15.0,16.0,22.0,19.0,15.0,9.0,19.0,8.0,16.0,14.0,13.0,11.0,11.0,7.0,15.0,7.0,17.0,5.0,6.0,7.0,7.0,8.0,9.0,12.0,6.0,7.0,5.0,8.0,3.0,1.0,4.0,4.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,311,953,232,0,83,103,125,146,110,67,86,97,106,99,78,83,81,70,51,42,42,21,6,0,0,0,1496,0,0,0,0,1496,0,0,0,0,424,13,8,204,39,0,497,311,0,837,659,0,0,0,0,0,0,0,0,0,0,0,7,1489,0,67,146,217,4,0,1,160,901,0,171,454,33,0,0,838,0,2.84991568296796,0.0,3.846522781774581,0.0,6.497326203208556,26,56,77,1,0,1,43,268,0,23,71,27,65,81,71,45,33,31,12,4,2,5,0,2,0,449,23,335,137,344,128,62,410,340,132,25,447,286,186,4,468,364,108,317,155,252,65,52,420,58,414,104,368,254,218,305,167,3,469,101,259,104,8,0,374,98,0,0,0,0,0,0,0,0,0,0,2,470,0,1.722457627118644,1.4470338983050848,1.0,1.0,1.0,56.34745762711864 +91108,Veraguas,Soná,Quebrada de Oro,357,45,0,0,0,0,0,0,0,0,0,0,0,0,0,1,91,186,9,257,21,1,0,0,7,1,184,0,3,30,2,2,66,0,0,0,17,252,0,18,0,0,219,60,0,0,0,8,287,0,73,4,0,37,1,0,1,0,278,7,1,0,200,68,0,6,12,1,0,276,0,1,0,0,10,0,53,166,0,68,0,0,0,190,52,10,0,17,0,14,0,2,2,0,0,402,6.768595041322314,22.487603305785125,6.921487603305785,23.727272727272727,1.0139372822299653,3.1149825783972127,2.0313588850174216,291,187,388,39,73,10,12,3,5,19,2,2,4,0,14,9,1,6,11,8,9,583,395,0,64,914,0,223,755,0,853,125,0,243,735,0,233,10,625,110,0,112,3,12,1,22,43,49,46,76,236,0,0,0,23,45,85,20,34,115,0,4,4,8,6,14,12,8,0,0,0,0,0,0,0,0,400,42,440,0,0,17,6,15,161,199,32,33,118,19,21,20,28,4,218,5,0,587,448,38,203,20,112,15,1,44,0,3,84,5,137,0,0,0,711,133,0,5,4,29,0,0,0,0,0,13,6,7,8,49,111,27,13,208,643,111,51,56,73,39,22,16,15,7,0,1,1,0,0,0,16.0,10.0,17.0,14.0,16.0,12.0,20.0,19.0,12.0,17.0,13.0,29.0,14.0,15.0,16.0,19.0,23.0,14.0,18.0,16.0,19.0,18.0,24.0,19.0,12.0,13.0,8.0,15.0,13.0,9.0,14.0,19.0,11.0,7.0,18.0,6.0,11.0,9.0,20.0,7.0,15.0,9.0,11.0,13.0,13.0,12.0,11.0,17.0,7.0,13.0,10.0,11.0,8.0,10.0,13.0,15.0,16.0,14.0,10.0,15.0,9.0,8.0,7.0,10.0,15.0,6.0,5.0,4.0,8.0,7.0,8.0,5.0,9.0,6.0,6.0,8.0,8.0,5.0,3.0,4.0,3.0,6.0,4.0,3.0,5.0,8.0,3.0,1.0,3.0,3.0,4.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,240,654,141,0,73,80,87,90,92,58,69,53,61,60,52,70,49,30,34,28,21,18,7,2,1,0,1034,1,0,0,0,1034,1,0,0,0,340,2,15,101,32,4,301,240,0,627,406,2,0,12,29,0,0,0,0,1,0,0,6,987,0,11,81,111,3,0,2,56,771,0,73,188,12,7,0,755,0,3.077956989247312,0.0,4.110687022900764,0.0,6.142028985507246,1,21,46,1,0,1,18,203,0,28,19,26,33,57,42,27,16,20,9,9,1,4,0,0,0,252,39,165,126,158,133,38,253,150,141,7,284,163,128,4,287,182,109,136,155,85,51,23,268,61,230,29,262,206,85,219,72,0,291,55,159,74,3,0,244,47,0,2,10,0,0,0,0,1,0,0,1,277,0,2.0171821305841924,1.5395189003436427,0.0,1.0,1.0,55.93814432989691 +91109,Veraguas,Soná,Río Grande,666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,348,82,2,427,4,0,0,0,2,0,326,0,2,22,14,12,57,0,0,225,0,195,0,1,0,12,362,66,0,0,0,5,433,0,135,20,1,64,13,0,0,2,426,4,1,0,278,143,0,6,5,1,0,419,0,0,1,0,13,0,38,315,1,79,0,0,0,401,8,9,1,4,0,8,0,1,0,1,0,666,5.268948655256724,13.17359413202934,6.992665036674817,18.726161369193157,1.0046189376443415,3.323325635103926,2.0831408775981526,435,256,508,41,119,18,5,3,4,19,4,1,3,0,19,7,6,6,4,11,6,710,639,0,58,1291,0,432,917,0,1169,180,0,435,914,0,425,10,786,128,0,133,22,18,2,53,58,67,74,76,278,0,1,0,49,79,126,43,64,143,0,1,17,7,7,15,5,8,1,0,2,0,0,0,0,0,416,48,742,0,7,7,29,12,302,335,47,46,89,12,65,3,14,1,238,33,0,768,648,45,167,7,198,13,9,16,0,14,132,9,458,0,0,0,1000,177,0,1,5,20,1,2,0,0,0,8,10,3,11,45,159,54,21,153,979,172,89,53,53,23,20,9,14,2,2,0,0,0,0,0,10.0,17.0,17.0,23.0,18.0,24.0,19.0,30.0,28.0,24.0,39.0,44.0,30.0,19.0,23.0,30.0,38.0,33.0,29.0,20.0,19.0,18.0,15.0,21.0,14.0,12.0,17.0,18.0,13.0,9.0,18.0,15.0,11.0,12.0,21.0,17.0,16.0,25.0,13.0,17.0,20.0,16.0,22.0,21.0,12.0,22.0,16.0,17.0,5.0,18.0,15.0,15.0,13.0,12.0,21.0,17.0,17.0,12.0,13.0,12.0,13.0,15.0,10.0,13.0,18.0,11.0,5.0,13.0,10.0,13.0,11.0,11.0,12.0,12.0,9.0,7.0,7.0,7.0,10.0,5.0,4.0,5.0,8.0,4.0,2.0,3.0,6.0,5.0,2.0,2.0,2.0,4.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,365,856,195,0,85,125,155,150,87,69,77,88,91,78,76,71,69,52,55,36,23,18,9,2,0,0,1415,1,0,0,0,1415,1,0,0,0,474,0,35,118,37,1,387,364,0,977,438,1,0,1,38,6,0,0,0,0,0,0,23,1348,0,19,243,330,34,0,1,237,552,0,76,316,9,4,0,1011,0,3.159132007233273,0.0,4.326370757180157,0.0,6.106638418079096,7,81,108,18,0,0,71,150,0,88,62,53,53,76,42,23,13,16,3,4,1,1,0,0,0,418,17,259,176,289,146,42,393,295,140,12,423,158,277,3,432,246,189,242,193,208,34,16,419,71,364,44,391,259,176,259,176,3,432,107,239,86,3,0,328,107,0,0,4,0,0,0,0,0,0,0,6,425,0,1.7655172413793103,1.4896551724137932,0.0,1.0,1.0,54.84827586206897 +91110,Veraguas,Soná,Rodeo Viejo,614,182,0,0,0,0,0,0,0,0,0,0,0,0,0,1,55,438,59,457,37,50,0,0,9,0,121,25,0,155,11,5,234,1,1,0,0,513,17,23,0,0,215,338,0,0,0,0,553,0,197,11,0,21,14,0,1,1,538,8,5,0,158,295,0,74,26,0,0,546,0,0,0,0,7,0,20,190,1,337,4,1,1,324,44,7,45,114,0,16,0,0,2,0,0,796,6.387533875338754,19.4390243902439,6.913279132791328,23.520325203252032,1.0,2.5913200723327305,1.535262206148282,553,275,654,15,138,25,32,11,7,20,6,4,9,0,17,24,12,13,14,6,11,751,905,0,51,1605,0,136,1520,0,1372,284,0,406,1250,0,396,10,998,252,0,254,6,13,5,45,79,119,112,106,447,0,0,1,36,71,90,36,48,123,1,6,7,17,7,5,7,10,3,0,2,0,0,0,0,0,680,23,807,0,1,5,8,16,272,394,39,86,56,11,20,25,20,0,567,0,0,988,761,33,324,26,274,14,0,28,0,70,187,14,254,2,0,0,1321,159,1,4,1,21,1,2,0,0,0,6,8,7,2,28,277,16,8,351,1260,246,83,54,25,26,22,12,11,4,3,0,0,0,1,2,25.0,26.0,19.0,23.0,21.0,20.0,21.0,27.0,25.0,32.0,33.0,20.0,39.0,30.0,39.0,29.0,32.0,21.0,24.0,21.0,35.0,16.0,27.0,20.0,17.0,13.0,19.0,18.0,22.0,10.0,23.0,17.0,14.0,14.0,18.0,21.0,24.0,22.0,19.0,20.0,15.0,21.0,15.0,19.0,20.0,28.0,20.0,22.0,23.0,18.0,27.0,19.0,18.0,21.0,30.0,22.0,13.0,24.0,20.0,13.0,21.0,22.0,26.0,14.0,18.0,14.0,13.0,19.0,21.0,18.0,22.0,16.0,20.0,14.0,13.0,14.0,10.0,9.0,11.0,12.0,13.0,12.0,7.0,7.0,8.0,11.0,7.0,6.0,6.0,6.0,4.0,3.0,5.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,400,1025,324,0,114,125,161,127,115,82,86,106,90,111,115,92,101,85,85,56,47,36,13,0,2,0,1743,0,0,6,0,1743,0,0,6,0,512,1,61,131,92,1,551,400,0,1396,353,0,0,1,3,0,0,0,0,0,0,0,13,1732,0,87,6,62,3,0,0,236,1355,0,52,274,13,5,0,1405,0,3.1612403100775195,0.0,4.169934640522876,0.0,5.277301315037164,20,1,24,1,0,0,74,433,0,112,56,67,110,107,36,21,12,19,4,2,4,1,1,1,0,336,217,123,430,133,420,45,508,122,431,11,542,384,169,11,542,236,317,140,413,98,42,19,534,22,531,32,521,431,122,368,185,6,547,139,254,152,8,0,431,122,0,0,1,0,0,0,0,0,0,0,4,548,0,1.786618444846293,1.376130198915009,0.0,1.0,1.0,58.35262206148282 +91111,Veraguas,Soná,Hicaco,901,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,207,378,28,513,73,2,0,0,24,2,530,0,1,39,12,6,23,0,3,227,0,375,1,6,2,3,570,38,0,0,0,6,614,0,186,10,14,69,9,0,2,33,568,11,0,0,477,108,0,7,19,3,0,599,0,11,0,0,4,0,45,476,1,87,1,4,1,532,34,18,13,0,0,11,0,0,4,1,0,902,6.430335097001763,10.132275132275131,6.670194003527337,15.037037037037036,1.006514657980456,3.2996742671009773,2.099348534201954,618,359,706,53,154,22,24,11,5,36,2,1,16,0,17,17,3,1,14,0,4,1422,476,0,162,1736,0,1095,803,0,1687,211,0,515,1383,0,491,24,1227,156,0,156,14,24,1,66,74,117,95,113,299,0,0,0,81,131,161,62,98,292,0,0,8,9,21,49,10,9,2,1,3,0,0,0,2,0,795,20,882,0,0,7,8,25,329,378,67,83,306,23,164,9,21,0,102,183,2,1058,949,41,365,10,350,17,1,24,2,31,108,8,429,0,0,0,1291,314,0,0,18,68,2,3,1,0,6,41,24,24,24,163,220,84,25,204,1129,232,94,136,140,135,56,26,36,16,6,1,0,0,0,0,22.0,24.0,36.0,27.0,35.0,24.0,25.0,45.0,31.0,41.0,42.0,39.0,34.0,34.0,37.0,38.0,31.0,32.0,43.0,36.0,34.0,25.0,30.0,30.0,26.0,30.0,26.0,15.0,32.0,27.0,34.0,17.0,31.0,27.0,23.0,25.0,27.0,28.0,29.0,29.0,23.0,26.0,30.0,38.0,28.0,33.0,24.0,22.0,36.0,22.0,29.0,18.0,21.0,23.0,20.0,25.0,22.0,16.0,21.0,15.0,23.0,16.0,16.0,13.0,12.0,16.0,10.0,17.0,18.0,11.0,17.0,9.0,13.0,14.0,10.0,6.0,7.0,6.0,4.0,3.0,4.0,8.0,6.0,4.0,2.0,7.0,5.0,3.0,0.0,2.0,3.0,2.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,496,1297,214,0,144,166,186,180,145,130,132,138,145,137,111,99,80,72,63,26,24,17,10,1,1,0,1941,9,53,4,0,1941,40,22,4,0,682,10,133,168,58,1,460,495,0,1199,751,57,0,0,14,1,0,2,0,0,0,0,4,1986,0,7,203,268,58,0,1,629,841,0,138,207,21,3,4,1634,0,2.7135614702154625,0.0,3.7903525046382183,0.0,6.672645739910314,5,65,89,28,0,1,171,259,0,75,61,40,66,88,87,62,34,63,20,14,4,2,1,1,0,591,27,463,155,472,146,43,575,470,148,40,578,214,404,8,610,505,113,395,223,254,141,83,535,291,327,134,484,225,393,265,353,4,614,138,328,137,15,0,419,199,0,0,2,0,0,1,0,0,0,0,0,615,0,1.7119741100323624,1.535598705501618,0.0,1.0454545454545454,1.0454545454545454,51.26375404530744 +91112,Veraguas,Soná,La Trinchera,630,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,148,309,14,379,78,4,0,0,8,2,340,0,6,43,4,3,73,0,2,67,0,381,11,9,0,3,420,43,0,0,0,8,471,0,87,17,1,19,36,0,0,3,454,13,0,1,354,100,0,3,14,0,0,436,0,0,0,0,35,0,36,359,1,73,2,0,1,408,27,2,12,4,0,15,0,0,2,0,0,631,5.479357798165138,16.46330275229358,6.759174311926605,22.889908256880734,1.0021231422505308,3.2441613588110405,2.225053078556263,472,262,515,35,161,12,12,7,10,21,6,1,10,0,23,10,8,2,7,8,8,955,487,0,135,1307,0,523,919,0,1230,212,0,406,1036,0,391,15,880,156,0,160,15,25,1,59,48,84,83,91,251,0,0,1,55,80,92,43,56,188,1,4,8,25,17,26,10,14,1,1,3,0,0,0,0,0,503,81,703,0,1,25,42,22,244,338,87,12,164,26,55,10,32,0,243,26,2,819,705,89,287,11,116,18,0,35,2,55,143,11,360,0,0,0,988,235,1,5,11,44,1,2,0,0,2,13,34,7,8,62,92,50,33,283,847,221,85,83,105,73,42,19,28,12,8,0,1,0,0,0,26.0,18.0,17.0,21.0,18.0,22.0,26.0,35.0,22.0,32.0,32.0,26.0,23.0,21.0,27.0,22.0,19.0,27.0,30.0,26.0,20.0,28.0,21.0,17.0,11.0,14.0,15.0,16.0,18.0,26.0,18.0,16.0,24.0,25.0,18.0,18.0,22.0,17.0,20.0,16.0,11.0,19.0,11.0,12.0,16.0,27.0,17.0,10.0,11.0,18.0,15.0,15.0,18.0,19.0,21.0,13.0,31.0,17.0,16.0,18.0,18.0,16.0,25.0,13.0,19.0,15.0,10.0,18.0,14.0,13.0,12.0,14.0,14.0,9.0,13.0,6.0,13.0,3.0,4.0,8.0,5.0,9.0,5.0,1.0,1.0,9.0,4.0,4.0,6.0,7.0,0.0,4.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,366,930,228,0,100,137,129,124,97,89,101,93,69,83,88,95,91,70,62,34,21,30,9,2,0,0,1520,1,1,2,0,1520,2,0,2,0,496,5,38,124,46,2,447,366,0,916,606,2,0,0,12,1,0,0,0,0,0,0,2,1509,0,10,33,299,6,0,0,75,1101,0,148,379,29,1,1,966,0,3.081034482758621,0.0,3.988066825775656,0.0,6.284776902887139,2,16,92,2,0,0,32,328,0,30,62,24,66,88,73,39,22,33,14,9,4,3,4,1,0,432,40,292,180,307,165,43,429,313,159,14,458,169,303,1,471,350,122,239,233,215,24,35,437,176,296,57,415,194,278,263,209,0,472,101,240,122,9,0,355,117,0,0,1,1,0,0,0,0,0,0,1,469,0,1.7351694915254237,1.49364406779661,0.0,1.0,1.0,56.62923728813559 +91201,Veraguas,Mariato,Llano de Catival o Mariato,1433,13,0,0,0,0,0,0,0,0,0,0,0,0,0,3,632,291,20,877,49,6,0,0,14,0,764,0,2,90,3,4,82,0,1,181,17,679,9,53,1,6,843,83,0,0,0,20,946,0,378,40,3,40,39,0,0,44,839,61,1,1,804,108,0,13,4,15,2,880,2,35,0,0,25,4,185,648,2,100,9,2,0,712,199,2,0,11,1,13,0,1,6,1,0,1446,6.3413830954994514,21.625686059275523,6.6684961580680575,22.835345773874863,1.0031712473572938,3.3276955602537,2.1659619450317127,949,542,962,95,144,33,41,22,7,32,13,5,39,0,37,14,17,18,11,1,8,2131,571,0,364,2338,0,1892,810,0,2318,384,0,754,1948,0,701,53,1680,268,0,274,27,48,5,82,132,135,124,106,470,0,0,1,106,126,203,63,93,424,3,16,21,39,40,72,57,10,9,1,11,0,1,0,3,0,1149,49,1213,0,0,9,30,45,448,595,75,50,447,53,207,27,56,5,254,139,7,1530,1354,147,475,29,445,74,0,16,9,29,178,18,719,12,0,0,1703,505,1,19,23,138,8,10,4,0,9,48,51,33,38,179,199,148,57,436,1608,265,117,175,185,185,125,70,74,45,13,1,4,3,2,12,44.0,43.0,49.0,46.0,48.0,45.0,45.0,51.0,56.0,46.0,62.0,50.0,49.0,50.0,56.0,50.0,46.0,56.0,49.0,41.0,35.0,55.0,32.0,43.0,44.0,41.0,55.0,31.0,49.0,31.0,33.0,35.0,38.0,42.0,37.0,42.0,35.0,46.0,46.0,36.0,38.0,42.0,32.0,34.0,38.0,38.0,31.0,35.0,24.0,31.0,36.0,34.0,26.0,35.0,35.0,30.0,29.0,32.0,27.0,17.0,28.0,30.0,24.0,18.0,21.0,30.0,18.0,23.0,16.0,17.0,16.0,22.0,22.0,8.0,22.0,15.0,10.0,14.0,5.0,8.0,12.0,5.0,10.0,7.0,13.0,3.0,9.0,5.0,6.0,2.0,5.0,2.0,1.0,1.0,0.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,740,1813,331,0,230,243,267,242,209,207,185,205,184,159,166,135,121,104,90,52,47,25,9,4,0,0,2742,73,54,15,0,2746,82,41,15,0,799,34,279,429,80,16,507,740,0,1740,1036,108,0,3,69,42,0,0,0,0,0,0,19,2751,0,49,74,272,26,3,2,543,1915,0,246,409,29,3,26,2171,0,2.585867620751342,0.0,3.622886866059818,0.0,6.727808599167823,16,26,105,14,0,1,191,596,0,85,66,78,99,148,135,74,61,93,45,23,12,14,6,5,5,895,54,660,289,715,234,126,823,677,272,102,847,376,573,16,933,835,114,533,416,438,95,168,781,715,234,260,689,458,491,482,467,18,931,219,497,208,25,0,723,226,0,1,11,4,0,0,0,0,0,0,7,926,0,1.612223393045311,1.4267650158061116,1.0,1.0,1.0,50.67755532139094 +91202,Veraguas,Mariato,Arenas,360,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,18,6,215,6,0,0,0,6,0,199,0,1,10,0,1,16,0,0,0,11,191,1,24,0,0,217,7,0,0,0,3,227,0,107,3,0,19,9,0,0,9,196,22,0,0,196,29,0,2,0,0,0,224,1,2,0,0,0,0,56,159,0,8,4,0,0,194,30,0,1,0,0,0,0,1,1,0,0,365,6.660714285714286,22.165178571428573,6.629464285714286,22.477678571428573,1.0044052863436124,3.2775330396475773,2.2202643171806167,228,145,175,22,35,3,3,4,1,10,1,2,9,2,7,0,0,4,4,0,3,464,139,0,59,544,0,425,178,0,541,62,0,128,475,0,116,12,431,44,0,45,3,5,1,10,29,31,27,18,158,0,0,0,29,36,45,6,22,83,2,0,11,6,9,5,16,2,2,0,2,0,0,0,0,0,275,14,265,0,1,12,0,7,84,145,22,7,76,7,14,7,10,0,171,3,0,352,288,29,172,8,54,19,0,6,0,6,34,5,231,0,0,0,416,103,0,2,10,20,1,2,0,0,0,7,6,6,5,20,46,22,22,155,347,62,32,42,51,49,31,10,4,5,5,1,0,0,1,0,8.0,8.0,9.0,12.0,8.0,8.0,4.0,8.0,14.0,7.0,10.0,6.0,9.0,11.0,12.0,10.0,5.0,10.0,7.0,14.0,7.0,10.0,8.0,11.0,9.0,11.0,10.0,7.0,5.0,10.0,8.0,4.0,10.0,9.0,6.0,5.0,4.0,6.0,13.0,10.0,8.0,10.0,9.0,8.0,9.0,12.0,7.0,13.0,9.0,11.0,11.0,9.0,6.0,11.0,13.0,8.0,7.0,4.0,9.0,5.0,4.0,4.0,5.0,7.0,6.0,3.0,9.0,2.0,4.0,4.0,3.0,6.0,2.0,5.0,7.0,5.0,7.0,2.0,5.0,3.0,6.0,1.0,4.0,5.0,3.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,134,414,92,0,45,41,48,46,45,43,37,38,44,52,50,33,26,22,23,22,19,3,1,1,1,0,633,2,1,4,0,633,2,1,4,0,269,7,56,61,17,1,95,134,0,384,255,1,0,1,8,2,0,0,0,0,0,0,0,629,0,1,4,27,0,1,0,8,599,0,40,64,7,0,0,529,0,2.476,0.0,3.216216216216216,0.0,6.8046875,1,2,12,0,0,0,5,208,0,18,19,22,36,31,33,32,7,11,10,6,0,2,0,1,0,223,5,166,62,181,47,43,185,163,65,20,208,88,140,1,227,187,41,130,98,116,14,16,212,170,58,55,173,130,98,158,70,0,228,49,129,40,10,0,180,48,0,0,3,2,0,0,0,0,0,0,0,223,0,1.543859649122807,1.263157894736842,1.0,1.0,1.0,52.89035087719298 +91203,Veraguas,Mariato,El Cacao,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,25,5,160,1,2,0,2,1,0,92,0,1,53,0,1,19,0,0,0,5,121,2,34,2,2,156,10,0,0,0,0,166,0,52,1,0,31,9,0,0,2,142,22,0,0,101,65,0,0,0,0,0,161,4,0,0,0,1,0,17,135,0,9,5,0,0,116,47,3,0,0,0,0,0,0,0,0,0,259,6.809815950920245,22.865030674846626,6.822085889570552,22.88957055214724,1.0,3.3313253012048194,2.1867469879518078,166,86,119,7,19,4,6,2,1,3,1,0,15,1,3,1,0,2,2,0,4,303,111,0,49,365,0,275,139,0,365,49,0,80,334,0,72,8,276,58,0,59,1,1,0,12,10,22,12,23,92,0,0,0,16,9,31,9,20,52,0,3,7,5,7,12,2,4,3,0,2,0,0,0,0,0,196,4,179,0,1,0,2,6,51,97,14,11,43,4,5,1,2,0,143,2,0,241,189,26,95,1,68,8,0,2,0,3,30,5,117,0,0,0,281,68,0,1,9,15,3,2,0,0,0,4,8,6,4,14,66,7,11,80,195,53,23,36,50,29,20,8,5,5,1,2,1,0,2,0,4.0,3.0,3.0,6.0,5.0,6.0,4.0,9.0,4.0,7.0,6.0,5.0,2.0,6.0,1.0,5.0,9.0,7.0,8.0,6.0,5.0,8.0,6.0,4.0,4.0,10.0,5.0,6.0,6.0,3.0,4.0,4.0,7.0,6.0,6.0,4.0,3.0,6.0,3.0,5.0,3.0,4.0,7.0,5.0,3.0,3.0,13.0,7.0,8.0,4.0,10.0,4.0,6.0,10.0,6.0,3.0,6.0,7.0,4.0,7.0,2.0,3.0,4.0,9.0,9.0,7.0,4.0,3.0,3.0,4.0,3.0,6.0,3.0,3.0,1.0,5.0,3.0,1.0,4.0,1.0,1.0,1.0,2.0,2.0,4.0,3.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,71,287,72,0,21,30,20,35,27,30,27,21,22,35,36,27,27,21,16,14,10,5,5,1,0,0,427,0,0,3,0,427,0,0,3,0,151,4,48,39,16,1,100,71,0,275,155,0,0,0,20,11,0,0,0,0,0,0,0,399,0,1,0,43,2,0,0,100,284,0,27,64,6,0,0,333,0,2.580246913580247,0.0,3.4782608695652173,0.0,6.774418604651163,1,0,21,1,0,0,36,107,0,5,21,8,21,35,31,12,6,12,6,3,2,1,1,2,0,161,5,95,71,110,56,21,145,86,80,9,157,51,115,3,163,120,46,81,85,74,7,20,146,109,57,43,123,138,28,120,46,1,165,54,70,28,14,0,133,33,0,0,5,4,0,0,0,0,0,0,0,157,0,1.4518072289156627,1.1385542168674698,0.0,1.1666666666666667,1.1666666666666667,54.12048192771084 +91204,Veraguas,Mariato,Quebro,709,9,2,0,0,0,0,0,0,0,0,0,0,0,0,2,307,105,31,406,8,11,1,0,19,0,316,0,7,52,4,12,54,0,0,0,42,347,4,48,2,2,389,47,1,0,0,8,445,0,173,12,1,52,37,0,0,9,387,47,1,1,319,116,0,7,1,1,1,407,4,17,0,2,11,4,99,256,3,81,6,0,0,297,103,1,4,27,0,7,0,0,6,0,0,720,6.9175,19.465,6.9375,19.995,1.006741573033708,3.1123595505617976,1.9146067415730337,448,238,342,40,56,9,12,9,5,17,2,1,16,0,12,10,4,5,3,4,5,781,349,0,145,985,0,697,433,0,974,156,0,265,865,0,240,25,770,95,0,95,16,19,1,51,60,64,51,50,213,1,1,0,53,56,90,32,40,142,0,0,9,19,14,23,9,8,4,1,8,0,0,0,0,0,520,13,492,0,3,2,2,36,153,250,38,15,180,6,69,10,15,1,209,42,0,654,541,39,303,11,154,23,0,2,0,18,71,6,340,2,0,0,788,174,0,2,13,39,2,7,0,0,0,20,17,12,12,54,112,37,23,246,596,147,76,70,73,87,61,20,28,22,6,4,2,0,1,2,14.0,20.0,15.0,16.0,16.0,18.0,16.0,21.0,19.0,15.0,25.0,16.0,16.0,17.0,21.0,15.0,19.0,18.0,12.0,19.0,23.0,17.0,19.0,12.0,13.0,19.0,20.0,19.0,13.0,10.0,11.0,15.0,20.0,20.0,15.0,13.0,15.0,17.0,13.0,10.0,18.0,15.0,17.0,13.0,16.0,19.0,18.0,10.0,20.0,16.0,21.0,9.0,12.0,13.0,12.0,14.0,13.0,15.0,11.0,15.0,16.0,18.0,6.0,23.0,15.0,9.0,12.0,13.0,10.0,12.0,7.0,14.0,12.0,9.0,4.0,10.0,6.0,4.0,5.0,2.0,5.0,5.0,0.0,4.0,3.0,3.0,1.0,4.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,265,772,158,0,81,89,95,83,84,81,81,68,79,83,67,68,78,56,46,27,17,9,1,2,0,0,1157,17,17,4,0,1159,28,4,4,0,433,10,157,121,20,8,181,265,0,771,381,43,0,3,23,4,0,0,0,0,0,0,3,1162,0,3,7,195,14,1,0,256,719,0,86,168,16,2,23,900,0,2.7311827956989245,0.0,3.654434250764526,0.0,6.4569037656903765,1,4,86,6,0,0,104,247,0,30,65,33,58,66,52,41,26,32,15,7,8,11,2,2,0,415,33,289,159,303,145,72,376,304,144,63,385,156,292,7,441,313,135,231,217,197,34,71,377,272,176,128,320,177,271,250,198,10,438,142,217,76,13,0,330,118,0,3,10,2,0,0,0,0,0,0,0,433,0,1.4598214285714286,1.2075892857142858,0.0,1.0,1.0,51.785714285714285 +100102,Comarca Kuna Yala,Comarca Kuna Yala,Ailigandí,2470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,220,1597,199,41,0,6,1537,42,12,9,27,40,1157,10,13,537,1,43,0,0,2,2,10,1822,1,791,963,0,0,0,83,1837,26,74,112,81,204,136,0,0,3,1790,44,0,0,331,254,0,12,1233,7,0,314,20,240,0,26,1234,3,73,466,10,1237,50,1,0,1750,0,0,0,0,0,68,0,0,17,2,0,2470,6.232,19.492571428571427,4.787428571428571,13.217714285714283,1.0005443658138269,1.5557974959172565,0.5166031573217202,1838,1196,3718,191,2094,153,192,385,200,352,199,167,225,1,60,32,15,22,25,2,16,6778,3021,0,697,9102,0,4471,5328,0,7675,2124,0,3775,6024,0,3733,42,4492,1532,0,1537,184,305,20,351,463,586,552,560,1544,1,4,3,555,638,834,287,430,482,1,2,112,88,71,112,24,37,10,0,5,0,0,0,1,0,3293,25,4693,0,1,9,11,152,2132,2087,140,182,626,819,103,12,54,1,1376,319,1,5264,5647,192,348,12,2537,42,4,175,1,391,408,30,3552,36,0,0,7063,797,3,3,19,118,4,4,0,0,1,45,111,80,133,283,1560,835,46,224,9002,642,399,234,213,108,92,35,45,49,32,5,12,4,3,36,269.0,290.0,273.0,280.0,263.0,300.0,282.0,314.0,324.0,305.0,290.0,317.0,253.0,279.0,266.0,229.0,219.0,188.0,196.0,165.0,162.0,132.0,155.0,149.0,121.0,141.0,114.0,99.0,115.0,126.0,120.0,123.0,107.0,113.0,106.0,107.0,116.0,129.0,111.0,99.0,95.0,88.0,94.0,97.0,98.0,81.0,81.0,86.0,84.0,100.0,88.0,83.0,82.0,79.0,95.0,72.0,83.0,73.0,68.0,82.0,85.0,63.0,81.0,84.0,77.0,78.0,71.0,68.0,67.0,49.0,55.0,49.0,45.0,61.0,79.0,54.0,64.0,51.0,31.0,26.0,53.0,14.0,18.0,12.0,27.0,18.0,16.0,15.0,10.0,8.0,5.0,4.0,3.0,4.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4305,5541,1065,0,1375,1525,1405,997,719,595,569,562,472,432,427,378,390,333,289,226,124,67,17,3,6,0,10502,3,0,406,0,10502,3,0,406,0,3514,19,683,352,450,21,1577,4295,0,9373,1534,4,0,10877,2,0,0,0,0,0,0,0,1,31,0,14,0,0,0,1,0,20,10876,0,133,232,175,1,3,10367,0,2.9372037914691944,0.0,3.945028011204482,0.0,4.9696636421959495,5,0,0,0,0,0,2,1831,0,279,128,204,273,331,232,122,67,78,33,38,19,14,8,8,4,1176,662,372,1466,8,1830,221,1617,84,1754,9,1829,463,1375,17,1821,1197,641,220,1618,83,137,141,1697,759,1079,21,1817,1367,471,114,1724,90,1748,132,492,1090,124,0,1381,457,0,1833,0,0,0,0,0,0,0,0,1,4,0,2.863982589771491,3.072361262241567,1.0,1.106194690265487,1.106194690265487,53.050054406964094 +100103,Comarca Kuna Yala,Comarca Kuna Yala,Puerto Obaldía,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,154,1,15,194,2,2,0,8,4,1,203,1,0,3,0,2,0,0,2,0,113,91,3,2,1,1,202,5,0,0,0,4,211,3,22,1,0,0,0,0,0,30,155,26,0,0,149,61,0,0,1,0,0,44,43,116,0,0,8,0,74,130,0,6,1,0,0,210,0,0,0,0,0,1,0,0,0,0,0,237,6.714285714285714,23.747619047619047,6.70952380952381,23.69047619047619,1.0,3.241706161137441,2.1943127962085307,211,111,156,39,48,6,7,5,1,11,2,2,11,1,6,7,1,2,3,1,3,452,116,0,42,526,0,354,214,0,490,78,0,135,433,0,132,3,376,57,0,58,6,18,0,18,29,28,27,43,77,0,0,0,25,37,45,15,52,70,0,2,1,1,8,0,3,2,3,0,0,0,0,0,0,0,202,18,257,0,6,3,5,8,65,157,16,11,67,24,30,3,24,2,28,40,0,303,308,36,22,4,150,4,0,2,0,11,2,0,248,68,0,0,386,77,0,1,2,9,1,1,0,0,0,9,2,19,9,59,57,22,10,33,393,36,13,33,24,13,14,8,4,1,3,1,0,0,0,68,16.0,7.0,6.0,14.0,20.0,12.0,14.0,20.0,11.0,14.0,9.0,9.0,9.0,12.0,3.0,9.0,8.0,10.0,10.0,9.0,6.0,9.0,9.0,8.0,9.0,10.0,12.0,18.0,13.0,4.0,9.0,8.0,13.0,6.0,5.0,13.0,10.0,12.0,11.0,7.0,6.0,2.0,8.0,7.0,4.0,9.0,5.0,6.0,4.0,3.0,9.0,6.0,4.0,5.0,8.0,5.0,6.0,4.0,4.0,4.0,6.0,5.0,3.0,4.0,8.0,6.0,5.0,5.0,3.0,3.0,6.0,6.0,4.0,2.0,0.0,2.0,0.0,1.0,4.0,1.0,0.0,0.0,3.0,1.0,3.0,1.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,176,373,62,0,63,71,42,46,41,57,41,53,27,27,32,23,26,22,18,8,7,4,3,0,0,0,349,200,57,5,0,349,203,54,5,0,207,4,35,62,17,0,110,176,0,291,73,247,0,26,0,0,0,0,0,3,0,0,4,578,0,123,83,114,64,0,1,174,52,0,36,44,7,1,0,523,0,2.356,0.0,2.98936170212766,0.0,6.058919803600655,50,24,34,31,0,1,61,10,0,53,20,16,25,21,13,17,9,5,2,3,1,0,0,0,26,203,8,162,49,164,47,14,197,180,31,30,181,67,144,7,204,165,46,155,56,111,44,18,193,127,84,4,207,59,152,34,177,7,204,44,113,44,10,0,134,77,0,9,0,0,0,0,0,2,0,0,1,199,0,1.4360189573459716,1.4597156398104263,0.0,1.2857142857142858,1.2857142857142858,47.18483412322275 +100104,Comarca Kuna Yala,Comarca Kuna Yala,Tubualá,1396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,24,9,1128,52,0,1,9,1102,14,2,0,1,21,865,1,4,273,2,13,0,0,171,274,9,726,0,332,835,0,0,0,13,1180,29,47,42,9,80,9,0,0,2,1128,50,0,0,284,220,0,0,675,1,0,242,13,129,0,14,778,4,26,369,10,755,19,1,0,1077,0,5,75,0,0,2,0,1,19,1,0,1396,5.825441039925719,16.594243268337976,5.689879294336119,16.64623955431755,1.0033898305084743,1.7576271186440675,0.7254237288135593,1184,837,2512,153,1630,74,93,202,161,283,138,70,202,1,67,48,3,4,10,1,13,4887,1812,0,323,6376,0,3708,2991,0,4974,1725,0,2064,4635,0,2052,12,3222,1413,0,1421,68,165,3,243,312,397,370,402,1471,0,3,0,267,334,595,122,190,222,2,3,16,36,11,21,6,14,4,0,1,0,0,0,0,0,2433,38,3003,0,9,4,7,49,1154,1576,103,121,200,687,71,6,53,0,1275,169,0,3550,3990,106,142,5,1900,55,2,251,0,259,290,19,2035,26,0,0,5137,288,1,3,4,37,3,1,0,0,0,16,50,58,58,187,1307,579,46,170,6342,440,241,161,107,89,50,19,22,29,5,4,2,1,2,26,194.0,231.0,210.0,206.0,212.0,197.0,192.0,207.0,216.0,201.0,206.0,219.0,183.0,194.0,175.0,135.0,153.0,139.0,132.0,117.0,110.0,104.0,100.0,113.0,89.0,96.0,87.0,91.0,96.0,99.0,96.0,89.0,82.0,79.0,76.0,76.0,50.0,75.0,63.0,77.0,69.0,69.0,59.0,57.0,61.0,55.0,56.0,85.0,68.0,59.0,50.0,63.0,57.0,61.0,58.0,56.0,54.0,79.0,53.0,47.0,66.0,35.0,28.0,52.0,49.0,38.0,39.0,49.0,44.0,24.0,16.0,15.0,31.0,51.0,59.0,40.0,33.0,41.0,22.0,10.0,31.0,10.0,17.0,10.0,8.0,7.0,6.0,6.0,7.0,2.0,5.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3043,3870,627,0,1053,1013,977,676,516,469,422,341,315,323,289,289,230,194,172,146,76,28,8,2,1,0,7303,10,3,224,0,7303,10,3,224,0,2519,26,450,180,344,15,972,3034,0,6462,1062,16,0,7512,3,0,0,0,0,0,0,0,0,25,0,3,5,4,0,0,0,12,7516,0,88,161,63,3,2,7223,0,2.692910702113156,0.0,3.66148445336008,0.0,4.243899204244032,1,1,0,0,0,0,1,1181,0,135,68,135,165,269,174,79,42,56,27,12,8,6,1,3,4,840,344,246,938,32,1152,479,705,86,1098,13,1171,311,873,16,1168,904,280,171,1013,106,65,48,1136,536,648,6,1178,959,225,91,1093,26,1158,40,306,735,103,0,914,270,0,1180,0,0,0,0,0,0,0,0,0,4,0,2.998310810810811,3.3699324324324325,1.0,1.1020408163265305,1.1020408163265305,52.483108108108105 +110101,Comarca Emberá-Wounaán,Cémaco,Cirilo Guaynora,643,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,116,360,28,447,29,3,4,0,20,1,477,0,0,4,0,12,9,0,2,59,0,256,151,10,27,1,482,16,1,0,0,5,504,0,75,53,7,13,32,0,0,4,487,13,0,0,100,392,0,2,3,1,6,472,0,0,0,2,30,0,14,156,0,7,325,2,0,131,0,1,0,0,238,124,0,7,0,3,0,684,5.259541984732825,10.488549618320612,5.229007633587786,10.419847328244275,1.003968253968254,3.0654761904761907,1.8948412698412695,506,361,1096,40,354,16,29,28,15,58,9,4,4,0,17,16,9,17,12,3,10,1205,1066,0,308,1963,0,747,1524,0,1802,469,0,966,1305,0,954,12,1004,301,0,306,54,47,14,64,111,123,134,153,330,1,1,1,90,107,177,75,84,295,2,0,17,20,15,27,12,11,0,0,0,0,0,0,0,0,913,33,973,0,2,4,18,4,556,316,43,54,149,50,46,3,22,0,652,6,5,1342,1178,127,11,3,587,3,1,194,7,266,103,32,1115,17,0,0,1519,355,1,1,5,38,0,0,0,0,8,16,27,20,12,82,578,76,8,119,2047,124,59,56,52,36,39,13,46,22,4,1,1,2,1,17,61.0,67.0,47.0,74.0,51.0,67.0,50.0,53.0,79.0,52.0,81.0,86.0,72.0,58.0,60.0,55.0,61.0,56.0,56.0,42.0,37.0,43.0,30.0,34.0,40.0,27.0,31.0,34.0,34.0,33.0,27.0,35.0,32.0,24.0,29.0,23.0,25.0,32.0,22.0,24.0,27.0,26.0,29.0,31.0,16.0,20.0,20.0,15.0,24.0,26.0,21.0,27.0,26.0,21.0,19.0,19.0,20.0,12.0,24.0,27.0,17.0,8.0,10.0,10.0,14.0,11.0,8.0,16.0,14.0,10.0,5.0,4.0,6.0,5.0,16.0,8.0,5.0,10.0,3.0,6.0,7.0,6.0,5.0,2.0,5.0,0.0,1.0,2.0,3.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,958,1395,167,0,300,301,357,270,184,159,147,126,129,105,114,102,59,59,36,32,25,8,4,3,0,0,2398,64,8,50,0,2398,64,8,50,0,825,1,72,90,56,1,517,958,0,1855,557,108,0,4,3,0,0,0,0,1142,1230,0,2,139,0,12,11,48,25,0,0,48,2376,0,123,198,4,0,0,2195,0,3.2040586245772267,0.0,4.494057724957555,0.0,5.491666666666666,11,4,12,8,0,0,8,463,0,97,44,58,62,82,37,26,18,35,18,10,5,7,1,3,3,493,13,303,203,257,249,77,429,292,214,1,505,85,421,0,506,353,153,212,294,102,110,50,456,80,426,13,493,378,128,173,333,6,500,46,251,205,4,0,416,90,0,2,1,0,0,0,0,229,232,0,0,42,0,2.652173913043478,2.3280632411067192,1.0,1.0857142857142856,1.0857142857142856,50.691699604743086 +110102,Comarca Emberá-Wounaán,Cémaco,Lajas Blancas,1311,1,0,8,0,0,0,0,0,0,0,1,2,0,0,1,247,656,91,882,22,36,15,0,37,3,406,33,37,383,13,33,90,0,0,0,0,908,71,13,3,0,973,15,0,0,0,7,995,0,124,124,3,64,10,0,0,2,971,22,0,0,151,826,0,2,2,0,14,872,0,0,0,27,96,0,0,189,2,16,788,0,1,203,1,9,7,5,348,396,0,20,5,0,0,1323,4.019512195121951,3.6878048780487807,3.7365853658536583,3.3073170731707315,1.0050251256281406,2.4452261306532663,1.371859296482412,1003,768,2436,119,506,28,39,54,11,140,42,4,10,1,25,12,11,9,13,3,8,2826,1690,0,142,4374,0,1220,3296,0,3547,969,0,1742,2774,0,1721,21,2102,672,0,677,64,109,4,153,208,283,255,274,623,0,0,1,213,226,389,117,182,601,0,3,20,25,31,26,9,18,1,0,4,0,0,0,0,0,1712,8,1920,0,0,5,2,5,1017,843,7,48,252,120,18,0,81,0,1156,87,0,2687,2474,158,159,1,1210,3,2,181,0,493,190,28,1617,3,0,0,2900,676,1,3,13,45,0,2,0,0,0,17,37,32,14,257,1086,91,88,98,4235,328,132,107,97,60,76,63,43,13,2,0,1,0,1,3,155.0,173.0,156.0,161.0,167.0,150.0,125.0,118.0,178.0,138.0,152.0,158.0,130.0,135.0,110.0,104.0,92.0,100.0,112.0,71.0,92.0,86.0,69.0,96.0,74.0,86.0,79.0,70.0,65.0,61.0,75.0,58.0,73.0,61.0,53.0,53.0,61.0,43.0,53.0,38.0,46.0,43.0,49.0,45.0,44.0,49.0,37.0,28.0,46.0,40.0,34.0,27.0,46.0,25.0,37.0,35.0,20.0,27.0,17.0,37.0,26.0,14.0,32.0,34.0,19.0,16.0,16.0,25.0,31.0,15.0,19.0,17.0,17.0,7.0,15.0,8.0,8.0,4.0,6.0,6.0,3.0,4.0,8.0,10.0,4.0,7.0,4.0,2.0,6.0,2.0,1.0,1.0,2.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0,2206,2682,273,0,812,709,685,479,417,361,320,248,227,200,169,136,125,103,75,32,29,21,6,4,3,0,4929,79,24,129,0,4938,79,15,129,0,1715,6,124,208,68,0,835,2205,0,3676,1336,149,0,2,8,0,1,0,0,4381,690,0,3,76,0,8,45,4,0,3,3,31,5067,0,128,223,5,1,1,4803,0,3.0530035335689045,0.0,4.5129579982126895,0.0,5.202092617709746,3,5,2,0,2,0,11,980,0,130,67,113,172,189,104,60,44,77,29,7,1,6,0,1,0,989,14,403,600,306,697,103,900,247,756,5,998,121,882,0,1003,531,472,219,784,167,52,51,952,199,804,27,976,738,265,280,723,11,992,90,606,297,10,0,864,139,0,0,3,0,1,0,0,856,124,0,2,17,0,2.678963110667996,2.4666001994017948,1.0,1.0909090909090908,1.0909090909090908,47.383848454636095 +110103,Comarca Emberá-Wounaán,Cémaco,Manuel Ortega,582,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,197,202,182,18,100,54,0,47,1,122,0,39,105,22,32,75,0,7,0,0,207,164,25,6,0,378,23,0,0,0,1,402,0,92,62,2,15,10,0,0,3,381,17,1,0,49,341,0,4,1,0,7,367,1,0,0,10,24,0,0,76,0,5,320,1,1,224,0,1,0,1,1,174,0,0,0,0,0,583,6.96,22.346666666666668,6.933333333333334,22.27111111111111,1.007462686567164,2.430348258706468,1.373134328358209,405,285,845,5,199,18,24,10,5,47,12,1,10,0,48,14,2,1,7,2,5,546,1115,0,31,1630,0,87,1574,0,1286,375,0,586,1075,0,576,10,784,291,0,292,22,33,1,62,102,122,75,103,341,0,0,1,67,95,98,38,44,134,1,2,2,6,4,7,4,3,0,1,1,0,0,0,0,0,713,8,630,0,1,0,5,1,304,281,31,13,68,41,5,0,1,1,602,1,1,1003,863,38,15,0,537,2,0,127,1,220,117,20,593,0,0,0,1185,143,1,2,5,13,1,1,0,0,2,0,15,9,1,60,593,22,2,17,1459,157,70,56,55,21,14,9,16,5,4,0,0,0,0,0,45.0,58.0,50.0,52.0,44.0,60.0,44.0,48.0,70.0,44.0,49.0,53.0,55.0,33.0,41.0,40.0,29.0,35.0,21.0,27.0,30.0,25.0,27.0,34.0,27.0,16.0,28.0,24.0,27.0,22.0,16.0,26.0,19.0,17.0,25.0,21.0,18.0,20.0,20.0,13.0,13.0,10.0,17.0,18.0,13.0,18.0,13.0,8.0,20.0,15.0,20.0,19.0,13.0,13.0,14.0,12.0,13.0,16.0,16.0,20.0,14.0,16.0,17.0,7.0,10.0,8.0,7.0,12.0,15.0,7.0,11.0,9.0,7.0,6.0,7.0,7.0,8.0,7.0,2.0,3.0,6.0,3.0,2.0,3.0,4.0,2.0,1.0,4.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,746,972,148,0,249,266,231,152,143,117,103,92,71,74,79,77,64,49,40,27,18,10,1,2,1,0,1783,33,0,50,0,1783,33,0,50,0,542,0,65,176,53,0,285,745,0,1442,384,40,0,2,17,0,0,0,0,1692,125,0,8,22,0,2,33,12,1,0,3,62,1753,0,37,79,1,1,0,1748,0,3.322847682119205,0.0,4.559036144578314,0.0,4.592175777063237,0,5,3,1,0,0,14,382,0,48,29,49,77,88,49,24,11,12,8,4,5,1,0,0,0,397,8,107,298,63,342,25,380,90,315,2,403,89,316,0,405,108,297,70,335,54,16,9,396,14,391,4,401,217,188,185,220,5,400,57,202,140,6,0,349,56,0,1,7,0,0,0,0,370,16,0,3,8,0,2.476543209876543,2.130864197530864,1.0,1.103448275862069,1.103448275862069,50.995061728395065 +110201,Comarca Emberá-Wounaán,Sambú,Río Sábalo,612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,343,38,405,9,14,0,0,21,3,311,1,1,96,18,10,14,0,1,0,0,382,32,35,3,0,395,46,0,0,0,11,452,0,105,47,2,0,6,0,0,1,438,13,0,0,41,380,0,4,13,0,14,401,0,0,0,5,45,1,2,53,0,4,389,4,2,390,0,0,0,0,1,49,0,0,8,2,0,612,6.591836734693878,22.415816326530614,6.862244897959184,23.42091836734694,1.002212389380531,2.230088495575221,1.1792035398230087,453,341,849,67,318,12,13,26,8,90,16,6,27,0,23,7,0,3,7,1,1,752,1230,0,65,1917,0,157,1825,0,1650,332,0,740,1242,0,733,7,979,263,0,266,35,47,0,82,110,134,123,117,319,0,0,0,91,103,115,71,84,234,0,0,3,4,12,15,11,4,0,0,2,0,0,0,0,0,1091,2,549,0,0,1,0,6,376,88,14,65,130,416,13,0,9,0,499,26,0,1188,1038,99,19,0,839,5,0,131,0,281,162,21,528,0,0,0,1357,241,0,0,13,29,0,2,0,0,0,14,28,18,16,66,499,398,19,35,1825,129,86,32,31,29,49,11,18,5,3,2,1,0,5,0,63.0,67.0,57.0,57.0,53.0,65.0,43.0,61.0,63.0,55.0,66.0,56.0,62.0,46.0,48.0,57.0,41.0,54.0,39.0,40.0,36.0,38.0,27.0,25.0,31.0,30.0,28.0,23.0,22.0,31.0,17.0,27.0,24.0,18.0,24.0,31.0,19.0,25.0,21.0,21.0,19.0,23.0,18.0,19.0,28.0,20.0,26.0,20.0,17.0,20.0,20.0,14.0,16.0,12.0,14.0,11.0,15.0,17.0,12.0,16.0,8.0,12.0,13.0,7.0,20.0,15.0,20.0,11.0,15.0,8.0,10.0,13.0,20.0,18.0,13.0,10.0,5.0,1.0,2.0,2.0,2.0,1.0,0.0,3.0,12.0,5.0,0.0,2.0,4.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,862,1166,198,0,297,287,278,231,157,134,110,117,107,103,76,71,60,69,74,20,18,12,3,1,1,0,2184,14,0,28,0,2184,14,0,28,0,743,1,30,159,46,0,385,862,0,1327,869,30,0,1,1,0,0,0,2,2114,24,0,1,83,0,0,12,1,0,0,0,9,2204,0,76,72,7,0,0,2071,0,3.1246684350132625,0.0,4.1688311688311686,0.0,5.14240790655885,0,4,1,0,0,0,1,447,0,48,29,68,81,81,45,31,23,22,8,4,5,3,0,5,0,406,47,143,310,139,314,33,420,122,331,4,449,24,429,0,453,153,300,113,340,91,22,17,436,19,434,1,452,348,105,119,334,4,449,31,229,183,10,0,373,80,0,0,1,0,0,0,0,423,7,0,0,22,0,2.622516556291391,2.2913907284768213,1.0,1.125,1.125,52.196467991169975 +110202,Comarca Emberá-Wounaán,Sambú,Jingurudó,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,15,95,8,8,0,0,7,0,0,0,0,86,23,8,1,0,0,0,0,79,0,38,1,0,107,10,0,0,0,1,118,0,17,5,1,2,0,0,0,0,117,1,0,0,1,94,0,1,15,0,7,92,0,0,0,3,23,0,0,0,0,0,100,18,0,110,0,0,0,0,0,8,0,0,0,0,0,143,7.0,24.0,7.0,24.0,1.0,2.101694915254237,1.0508474576271187,118,91,267,13,48,3,4,3,8,17,3,2,8,0,5,3,0,0,3,0,3,13,504,0,2,515,0,1,516,0,407,110,0,137,380,0,134,3,270,110,0,110,1,2,0,13,29,31,29,35,130,0,0,0,46,25,25,6,10,23,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,315,0,100,0,0,0,0,0,69,12,3,16,7,118,2,0,0,0,91,97,0,308,277,6,1,0,291,0,0,17,0,74,26,11,109,0,0,0,390,24,0,0,0,1,0,0,0,0,0,1,1,3,0,3,90,120,36,61,440,58,46,24,8,0,2,3,1,1,1,0,0,1,0,0,12.0,19.0,19.0,18.0,16.0,21.0,11.0,18.0,16.0,20.0,14.0,14.0,16.0,14.0,10.0,11.0,11.0,7.0,14.0,7.0,7.0,17.0,9.0,7.0,7.0,8.0,8.0,7.0,7.0,4.0,7.0,7.0,6.0,9.0,4.0,7.0,6.0,6.0,7.0,8.0,3.0,6.0,5.0,2.0,3.0,3.0,4.0,8.0,4.0,5.0,7.0,6.0,7.0,7.0,3.0,3.0,9.0,2.0,2.0,4.0,3.0,3.0,2.0,6.0,2.0,2.0,6.0,4.0,1.0,2.0,0.0,2.0,2.0,2.0,0.0,3.0,1.0,2.0,2.0,0.0,2.0,0.0,0.0,2.0,3.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,238,307,40,0,84,86,68,50,47,34,33,34,19,24,30,20,16,15,6,8,7,4,0,0,0,0,573,7,0,5,0,573,7,0,5,0,217,1,25,14,10,0,81,237,0,498,77,10,0,1,0,0,0,0,0,584,0,0,0,0,0,0,0,0,0,0,0,1,584,0,6,10,0,0,0,569,0,3.2240437158469946,0.0,4.412698412698413,0.0,4.203418803418804,0,0,0,0,0,0,0,118,0,10,3,12,24,39,15,3,3,5,2,1,0,0,1,0,0,108,10,4,114,1,117,2,116,1,117,0,118,1,117,0,118,1,117,1,117,0,1,1,117,0,118,0,118,114,4,56,62,1,117,12,58,42,6,0,109,9,0,0,0,0,0,0,0,118,0,0,0,0,0,2.610169491525424,2.347457627118644,0.0,1.0,1.0,49.17796610169491 +120101,Comarca Ngäbe-Buglé,Besiko,Soloy,1774,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,24,870,430,745,149,208,148,0,59,15,337,1,4,197,7,18,743,1,16,0,0,1127,101,82,12,2,369,949,1,1,0,4,1324,0,85,2,7,340,16,0,0,10,1285,29,0,0,211,873,1,53,158,4,24,1266,7,0,0,31,20,0,13,248,15,1020,27,1,0,414,37,118,137,591,0,5,0,0,21,1,0,1777,5.008869179600887,12.889135254988911,6.700665188470066,20.895787139689578,1.0045317220543806,2.440332326283988,1.3330815709969788,1330,645,3133,103,889,48,112,113,10,143,12,11,20,0,23,24,11,11,14,2,19,1546,4226,0,216,5556,0,753,5019,0,4371,1401,0,2307,3465,0,2209,98,2360,1105,0,1116,35,130,6,283,286,360,290,317,598,1,5,0,296,306,443,194,315,599,1,4,19,28,26,43,25,30,13,0,2,0,0,0,1,0,889,83,3588,0,10,21,24,8,1492,1963,48,77,254,209,48,17,46,1,363,4,1,3136,3433,158,140,17,508,2,1,113,4,378,167,11,2861,265,0,0,3766,680,0,11,9,82,9,2,1,0,4,17,67,27,23,138,377,149,25,145,5515,282,88,81,107,71,52,32,53,15,7,0,0,0,1,265,187.0,217.0,200.0,193.0,225.0,216.0,208.0,216.0,185.0,162.0,217.0,164.0,171.0,165.0,199.0,179.0,184.0,153.0,157.0,115.0,112.0,139.0,98.0,122.0,82.0,95.0,83.0,87.0,81.0,67.0,68.0,62.0,70.0,65.0,65.0,61.0,59.0,85.0,66.0,67.0,56.0,61.0,55.0,55.0,49.0,46.0,39.0,52.0,39.0,46.0,50.0,47.0,46.0,39.0,17.0,27.0,33.0,36.0,27.0,25.0,22.0,23.0,14.0,38.0,15.0,17.0,16.0,16.0,18.0,15.0,16.0,10.0,22.0,23.0,18.0,16.0,9.0,9.0,8.0,4.0,3.0,0.0,7.0,3.0,3.0,2.0,6.0,8.0,5.0,1.0,1.0,1.0,3.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2925,3379,265,0,1022,987,916,788,553,413,330,338,276,222,199,148,112,82,89,46,16,22,9,1,0,0,6291,0,1,277,0,6291,0,1,277,0,2010,20,326,106,121,16,1058,2912,0,5485,1078,6,0,7,6509,1,0,0,0,0,0,0,1,51,0,3,11,16,0,1,0,11,6527,0,91,161,8,0,1,6308,0,2.822058220582206,0.0,4.207033842070339,0.0,4.943674836352565,0,3,2,0,1,0,3,1321,0,410,127,161,169,159,87,71,30,52,18,12,4,3,0,1,26,652,678,138,1192,85,1245,655,675,144,1186,11,1319,222,1108,7,1323,502,828,73,1257,48,25,63,1267,157,1173,31,1299,668,662,622,708,44,1286,178,576,564,12,3,590,740,0,0,1325,0,0,0,0,0,0,0,0,5,0,2.352588147036759,2.575393848462116,1.0,1.1111111111111112,1.1111111111111112,44.965413533834585 +120102,Comarca Ngäbe-Buglé,Besiko,Boca de Balsa,1263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,305,358,287,20,96,243,0,16,3,0,0,3,185,3,11,455,0,8,0,0,497,129,33,5,1,62,600,0,1,0,2,665,1,26,1,1,569,0,0,0,0,662,3,0,0,30,494,4,21,102,6,8,638,0,1,0,18,8,0,6,52,10,582,15,0,0,171,18,58,106,305,0,6,0,0,1,0,0,1263,6.317460317460317,19.994708994708997,6.98941798941799,23.7989417989418,1.0015037593984963,2.324812030075188,1.1293233082706766,666,313,1506,65,428,12,26,28,0,44,4,4,0,0,14,21,3,0,7,1,3,534,2184,0,47,2671,0,153,2565,0,1884,834,0,1040,1678,0,1034,6,940,738,0,739,14,42,0,124,141,173,174,168,267,5,0,0,135,163,188,83,102,167,0,1,6,10,4,2,3,5,1,0,1,0,0,0,0,0,557,24,1579,0,0,2,5,2,627,919,21,10,58,226,19,2,13,1,256,3,2,1459,1637,31,49,2,379,9,4,104,2,237,85,9,1066,62,0,0,1959,190,0,1,1,8,1,0,0,0,2,4,4,6,6,59,304,139,5,52,2704,129,65,42,41,22,22,4,4,1,0,0,0,0,0,62,105.0,78.0,102.0,93.0,97.0,88.0,100.0,104.0,78.0,91.0,110.0,86.0,83.0,78.0,100.0,80.0,88.0,64.0,58.0,59.0,64.0,41.0,50.0,50.0,37.0,41.0,34.0,46.0,33.0,31.0,40.0,30.0,27.0,29.0,26.0,16.0,33.0,23.0,34.0,20.0,33.0,28.0,28.0,19.0,27.0,19.0,17.0,21.0,28.0,23.0,38.0,20.0,15.0,17.0,17.0,14.0,23.0,23.0,25.0,9.0,14.0,15.0,19.0,14.0,12.0,6.0,11.0,7.0,3.0,9.0,9.0,6.0,16.0,7.0,6.0,6.0,3.0,14.0,2.0,2.0,2.0,2.0,1.0,2.0,2.0,5.0,4.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1393,1572,131,0,475,461,457,349,242,185,152,126,135,108,107,94,74,36,44,27,9,12,1,2,0,0,2894,0,0,202,0,2894,0,0,202,0,973,18,134,54,74,16,437,1390,0,2627,469,0,0,2,3083,6,0,0,1,0,0,0,0,4,0,3,99,15,3,0,1,3,2972,0,12,24,3,0,0,3057,0,2.9906462585034013,0.0,4.432098765432099,0.0,4.037144702842378,0,25,4,1,0,0,1,635,0,224,58,91,97,93,41,26,16,9,2,0,0,0,0,0,9,157,509,6,660,10,656,345,321,5,661,0,666,133,533,1,665,124,542,9,657,5,4,13,653,14,652,3,663,397,269,359,307,8,658,103,322,241,0,0,335,331,0,1,662,1,0,0,1,0,0,0,0,1,0,2.190690690690691,2.457957957957958,0.0,1.1794871794871795,1.1794871794871795,47.25975975975976 +120103,Comarca Ngäbe-Buglé,Besiko,Camarón Arriba,1074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,673,203,590,84,84,62,0,44,13,0,0,4,235,3,2,601,0,32,0,0,772,70,24,11,0,107,759,0,0,0,11,877,3,9,1,0,182,2,0,0,1,872,4,0,0,30,503,6,87,205,4,42,714,6,0,0,61,96,0,2,29,5,772,67,2,0,113,1,103,219,321,0,117,0,0,3,0,0,1074,4.956140350877193,13.675438596491228,6.587719298245614,21.69298245614035,1.0057012542759407,1.6875712656784492,0.6385404789053591,882,397,2021,53,785,15,40,51,0,82,7,6,2,0,14,18,5,0,12,0,7,721,3108,0,25,3804,0,45,3784,0,2616,1213,0,1528,2301,0,1526,2,1204,1097,0,1100,29,91,19,189,185,240,250,266,453,0,1,0,183,190,213,108,137,142,1,2,6,5,2,8,2,5,1,1,0,0,0,0,0,0,840,27,2138,0,5,2,0,6,859,1223,19,31,92,246,13,8,12,2,492,0,0,2091,2250,31,107,10,498,2,3,214,0,268,124,7,1423,27,0,0,2830,161,0,2,0,11,1,0,0,0,0,4,11,10,1,62,603,74,4,98,3828,216,78,64,70,22,19,8,5,4,0,0,0,0,0,27,106.0,133.0,124.0,149.0,139.0,152.0,152.0,150.0,121.0,110.0,143.0,163.0,123.0,128.0,132.0,130.0,118.0,98.0,91.0,74.0,60.0,60.0,63.0,59.0,46.0,45.0,36.0,40.0,46.0,45.0,52.0,38.0,36.0,46.0,43.0,27.0,34.0,40.0,36.0,45.0,39.0,29.0,50.0,29.0,40.0,32.0,31.0,28.0,36.0,32.0,35.0,24.0,32.0,20.0,23.0,23.0,15.0,22.0,24.0,18.0,22.0,14.0,26.0,25.0,23.0,20.0,17.0,15.0,18.0,7.0,19.0,11.0,10.0,12.0,11.0,13.0,5.0,7.0,6.0,2.0,6.0,5.0,5.0,2.0,4.0,5.0,3.0,4.0,2.0,0.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2025,2100,216,0,651,685,689,511,288,212,215,182,187,159,134,102,110,77,63,33,22,14,6,1,0,0,4120,0,0,221,0,4120,0,0,221,0,1229,8,186,118,113,31,635,2021,0,4127,213,1,0,2,4318,7,0,0,0,0,0,0,0,14,0,4,42,405,20,0,2,17,3851,0,19,34,5,1,0,4282,0,3.1525215252152523,0.0,4.653455284552845,0.0,3.651923519926284,2,12,79,5,0,2,4,778,0,252,88,118,137,160,72,19,20,8,5,0,0,1,0,0,2,299,583,13,869,7,875,352,530,9,873,2,880,146,736,4,878,237,645,14,868,3,11,6,876,11,871,6,876,670,212,658,224,25,857,107,390,383,2,0,440,442,0,0,874,2,0,0,0,0,0,0,0,6,0,2.370748299319728,2.5510204081632653,0.0,1.0714285714285714,1.0714285714285714,48.14399092970522 +120104,Comarca Ngäbe-Buglé,Besiko,Cerro Banco,1296,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,477,432,456,22,229,190,0,10,3,1,1,5,193,3,6,662,4,35,0,0,708,144,47,9,2,60,850,0,0,0,0,910,5,44,2,2,318,16,0,0,1,903,6,0,0,35,692,4,30,136,4,9,863,1,1,0,25,19,1,6,49,9,759,87,0,0,221,23,124,205,336,1,0,0,0,0,0,0,1297,5.081967213114754,15.655737704918034,6.581967213114754,22.4344262295082,1.0076923076923077,1.8824175824175824,0.7769230769230769,917,449,2441,75,817,15,36,33,4,68,4,7,3,0,17,16,10,1,6,0,17,556,3772,0,48,4280,0,40,4288,0,3155,1173,0,1823,2505,0,1809,14,1507,998,0,1003,41,96,1,214,263,316,260,265,574,0,1,0,217,234,302,124,267,84,1,1,14,10,12,7,6,12,2,0,0,0,0,1,0,0,444,17,2906,0,3,0,2,3,1166,1649,36,52,67,96,13,6,8,1,264,3,2,2284,2585,37,68,6,296,4,2,42,5,306,110,15,1643,95,0,0,3217,124,0,1,0,23,1,1,0,0,5,2,15,4,5,36,258,60,7,69,4420,179,68,31,37,11,9,6,7,4,2,0,0,0,0,95,89.0,153.0,135.0,164.0,156.0,156.0,180.0,169.0,143.0,157.0,160.0,139.0,147.0,123.0,159.0,146.0,118.0,121.0,126.0,92.0,84.0,89.0,76.0,79.0,73.0,63.0,63.0,52.0,56.0,43.0,49.0,32.0,38.0,50.0,43.0,47.0,47.0,50.0,45.0,39.0,48.0,31.0,52.0,40.0,24.0,29.0,26.0,34.0,31.0,39.0,38.0,31.0,41.0,29.0,30.0,23.0,15.0,17.0,22.0,23.0,23.0,12.0,21.0,25.0,13.0,17.0,17.0,13.0,15.0,7.0,10.0,10.0,12.0,10.0,6.0,13.0,7.0,12.0,7.0,6.0,5.0,2.0,6.0,2.0,3.0,4.0,5.0,3.0,1.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2230,2438,201,0,697,805,728,603,401,277,212,228,195,159,169,100,94,69,48,45,18,14,6,1,0,0,4574,2,0,293,0,4574,2,0,293,0,1416,8,143,132,67,7,874,2222,0,4548,320,1,0,7,4828,10,0,0,0,0,0,0,0,24,0,1,4,4,1,2,0,12,4845,0,15,42,4,0,0,4808,0,3.0120087336244543,0.0,4.698795180722891,0.0,4.070034914766892,0,2,2,0,0,0,0,913,0,276,97,152,152,139,53,17,5,7,8,1,1,0,0,0,9,208,709,9,908,13,904,472,445,11,906,4,913,156,761,2,915,213,704,7,910,3,4,7,910,6,911,6,911,364,553,356,561,20,897,94,395,425,3,0,458,459,0,0,913,2,0,0,0,0,0,0,0,2,0,2.490730643402399,2.8189749182115595,1.0,1.0465116279069768,1.0465116279069768,47.88985823336969 +120105,Comarca Ngäbe-Buglé,Besiko,Cerro de Patena,530,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,188,185,11,41,139,0,6,2,0,0,3,76,1,2,301,0,1,0,0,245,115,19,5,0,14,369,0,0,0,1,384,0,6,0,0,140,1,0,0,0,382,2,0,0,5,279,1,19,75,0,5,362,0,0,0,9,13,0,0,2,0,324,58,0,0,50,3,27,59,200,0,45,0,0,0,0,0,531,4.9245283018867925,12.320754716981131,6.886792452830188,23.32075471698113,1.0,1.5,0.4765625,384,202,1037,30,266,8,17,33,1,22,3,2,9,0,6,11,2,1,5,0,4,429,1339,0,12,1756,0,33,1735,0,1281,487,0,786,982,0,784,2,574,408,0,409,9,43,2,102,132,99,101,111,220,0,0,0,78,99,124,64,62,102,0,1,0,7,0,1,1,1,0,0,0,0,0,0,0,0,782,5,578,0,0,1,0,1,273,299,4,1,14,67,1,4,2,2,697,0,0,990,1024,9,18,4,356,0,0,400,0,136,39,5,776,30,0,0,1252,110,0,1,0,2,0,0,0,0,0,1,3,3,1,8,724,32,0,15,1732,100,47,43,35,10,9,4,2,2,0,0,0,0,0,30,67.0,58.0,54.0,67.0,56.0,63.0,67.0,84.0,77.0,56.0,67.0,70.0,52.0,54.0,67.0,55.0,61.0,40.0,45.0,59.0,27.0,30.0,34.0,22.0,24.0,24.0,23.0,22.0,21.0,16.0,17.0,18.0,18.0,19.0,19.0,13.0,21.0,10.0,18.0,20.0,15.0,14.0,18.0,15.0,20.0,11.0,17.0,19.0,12.0,15.0,12.0,11.0,17.0,11.0,10.0,6.0,5.0,9.0,7.0,9.0,9.0,8.0,9.0,13.0,10.0,4.0,4.0,7.0,4.0,6.0,5.0,3.0,4.0,8.0,4.0,2.0,2.0,3.0,2.0,2.0,4.0,1.0,2.0,2.0,2.0,0.0,0.0,1.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,959,978,77,0,302,347,310,260,137,106,91,82,82,74,61,36,49,25,24,11,11,4,1,1,0,0,1899,0,0,115,0,1899,0,0,115,0,604,1,102,31,47,5,271,953,0,1889,125,0,0,0,2013,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,2011,0,5,2,3,1,0,2003,0,3.217821782178218,0.0,4.666666666666667,0.0,4.024329692154915,0,0,0,0,0,0,0,384,0,98,29,51,71,75,25,15,8,9,1,1,0,0,0,0,1,88,296,2,382,1,383,124,260,1,383,0,384,40,344,0,384,32,352,0,384,0,0,3,381,0,384,2,382,318,66,216,168,17,367,33,176,171,4,0,220,164,0,0,384,0,0,0,0,0,0,0,0,0,0,2.578125,2.6666666666666665,0.0,1.0526315789473684,1.0526315789473684,47.171875 +120106,Comarca Ngäbe-Buglé,Besiko,Emplanada de Chorcha,978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,352,322,309,43,232,79,0,6,5,0,0,2,186,7,1,473,2,3,0,0,593,57,20,2,2,81,593,0,0,0,0,674,0,49,0,0,221,34,0,0,1,668,3,2,0,58,483,1,20,89,2,21,637,1,0,0,15,20,1,2,58,10,579,23,2,0,24,20,58,57,447,0,67,0,0,1,0,0,978,6.295454545454546,21.84090909090909,6.704545454545454,23.363636363636363,1.0,2.4955489614243325,1.3397626112759644,674,342,1434,52,517,19,27,52,3,67,6,9,21,0,7,7,1,1,2,0,5,703,2177,0,149,2731,0,366,2514,0,2088,792,0,1068,1812,0,1058,10,1119,693,0,696,19,65,0,131,161,187,165,173,473,2,2,0,118,130,225,72,81,108,0,1,15,10,14,7,5,6,9,2,3,0,0,0,0,0,908,48,1308,0,3,4,11,12,606,642,16,32,79,273,25,8,16,1,544,2,1,1549,1674,39,122,9,637,2,1,135,4,135,75,3,1122,23,0,0,2083,155,1,1,1,16,4,3,0,0,4,4,19,7,1,56,531,198,6,130,2512,196,177,90,127,42,23,10,11,8,3,1,0,0,0,23,79.0,94.0,74.0,96.0,100.0,114.0,112.0,114.0,82.0,94.0,124.0,95.0,78.0,86.0,78.0,78.0,104.0,52.0,76.0,61.0,40.0,40.0,51.0,33.0,37.0,52.0,34.0,51.0,45.0,31.0,33.0,34.0,35.0,42.0,34.0,26.0,20.0,28.0,31.0,36.0,27.0,28.0,28.0,35.0,33.0,20.0,24.0,37.0,26.0,28.0,25.0,21.0,21.0,20.0,26.0,19.0,15.0,18.0,9.0,14.0,16.0,8.0,9.0,23.0,17.0,9.0,12.0,17.0,6.0,8.0,6.0,6.0,9.0,10.0,8.0,5.0,10.0,7.0,9.0,4.0,4.0,1.0,2.0,4.0,1.0,0.0,2.0,0.0,2.0,3.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1420,1651,152,0,443,516,461,371,201,213,178,141,151,135,113,75,73,52,39,35,12,7,6,1,0,0,3077,0,0,146,0,3077,0,0,146,0,1052,4,154,62,84,5,446,1416,0,2885,338,0,0,0,3193,19,0,0,0,0,0,0,0,11,0,0,94,1,0,0,0,1,3127,0,27,45,13,0,0,3138,0,3.035264483627204,0.0,4.473755047106326,0.0,4.138380390940118,0,20,0,0,0,0,1,653,0,123,50,77,97,130,96,41,17,18,13,2,5,2,0,0,3,232,442,12,662,6,668,336,338,7,667,0,674,144,530,1,673,222,452,22,652,5,17,18,656,18,656,6,668,535,139,502,172,16,658,79,301,278,16,0,354,320,0,0,667,4,0,0,0,0,0,0,0,3,0,2.298219584569733,2.483679525222552,0.0,1.0666666666666669,1.0666666666666669,47.560830860534125 +120107,Comarca Ngäbe-Buglé,Besiko,Nämnoni,829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,521,150,444,77,86,32,0,31,1,1,0,4,227,2,2,435,0,0,0,0,603,42,24,2,0,82,585,0,0,0,4,671,0,40,1,0,112,5,0,0,2,666,3,0,0,63,388,8,18,101,72,21,618,2,0,0,21,29,1,0,136,4,461,70,0,0,73,16,44,126,400,0,11,0,0,1,0,0,829,3.8764044943820224,10.887640449438202,6.898876404494382,23.786516853932586,1.0,2.144560357675112,1.0715350223546944,671,318,1696,60,549,16,32,37,1,84,2,1,2,0,16,6,7,3,5,0,6,1322,1695,0,144,2873,0,596,2421,0,2229,788,0,1243,1774,0,1237,6,1123,651,0,654,22,68,8,183,151,193,185,181,367,0,0,0,157,156,222,117,112,202,1,0,7,8,2,5,5,9,1,0,1,0,0,0,0,0,1289,69,1015,0,0,0,1,5,544,455,7,4,69,207,31,12,21,0,1015,1,0,1723,1746,30,97,17,710,0,1,500,1,161,69,5,1020,43,0,0,2131,223,0,0,3,14,1,1,0,0,1,3,9,6,6,59,1073,107,5,89,2782,180,115,138,135,40,20,6,5,5,0,0,0,0,0,43,111.0,108.0,115.0,118.0,113.0,109.0,116.0,115.0,97.0,94.0,112.0,90.0,96.0,114.0,80.0,117.0,74.0,85.0,84.0,58.0,65.0,54.0,80.0,56.0,36.0,48.0,41.0,40.0,52.0,30.0,37.0,39.0,38.0,21.0,29.0,32.0,33.0,31.0,26.0,26.0,27.0,27.0,29.0,28.0,30.0,25.0,24.0,24.0,22.0,21.0,21.0,21.0,25.0,17.0,12.0,17.0,16.0,18.0,21.0,15.0,12.0,10.0,18.0,17.0,16.0,14.0,4.0,10.0,19.0,8.0,8.0,6.0,8.0,10.0,6.0,4.0,3.0,4.0,5.0,5.0,3.0,4.0,0.0,0.0,2.0,1.0,1.0,3.0,1.0,0.0,2.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1588,1745,136,0,565,531,492,418,291,211,164,148,141,116,96,87,73,55,38,21,9,6,7,0,0,0,3315,3,0,151,0,3315,3,0,151,0,1024,13,275,105,55,2,409,1586,0,3006,457,6,0,1,3443,11,0,0,0,0,0,0,0,14,0,1,1,0,0,0,0,8,3459,0,17,21,5,1,1,3424,0,3.015187849720224,0.0,4.560723514211887,0.0,4.23580282502162,1,1,0,0,0,0,1,668,0,94,41,65,104,168,109,38,23,22,5,2,0,0,0,0,0,281,390,13,658,6,665,337,334,4,667,2,669,121,550,8,663,193,478,8,663,3,5,9,662,23,648,0,671,531,140,503,168,30,641,75,278,316,2,0,330,341,0,0,667,1,0,0,0,0,0,0,0,3,0,2.567809239940388,2.602086438152012,0.0,1.088235294117647,1.088235294117647,46.66915052160954 +120108,Comarca Ngäbe-Buglé,Besiko,Niba,1280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,468,241,11,70,329,0,25,44,0,0,4,123,3,4,417,1,168,0,0,453,192,67,5,3,17,701,0,0,1,1,720,25,42,9,32,443,9,0,0,0,716,4,0,0,13,597,1,18,78,1,12,697,2,0,0,16,5,0,0,15,3,605,97,0,0,138,31,119,101,320,3,7,0,0,0,1,0,1280,5.502958579881657,15.284023668639051,6.940828402366864,19.60355029585799,1.0,1.7555555555555555,0.6680555555555555,720,381,1900,50,554,18,41,60,4,77,10,13,13,0,19,25,6,1,7,1,6,568,2872,0,28,3412,0,90,3350,0,2108,1332,0,1234,2206,0,1222,12,1070,1136,0,1147,16,36,1,150,176,227,226,206,430,0,0,0,162,154,213,86,94,94,0,0,3,4,3,6,1,4,0,0,1,0,0,0,0,0,461,22,2273,0,8,1,5,1,849,1370,27,26,76,122,13,4,4,0,252,0,8,1872,1969,24,86,4,308,0,3,46,8,214,99,4,1242,158,0,0,2639,107,0,0,0,9,0,1,0,0,8,4,8,5,6,13,303,38,0,98,3391,131,48,19,57,12,14,3,7,1,0,0,0,0,0,158,76.0,102.0,113.0,110.0,112.0,103.0,116.0,116.0,130.0,107.0,135.0,113.0,116.0,101.0,130.0,125.0,102.0,77.0,90.0,72.0,76.0,54.0,63.0,49.0,66.0,56.0,43.0,41.0,46.0,39.0,38.0,36.0,36.0,44.0,29.0,44.0,27.0,38.0,32.0,43.0,32.0,29.0,55.0,29.0,25.0,26.0,32.0,30.0,25.0,31.0,33.0,26.0,25.0,19.0,25.0,16.0,19.0,27.0,20.0,18.0,21.0,19.0,12.0,14.0,16.0,20.0,15.0,12.0,7.0,10.0,6.0,7.0,11.0,15.0,13.0,6.0,9.0,6.0,4.0,4.0,2.0,2.0,4.0,2.0,4.0,1.0,2.0,2.0,0.0,2.0,1.0,0.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1680,1990,171,0,513,572,595,466,308,225,183,184,170,144,128,100,82,64,52,29,14,7,5,0,0,0,3574,0,0,267,0,3574,0,0,267,0,1277,10,101,29,121,24,604,1675,0,3455,382,4,0,4,3821,11,0,0,0,1,0,0,0,4,0,0,2,10,1,0,0,2,3826,0,12,18,1,0,0,3810,0,3.1209398756046998,0.0,4.793594306049823,0.0,3.474876334287946,0,0,3,0,0,0,0,717,0,249,71,108,112,77,35,19,12,15,1,1,0,0,0,0,20,59,661,6,714,11,709,368,352,4,716,4,716,101,619,1,719,114,606,10,710,3,7,8,712,4,716,6,714,516,204,437,283,14,706,76,324,311,9,0,444,276,0,0,719,1,0,0,0,0,0,0,0,0,0,2.6,2.734722222222222,0.0,1.181818181818182,1.181818181818182,49.38611111111111 +120201,Comarca Ngäbe-Buglé,Mironó,Hato Pilón,982,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,597,69,517,95,19,26,0,21,3,102,1,2,130,7,5,423,0,11,0,0,564,77,32,8,0,113,564,0,0,0,4,681,5,76,3,2,185,34,0,0,2,674,4,1,0,79,388,1,48,132,23,10,659,0,1,0,11,10,0,4,98,2,553,24,0,0,304,48,61,33,230,1,3,0,0,1,0,0,986,5.696022727272728,17.264204545454547,6.7414772727272725,21.633522727272727,1.170337738619677,2.262848751835536,1.2011747430249633,797,409,1970,72,385,16,40,44,4,40,3,8,6,0,9,27,6,2,18,1,10,749,2594,0,71,3272,0,77,3266,0,2443,900,0,1387,1956,0,1377,10,1273,683,0,686,47,74,1,156,182,213,176,206,436,0,0,1,172,161,231,87,155,303,2,4,4,9,7,8,6,14,1,1,0,0,0,0,0,0,722,41,1818,0,2,2,15,8,851,872,41,46,120,279,26,10,17,1,297,0,0,1803,1991,45,173,12,474,1,1,41,3,247,101,14,633,70,0,0,2221,337,1,1,1,19,1,0,0,0,3,2,11,10,15,52,304,188,5,173,2929,217,168,141,150,61,34,14,5,4,0,1,0,0,0,70,117.0,106.0,120.0,108.0,137.0,145.0,129.0,127.0,117.0,107.0,124.0,104.0,102.0,116.0,106.0,105.0,89.0,88.0,75.0,67.0,73.0,60.0,77.0,58.0,50.0,41.0,37.0,41.0,39.0,26.0,47.0,30.0,47.0,38.0,40.0,32.0,36.0,40.0,30.0,32.0,38.0,24.0,26.0,39.0,36.0,27.0,28.0,27.0,25.0,28.0,22.0,35.0,17.0,18.0,17.0,21.0,12.0,17.0,15.0,10.0,17.0,5.0,16.0,16.0,19.0,17.0,10.0,13.0,8.0,4.0,8.0,8.0,9.0,15.0,13.0,7.0,11.0,8.0,6.0,6.0,7.0,2.0,7.0,4.0,0.0,2.0,1.0,1.0,1.0,1.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1765,1853,176,0,588,625,552,424,318,184,202,170,163,135,109,75,73,52,53,38,20,6,5,1,1,0,3638,0,0,156,0,3638,0,0,156,0,1121,8,144,89,69,14,590,1759,0,3180,613,1,0,4,3776,6,0,0,0,0,0,0,0,8,0,2,1,2,0,0,0,4,3785,0,27,25,6,3,0,3733,0,2.9799139167862267,0.0,4.316470588235294,0.0,4.529520295202952,1,0,2,0,0,0,0,794,0,144,48,76,118,148,104,59,47,31,12,4,2,1,0,0,3,339,458,44,753,32,765,429,368,46,751,5,792,134,663,3,794,252,545,26,771,10,16,21,776,8,789,3,794,510,287,447,350,16,781,59,461,272,5,0,435,362,0,0,795,1,0,0,0,0,0,0,0,1,0,2.262233375156838,2.4981179422835638,0.0,1.3448275862068966,1.3448275862068966,44.92722710163112 +120202,Comarca Ngäbe-Buglé,Mironó,Cascabel,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,121,135,24,19,90,0,7,5,7,0,1,57,2,0,92,0,121,0,0,192,70,14,4,0,18,262,0,0,0,0,280,3,1,0,10,142,0,0,0,0,277,2,1,0,8,192,2,12,54,2,10,230,0,0,0,9,38,3,0,23,1,246,9,1,0,51,18,38,36,130,1,6,0,0,0,0,0,436,6.391304347826087,22.52173913043478,6.695652173913044,23.07246376811594,1.0,1.7857142857142858,0.6928571428571428,280,141,823,16,266,2,29,31,0,42,2,3,1,0,2,10,2,0,1,0,5,224,1187,0,26,1385,0,116,1295,0,948,463,0,603,808,0,594,9,476,332,0,335,18,32,2,74,98,107,83,98,153,0,0,0,50,68,133,42,52,49,0,0,4,4,2,1,2,4,0,0,0,0,0,0,0,0,400,9,662,0,2,0,0,0,319,318,2,23,20,56,3,0,1,0,321,8,0,769,867,18,53,0,281,0,1,56,0,3,1,2,839,10,0,0,1005,61,0,0,0,5,0,0,0,0,0,1,3,4,5,6,302,29,2,57,1373,70,46,46,45,24,15,3,0,3,1,0,0,0,0,10,53.0,62.0,56.0,54.0,62.0,51.0,58.0,57.0,58.0,54.0,56.0,63.0,44.0,52.0,41.0,49.0,43.0,33.0,32.0,23.0,33.0,30.0,20.0,21.0,24.0,16.0,9.0,16.0,11.0,24.0,14.0,17.0,20.0,14.0,12.0,18.0,16.0,16.0,13.0,11.0,15.0,14.0,17.0,8.0,6.0,7.0,13.0,12.0,10.0,16.0,11.0,8.0,14.0,12.0,5.0,3.0,4.0,5.0,10.0,10.0,7.0,3.0,4.0,5.0,6.0,7.0,3.0,2.0,5.0,6.0,5.0,5.0,2.0,1.0,1.0,4.0,3.0,2.0,1.0,1.0,0.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,821,760,55,0,287,278,256,180,128,76,77,74,60,58,50,32,25,23,14,11,5,1,1,0,0,0,1521,1,0,114,0,1521,1,0,114,0,481,1,72,12,45,8,199,818,0,1441,192,3,0,2,1629,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,1635,0,5,9,0,0,0,1622,0,3.155,0.0,4.730659025787966,0.0,3.827628361858191,0,0,0,0,0,0,0,280,0,52,22,38,42,57,31,23,4,4,4,2,1,0,0,0,0,94,186,4,276,9,271,142,138,6,274,3,277,57,223,3,277,52,228,4,276,4,0,2,278,5,275,1,279,229,51,188,92,8,272,16,125,138,1,0,168,112,0,0,279,0,0,0,0,0,0,0,0,1,0,2.7464285714285714,3.0964285714285715,0.0,1.0666666666666669,1.0666666666666669,48.10714285714285 +120203,Comarca Ngäbe-Buglé,Mironó,Hato Corotú,692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,506,44,449,58,28,5,0,11,0,0,0,16,221,8,7,288,0,11,0,0,509,23,19,0,0,123,425,0,0,0,3,551,7,17,0,0,116,1,0,0,1,550,0,0,0,43,368,1,28,102,1,8,528,2,0,0,9,11,1,2,58,6,453,32,0,0,52,14,30,25,426,1,3,0,0,0,0,0,692,5.848484848484849,16.28787878787879,6.96969696969697,23.348484848484848,1.0036297640653358,2.148820326678766,1.08529945553539,553,263,1232,33,337,8,40,26,1,39,4,5,2,0,16,12,7,1,4,0,4,962,1288,0,204,2046,0,607,1643,0,1774,476,0,922,1328,0,907,15,955,373,0,376,32,58,0,106,113,127,141,125,313,0,1,0,120,132,171,70,111,184,0,0,13,14,7,8,5,18,3,0,2,0,0,0,0,0,456,28,1343,0,2,4,13,14,588,708,25,8,94,145,17,11,10,3,191,0,1,1240,1303,38,103,11,257,4,2,55,2,190,83,4,942,42,0,0,1572,226,0,0,2,23,2,2,0,0,2,3,21,7,8,42,225,83,4,89,2170,129,45,50,44,18,19,7,9,8,2,0,0,0,0,42,71.0,76.0,69.0,77.0,65.0,68.0,90.0,62.0,64.0,74.0,68.0,75.0,56.0,77.0,67.0,68.0,65.0,69.0,68.0,60.0,58.0,43.0,50.0,40.0,19.0,28.0,31.0,33.0,36.0,31.0,28.0,25.0,26.0,24.0,38.0,26.0,26.0,30.0,26.0,22.0,28.0,17.0,26.0,22.0,15.0,19.0,15.0,13.0,18.0,16.0,16.0,22.0,21.0,17.0,15.0,11.0,5.0,7.0,14.0,17.0,14.0,6.0,10.0,18.0,19.0,6.0,6.0,11.0,9.0,6.0,8.0,6.0,14.0,3.0,6.0,3.0,7.0,3.0,1.0,2.0,1.0,0.0,0.0,2.0,1.0,2.0,2.0,2.0,3.0,0.0,3.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1059,1371,113,0,358,358,343,330,210,159,141,130,108,81,91,54,67,38,37,16,4,9,7,1,1,0,2447,3,0,93,0,2447,3,0,93,0,753,3,123,124,51,7,425,1057,0,2296,246,1,0,2,2528,2,0,0,0,1,0,0,0,10,0,1,0,0,0,0,0,6,2536,0,33,68,12,2,0,2428,0,2.818569903948773,0.0,4.200996677740863,0.0,4.898151789225325,0,0,0,0,0,0,2,551,0,169,56,58,87,88,38,19,15,9,9,2,0,2,0,0,1,277,276,15,538,7,546,273,280,5,548,2,551,106,447,7,546,229,324,11,542,2,9,18,535,88,465,13,540,349,204,147,406,10,543,82,248,221,2,0,306,247,0,0,550,0,0,0,0,0,0,0,0,3,0,2.2423146473779387,2.35623869801085,1.0,1.0909090909090908,1.0909090909090908,45.69801084990959 +120204,Comarca Ngäbe-Buglé,Mironó,Hato Culantro,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,325,159,305,25,12,139,0,7,1,0,0,0,123,0,3,357,1,5,0,0,414,61,13,1,0,70,419,0,0,0,0,489,1,2,0,16,161,4,0,0,0,486,2,1,0,9,340,0,29,107,0,4,483,0,0,0,2,4,0,0,24,2,431,31,1,0,185,8,4,10,275,0,1,0,0,6,0,0,673,5.865284974093265,16.39896373056995,6.818652849740933,22.30569948186529,1.0,2.067484662576687,1.0040899795501022,489,277,1459,41,927,20,36,45,5,90,5,8,4,0,11,13,8,1,8,0,17,781,2147,0,109,2819,0,248,2680,0,1989,939,0,1253,1675,0,1248,5,968,707,0,713,40,71,1,185,151,186,168,203,371,0,0,0,131,161,187,66,113,130,0,0,9,10,12,5,5,9,0,1,0,0,0,0,0,0,812,28,1351,0,1,5,6,2,666,618,26,39,64,97,15,5,9,3,640,0,0,1601,1805,50,50,5,508,3,1,216,0,17,17,2,1400,202,0,0,2010,168,0,0,3,10,0,0,0,0,0,2,11,11,10,39,632,58,5,72,2719,161,113,83,68,34,10,5,5,3,2,0,0,1,0,202,122.0,111.0,117.0,128.0,137.0,137.0,121.0,121.0,114.0,107.0,120.0,108.0,98.0,94.0,86.0,84.0,83.0,60.0,65.0,65.0,47.0,42.0,54.0,44.0,33.0,33.0,35.0,42.0,36.0,33.0,31.0,30.0,27.0,29.0,26.0,22.0,26.0,22.0,24.0,27.0,27.0,23.0,31.0,21.0,25.0,29.0,22.0,23.0,26.0,32.0,23.0,16.0,24.0,13.0,18.0,17.0,14.0,18.0,16.0,23.0,10.0,9.0,16.0,11.0,21.0,20.0,6.0,11.0,12.0,5.0,7.0,9.0,8.0,8.0,13.0,10.0,6.0,5.0,3.0,3.0,5.0,3.0,4.0,2.0,1.0,2.0,5.0,3.0,1.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1721,1528,157,0,615,600,506,357,220,179,143,121,127,132,94,88,67,54,45,27,15,11,4,0,1,0,3155,1,0,250,0,3155,1,0,250,0,1086,4,69,48,64,11,407,1717,0,3063,341,2,0,3,3396,1,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,1,3404,0,11,14,2,0,0,3379,0,3.1578947368421053,0.0,4.587684069611781,0.0,3.84380504991192,0,0,0,0,0,0,0,489,0,96,40,49,68,91,65,39,13,15,6,4,0,0,0,2,1,211,278,4,485,5,484,325,164,6,483,1,488,125,364,1,488,143,346,2,487,1,1,4,485,5,484,2,487,404,85,276,213,11,478,26,158,303,2,0,305,184,0,0,489,0,0,0,0,0,0,0,0,0,0,3.2740286298568506,3.69120654396728,0.0,1.0625,1.0625,51.29856850715746 +120205,Comarca Ngäbe-Buglé,Mironó,Hato Jobo,447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,219,135,197,23,23,71,0,40,1,3,2,5,99,1,3,240,0,2,0,0,262,52,34,6,1,30,324,0,0,0,1,355,0,7,0,0,79,6,0,0,0,354,1,0,0,4,260,0,15,68,1,7,349,0,0,0,4,2,0,1,11,4,315,23,1,0,138,5,16,17,177,0,2,0,0,0,0,0,447,5.307692307692308,17.46153846153846,7.0,24.0,1.0,1.4985915492957746,0.4619718309859155,355,232,1045,21,526,9,22,30,1,79,2,0,4,0,16,8,3,1,8,0,9,560,1443,0,34,1969,0,318,1685,0,1507,496,0,824,1179,0,822,2,825,354,0,354,43,75,5,95,105,99,110,136,293,0,0,0,108,113,128,63,85,165,0,1,7,7,3,1,4,3,0,0,0,0,0,0,0,0,507,19,1060,0,3,1,0,5,451,559,19,26,45,153,11,1,6,2,308,0,0,1189,1137,25,89,1,265,1,18,127,0,221,61,5,585,42,0,0,1395,186,0,0,0,5,0,0,0,0,0,2,6,4,4,18,369,56,0,67,2058,90,20,35,46,20,10,2,1,1,1,0,0,0,0,42,84.0,84.0,81.0,74.0,79.0,82.0,78.0,60.0,72.0,46.0,58.0,60.0,60.0,55.0,63.0,75.0,55.0,69.0,53.0,51.0,47.0,43.0,49.0,39.0,29.0,33.0,27.0,26.0,29.0,22.0,23.0,20.0,32.0,25.0,20.0,13.0,18.0,16.0,24.0,23.0,12.0,14.0,20.0,24.0,7.0,22.0,20.0,8.0,13.0,18.0,17.0,15.0,15.0,13.0,17.0,11.0,18.0,10.0,19.0,10.0,11.0,8.0,9.0,6.0,5.0,5.0,9.0,5.0,5.0,6.0,5.0,8.0,4.0,2.0,1.0,2.0,8.0,1.0,2.0,2.0,2.0,4.0,5.0,1.0,1.0,3.0,0.0,1.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1036,1203,87,0,402,338,296,303,207,137,120,94,77,81,77,68,39,30,20,15,13,6,3,0,0,0,2225,0,1,100,0,2225,0,1,100,0,727,2,92,80,35,2,356,1032,0,1990,336,0,0,4,2311,8,0,0,0,0,0,0,0,3,0,1,171,1,0,0,0,7,2146,0,13,34,4,1,0,2274,0,3.0,0.0,4.379098360655738,0.0,4.395098882201204,0,35,0,0,0,0,0,320,0,59,30,38,73,71,43,25,5,9,1,1,0,0,0,0,0,152,203,10,345,2,353,203,152,5,350,2,353,48,307,1,354,120,235,6,349,0,6,4,351,5,350,0,355,251,104,226,129,8,347,24,127,203,1,0,258,97,0,0,352,3,0,0,0,0,0,0,0,0,0,3.3492957746478877,3.202816901408451,0.0,1.0416666666666667,1.0416666666666667,49.971830985915496 +120206,Comarca Ngäbe-Buglé,Mironó,Hato Julí,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,422,35,386,38,6,4,0,25,0,147,0,1,76,2,1,231,0,1,0,0,389,47,19,4,0,171,288,0,0,0,0,459,1,10,2,0,142,3,0,0,3,454,2,0,0,192,180,0,25,59,1,2,455,2,0,0,1,1,0,6,186,4,256,6,1,0,176,1,10,8,257,0,0,0,0,7,0,0,617,4.333333333333333,11.677966101694915,6.728813559322034,22.54237288135593,1.017429193899782,2.363834422657952,1.30718954248366,467,223,1095,58,273,14,42,14,1,37,8,3,2,0,5,5,3,2,7,0,5,589,1384,0,89,1884,0,46,1927,0,1572,401,0,759,1214,0,755,4,907,307,0,308,27,47,3,98,73,105,126,106,245,0,0,0,93,104,116,77,90,245,1,4,20,22,11,13,12,18,6,0,3,0,0,0,0,0,504,23,1050,0,2,8,1,4,488,517,31,10,120,108,25,11,25,0,228,0,1,1080,1157,66,140,12,282,6,0,11,1,103,68,9,610,57,0,0,1222,311,0,5,3,31,3,2,0,0,1,2,21,13,8,61,192,101,14,114,1793,135,34,45,65,32,34,22,14,4,2,0,0,0,0,57,66.0,69.0,67.0,62.0,81.0,64.0,81.0,66.0,46.0,58.0,81.0,55.0,52.0,50.0,56.0,58.0,58.0,56.0,59.0,50.0,53.0,50.0,37.0,39.0,29.0,31.0,26.0,26.0,42.0,30.0,29.0,18.0,20.0,27.0,27.0,26.0,19.0,26.0,19.0,17.0,19.0,15.0,18.0,17.0,15.0,15.0,17.0,19.0,15.0,12.0,13.0,12.0,10.0,10.0,15.0,11.0,13.0,10.0,9.0,10.0,13.0,5.0,5.0,8.0,8.0,7.0,5.0,7.0,5.0,4.0,3.0,5.0,3.0,5.0,5.0,8.0,5.0,4.0,6.0,1.0,3.0,0.0,6.0,1.0,3.0,1.0,0.0,1.0,3.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,954,1186,97,0,345,315,294,281,208,155,121,107,84,78,60,53,39,28,21,24,13,6,3,2,0,0,2183,0,0,54,0,2183,0,0,54,0,657,3,106,94,37,3,383,954,0,1871,365,1,0,1,2224,3,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,3,2234,0,23,42,4,1,1,2166,0,2.6153846153846154,0.0,3.914933837429112,0.0,5.365221278497988,0,0,0,0,0,0,1,466,0,66,40,71,75,65,52,38,26,19,7,6,1,0,0,0,1,327,140,71,396,49,418,250,217,64,403,1,466,56,411,5,462,227,240,55,412,29,26,26,441,11,456,8,459,294,173,351,116,10,457,39,239,187,2,0,226,241,0,1,465,0,0,0,0,0,0,0,0,1,0,2.312633832976445,2.477516059957173,0.0,1.0625,1.0625,45.12633832976445 +120207,Comarca Ngäbe-Buglé,Mironó,Quebrada de Loro,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,451,12,410,42,3,3,0,5,1,0,0,4,243,3,1,213,0,0,0,0,443,10,6,4,1,158,303,2,0,0,1,464,0,8,0,0,112,0,0,0,1,463,0,0,0,165,199,1,31,61,1,6,451,1,3,0,5,4,0,1,157,1,287,18,0,0,62,27,90,10,95,0,178,0,0,2,0,0,584,6.764044943820225,23.0561797752809,7.0,24.0,1.0021551724137931,2.127155172413793,1.105603448275862,465,192,1096,31,475,13,26,17,2,48,5,0,6,0,7,20,6,1,3,0,8,633,1438,0,54,2017,0,430,1641,0,1662,409,0,920,1151,0,912,8,833,318,0,319,29,61,2,83,103,122,152,118,304,0,1,0,85,125,140,58,87,187,1,1,10,23,10,9,10,26,3,0,2,0,0,0,0,0,318,30,1322,0,2,16,10,3,603,698,14,4,99,70,16,15,15,0,120,0,0,1134,1242,58,103,17,150,0,0,7,0,104,100,6,797,64,0,0,1388,245,0,1,6,26,2,2,0,0,0,5,11,13,14,37,90,56,8,114,2002,118,36,15,57,29,27,10,12,4,1,1,0,0,0,64,84.0,93.0,72.0,56.0,60.0,77.0,81.0,56.0,64.0,63.0,97.0,67.0,49.0,60.0,78.0,59.0,61.0,64.0,50.0,44.0,43.0,48.0,47.0,33.0,36.0,36.0,27.0,26.0,25.0,31.0,17.0,30.0,33.0,29.0,20.0,17.0,22.0,19.0,21.0,19.0,22.0,21.0,21.0,19.0,16.0,12.0,15.0,22.0,10.0,17.0,16.0,12.0,19.0,14.0,11.0,6.0,13.0,13.0,11.0,9.0,3.0,6.0,5.0,11.0,11.0,3.0,8.0,11.0,9.0,2.0,5.0,3.0,9.0,11.0,2.0,10.0,9.0,6.0,8.0,1.0,7.0,3.0,5.0,2.0,2.0,2.0,3.0,1.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1057,1192,127,0,365,341,351,278,207,145,129,98,99,76,72,52,36,33,30,34,19,7,3,1,0,0,2263,1,0,112,0,2263,1,0,112,0,755,3,71,59,46,4,386,1052,0,2266,109,1,0,5,2362,2,0,0,0,0,0,0,0,7,0,2,0,0,0,1,0,3,2370,0,46,77,3,0,0,2250,0,2.769316909294513,0.0,4.258122743682311,0.0,4.978535353535354,0,0,0,0,0,0,0,465,0,101,54,75,65,60,31,34,18,16,4,1,1,1,2,0,2,317,148,6,459,6,459,288,177,5,460,1,464,102,363,1,464,241,224,8,457,2,6,5,460,62,403,3,462,298,167,184,281,25,440,50,193,219,3,0,208,257,0,1,460,1,0,0,0,0,0,0,0,3,0,2.438709677419354,2.670967741935484,0.0,1.0833333333333333,1.0833333333333333,48.03225806451613 +120208,Comarca Ngäbe-Buglé,Mironó,Salto Dupí,740,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,557,27,539,25,4,7,0,14,2,0,0,9,190,4,6,378,0,4,0,0,494,39,52,6,0,67,523,1,0,0,0,591,4,1,3,0,139,3,0,0,0,589,2,0,0,41,425,4,21,89,8,3,556,2,1,0,20,11,1,1,53,4,466,64,3,0,220,13,36,53,214,1,52,0,0,2,0,0,741,4.017167381974249,7.798283261802575,6.901287553648069,23.128755364806867,1.1708967851099832,3.296108291032149,2.1336717428087986,692,400,1687,70,444,49,36,42,5,46,2,3,6,0,11,17,7,2,8,0,12,1274,1760,0,117,2917,0,280,2754,0,2354,680,0,1265,1769,0,1244,21,1284,485,0,491,43,121,3,130,191,198,151,157,408,3,2,1,116,171,246,106,129,279,0,5,12,12,10,7,9,31,1,0,1,0,0,0,0,0,696,23,1708,0,1,4,2,1,748,901,21,37,158,162,29,10,16,1,340,0,0,1672,1810,65,142,11,434,2,1,60,1,92,96,9,285,8,0,0,2059,322,1,5,4,34,1,1,0,0,1,3,16,6,12,67,375,102,7,130,2706,206,189,126,120,57,34,22,5,7,2,0,0,0,0,8,97.0,118.0,123.0,110.0,106.0,97.0,115.0,120.0,96.0,73.0,89.0,92.0,87.0,98.0,106.0,97.0,98.0,72.0,83.0,65.0,77.0,59.0,69.0,57.0,48.0,51.0,39.0,40.0,38.0,40.0,35.0,35.0,40.0,33.0,28.0,29.0,32.0,24.0,35.0,24.0,36.0,30.0,30.0,31.0,17.0,25.0,21.0,25.0,26.0,15.0,31.0,25.0,22.0,14.0,20.0,18.0,14.0,14.0,16.0,23.0,19.0,14.0,12.0,20.0,19.0,19.0,8.0,10.0,13.0,4.0,5.0,9.0,8.0,6.0,11.0,9.0,6.0,9.0,5.0,8.0,5.0,5.0,6.0,4.0,3.0,3.0,2.0,5.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1527,1785,170,0,554,501,472,415,310,208,171,144,144,112,112,85,84,54,39,37,23,14,2,0,1,0,3328,1,0,153,0,3328,1,0,153,0,1028,6,87,162,68,6,603,1522,0,3044,435,3,0,2,3466,4,0,0,2,0,0,0,0,8,0,0,0,0,0,0,0,0,3482,0,32,58,2,0,0,3390,0,3.010827532869296,0.0,4.479503105590062,0.0,4.771970132107984,0,0,0,0,0,0,0,692,0,74,37,70,83,145,105,70,40,46,12,5,1,2,0,0,2,337,355,9,683,7,685,420,272,5,687,0,692,127,565,2,690,353,339,10,682,2,8,23,669,14,678,5,687,545,147,512,180,14,678,41,356,292,3,0,401,291,0,1,688,2,0,0,0,0,0,0,0,1,0,2.4161849710982657,2.615606936416185,0.0,1.08,1.08,45.21531791907515 +120301,Comarca Ngäbe-Buglé,Müna,Chichica,1184,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,144,554,121,569,129,67,4,0,45,5,304,49,10,210,1,3,197,1,44,0,0,652,56,100,11,0,296,489,3,0,0,31,819,0,7,2,0,352,6,0,0,3,806,10,0,0,356,225,3,97,74,53,11,802,3,0,0,2,11,1,102,324,3,379,11,0,0,400,16,99,28,193,0,36,0,0,45,2,0,1187,6.237980769230769,21.40625,6.882211538461538,23.528846153846157,1.0048840048840049,2.468864468864469,1.3467643467643469,824,385,1639,50,369,23,60,28,3,65,4,13,7,0,11,9,3,4,3,1,11,1311,1768,0,337,2742,0,630,2449,0,2472,607,0,1310,1769,0,1261,49,1274,495,0,499,31,87,1,137,129,152,149,139,278,0,0,0,137,168,210,104,124,331,1,6,39,72,53,82,40,80,21,2,7,0,0,0,0,0,402,9,2118,0,6,0,3,12,861,1199,8,38,175,96,29,7,18,1,83,0,0,1630,1840,143,47,7,107,10,0,85,10,42,64,2,2406,29,0,0,1795,549,0,5,12,153,9,6,0,0,10,7,90,10,16,52,111,58,13,44,2988,132,48,50,48,32,37,28,36,34,5,2,0,0,1,29,76.0,119.0,94.0,102.0,95.0,109.0,87.0,101.0,89.0,69.0,103.0,87.0,68.0,90.0,103.0,94.0,86.0,75.0,70.0,80.0,73.0,76.0,70.0,48.0,58.0,43.0,42.0,48.0,53.0,35.0,41.0,37.0,30.0,42.0,35.0,39.0,42.0,38.0,34.0,34.0,32.0,21.0,41.0,32.0,31.0,18.0,31.0,29.0,11.0,22.0,29.0,38.0,27.0,29.0,18.0,22.0,21.0,19.0,8.0,12.0,17.0,19.0,9.0,19.0,18.0,12.0,16.0,16.0,11.0,6.0,8.0,6.0,11.0,11.0,6.0,5.0,8.0,8.0,4.0,2.0,8.0,4.0,5.0,3.0,6.0,2.0,9.0,2.0,2.0,3.0,2.0,1.0,0.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1392,1896,182,0,486,455,451,405,325,221,185,187,157,111,141,82,82,61,42,27,26,18,7,0,1,0,3389,2,1,78,0,3389,2,1,78,0,1026,5,139,182,66,9,654,1389,0,3083,386,1,0,1,3424,11,0,0,0,0,0,0,0,34,0,0,8,9,1,0,0,9,3443,0,87,124,12,0,0,3247,0,2.601769911504425,0.0,4.030940594059406,0.0,5.992795389048991,0,1,5,1,0,0,1,816,0,430,60,48,57,41,33,26,25,41,24,9,4,6,1,1,17,498,326,121,703,127,697,328,496,96,728,12,812,175,649,12,812,351,473,141,683,118,23,113,711,132,692,37,787,475,349,499,325,13,811,129,406,284,5,0,455,369,0,1,815,1,0,0,0,0,0,0,0,7,0,1.9781553398058247,2.233009708737864,1.0,1.0,1.0,45.28519417475728 +120302,Comarca Ngäbe-Buglé,Müna,Alto Caballero,918,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,675,27,528,164,3,1,0,20,3,393,3,4,143,4,7,158,0,7,0,0,653,26,29,10,1,420,291,0,0,0,8,719,13,121,4,1,46,17,0,0,3,706,10,0,0,342,168,1,64,114,27,3,707,1,0,0,2,9,0,41,386,7,282,3,0,0,189,9,10,4,416,1,84,0,3,0,3,0,921,4.257575757575758,11.035353535353536,6.217171717171717,16.88888888888889,1.0139082058414464,2.6648122392211406,1.5688456189151598,729,389,1526,72,362,7,39,41,2,58,5,9,7,1,15,11,4,13,7,0,9,1660,1241,0,501,2400,0,1162,1739,0,2413,488,0,1314,1587,0,1296,18,1239,348,0,352,45,85,4,114,136,147,140,131,343,0,2,1,136,144,203,93,111,313,2,6,50,51,55,49,65,102,8,2,11,0,0,0,0,0,935,37,1384,0,2,18,12,32,758,520,34,40,275,138,91,16,47,2,390,0,0,1599,1648,173,191,19,459,8,0,109,0,271,108,11,1218,13,0,0,1641,542,1,5,11,141,4,11,0,0,0,15,81,28,19,127,341,167,22,172,2561,188,79,101,75,59,45,51,39,30,2,2,1,1,0,13,84.0,80.0,74.0,108.0,99.0,93.0,106.0,77.0,88.0,82.0,84.0,89.0,68.0,81.0,79.0,80.0,73.0,65.0,70.0,74.0,54.0,73.0,71.0,56.0,70.0,41.0,55.0,57.0,42.0,41.0,41.0,38.0,41.0,35.0,33.0,40.0,36.0,32.0,39.0,28.0,35.0,22.0,35.0,32.0,22.0,23.0,27.0,15.0,18.0,23.0,24.0,17.0,15.0,10.0,20.0,21.0,19.0,12.0,17.0,18.0,17.0,10.0,12.0,15.0,16.0,16.0,10.0,12.0,13.0,10.0,8.0,6.0,8.0,12.0,10.0,4.0,5.0,10.0,6.0,2.0,4.0,2.0,6.0,2.0,4.0,4.0,4.0,5.0,1.0,3.0,0.0,1.0,3.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1292,1780,175,0,445,446,401,362,324,236,188,175,146,106,86,87,70,61,44,27,18,17,5,2,1,0,3171,2,0,74,0,3171,2,0,74,0,928,9,128,131,61,3,695,1292,0,2336,906,5,0,6,3065,13,2,0,0,0,0,0,1,160,0,2,2,8,0,1,0,12,3222,0,159,298,23,6,4,2757,0,2.7167774086378738,0.0,4.08984375,0.0,6.281798583307669,0,1,2,0,0,0,2,724,0,127,67,87,85,108,66,45,36,63,26,5,4,5,2,2,1,609,120,221,508,163,566,258,471,122,607,5,724,258,471,19,710,550,179,208,521,106,102,133,596,333,396,32,697,359,370,352,377,24,705,92,396,234,7,0,361,368,0,1,690,6,2,0,0,0,0,0,0,30,0,2.1934156378600824,2.2606310013717423,1.0,1.0,1.0,46.55418381344308 +120303,Comarca Ngäbe-Buglé,Müna,Bakama,414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,80,192,30,60,1,0,18,1,57,1,5,94,1,1,142,1,0,0,0,286,6,8,2,0,68,233,1,0,0,0,302,0,42,4,0,59,7,0,0,0,302,0,0,0,63,122,6,61,40,10,0,300,1,0,0,0,1,0,1,84,1,212,4,0,0,47,43,13,33,154,0,11,0,0,1,0,0,414,5.7,9.744444444444444,6.722222222222222,12.844444444444443,1.0,2.73841059602649,1.5927152317880795,302,174,684,40,175,2,19,6,2,39,2,1,12,0,1,4,7,2,1,1,3,532,742,0,39,1235,0,273,1001,0,972,302,0,456,818,0,452,4,524,294,0,297,12,32,1,39,61,72,88,67,157,0,0,0,57,63,96,28,47,98,0,0,10,7,10,15,9,6,1,1,0,0,0,0,0,0,320,8,705,0,1,4,1,3,290,361,9,42,57,26,10,8,3,0,224,0,0,713,745,25,75,8,184,2,0,34,0,111,60,1,403,7,0,0,875,138,0,0,1,18,1,0,0,0,0,1,5,8,7,21,202,20,2,62,1198,79,65,31,31,20,11,6,6,2,1,0,1,0,0,7,33.0,54.0,48.0,49.0,46.0,34.0,51.0,36.0,40.0,34.0,46.0,43.0,34.0,36.0,34.0,42.0,30.0,25.0,22.0,24.0,35.0,30.0,35.0,24.0,15.0,25.0,25.0,16.0,20.0,21.0,17.0,13.0,18.0,15.0,13.0,12.0,10.0,19.0,13.0,8.0,12.0,9.0,11.0,12.0,11.0,12.0,6.0,12.0,14.0,12.0,12.0,7.0,10.0,12.0,10.0,3.0,10.0,5.0,5.0,6.0,7.0,8.0,5.0,9.0,3.0,4.0,8.0,5.0,6.0,1.0,4.0,2.0,5.0,8.0,2.0,8.0,1.0,4.0,8.0,5.0,2.0,0.0,2.0,0.0,2.0,5.0,2.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,618,750,90,0,230,195,193,143,139,107,76,62,55,56,51,29,32,24,21,26,6,9,3,1,0,0,1390,0,0,68,0,1390,0,0,68,0,459,0,82,41,31,2,225,618,0,1203,255,0,0,0,1414,6,0,0,0,0,0,0,0,38,0,0,1,4,0,0,0,24,1429,0,19,48,6,0,0,1385,0,2.9103053435114505,0.0,4.398753894080997,0.0,4.5699588477366255,0,1,2,0,0,0,3,296,0,41,29,38,54,66,35,12,7,13,4,1,1,1,0,0,0,180,122,26,276,28,274,124,178,26,276,3,299,119,183,3,299,169,133,27,275,10,17,13,289,30,272,4,298,204,98,215,87,7,295,41,158,95,8,0,203,99,0,0,294,0,0,0,0,0,0,0,0,8,0,2.3609271523178808,2.466887417218543,0.0,1.0,1.0,49.12582781456954 +120304,Comarca Ngäbe-Buglé,Müna,Cerro Caña,681,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,354,205,311,47,166,3,0,28,8,46,57,10,173,3,1,185,1,87,0,0,511,21,27,3,1,110,453,0,0,0,0,563,2,24,1,0,63,29,0,0,1,556,6,0,0,50,301,8,137,66,0,1,557,0,0,0,5,1,0,0,55,7,491,10,0,0,252,9,3,9,290,0,0,0,0,0,0,0,682,4.954022988505747,7.547892720306513,6.854406130268199,21.0,1.0088809946714032,1.6234458259325044,0.5683836589698046,568,303,1554,35,441,26,49,45,4,69,4,5,6,0,3,18,4,1,5,1,15,895,1848,0,119,2624,0,127,2616,0,2169,574,0,1282,1461,0,1280,2,1044,417,0,421,56,72,0,146,143,196,150,140,311,0,1,1,152,134,238,84,119,221,1,2,23,24,29,24,22,27,2,2,1,0,1,0,0,0,685,25,1486,0,12,6,6,2,783,637,24,40,104,125,29,5,10,4,423,1,1,1463,1646,67,70,5,433,1,3,122,1,241,116,5,1358,39,0,0,1816,322,2,0,8,45,1,2,0,0,1,2,33,15,12,32,414,125,7,69,2761,127,47,22,24,25,27,7,12,13,2,1,1,0,1,39,92.0,108.0,76.0,90.0,82.0,108.0,92.0,88.0,85.0,92.0,101.0,80.0,79.0,99.0,106.0,85.0,88.0,78.0,62.0,78.0,61.0,49.0,38.0,52.0,35.0,40.0,34.0,36.0,43.0,34.0,43.0,28.0,26.0,30.0,29.0,24.0,30.0,36.0,30.0,26.0,22.0,27.0,18.0,27.0,29.0,20.0,14.0,21.0,16.0,20.0,21.0,24.0,20.0,19.0,9.0,15.0,17.0,13.0,13.0,18.0,16.0,21.0,13.0,9.0,14.0,9.0,11.0,7.0,10.0,9.0,4.0,6.0,12.0,11.0,10.0,5.0,6.0,5.0,5.0,1.0,3.0,4.0,6.0,5.0,11.0,6.0,5.0,2.0,2.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1378,1571,160,0,448,465,465,391,235,187,156,146,123,91,93,76,73,46,43,22,29,15,4,0,1,0,2979,0,1,129,0,2979,0,1,129,0,836,5,145,149,67,9,524,1374,0,2629,479,1,0,3,3061,19,0,0,0,0,0,0,0,26,0,6,102,14,0,0,0,26,2961,0,61,120,1,0,1,2926,0,2.825938566552901,0.0,4.404624277456647,0.0,5.066902541009971,1,19,3,0,0,0,4,541,0,166,65,80,91,61,29,18,16,20,11,2,1,1,1,2,4,329,239,6,562,4,564,347,221,9,559,1,567,124,444,4,564,255,313,16,552,4,12,37,531,30,538,6,562,380,188,223,345,16,552,44,269,252,3,0,300,268,0,0,561,1,0,0,0,0,0,0,0,6,0,2.5757042253521125,2.897887323943662,0.0,1.1282051282051282,1.1282051282051282,48.471830985915496 +120305,Comarca Ngäbe-Buglé,Müna,Cerro Puerco,1253,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,779,112,680,106,20,40,0,41,11,2,0,14,361,5,7,386,0,123,0,0,778,84,31,2,3,165,732,0,0,0,1,898,0,5,5,0,346,1,0,0,1,893,4,0,0,74,362,4,59,285,90,24,818,2,1,0,12,64,1,1,143,4,741,9,0,0,200,35,113,55,474,0,18,0,0,2,1,0,1255,4.459574468085107,9.148936170212766,6.753191489361702,21.41276595744681,1.0111358574610243,2.374164810690423,1.2628062360801782,908,486,2454,82,1069,24,35,67,9,153,8,9,6,0,22,13,5,3,10,0,7,1289,3396,0,139,4546,0,455,4230,0,3485,1200,0,1964,2721,0,1953,11,1722,999,0,1007,29,110,2,232,227,320,274,282,574,0,0,0,226,234,279,145,143,388,0,2,28,33,35,44,43,26,1,0,1,0,0,0,0,0,727,23,2964,0,18,2,2,6,1261,1632,26,39,99,179,42,7,18,0,400,2,0,2609,2701,61,160,8,411,2,1,103,1,300,128,9,2651,2,0,0,3111,557,0,1,4,39,1,1,0,0,1,3,25,10,16,66,429,69,7,124,4532,280,139,90,131,67,27,19,19,2,2,0,0,0,0,2,153.0,154.0,129.0,189.0,175.0,165.0,161.0,173.0,156.0,141.0,175.0,155.0,137.0,138.0,165.0,138.0,133.0,116.0,116.0,121.0,110.0,86.0,110.0,79.0,88.0,79.0,75.0,60.0,59.0,60.0,60.0,50.0,43.0,52.0,54.0,40.0,35.0,49.0,45.0,44.0,54.0,36.0,56.0,42.0,34.0,38.0,35.0,32.0,33.0,41.0,29.0,35.0,23.0,29.0,31.0,25.0,20.0,23.0,28.0,31.0,32.0,11.0,27.0,22.0,24.0,18.0,16.0,23.0,17.0,14.0,11.0,8.0,22.0,21.0,11.0,7.0,11.0,7.0,6.0,4.0,11.0,4.0,5.0,8.0,6.0,7.0,1.0,2.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2366,2693,251,0,800,796,770,624,473,333,259,213,222,179,147,127,116,88,73,35,34,14,3,2,2,0,5019,1,0,290,0,5019,1,0,290,0,1575,11,204,245,120,21,772,2362,0,4830,475,5,0,3,5294,5,0,0,0,0,0,0,0,8,0,1,0,1,0,1,0,6,5301,0,33,29,6,1,0,5241,0,3.137113402061856,0.0,4.495791245791246,0.0,4.625423728813559,1,0,0,0,0,0,0,907,0,237,87,92,106,151,105,52,28,33,9,5,2,1,0,0,0,421,487,11,897,5,903,346,562,4,904,2,906,82,826,4,904,211,697,13,895,6,7,21,887,36,872,5,903,606,302,433,475,25,883,91,341,471,5,0,463,445,0,0,901,3,0,0,0,0,0,0,0,4,0,2.873348017621145,2.9746696035242293,1.0,1.173913043478261,1.173913043478261,49.02312775330397 +120306,Comarca Ngäbe-Buglé,Müna,Krüa,592,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,81,314,75,8,222,71,0,19,2,1,0,5,116,1,6,230,2,36,0,0,336,48,9,4,0,5,390,2,0,0,0,397,20,5,0,0,84,87,0,0,0,394,3,0,0,8,67,4,73,120,115,10,375,0,3,0,4,15,0,1,1,4,390,1,0,0,97,165,19,57,48,0,6,0,0,5,0,0,593,6.072519083969466,18.09923664122137,6.938931297709924,23.61450381679389,1.0302267002518892,1.1385390428211586,0.1385390428211587,409,252,1383,35,520,36,36,95,6,86,15,13,15,0,8,20,6,1,5,2,3,421,2138,0,8,2551,0,66,2493,0,1689,870,0,1108,1451,0,1107,1,671,780,0,784,11,41,0,142,158,133,154,174,364,1,4,0,89,108,156,58,62,102,4,0,8,0,2,1,3,0,0,0,0,0,0,0,0,0,228,3,1750,0,1,1,1,0,738,967,15,30,17,62,0,0,1,0,149,0,0,1371,1530,14,2,0,152,4,0,57,0,152,55,2,1672,89,0,0,1860,120,0,0,0,1,0,0,0,0,0,0,4,3,5,8,153,52,0,6,2726,61,4,5,7,0,4,4,1,0,0,0,0,0,0,89,72.0,78.0,96.0,96.0,98.0,93.0,89.0,110.0,100.0,88.0,93.0,91.0,96.0,89.0,92.0,80.0,90.0,71.0,53.0,52.0,50.0,38.0,37.0,32.0,45.0,41.0,24.0,25.0,34.0,27.0,28.0,16.0,22.0,21.0,30.0,18.0,12.0,28.0,26.0,25.0,25.0,27.0,24.0,22.0,20.0,29.0,14.0,34.0,38.0,20.0,26.0,15.0,19.0,12.0,20.0,12.0,12.0,10.0,15.0,17.0,11.0,7.0,5.0,13.0,10.0,8.0,13.0,12.0,7.0,12.0,9.0,1.0,10.0,7.0,10.0,13.0,8.0,2.0,4.0,3.0,2.0,1.0,5.0,3.0,1.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1381,1382,138,0,440,480,461,346,202,151,117,109,118,135,92,66,46,52,37,30,12,6,0,0,1,0,2667,0,0,234,0,2667,0,0,234,0,675,3,45,255,88,16,439,1380,0,2297,604,0,0,2,2884,5,0,0,0,0,0,0,0,10,0,0,2,0,0,0,0,5,2894,0,4,20,0,0,0,2877,0,2.972067039106145,0.0,4.698305084745763,0.0,3.5146501206480525,0,0,0,0,0,0,1,408,0,181,51,59,70,26,7,1,4,4,0,1,0,0,0,0,5,40,369,1,408,6,403,232,177,2,407,0,409,28,381,12,397,61,348,1,408,0,1,1,408,0,409,2,407,255,154,172,237,2,407,26,154,217,12,0,265,144,0,0,406,1,0,0,0,0,0,0,0,2,0,3.352078239608802,3.740831295843521,0.0,1.1724137931034482,1.1724137931034482,51.31295843520783 +120307,Comarca Ngäbe-Buglé,Müna,Maraca,1053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,617,134,549,74,47,38,0,27,22,158,36,14,257,3,2,258,0,29,0,0,665,68,23,1,0,79,675,1,0,0,2,757,5,2,1,1,285,2,0,0,0,751,6,0,0,48,373,3,69,225,25,14,734,3,1,0,6,12,1,5,50,6,685,11,0,0,186,30,111,93,333,0,3,0,0,0,1,0,1053,4.523148148148148,10.88425925925926,6.916666666666667,23.15740740740741,1.0013210039630118,1.4808454425363275,0.463672391017173,758,363,1879,46,557,21,31,46,2,83,5,3,1,0,12,17,9,1,6,0,6,1012,2295,0,80,3227,0,241,3066,0,2556,751,0,1451,1856,0,1446,5,1236,620,0,621,26,72,0,170,200,215,237,200,431,0,0,1,150,173,245,107,138,248,1,2,11,14,16,14,5,10,0,0,0,0,0,0,0,0,280,11,2337,0,3,1,3,8,955,1286,17,71,41,136,10,1,7,1,93,0,0,1814,1981,27,46,2,136,0,0,76,2,266,113,4,2014,3,0,0,2306,296,1,1,6,18,0,0,0,0,2,1,13,2,7,12,184,39,2,29,3506,149,33,22,43,10,13,6,9,1,0,0,0,0,0,3,110.0,128.0,116.0,134.0,118.0,106.0,115.0,112.0,117.0,111.0,134.0,113.0,99.0,101.0,128.0,118.0,81.0,104.0,86.0,73.0,65.0,57.0,66.0,53.0,40.0,49.0,42.0,37.0,50.0,38.0,42.0,44.0,35.0,31.0,31.0,39.0,28.0,34.0,30.0,30.0,28.0,32.0,48.0,29.0,24.0,21.0,25.0,26.0,23.0,30.0,34.0,24.0,21.0,19.0,12.0,12.0,14.0,16.0,25.0,12.0,22.0,10.0,13.0,19.0,19.0,11.0,10.0,7.0,14.0,8.0,10.0,11.0,12.0,19.0,11.0,9.0,7.0,8.0,4.0,8.0,3.0,3.0,6.0,3.0,3.0,7.0,4.0,2.0,5.0,2.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1742,1861,192,0,606,561,575,462,281,216,183,161,161,125,110,79,83,50,63,36,18,20,3,2,0,0,3649,0,0,146,0,3649,0,0,146,0,1086,7,141,158,84,16,563,1740,0,3521,274,0,0,6,3782,3,0,1,0,0,0,0,0,3,0,1,0,0,0,0,0,1,3793,0,22,43,8,0,0,3722,0,3.1004304160688667,0.0,4.474108170310702,0.0,4.49802371541502,0,0,0,0,0,0,0,758,0,332,107,88,83,84,27,14,8,11,3,0,1,0,0,0,0,347,411,12,746,5,753,288,470,2,756,3,755,74,684,7,751,215,543,11,747,3,8,13,745,27,731,6,752,444,314,435,323,18,740,115,354,288,1,0,391,367,0,0,758,0,0,0,0,0,0,0,0,0,0,2.3931398416886545,2.613456464379947,1.0,1.0454545454545454,1.0454545454545454,47.482849604221634 +120308,Comarca Ngäbe-Buglé,Müna,Nibra,677,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,311,161,285,26,130,2,0,26,3,105,1,4,104,2,3,252,1,0,0,0,426,24,21,1,0,78,392,0,0,0,2,472,2,60,36,0,97,13,0,0,3,468,1,0,0,56,158,64,138,43,7,6,468,1,1,0,1,1,0,2,49,6,405,9,1,0,158,16,40,9,241,0,2,0,1,5,0,0,680,4.672413793103448,14.14367816091954,6.747126436781609,21.7183908045977,1.0021186440677967,2.455508474576271,1.3559322033898304,473,235,1192,39,431,15,24,43,5,55,10,3,5,0,15,5,9,4,4,2,2,767,1427,0,55,2139,0,347,1847,0,1678,516,0,981,1213,0,979,2,808,405,0,410,30,46,0,117,122,146,145,123,294,0,3,0,95,117,176,83,70,157,0,1,10,11,10,5,6,16,1,0,0,0,0,0,0,0,299,9,1427,0,4,2,2,9,615,722,35,46,73,37,20,8,9,0,158,2,0,1247,1283,33,62,9,165,1,0,37,0,181,95,6,969,26,0,0,1518,188,0,1,4,23,1,0,0,0,0,2,14,6,7,39,152,36,9,43,2251,125,37,11,21,18,25,6,7,3,0,0,0,0,0,26,87.0,90.0,81.0,78.0,76.0,75.0,56.0,88.0,87.0,77.0,86.0,83.0,63.0,72.0,68.0,69.0,58.0,55.0,58.0,49.0,41.0,42.0,38.0,44.0,28.0,25.0,18.0,29.0,21.0,28.0,26.0,21.0,25.0,24.0,11.0,22.0,25.0,26.0,14.0,24.0,24.0,22.0,19.0,25.0,14.0,19.0,15.0,22.0,9.0,19.0,13.0,20.0,18.0,20.0,18.0,6.0,11.0,11.0,14.0,12.0,12.0,10.0,11.0,16.0,22.0,6.0,11.0,12.0,4.0,8.0,3.0,9.0,6.0,10.0,10.0,4.0,6.0,7.0,2.0,4.0,7.0,2.0,9.0,2.0,3.0,4.0,3.0,3.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1167,1223,140,0,412,383,372,289,193,121,107,111,104,84,89,54,71,41,38,23,23,11,4,0,0,0,2428,0,0,102,0,2428,0,0,102,0,685,7,128,90,65,3,386,1166,0,2039,491,0,0,5,2446,16,0,0,0,0,0,0,1,62,0,3,116,9,2,0,0,11,2389,0,29,83,8,1,1,2408,0,3.2229654403567447,0.0,4.725806451612903,0.0,4.501185770750988,1,19,4,0,0,0,2,447,0,137,57,68,74,56,30,18,9,9,6,2,1,1,0,0,5,255,218,27,446,28,445,228,245,26,447,4,469,113,360,7,466,207,266,72,401,20,52,18,455,39,434,6,467,342,131,311,162,8,465,57,204,207,5,0,248,225,0,1,452,5,0,0,0,0,0,0,0,15,0,2.636363636363636,2.712473572938689,1.0,1.103448275862069,1.103448275862069,50.00845665961945 +120309,Comarca Ngäbe-Buglé,Müna,Peña Blanca,871,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,403,229,340,69,92,115,0,13,9,29,0,10,248,7,1,306,0,37,0,0,548,67,15,8,0,57,580,0,0,0,1,638,2,11,1,2,213,5,0,0,0,635,3,0,0,132,361,1,48,83,6,7,604,3,9,0,15,6,1,3,122,9,468,34,2,0,185,23,97,37,273,1,16,0,0,4,2,0,872,5.932692307692308,18.96153846153846,6.8173076923076925,23.08653846153846,1.0141065830721003,1.9075235109717867,0.8479623824451411,647,353,1880,46,481,15,26,37,5,64,6,1,1,0,26,19,5,1,8,0,12,524,2622,0,79,3067,0,138,3008,0,2372,774,0,1423,1723,0,1414,9,1070,653,0,655,26,74,1,153,178,177,204,193,353,0,0,0,146,173,191,97,118,292,3,4,13,18,13,21,17,23,1,0,2,0,0,0,0,0,128,3,2319,0,2,0,0,3,930,1338,16,32,43,41,7,2,4,0,34,0,0,1715,1847,34,14,2,26,0,0,55,0,205,82,5,2514,23,0,0,2043,366,0,3,4,32,1,1,0,0,0,2,14,9,7,8,65,10,4,12,3348,112,18,13,21,12,6,0,3,6,0,0,0,0,0,23,77.0,104.0,110.0,125.0,116.0,127.0,114.0,114.0,121.0,104.0,124.0,108.0,112.0,93.0,95.0,103.0,104.0,83.0,67.0,65.0,77.0,54.0,65.0,57.0,62.0,48.0,33.0,44.0,37.0,34.0,51.0,34.0,38.0,34.0,40.0,37.0,32.0,20.0,31.0,33.0,26.0,31.0,36.0,23.0,28.0,31.0,17.0,21.0,28.0,25.0,26.0,16.0,14.0,23.0,13.0,20.0,10.0,21.0,11.0,12.0,14.0,8.0,10.0,20.0,15.0,12.0,12.0,10.0,8.0,5.0,9.0,7.0,6.0,11.0,6.0,6.0,8.0,5.0,2.0,2.0,1.0,1.0,6.0,0.0,3.0,3.0,2.0,2.0,0.0,2.0,0.0,0.0,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1644,1782,136,0,532,580,532,422,315,196,197,153,144,122,92,74,67,47,39,23,11,9,4,2,1,0,3415,0,0,147,0,3415,0,0,147,0,1093,9,109,35,70,11,593,1642,0,3242,320,0,0,6,3543,8,0,0,0,0,0,0,0,5,0,2,1,0,0,0,0,2,3557,0,17,20,2,1,0,3522,0,2.9195046439628483,0.0,4.660949868073879,0.0,4.672936552498596,0,1,0,0,0,0,0,646,0,383,72,60,43,42,23,6,3,3,5,1,1,0,0,0,5,213,434,4,643,8,639,261,386,1,646,1,646,49,598,3,644,101,546,3,644,1,2,11,636,20,627,5,642,316,331,175,472,14,633,84,312,250,1,0,310,337,0,2,642,0,0,0,0,0,0,0,0,3,0,2.650695517774343,2.8547140649149925,1.0,1.0625,1.0625,46.09582689335394 +120310,Comarca Ngäbe-Buglé,Müna,Rokari,751,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,25,295,238,270,50,63,150,0,24,1,56,2,5,204,5,1,283,1,1,0,0,482,56,14,6,0,97,458,2,0,0,1,558,34,13,2,0,140,4,0,0,1,553,4,0,0,84,257,3,117,94,1,2,542,2,1,0,5,7,1,1,90,4,454,9,0,0,365,36,45,40,30,0,24,0,0,18,0,0,752,6.598503740648379,20.276807980049878,6.917705735660848,23.64837905236908,1.003584229390681,1.403225806451613,0.3817204301075269,561,351,1597,37,433,21,41,44,9,79,9,6,15,1,17,20,8,2,4,1,6,776,2028,0,143,2661,0,644,2160,0,2135,669,0,1328,1476,0,1323,5,916,560,0,566,22,84,2,137,125,177,169,159,287,1,0,0,146,153,154,90,82,212,2,3,24,43,16,53,46,44,4,1,2,0,0,0,0,0,303,7,1881,0,3,3,0,3,855,992,20,11,105,70,10,2,10,1,110,0,0,1524,1680,78,41,2,130,8,0,49,0,240,64,4,1678,76,0,0,1740,339,0,1,8,98,3,2,0,0,0,2,46,11,12,31,140,35,2,31,2889,74,41,8,21,21,24,15,21,9,5,0,0,0,0,76,89.0,97.0,105.0,109.0,109.0,105.0,102.0,109.0,83.0,105.0,95.0,94.0,96.0,87.0,97.0,84.0,92.0,67.0,64.0,59.0,58.0,52.0,51.0,60.0,43.0,34.0,52.0,35.0,39.0,43.0,45.0,29.0,26.0,22.0,27.0,27.0,27.0,35.0,25.0,29.0,36.0,31.0,19.0,25.0,22.0,24.0,19.0,28.0,24.0,24.0,30.0,24.0,14.0,13.0,17.0,17.0,12.0,12.0,16.0,14.0,10.0,10.0,7.0,10.0,12.0,17.0,7.0,8.0,3.0,8.0,7.0,5.0,12.0,7.0,5.0,4.0,4.0,7.0,3.0,5.0,4.0,1.0,1.0,2.0,4.0,1.0,2.0,3.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1482,1595,127,0,509,504,469,366,264,203,149,143,133,119,98,71,49,43,36,23,12,7,4,2,0,0,3042,8,0,154,0,3042,8,0,154,0,948,7,61,136,61,26,485,1480,0,2670,526,8,0,1,3170,3,0,0,0,0,0,0,0,30,0,1,1,3,0,0,0,4,3195,0,43,74,1,2,0,3084,0,2.578632478632479,0.0,4.100591715976331,0.0,4.954744069912609,0,0,1,0,0,0,2,558,0,207,62,78,60,56,25,18,14,17,10,4,0,3,1,1,4,278,283,29,532,32,529,324,237,19,542,2,559,103,458,7,554,202,359,26,535,19,7,46,515,90,471,14,547,259,302,135,426,7,554,36,278,236,11,0,316,245,0,1,553,0,0,0,0,0,0,0,0,7,0,2.716577540106952,2.9946524064171123,0.0,1.05,1.05,45.09447415329768 +120311,Comarca Ngäbe-Buglé,Müna,Sitio Prado,742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,387,99,362,29,61,7,0,30,1,77,1,3,165,2,1,231,0,10,0,0,434,18,30,6,2,115,372,3,0,0,0,490,5,57,7,0,147,36,0,0,1,484,5,0,0,69,120,7,214,77,3,0,489,0,1,0,0,0,0,0,79,1,399,11,0,0,116,10,59,166,138,1,0,0,0,0,0,0,742,4.587301587301587,13.626984126984128,6.936507936507937,23.396825396825395,1.0,1.9040816326530607,0.8612244897959184,490,273,1370,32,405,14,40,39,4,74,4,7,14,1,14,12,10,5,5,2,18,830,1592,0,154,2268,0,415,2007,0,1917,505,0,1193,1229,0,1191,2,815,414,0,414,31,76,0,95,122,131,105,111,287,0,2,0,96,115,160,71,80,261,0,4,22,32,25,43,54,68,16,0,1,0,0,0,0,0,174,14,1726,0,4,4,5,5,802,874,24,21,95,12,14,3,2,0,58,0,2,1341,1426,74,26,4,41,0,1,38,2,20,7,4,2189,70,0,0,1385,396,0,5,2,109,16,1,0,0,3,4,36,12,7,16,65,11,3,31,2555,16,9,11,14,33,19,14,15,7,2,1,0,0,1,70,79.0,88.0,93.0,85.0,86.0,86.0,96.0,72.0,81.0,87.0,81.0,76.0,79.0,61.0,73.0,92.0,74.0,62.0,62.0,53.0,58.0,50.0,41.0,46.0,43.0,31.0,32.0,39.0,31.0,27.0,35.0,25.0,39.0,34.0,22.0,27.0,32.0,17.0,19.0,17.0,26.0,16.0,27.0,19.0,11.0,15.0,15.0,22.0,19.0,21.0,23.0,23.0,18.0,17.0,9.0,10.0,11.0,11.0,14.0,12.0,10.0,13.0,10.0,11.0,15.0,11.0,3.0,8.0,7.0,3.0,6.0,5.0,8.0,6.0,9.0,6.0,7.0,5.0,5.0,6.0,2.0,3.0,7.0,2.0,4.0,3.0,5.0,5.0,0.0,1.0,2.0,3.0,2.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1223,1406,138,0,431,422,370,343,238,160,155,112,99,92,90,58,59,32,34,29,18,14,9,2,0,0,2659,2,0,106,0,2659,2,0,106,0,778,7,104,150,53,4,449,1222,0,2247,518,2,0,3,2741,10,0,0,0,0,0,0,0,13,0,1,1,1,0,1,0,6,2757,0,61,160,5,0,0,2541,0,2.910191725529768,0.0,4.477977161500816,0.0,5.608239971087821,0,1,1,0,0,0,1,487,0,318,30,22,12,12,18,20,12,18,6,6,0,0,1,1,14,322,168,28,462,21,469,332,158,14,476,1,489,109,381,6,484,270,220,25,465,11,14,49,441,114,376,12,478,333,157,298,192,25,465,44,227,211,8,0,243,247,0,1,484,4,0,0,0,0,0,0,0,1,0,2.736734693877551,2.910204081632653,0.0,1.0,1.0,48.3 +120312,Comarca Ngäbe-Buglé,Müna,Ümani,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,390,53,354,37,18,10,0,20,5,36,3,6,141,8,0,184,1,65,0,0,385,28,28,3,0,51,392,1,0,0,0,444,0,0,1,0,110,0,0,0,0,439,4,1,0,21,255,4,11,144,1,8,408,2,2,0,2,30,0,2,51,3,384,4,0,0,122,12,76,18,208,1,0,0,0,5,2,0,555,4.768656716417911,13.111940298507465,6.7388059701492535,22.470149253731343,1.0112612612612613,2.545045045045045,1.4211711711711712,449,198,1156,29,502,20,22,34,0,78,1,2,6,0,7,2,2,0,4,0,6,671,1544,0,70,2145,0,290,1925,0,1656,559,0,894,1321,0,894,0,879,442,0,445,13,66,1,84,131,118,129,113,272,0,0,1,85,126,167,79,82,191,0,0,22,20,18,17,12,19,3,0,1,0,0,0,0,0,317,8,1456,0,4,2,1,9,569,841,15,22,65,67,19,10,6,3,154,0,0,1162,1335,33,90,10,157,2,0,32,0,147,72,8,1208,2,0,0,1477,274,1,0,0,28,1,0,0,0,0,0,22,4,3,44,138,43,1,70,2151,123,48,37,59,33,19,5,14,5,1,0,0,0,0,2,70.0,74.0,74.0,64.0,76.0,73.0,88.0,62.0,69.0,66.0,71.0,64.0,56.0,61.0,81.0,71.0,71.0,61.0,61.0,55.0,51.0,53.0,50.0,41.0,27.0,36.0,38.0,29.0,31.0,21.0,30.0,30.0,17.0,31.0,23.0,14.0,21.0,25.0,20.0,14.0,22.0,24.0,18.0,22.0,19.0,18.0,23.0,15.0,11.0,13.0,19.0,9.0,15.0,15.0,12.0,15.0,12.0,20.0,15.0,7.0,13.0,9.0,8.0,19.0,15.0,14.0,9.0,10.0,5.0,18.0,5.0,4.0,12.0,5.0,8.0,6.0,3.0,4.0,1.0,4.0,1.0,0.0,4.0,2.0,4.0,1.0,4.0,4.0,2.0,1.0,1.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1049,1309,139,0,358,358,333,319,222,155,131,94,105,80,70,69,64,56,34,18,11,12,7,1,0,0,2396,0,0,101,0,2396,0,0,101,0,703,6,161,103,67,7,405,1045,0,2313,184,0,0,2,2488,4,0,0,0,0,0,0,0,3,0,2,1,1,0,0,0,4,2489,0,15,15,8,2,0,2457,0,3.005359056806002,0.0,4.611615245009075,0.0,4.903083700440528,0,0,0,0,0,0,1,448,0,137,37,34,68,62,38,25,16,20,6,3,2,0,1,0,0,185,264,13,436,5,444,151,298,5,444,1,448,17,432,0,449,116,333,8,441,5,3,11,438,3,446,3,446,292,157,229,220,1,448,65,150,230,4,0,239,210,0,0,449,0,0,0,0,0,0,0,0,0,0,2.5879732739420938,2.973273942093541,0.0,1.0909090909090908,1.0909090909090908,50.8619153674833 +120313,Comarca Ngäbe-Buglé,Müna,Dikeri,825,2,0,0,0,0,0,0,0,0,0,0,1,0,0,2,2,445,132,364,85,68,4,0,58,2,153,6,7,222,3,3,179,0,8,0,0,487,43,44,6,1,127,437,0,0,0,17,581,0,7,0,0,233,6,0,0,0,574,7,0,0,108,180,8,192,86,6,1,569,2,1,0,4,5,0,9,108,2,450,12,0,0,111,7,44,11,376,2,4,0,0,23,3,0,828,5.033898305084746,11.042372881355933,6.593220338983051,21.838983050847457,1.0034423407917383,1.9931153184165236,0.9311531841652324,584,276,1144,57,334,15,22,30,3,40,6,9,1,0,8,7,6,0,6,0,1,768,1473,0,176,2065,0,310,1931,0,1782,459,0,966,1275,0,953,13,885,390,0,392,43,40,0,106,111,127,122,125,223,0,0,0,108,102,148,70,93,218,1,0,30,25,28,45,35,28,13,4,4,0,0,0,0,0,225,5,1566,0,5,0,0,5,642,879,14,26,66,59,25,3,12,0,65,0,0,1220,1301,55,41,3,64,3,1,61,2,110,72,2,1707,2,0,0,1365,347,0,0,2,70,11,1,0,0,2,3,33,4,7,26,78,38,2,37,2270,104,30,15,27,13,12,14,23,7,4,0,0,0,0,2,56.0,78.0,73.0,73.0,73.0,102.0,61.0,81.0,67.0,61.0,81.0,69.0,74.0,57.0,61.0,61.0,62.0,56.0,39.0,43.0,54.0,38.0,38.0,47.0,28.0,28.0,32.0,32.0,37.0,21.0,42.0,33.0,27.0,36.0,21.0,34.0,23.0,25.0,24.0,32.0,24.0,14.0,20.0,22.0,18.0,11.0,16.0,23.0,13.0,14.0,18.0,12.0,17.0,12.0,16.0,23.0,11.0,10.0,11.0,14.0,8.0,9.0,11.0,15.0,11.0,9.0,9.0,10.0,13.0,8.0,6.0,12.0,8.0,10.0,11.0,9.0,7.0,7.0,7.0,2.0,5.0,1.0,5.0,3.0,4.0,4.0,1.0,2.0,5.0,2.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1067,1286,168,0,353,372,342,261,205,150,159,138,98,77,75,69,54,49,47,32,18,14,6,1,1,0,2455,1,0,65,0,2455,1,0,65,0,697,3,106,130,57,9,455,1064,0,2282,239,0,0,4,2512,1,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,5,2512,0,18,53,4,1,1,2444,0,2.8818565400843883,0.0,4.360344827586207,0.0,5.473224910749702,0,0,0,0,0,0,0,584,0,329,59,41,37,47,11,14,11,15,8,4,4,2,0,0,1,268,316,42,542,21,563,207,377,9,575,1,583,94,490,7,577,179,405,40,544,23,17,30,554,46,538,2,582,338,246,385,199,4,580,119,276,188,1,0,348,236,0,1,580,1,0,0,0,0,0,0,0,2,0,2.089041095890411,2.227739726027397,0.0,1.0588235294117647,1.0588235294117647,46.76541095890411 +120314,Comarca Ngäbe-Buglé,Müna,Diko,763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,39,263,204,264,39,104,73,0,5,22,85,6,2,111,7,3,278,0,15,0,0,422,66,13,6,0,64,442,0,0,0,1,507,0,3,1,1,250,1,0,0,1,505,1,0,0,115,232,0,74,76,6,4,501,3,0,0,2,1,0,5,120,7,365,10,0,0,182,58,67,26,172,1,0,0,0,1,0,0,763,6.645833333333333,22.508333333333333,6.8125,23.075,1.0019723865877712,1.8678500986193292,0.8382642998027613,508,251,1320,40,328,9,27,50,4,48,6,4,1,0,6,14,5,4,6,2,5,440,1870,0,59,2251,0,179,2131,0,1662,648,0,958,1352,0,890,68,804,548,0,549,15,47,0,124,143,183,144,155,270,0,1,0,111,103,127,71,73,150,1,1,7,4,6,6,2,15,0,0,2,0,0,0,0,0,112,20,1654,0,1,8,10,2,623,991,10,28,37,41,7,2,2,1,25,1,0,1227,1369,27,20,2,55,0,0,10,2,165,44,4,1550,3,0,0,1592,174,0,1,2,15,0,2,0,0,2,0,9,7,8,11,49,13,2,31,2415,81,22,25,22,11,8,2,5,1,1,0,0,0,0,3,61.0,79.0,69.0,77.0,88.0,88.0,74.0,89.0,96.0,89.0,93.0,81.0,80.0,62.0,88.0,62.0,55.0,67.0,57.0,58.0,39.0,47.0,36.0,45.0,36.0,41.0,19.0,32.0,20.0,30.0,24.0,25.0,32.0,34.0,33.0,24.0,20.0,29.0,17.0,25.0,24.0,19.0,31.0,29.0,20.0,20.0,15.0,14.0,18.0,20.0,17.0,11.0,15.0,12.0,12.0,14.0,12.0,6.0,14.0,15.0,14.0,7.0,15.0,10.0,4.0,12.0,10.0,9.0,5.0,4.0,4.0,1.0,5.0,8.0,3.0,4.0,2.0,1.0,2.0,0.0,3.0,0.0,4.0,2.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1214,1295,87,0,374,436,404,299,203,142,148,115,123,87,67,61,50,40,21,9,11,4,1,1,0,0,2515,0,0,81,0,2515,0,0,81,0,833,5,62,43,61,8,375,1209,0,2335,261,0,0,3,2588,2,0,0,1,0,0,0,0,2,0,1,1,0,0,0,0,3,2591,0,7,10,1,1,0,2577,0,2.918324607329843,0.0,4.476102941176471,0.0,4.121340523882897,0,0,0,0,0,0,0,508,0,249,49,56,61,45,21,9,8,5,3,1,0,0,0,0,1,197,311,19,489,14,494,181,327,8,500,3,505,65,443,3,505,105,403,15,493,6,9,6,502,46,462,6,502,320,188,223,285,19,489,76,251,180,1,0,265,243,0,0,507,0,0,0,0,0,0,0,0,1,0,2.4153543307086616,2.69488188976378,0.0,1.2857142857142858,1.2857142857142858,45.20669291338583 +120315,Comarca Ngäbe-Buglé,Müna,Kikari,577,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,324,59,298,28,19,1,0,39,0,111,34,4,91,5,4,132,0,4,0,0,347,20,15,2,1,96,287,0,1,0,1,385,0,0,0,0,193,0,0,0,0,384,1,0,0,76,114,3,36,125,25,6,377,1,1,0,3,2,1,3,163,3,213,3,0,0,82,5,56,5,232,0,2,0,0,1,2,0,578,4.218390804597701,5.839080459770115,6.908045977011494,23.2183908045977,1.0,2.727272727272727,1.6181818181818182,385,187,921,30,311,20,32,36,5,54,7,6,1,0,4,6,2,0,7,0,0,659,1118,0,64,1713,0,396,1381,0,1455,322,0,774,1003,0,769,5,753,250,0,251,31,44,0,82,83,117,98,98,211,0,0,0,101,107,137,54,90,179,0,1,15,18,19,11,13,15,1,0,1,0,0,0,0,0,300,4,1146,0,3,0,0,9,495,602,12,28,63,80,23,5,15,1,117,0,0,938,1057,33,91,4,156,0,0,19,1,109,60,2,874,2,0,0,1177,247,0,0,3,22,0,1,0,0,1,3,13,5,7,40,104,59,5,67,1669,98,42,33,59,39,29,7,10,7,0,0,0,0,0,2,51.0,51.0,51.0,65.0,46.0,51.0,57.0,63.0,50.0,60.0,61.0,57.0,38.0,60.0,65.0,51.0,55.0,62.0,50.0,44.0,38.0,40.0,31.0,38.0,28.0,25.0,16.0,28.0,22.0,18.0,32.0,28.0,15.0,20.0,10.0,19.0,18.0,16.0,22.0,11.0,16.0,19.0,16.0,23.0,21.0,17.0,18.0,20.0,11.0,18.0,13.0,11.0,11.0,8.0,9.0,11.0,12.0,6.0,6.0,5.0,13.0,8.0,7.0,11.0,10.0,5.0,5.0,8.0,4.0,4.0,6.0,5.0,4.0,3.0,12.0,9.0,3.0,9.0,6.0,3.0,2.0,2.0,0.0,6.0,1.0,5.0,0.0,2.0,2.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,826,1057,112,0,264,281,281,262,175,109,105,86,95,84,52,40,49,26,30,30,11,9,4,0,2,0,1918,1,0,76,0,1918,1,0,76,0,593,4,127,62,47,14,325,823,0,1874,121,0,0,1,1990,1,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,3,1991,0,18,23,11,0,0,1943,0,2.59514687100894,0.0,4.07847533632287,0.0,5.349874686716792,1,0,0,0,0,0,1,383,0,93,25,33,50,69,43,20,20,22,5,2,2,1,0,0,0,202,183,29,356,13,372,162,223,25,360,2,383,30,355,5,380,143,242,24,361,13,11,14,371,38,347,5,380,219,166,127,258,5,380,63,153,168,1,0,182,203,0,0,384,0,0,0,0,0,0,0,0,1,0,2.4363636363636365,2.7454545454545456,1.0,1.0,1.0,48.6961038961039 +120316,Comarca Ngäbe-Buglé,Müna,Mreeni,650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,269,145,251,20,116,3,0,24,2,19,0,4,78,6,7,296,1,5,0,0,376,23,13,4,0,25,389,0,0,0,2,416,4,156,3,0,61,10,0,0,2,410,4,0,0,42,48,12,292,10,8,4,402,0,6,0,8,0,0,1,34,2,375,4,0,0,171,43,27,98,73,0,0,0,0,4,0,0,650,5.813084112149533,17.55607476635514,6.878504672897196,23.317757009345797,1.0,2.2572115384615383,1.1610576923076923,416,207,1037,43,390,19,25,35,2,46,4,2,12,0,6,12,4,3,2,2,6,610,1349,0,101,1858,0,458,1501,0,1522,437,0,906,1053,0,904,2,661,392,0,396,33,38,2,95,101,110,96,112,191,0,3,0,87,96,130,59,104,196,0,1,29,14,9,15,13,25,3,0,1,0,0,0,0,0,67,9,1470,0,3,0,5,3,614,791,14,48,51,8,5,0,2,1,7,0,0,1110,1128,30,26,0,13,1,1,3,0,66,29,1,1646,40,0,0,1240,270,0,0,0,34,1,1,0,0,0,1,12,11,5,16,8,6,2,15,2083,48,11,9,15,11,10,0,4,5,2,0,0,0,0,40,67.0,79.0,54.0,79.0,70.0,69.0,74.0,62.0,77.0,61.0,63.0,73.0,50.0,57.0,67.0,58.0,65.0,54.0,53.0,62.0,31.0,45.0,29.0,24.0,33.0,34.0,19.0,29.0,19.0,24.0,25.0,26.0,21.0,21.0,19.0,16.0,16.0,22.0,28.0,19.0,16.0,17.0,16.0,16.0,13.0,14.0,17.0,15.0,16.0,10.0,18.0,13.0,14.0,14.0,14.0,11.0,10.0,7.0,11.0,13.0,10.0,5.0,7.0,16.0,13.0,12.0,12.0,8.0,8.0,6.0,9.0,10.0,1.0,6.0,3.0,6.0,2.0,5.0,1.0,2.0,4.0,2.0,5.0,4.0,2.0,2.0,2.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1002,1118,118,0,349,343,310,292,162,125,112,101,78,72,73,52,51,46,29,16,17,8,1,1,0,0,2166,1,0,71,0,2166,1,0,71,0,594,0,65,121,47,15,398,998,0,1506,730,2,0,1,2217,8,0,0,0,0,0,0,1,11,0,1,20,3,0,0,0,3,2211,0,19,58,3,0,0,2158,0,3.050761421319797,0.0,4.455823293172691,0.0,4.952636282394995,0,2,2,0,0,0,0,412,0,267,35,26,25,22,14,10,2,2,6,3,0,0,0,0,4,178,238,7,409,7,409,206,210,9,407,1,415,77,339,3,413,175,241,8,408,6,2,15,401,88,328,3,413,236,180,158,258,14,402,40,186,180,10,0,223,193,0,0,407,3,0,0,0,0,0,0,1,5,0,2.668269230769231,2.7115384615384617,0.0,1.0,1.0,47.82692307692308 +120401,Comarca Ngäbe-Buglé,Nole Duima,Cerro Iglesias,1390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,968,136,783,205,14,18,0,90,14,362,7,5,182,7,21,479,0,61,0,0,1010,68,42,4,0,394,708,1,0,1,20,1124,14,53,8,1,183,7,0,0,2,1117,5,0,0,142,525,3,87,340,8,19,1057,1,1,0,12,51,2,11,151,12,914,34,2,0,607,22,13,19,439,2,1,0,0,18,3,0,1390,4.179650238473768,8.014308426073132,6.6852146263910965,23.05723370429253,1.0044483985765125,2.596085409252669,1.49288256227758,1129,573,2761,98,933,22,46,48,4,119,9,6,25,0,43,85,24,16,13,10,20,1770,3302,0,269,4803,0,558,4514,0,4011,1061,0,2057,3015,0,1961,96,2230,785,0,794,73,133,12,245,262,255,294,291,663,2,2,0,233,270,387,161,222,506,3,6,41,41,37,41,38,44,8,6,2,0,0,0,0,0,1290,115,2631,0,8,37,43,30,1209,1241,95,56,280,417,69,36,44,5,489,8,3,2855,2918,124,267,38,660,68,4,187,3,338,181,22,2395,154,0,0,3263,662,0,6,9,83,11,2,0,0,3,13,64,23,17,154,591,246,16,278,4441,367,154,149,223,108,98,22,27,19,9,0,1,1,0,154,184.0,175.0,189.0,153.0,176.0,210.0,177.0,171.0,145.0,157.0,174.0,139.0,123.0,146.0,169.0,158.0,129.0,132.0,125.0,113.0,132.0,112.0,93.0,110.0,74.0,81.0,94.0,64.0,91.0,65.0,66.0,60.0,62.0,52.0,68.0,49.0,53.0,44.0,53.0,57.0,45.0,43.0,47.0,33.0,37.0,37.0,38.0,47.0,41.0,42.0,37.0,44.0,28.0,27.0,38.0,42.0,31.0,32.0,18.0,32.0,24.0,18.0,29.0,27.0,24.0,23.0,15.0,20.0,13.0,11.0,19.0,13.0,25.0,17.0,13.0,10.0,10.0,10.0,7.0,10.0,13.0,5.0,15.0,2.0,2.0,8.0,4.0,2.0,3.0,1.0,2.0,1.0,4.0,2.0,0.0,2.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2488,2998,287,0,877,860,751,657,521,395,308,256,205,205,174,155,122,82,87,47,37,18,9,5,2,0,5549,1,0,223,0,5549,1,0,223,0,1654,27,269,267,120,22,932,2482,0,4555,1212,6,0,3,5726,18,0,0,0,4,0,0,0,22,0,1,2,6,1,0,0,8,5755,0,111,241,23,6,2,5390,0,2.9752851711026618,0.0,4.202049780380674,0.0,5.154339165078815,0,0,3,0,0,0,1,1125,0,205,88,121,146,187,142,84,43,55,24,13,7,6,0,1,7,718,411,167,962,104,1025,571,558,106,1023,5,1124,366,763,38,1091,556,573,140,989,51,89,72,1057,169,960,29,1100,695,434,497,632,36,1093,118,527,472,12,0,571,558,0,1,1113,6,0,0,0,1,0,0,0,8,0,2.528786536758193,2.58458813108946,0.0,1.0384615384615383,1.0384615384615383,48.01505757307352 +120402,Comarca Ngäbe-Buglé,Nole Duima,Hato Chamí,1482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,703,123,719,144,22,52,0,45,4,318,2,2,117,2,37,503,2,3,0,0,825,102,46,12,1,265,704,2,0,0,15,986,1,51,7,3,433,1,0,0,0,974,11,1,0,89,320,7,189,137,238,6,959,1,8,0,6,9,3,2,344,11,597,28,4,0,644,7,79,9,208,0,9,0,0,29,1,0,1482,5.285714285714286,15.2073732718894,6.7695852534562215,21.61136712749616,1.0,2.0922920892494927,1.054766734279919,986,506,2501,76,884,20,47,60,9,113,4,6,6,0,37,29,12,9,16,4,20,1508,3003,0,179,4332,0,600,3911,0,3313,1198,0,1906,2605,0,1876,30,1665,940,0,944,48,128,17,182,242,264,277,249,511,1,0,0,210,230,359,135,162,436,0,1,7,24,15,23,14,28,2,0,2,0,0,0,0,0,1328,28,2201,0,6,12,1,7,1077,981,62,74,220,256,26,14,36,1,801,0,0,2550,2668,100,178,15,728,9,2,322,0,236,158,12,2244,118,0,0,3005,488,0,0,7,53,2,2,0,0,0,6,33,22,20,93,807,185,13,177,4258,259,164,126,110,67,63,18,21,12,1,0,1,0,0,118,170.0,189.0,180.0,168.0,180.0,177.0,186.0,140.0,143.0,128.0,172.0,149.0,144.0,133.0,146.0,157.0,137.0,138.0,94.0,99.0,95.0,81.0,81.0,80.0,76.0,76.0,52.0,43.0,63.0,50.0,55.0,56.0,55.0,53.0,44.0,48.0,56.0,45.0,50.0,30.0,51.0,41.0,56.0,43.0,36.0,43.0,19.0,27.0,38.0,34.0,29.0,32.0,30.0,27.0,17.0,15.0,23.0,19.0,24.0,23.0,19.0,18.0,21.0,25.0,26.0,25.0,16.0,16.0,17.0,16.0,18.0,16.0,20.0,19.0,7.0,16.0,4.0,6.0,2.0,2.0,5.0,5.0,8.0,7.0,7.0,5.0,4.0,4.0,2.0,2.0,1.0,3.0,1.0,3.0,0.0,1.0,0.0,0.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2405,2550,263,0,887,774,744,625,413,284,263,229,227,161,135,104,109,90,80,30,32,17,8,2,4,0,4998,1,1,218,0,4998,1,1,218,0,1578,17,215,163,110,4,730,2401,0,3827,1384,7,0,4,5164,29,0,0,0,0,0,0,0,21,0,3,0,0,0,0,0,4,5211,0,72,122,4,3,1,5016,0,3.185085836909871,0.0,4.3608074011774605,0.0,4.531046377922576,0,0,0,0,0,0,1,985,0,290,61,94,122,125,100,71,34,40,18,6,2,3,1,0,19,614,372,83,903,80,906,541,445,23,963,5,981,228,758,25,961,453,533,109,877,28,81,36,950,49,937,14,972,661,325,465,521,36,950,99,447,436,4,0,521,465,0,0,976,4,0,0,0,0,0,0,0,6,0,2.586206896551724,2.7058823529411766,1.5,1.0566037735849056,1.0566037735849056,47.34077079107505 +120403,Comarca Ngäbe-Buglé,Nole Duima,Jädeberi,568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,278,82,242,42,7,56,0,17,2,0,0,7,161,6,3,187,0,2,0,0,304,50,6,6,0,56,306,1,0,0,3,366,0,32,2,0,167,1,0,0,1,360,5,0,0,13,142,1,191,16,0,3,356,1,0,0,0,9,0,1,34,0,315,16,0,0,237,1,0,0,126,1,0,0,0,1,0,0,568,6.491596638655462,22.789915966386555,6.978991596638656,23.899159663865547,1.0,1.4617486338797814,0.4371584699453552,366,200,1082,31,421,15,36,87,3,48,6,5,13,0,11,14,6,1,4,0,2,623,1362,0,39,1946,0,91,1894,0,1301,684,0,789,1196,0,778,11,661,535,0,536,22,42,0,99,110,93,133,124,220,0,0,0,87,92,133,53,55,155,0,0,5,9,5,1,3,7,1,0,0,0,0,0,0,0,531,3,985,0,0,0,2,3,472,452,29,29,62,41,29,2,12,1,385,0,0,1112,1201,30,74,2,242,0,4,180,0,46,55,5,1214,50,0,0,1333,174,0,0,1,10,1,0,0,0,0,3,11,7,8,30,351,41,5,78,2005,88,55,34,24,15,24,3,10,1,4,0,0,0,0,50,77.0,76.0,97.0,78.0,83.0,74.0,79.0,84.0,85.0,61.0,87.0,75.0,61.0,61.0,69.0,83.0,54.0,49.0,43.0,52.0,35.0,36.0,41.0,32.0,33.0,41.0,24.0,20.0,19.0,20.0,24.0,12.0,22.0,17.0,24.0,18.0,19.0,16.0,22.0,14.0,21.0,14.0,22.0,19.0,15.0,10.0,10.0,20.0,15.0,14.0,23.0,16.0,8.0,14.0,7.0,8.0,3.0,10.0,10.0,11.0,6.0,5.0,7.0,9.0,10.0,4.0,1.0,9.0,6.0,4.0,1.0,7.0,9.0,10.0,5.0,5.0,1.0,5.0,1.0,0.0,5.0,4.0,4.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1147,1077,89,0,411,383,353,281,177,124,99,89,91,69,68,42,37,24,32,12,16,1,2,1,1,0,2192,1,1,119,0,2192,1,1,119,0,695,6,51,41,59,2,313,1146,0,1625,670,18,0,0,2297,3,0,0,0,0,0,1,0,12,0,1,0,0,0,0,0,2,2310,0,12,37,2,1,0,2261,0,3.2832512315270934,0.0,4.797938144329897,0.0,3.927799394725465,0,0,0,0,0,0,1,365,0,114,36,46,46,48,25,17,14,8,3,3,3,1,0,0,2,176,190,3,363,3,363,223,143,2,364,0,366,106,260,4,362,123,243,3,363,2,1,3,363,10,356,5,361,306,60,297,69,6,360,29,136,188,13,0,238,128,0,0,363,1,0,0,0,0,0,0,0,2,0,3.0382513661202184,3.2814207650273226,0.0,1.0666666666666669,1.0666666666666669,48.10109289617486 +120404,Comarca Ngäbe-Buglé,Nole Duima,Lajero,866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,660,55,558,112,9,1,0,40,5,3,1,4,267,4,9,396,3,38,0,0,647,40,31,6,1,223,493,1,1,0,7,725,6,22,2,1,95,15,0,0,1,716,8,0,0,72,319,5,47,253,6,23,672,2,0,0,13,38,0,3,96,18,594,14,0,0,355,6,21,21,309,0,1,0,0,11,1,0,866,3.6454293628808863,7.831024930747922,6.894736842105263,23.371191135734072,1.0179310344827586,2.122758620689656,1.0358620689655171,738,377,1808,64,560,11,45,50,2,80,8,9,6,1,14,14,6,8,9,13,14,1213,2103,0,164,3152,0,290,3026,0,2763,553,0,1401,1915,0,1375,26,1482,433,0,444,46,90,2,151,193,188,176,179,442,3,2,0,152,189,216,104,211,341,0,1,33,36,17,32,24,41,2,1,0,0,0,0,0,0,987,49,1591,0,8,7,7,10,762,720,39,60,176,352,74,24,35,2,364,1,0,1848,1911,73,201,27,564,27,1,134,1,221,105,15,1184,59,0,0,2099,474,0,1,3,47,3,0,0,0,1,7,35,13,14,124,412,229,21,180,2805,223,186,137,149,90,54,18,22,11,3,0,2,0,0,59,105.0,125.0,110.0,103.0,136.0,127.0,114.0,124.0,106.0,82.0,99.0,103.0,76.0,87.0,103.0,104.0,81.0,110.0,79.0,101.0,83.0,66.0,81.0,56.0,69.0,56.0,56.0,42.0,46.0,46.0,44.0,48.0,35.0,22.0,41.0,31.0,33.0,33.0,27.0,35.0,26.0,34.0,28.0,28.0,31.0,26.0,24.0,23.0,35.0,27.0,27.0,23.0,20.0,27.0,15.0,27.0,15.0,25.0,16.0,14.0,14.0,11.0,19.0,14.0,19.0,9.0,8.0,10.0,14.0,10.0,11.0,6.0,8.0,6.0,9.0,7.0,12.0,3.0,4.0,3.0,10.0,3.0,7.0,3.0,4.0,4.0,2.0,3.0,2.0,2.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1600,1993,166,0,579,553,468,475,355,246,190,159,147,135,112,97,77,51,40,29,27,13,6,0,0,0,3620,0,4,135,0,3620,0,4,135,0,1027,9,149,195,78,14,689,1598,0,2947,805,7,0,4,3704,9,0,0,0,1,0,0,1,40,0,3,10,19,1,0,0,6,3720,0,77,157,9,2,0,3514,0,2.9293233082706767,0.0,4.334123222748815,0.0,5.394785847299814,0,3,4,1,0,0,2,728,0,106,46,54,108,128,107,68,37,39,25,9,3,4,1,0,3,487,251,21,717,6,732,396,342,12,726,2,736,142,596,3,735,386,352,17,721,6,11,24,714,18,720,8,730,479,259,424,314,35,703,77,344,311,6,0,392,346,0,1,727,1,0,0,0,0,0,0,1,8,0,2.5040650406504064,2.589430894308943,0.0,1.1025641025641026,1.1025641025641026,46.76422764227642 +120405,Comarca Ngäbe-Buglé,Nole Duima,Susama,1100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,620,85,487,155,9,29,0,45,2,324,2,5,44,4,9,336,2,1,0,0,648,31,36,12,0,287,417,0,0,0,23,727,8,76,12,3,262,12,0,0,6,707,13,1,0,192,265,1,76,125,58,10,700,1,1,0,5,19,1,18,247,5,446,11,0,0,330,6,33,104,222,0,27,0,1,4,0,0,1100,3.619047619047619,9.422619047619047,5.3125,17.154761904761905,1.0027510316368635,2.3108665749656123,1.1444291609353507,729,359,1664,47,621,17,38,52,3,92,4,7,13,0,7,15,2,8,17,0,1,1306,1853,0,236,2923,0,498,2661,0,2432,727,0,1333,1826,0,1300,33,1277,549,0,554,42,97,1,165,157,149,167,153,411,1,0,0,141,174,246,111,116,319,0,5,22,18,15,15,11,57,9,0,3,0,0,0,0,0,795,40,1674,0,9,18,10,16,792,778,36,52,229,134,40,25,18,0,370,0,1,1732,1914,135,127,27,326,49,3,146,4,62,86,7,1898,107,0,0,2035,390,0,7,0,65,9,3,0,0,4,11,55,20,18,75,391,91,16,154,2849,190,88,72,112,81,70,28,19,23,2,4,0,0,1,107,131.0,116.0,122.0,118.0,114.0,123.0,114.0,111.0,105.0,83.0,109.0,75.0,108.0,87.0,112.0,90.0,100.0,73.0,72.0,89.0,69.0,62.0,65.0,62.0,43.0,45.0,49.0,46.0,51.0,44.0,37.0,40.0,41.0,26.0,29.0,41.0,23.0,39.0,31.0,33.0,38.0,27.0,33.0,32.0,28.0,23.0,20.0,30.0,29.0,24.0,29.0,16.0,21.0,23.0,16.0,18.0,18.0,20.0,11.0,18.0,25.0,13.0,15.0,23.0,11.0,15.0,10.0,10.0,11.0,10.0,11.0,5.0,13.0,10.0,8.0,5.0,5.0,3.0,4.0,5.0,3.0,3.0,4.0,2.0,1.0,2.0,1.0,4.0,0.0,2.0,2.0,1.0,2.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1628,1861,157,0,601,536,491,424,301,235,173,167,158,126,105,85,87,56,47,22,13,9,8,1,1,0,3474,1,0,171,0,3474,1,0,171,0,1077,8,113,151,67,4,600,1626,0,2534,1110,2,0,4,3590,25,0,0,0,0,0,0,0,27,0,2,7,4,0,0,0,5,3628,0,100,151,16,0,0,3379,0,2.974814814814815,0.0,4.194865810968495,0.0,4.97970378496983,2,2,2,0,0,0,2,721,0,200,73,56,69,81,73,57,33,35,20,8,8,6,1,1,8,491,238,173,556,123,606,354,375,125,604,5,724,184,545,14,715,405,324,116,613,51,65,62,667,32,697,21,708,419,310,307,422,44,685,100,312,305,12,0,343,386,0,1,710,11,0,0,0,0,0,0,0,7,0,2.375857338820302,2.625514403292181,0.0,1.0625,1.0625,46.59533607681756 +120501,Comarca Ngäbe-Buglé,Ñürüm,Buenos Aires,375,8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,16,238,15,221,33,2,0,0,11,2,0,0,5,113,3,43,103,0,2,0,0,178,5,84,2,0,71,197,0,1,0,0,269,0,50,20,16,29,0,0,0,1,263,5,0,0,67,27,156,19,0,0,0,267,1,0,1,0,0,0,5,80,0,182,2,0,0,219,0,0,10,30,0,9,0,0,1,0,0,384,6.698630136986301,22.442922374429223,7.0,24.0,1.003717472118959,2.45724907063197,1.3568773234200744,270,156,578,18,96,7,7,11,1,21,4,4,4,0,7,2,1,0,1,0,3,454,598,0,69,983,0,419,633,0,916,136,0,406,646,0,381,25,548,98,0,99,24,13,1,44,46,48,55,66,99,0,0,0,50,73,99,27,71,167,0,0,8,9,17,13,8,14,1,0,0,0,0,0,0,0,481,4,387,0,0,2,2,9,220,148,3,7,82,105,27,7,20,0,242,1,0,585,592,54,26,8,292,2,0,102,0,76,37,2,352,0,0,0,635,196,0,0,8,32,1,0,0,0,0,6,19,7,13,43,241,95,15,46,939,67,42,27,29,27,23,6,6,5,4,0,2,0,0,0,25.0,32.0,42.0,26.0,36.0,29.0,25.0,36.0,28.0,26.0,37.0,30.0,24.0,32.0,27.0,17.0,36.0,21.0,26.0,21.0,25.0,18.0,28.0,15.0,26.0,17.0,14.0,13.0,13.0,19.0,11.0,16.0,12.0,13.0,15.0,11.0,15.0,11.0,7.0,6.0,15.0,9.0,16.0,14.0,11.0,7.0,8.0,9.0,10.0,14.0,8.0,8.0,8.0,12.0,11.0,4.0,9.0,10.0,8.0,12.0,5.0,4.0,7.0,13.0,4.0,5.0,5.0,2.0,5.0,4.0,6.0,1.0,3.0,2.0,3.0,7.0,2.0,4.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,455,662,60,0,161,144,150,121,112,76,67,50,65,48,47,43,33,21,15,15,5,3,1,0,0,0,1169,2,0,6,0,1169,2,0,6,0,240,1,59,171,29,1,221,455,0,1094,82,1,0,0,402,704,0,0,1,0,0,0,0,70,0,0,0,1,0,0,0,0,1176,0,55,94,9,2,0,1017,0,2.6882217090069283,0.0,4.186567164179104,0.0,6.290569243840272,0,0,0,0,0,0,0,270,0,51,21,39,41,36,18,20,13,13,9,6,1,2,0,0,0,147,123,6,264,7,263,44,226,3,267,0,270,107,163,1,269,116,154,29,241,25,4,16,254,12,258,10,260,217,53,213,57,16,254,37,152,77,4,0,184,86,0,0,86,169,0,0,0,0,0,0,0,15,0,2.1666666666666665,2.1925925925925926,3.0,1.0,1.0,47.596296296296295 +120502,Comarca Ngäbe-Buglé,Ñürüm,Agua de Salud,623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,374,76,311,64,44,0,1,30,1,0,0,0,86,6,9,350,0,0,0,0,206,77,159,7,2,23,419,0,0,0,9,451,1,86,19,0,57,9,0,0,0,450,1,0,0,15,4,419,2,11,0,0,438,0,1,2,0,10,0,1,9,0,437,4,0,0,168,1,2,0,203,1,75,0,0,1,0,0,623,6.414201183431953,15.384615384615383,7.0,23.92899408284024,1.0022172949002215,2.1130820399113084,1.0509977827050998,452,292,1334,37,171,26,13,25,6,27,3,7,11,0,5,8,5,0,6,0,0,586,1474,0,27,2033,0,293,1767,0,1451,609,0,846,1214,0,842,4,803,411,0,414,33,90,1,90,148,174,118,132,318,0,0,0,95,124,149,31,37,89,0,0,5,2,1,6,0,2,0,0,1,0,0,0,0,0,932,17,628,0,0,13,2,0,345,232,13,38,126,26,4,7,1,0,783,0,0,1220,1184,19,131,10,394,0,0,393,0,118,50,9,994,0,0,0,1471,98,0,0,0,7,0,1,0,0,0,4,4,7,5,13,754,35,0,127,2170,59,24,24,88,20,10,5,2,2,0,0,0,0,0,0,72.0,94.0,80.0,98.0,81.0,84.0,81.0,72.0,87.0,78.0,87.0,71.0,71.0,67.0,72.0,60.0,48.0,53.0,47.0,46.0,55.0,38.0,34.0,43.0,27.0,24.0,26.0,25.0,21.0,24.0,30.0,32.0,26.0,23.0,29.0,14.0,22.0,17.0,18.0,16.0,25.0,19.0,28.0,18.0,14.0,24.0,12.0,17.0,9.0,16.0,12.0,9.0,10.0,12.0,4.0,8.0,10.0,7.0,13.0,9.0,11.0,9.0,11.0,10.0,11.0,2.0,9.0,5.0,7.0,3.0,0.0,2.0,8.0,2.0,4.0,7.0,4.0,4.0,2.0,4.0,1.0,2.0,1.0,3.0,0.0,0.0,5.0,3.0,0.0,1.0,1.0,0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1195,1126,83,0,425,402,368,254,197,120,140,87,104,78,47,47,52,26,16,21,7,9,4,0,0,0,2365,0,0,39,0,2365,0,0,39,0,575,7,84,159,55,2,329,1193,0,2380,24,0,0,0,118,2231,0,0,0,0,0,0,0,55,0,0,1,8,0,0,0,4,2391,0,19,20,0,0,0,2365,0,3.3201581027667983,0.0,4.798283261802575,0.0,3.740016638935108,0,0,1,0,0,0,0,451,0,136,31,60,65,75,47,15,11,8,3,1,0,0,0,0,0,101,351,4,448,4,448,181,271,1,451,1,451,174,278,3,449,153,299,3,449,0,3,1,451,14,438,5,447,431,21,418,34,24,428,49,256,136,11,0,328,124,0,0,22,423,0,0,0,0,0,0,0,7,0,2.699115044247788,2.6194690265486726,0.0,1.1071428571428572,1.1071428571428572,42.75221238938053 +120503,Comarca Ngäbe-Buglé,Ñürüm,Alto de Jesús,252,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,177,13,177,3,5,0,0,8,0,91,0,0,29,1,2,70,0,0,0,0,172,6,15,0,0,62,131,0,0,0,0,193,0,27,3,0,25,4,0,0,0,187,6,0,0,70,8,9,56,50,0,0,193,0,0,0,0,0,0,0,106,0,87,0,0,1,67,0,0,16,108,0,1,0,0,0,0,0,253,3.323529411764706,4.0,6.029411764705882,13.897058823529411,1.0,2.8134715025906734,1.7253886010362691,194,118,405,24,117,3,13,16,3,18,1,0,7,1,17,4,3,4,2,0,4,381,446,0,99,728,0,196,631,0,677,150,0,320,507,0,317,3,401,106,0,106,17,26,1,24,33,46,28,24,138,0,0,0,24,43,84,31,32,99,0,0,13,16,9,18,9,5,0,0,1,0,0,0,0,0,318,9,353,0,0,7,2,3,190,105,11,44,56,12,10,6,3,0,238,0,0,505,415,44,17,6,136,0,0,122,0,70,52,5,357,0,0,0,510,143,0,0,2,24,0,1,0,0,0,1,17,10,3,17,234,23,5,17,747,57,22,20,21,10,20,5,11,3,2,0,2,0,0,0,24.0,17.0,25.0,27.0,32.0,28.0,21.0,20.0,20.0,26.0,21.0,19.0,22.0,21.0,17.0,23.0,28.0,15.0,16.0,22.0,21.0,9.0,23.0,17.0,11.0,20.0,9.0,15.0,6.0,20.0,15.0,8.0,6.0,15.0,12.0,5.0,3.0,6.0,10.0,10.0,9.0,8.0,12.0,3.0,12.0,6.0,13.0,3.0,8.0,7.0,6.0,6.0,6.0,9.0,3.0,5.0,6.0,11.0,4.0,6.0,5.0,6.0,6.0,6.0,4.0,4.0,5.0,3.0,4.0,4.0,3.0,1.0,2.0,3.0,5.0,2.0,4.0,2.0,2.0,3.0,4.0,1.0,2.0,1.0,3.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,340,515,65,0,125,115,100,104,81,70,56,34,44,37,30,32,27,20,14,13,11,5,1,1,0,0,907,0,0,13,0,907,0,0,13,0,240,4,29,77,28,2,200,340,0,644,276,0,0,0,827,8,0,0,0,0,0,0,1,84,0,0,2,25,1,0,0,41,851,0,51,108,4,0,0,757,0,3.229773462783172,0.0,4.6716417910447765,0.0,5.961956521739131,0,0,7,0,0,0,11,176,0,37,10,21,27,34,19,15,9,10,3,5,0,3,0,0,0,127,67,41,153,25,169,69,125,22,172,1,193,69,125,1,193,125,69,41,153,10,31,28,166,63,131,7,187,152,42,73,121,1,193,30,93,64,7,0,143,51,0,0,166,2,0,0,0,0,0,0,0,26,0,2.6030927835051547,2.1391752577319587,0.0,1.1428571428571428,1.1428571428571428,50.54639175257732 +120504,Comarca Ngäbe-Buglé,Ñürüm,Cerro Pelado,529,416,0,1,0,0,0,0,0,0,0,0,0,0,0,0,63,554,60,535,82,20,0,0,40,0,262,13,5,119,3,54,218,0,3,0,0,625,20,31,0,1,263,412,0,0,0,2,677,0,152,26,8,53,30,0,0,0,666,11,0,0,213,84,2,250,84,44,0,671,0,0,0,0,6,0,6,342,0,328,1,0,0,388,11,0,0,270,0,2,0,0,5,1,0,946,4.7669172932330826,13.208020050125311,6.954887218045113,23.847117794486216,1.0073855243722305,2.8020679468242244,1.6986706056129983,682,392,1666,24,352,27,30,25,11,54,6,7,2,0,19,26,11,6,9,1,4,1275,1631,0,149,2757,0,788,2118,0,2395,511,0,1201,1705,0,1196,5,1340,365,0,375,77,61,1,106,143,141,175,155,463,0,0,0,110,170,197,100,146,311,3,2,26,34,27,45,15,19,3,1,0,0,0,0,0,0,755,103,1499,0,13,52,27,14,691,657,18,119,175,41,49,15,10,0,529,0,0,1683,1595,83,139,15,207,5,0,370,0,180,130,18,1491,332,0,0,1869,398,0,2,6,81,1,0,0,0,0,9,34,23,16,48,515,60,8,145,2404,250,83,40,50,47,26,13,16,11,5,0,1,0,0,332,91.0,95.0,85.0,101.0,96.0,94.0,96.0,91.0,96.0,76.0,90.0,87.0,74.0,69.0,101.0,84.0,73.0,82.0,70.0,68.0,65.0,57.0,55.0,42.0,33.0,44.0,45.0,44.0,41.0,31.0,43.0,22.0,37.0,36.0,34.0,37.0,24.0,31.0,40.0,34.0,26.0,31.0,25.0,35.0,22.0,24.0,23.0,28.0,27.0,24.0,23.0,25.0,11.0,24.0,17.0,14.0,20.0,15.0,19.0,19.0,20.0,17.0,14.0,21.0,19.0,7.0,12.0,11.0,17.0,5.0,10.0,15.0,10.0,14.0,17.0,12.0,9.0,6.0,9.0,2.0,8.0,6.0,4.0,6.0,5.0,8.0,5.0,7.0,5.0,2.0,2.0,4.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1342,1715,221,0,468,453,421,377,252,205,172,166,139,126,100,87,91,52,66,38,29,27,8,1,0,0,3237,3,0,38,0,3237,3,0,38,0,856,12,116,234,85,2,632,1341,0,2584,694,0,0,0,2739,55,0,0,0,1,0,0,1,482,0,1,14,318,1,0,0,27,2917,0,112,279,14,1,1,2871,0,3.107692307692308,0.0,4.696644295302013,0.0,5.487492373398414,0,1,73,0,0,0,7,601,0,230,55,46,75,92,59,30,21,26,11,5,5,3,0,0,24,441,241,121,561,121,561,159,523,94,588,6,676,240,442,8,674,396,286,140,542,57,83,43,639,227,455,24,658,482,200,455,227,7,675,70,370,240,2,0,425,257,0,0,553,12,0,0,0,0,0,0,0,117,0,2.467741935483871,2.338709677419355,0.0,1.121212121212121,1.121212121212121,48.64222873900293 +120505,Comarca Ngäbe-Buglé,Ñürüm,El Bale,335,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,192,36,190,19,15,0,0,21,0,59,0,1,73,3,3,105,1,0,0,0,213,14,17,1,0,77,166,0,0,0,2,245,0,1,6,0,92,8,0,0,0,239,6,0,0,106,26,74,32,6,1,0,245,0,0,0,0,0,0,11,102,0,129,3,0,1,119,1,0,10,101,1,8,0,0,4,0,0,352,4.9421487603305785,15.074380165289256,6.950413223140496,23.694214876033055,1.0,2.608163265306122,1.563265306122449,245,158,457,18,78,4,9,13,3,15,4,1,4,0,7,4,1,6,3,0,3,450,488,0,146,792,0,298,640,0,741,197,0,349,589,0,329,20,470,119,0,125,16,33,0,38,54,68,47,42,162,0,0,0,30,68,67,20,42,95,2,0,3,1,5,8,4,6,1,0,1,0,0,0,0,0,376,13,395,0,2,8,1,0,204,156,18,17,73,12,16,5,4,0,277,0,0,537,472,30,52,7,203,0,0,95,0,75,63,10,264,2,0,0,658,107,0,0,1,16,1,1,0,0,0,3,11,8,10,33,266,19,8,31,791,90,31,31,16,12,18,7,7,2,2,0,0,0,0,2,12.0,22.0,21.0,16.0,24.0,25.0,25.0,24.0,31.0,25.0,22.0,25.0,17.0,19.0,30.0,29.0,23.0,27.0,32.0,24.0,7.0,22.0,15.0,9.0,15.0,10.0,9.0,14.0,11.0,12.0,11.0,10.0,9.0,11.0,9.0,13.0,12.0,10.0,11.0,11.0,8.0,13.0,10.0,7.0,17.0,7.0,11.0,8.0,14.0,2.0,6.0,6.0,10.0,7.0,10.0,6.0,6.0,7.0,5.0,9.0,6.0,8.0,12.0,5.0,8.0,10.0,6.0,5.0,7.0,10.0,4.0,9.0,3.0,5.0,2.0,1.0,3.0,2.0,3.0,2.0,2.0,0.0,1.0,3.0,4.0,4.0,2.0,3.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,338,574,97,0,95,130,113,135,68,56,50,57,55,42,39,33,39,38,23,11,10,12,1,2,0,0,1002,3,0,4,0,1002,3,0,4,0,206,8,60,162,22,3,210,338,0,651,355,3,0,2,55,71,0,0,0,1,0,0,1,879,0,0,0,16,5,0,0,1,987,0,49,80,2,0,0,878,0,2.912328767123288,0.0,4.651376146788991,0.0,5.32804757185332,0,0,7,2,0,0,0,236,0,39,18,33,50,49,13,13,12,11,3,1,0,3,0,0,0,172,73,43,202,52,193,26,219,35,210,4,241,167,78,4,241,130,115,59,186,49,10,20,225,48,197,13,232,215,30,187,58,5,240,40,127,76,2,0,204,41,0,0,24,17,0,0,0,0,0,0,0,204,0,2.1918367346938776,1.926530612244898,0.0,1.0,1.0,51.64081632653061 +120506,Comarca Ngäbe-Buglé,Ñürüm,El Paredón,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,285,6,265,23,4,0,0,2,0,0,0,1,138,4,96,55,0,0,0,0,200,22,71,1,0,44,247,0,0,0,3,294,1,95,6,0,17,23,0,0,1,288,5,0,0,95,7,191,1,0,0,0,292,1,0,0,0,1,0,4,124,0,162,4,0,0,259,18,0,1,10,0,6,0,0,0,0,0,436,6.296028880866426,21.974729241877256,6.805054151624549,23.76173285198556,1.0,2.8537414965986394,1.5850340136054422,294,189,589,14,82,8,4,2,1,16,4,1,4,0,2,7,3,3,6,1,6,340,739,0,12,1067,0,212,867,0,849,230,0,366,713,0,365,1,588,125,0,130,20,29,1,40,70,83,64,66,229,0,1,2,45,55,131,19,25,62,0,0,0,1,0,3,2,0,0,1,0,0,0,0,0,0,350,10,542,0,0,2,5,2,211,272,16,41,54,4,11,10,4,0,276,1,0,654,554,19,51,12,227,0,0,51,0,100,58,6,354,0,0,0,831,65,2,0,0,3,1,0,0,0,0,2,7,4,5,11,271,9,2,49,1015,73,34,19,24,23,8,5,4,3,0,0,0,0,0,0,31.0,32.0,36.0,30.0,26.0,28.0,31.0,28.0,33.0,31.0,28.0,25.0,34.0,28.0,30.0,34.0,20.0,24.0,24.0,20.0,27.0,21.0,18.0,17.0,15.0,16.0,12.0,8.0,17.0,10.0,10.0,20.0,15.0,11.0,10.0,20.0,10.0,12.0,22.0,14.0,15.0,12.0,9.0,11.0,7.0,6.0,12.0,12.0,8.0,8.0,14.0,8.0,6.0,14.0,6.0,11.0,16.0,10.0,10.0,9.0,13.0,6.0,5.0,10.0,16.0,3.0,5.0,3.0,0.0,1.0,3.0,1.0,5.0,3.0,5.0,3.0,2.0,11.0,3.0,0.0,3.0,1.0,2.0,4.0,4.0,3.0,4.0,1.0,3.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,451,681,76,0,155,151,145,122,98,63,66,78,54,46,48,56,50,12,17,19,14,12,2,0,0,0,1204,0,0,4,0,1204,0,0,4,0,318,0,57,113,34,2,235,449,0,1112,96,0,0,0,563,37,0,0,0,0,0,0,52,556,0,3,63,66,0,0,0,276,800,0,25,37,2,0,0,1144,0,3.17359413202934,0.0,4.785992217898833,0.0,4.696192052980132,1,15,22,0,0,0,77,179,0,74,34,42,38,47,33,8,8,5,2,3,0,0,0,0,0,147,147,5,289,6,288,28,266,1,293,2,292,184,110,1,293,104,190,17,277,5,12,3,291,14,280,5,289,253,41,169,125,7,287,61,154,76,3,0,255,39,0,0,136,11,0,0,0,0,0,0,15,132,0,2.224489795918368,1.8843537414965987,0.0,1.0625,1.0625,50.302721088435376 +120507,Comarca Ngäbe-Buglé,Ñürüm,El Piro,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,130,16,154,12,2,0,0,14,0,125,1,1,8,4,3,40,0,0,1,0,172,0,9,0,0,128,53,0,0,0,1,182,0,11,2,0,27,4,0,0,1,179,2,0,0,115,14,2,46,5,0,0,181,0,0,0,0,1,0,11,120,0,50,1,0,0,154,1,0,1,22,0,1,0,0,3,0,0,226,3.1548387096774198,4.070967741935484,3.806451612903226,5.612903225806452,1.010989010989011,3.2967032967032965,2.1263736263736264,184,112,353,22,73,6,9,15,2,12,2,3,9,0,8,3,6,6,5,3,2,491,243,0,244,490,0,390,344,0,621,113,0,301,433,0,296,5,351,82,0,84,15,18,2,30,35,25,29,34,107,0,0,0,19,40,38,19,33,168,0,0,3,0,3,16,11,3,0,0,2,0,0,0,0,0,242,20,346,0,0,6,13,7,167,118,12,42,85,7,23,14,3,1,113,0,0,426,376,38,47,14,130,0,0,17,0,53,58,5,242,0,0,0,402,175,0,1,1,27,0,2,0,0,0,7,18,7,3,31,113,23,6,54,565,78,34,19,39,17,12,15,14,4,3,2,0,0,0,0,21.0,14.0,13.0,20.0,22.0,18.0,20.0,25.0,21.0,20.0,21.0,18.0,18.0,15.0,22.0,8.0,19.0,14.0,23.0,13.0,22.0,14.0,13.0,11.0,9.0,11.0,7.0,6.0,13.0,9.0,5.0,8.0,14.0,8.0,11.0,9.0,8.0,8.0,9.0,9.0,12.0,6.0,14.0,8.0,10.0,5.0,6.0,5.0,8.0,5.0,4.0,7.0,7.0,3.0,11.0,4.0,3.0,4.0,5.0,7.0,5.0,5.0,4.0,3.0,3.0,5.0,5.0,6.0,4.0,2.0,1.0,2.0,5.0,1.0,5.0,7.0,4.0,3.0,0.0,2.0,2.0,2.0,3.0,2.0,2.0,2.0,2.0,3.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,288,435,79,0,90,104,94,77,69,46,46,43,50,29,32,23,20,22,14,16,11,9,4,2,1,0,793,4,1,4,0,793,4,1,4,0,224,7,56,58,21,1,147,288,0,527,272,3,0,0,668,6,0,0,0,0,0,0,2,126,0,1,1,1,0,0,0,11,788,0,65,135,8,0,0,594,0,2.950354609929078,0.0,4.294117647058823,0.0,6.344139650872818,0,0,0,0,0,0,3,181,0,31,16,18,14,24,25,16,5,16,10,3,0,3,3,0,0,153,31,79,105,88,96,39,145,74,110,1,183,73,111,1,183,151,33,84,100,75,9,41,143,95,89,10,174,114,70,77,107,4,180,30,97,50,7,0,139,45,0,0,145,4,0,0,0,0,0,0,0,35,0,2.315217391304348,2.0434782608695654,0.0,1.0,1.0,51.36413043478261 +120508,Comarca Ngäbe-Buglé,Ñürüm,Guayabito,443,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,27,275,23,13,4,0,6,4,0,0,1,92,5,3,223,0,1,0,0,192,22,104,6,1,9,316,0,0,0,0,325,0,61,12,0,55,7,0,0,0,325,0,0,0,16,10,271,24,3,0,1,321,0,0,0,0,3,1,0,17,0,305,3,0,0,191,10,6,0,107,0,11,0,0,0,0,0,460,5.378109452736318,12.865671641791044,6.895522388059701,20.58208955223881,1.003076923076923,1.9138461538461535,0.8215384615384616,326,225,1078,27,341,19,31,40,8,60,4,1,16,0,3,8,4,2,2,1,1,551,1331,0,56,1826,0,111,1771,0,1419,463,0,805,1077,0,791,14,757,320,0,327,42,50,1,85,115,144,114,119,235,0,0,0,75,116,227,33,49,104,0,0,10,6,13,12,3,2,0,0,0,0,0,0,0,0,1062,2,395,0,0,1,1,2,268,88,5,32,37,209,0,1,0,0,816,0,0,1077,1099,22,9,1,511,0,0,520,0,10,52,6,883,9,0,0,1308,136,0,0,0,15,0,0,0,0,0,2,6,2,10,14,816,207,1,6,2044,53,42,4,4,3,10,2,4,0,1,0,0,0,0,9,63.0,68.0,86.0,77.0,74.0,74.0,72.0,66.0,71.0,66.0,72.0,61.0,76.0,47.0,77.0,70.0,49.0,52.0,40.0,34.0,37.0,36.0,27.0,29.0,28.0,22.0,25.0,21.0,19.0,18.0,17.0,16.0,19.0,29.0,20.0,18.0,21.0,19.0,21.0,21.0,16.0,18.0,10.0,22.0,21.0,20.0,13.0,19.0,12.0,15.0,12.0,17.0,15.0,16.0,14.0,5.0,11.0,11.0,13.0,12.0,9.0,5.0,11.0,10.0,8.0,8.0,6.0,4.0,5.0,4.0,2.0,2.0,6.0,3.0,9.0,6.0,6.0,3.0,3.0,1.0,5.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1050,1043,83,0,368,349,333,245,157,105,101,100,87,79,74,52,43,27,22,19,8,2,4,1,0,0,2129,0,0,47,0,2129,0,0,47,0,513,6,42,193,61,1,312,1048,0,2057,119,0,0,1,1446,707,0,0,0,0,0,0,0,22,0,1,0,0,0,0,0,1,2174,0,18,40,2,0,0,2116,0,3.2275132275132274,0.0,4.526200873362446,0.0,4.369944852941177,0,0,0,0,0,0,1,325,0,58,24,71,83,63,5,4,8,6,3,1,0,0,0,0,0,149,177,3,323,3,323,221,105,2,324,1,325,104,222,5,321,136,190,1,325,0,1,4,322,1,325,1,325,308,18,262,64,38,288,15,148,151,12,0,240,86,0,0,200,125,0,0,0,0,0,0,0,1,0,3.303680981595092,3.371165644171779,0.0,1.0,1.0,48.65644171779141 +120509,Comarca Ngäbe-Buglé,Ñürüm,Güibale,396,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,264,16,220,45,6,0,0,9,1,0,0,1,91,1,1,187,0,0,0,0,215,5,53,8,0,16,265,0,0,0,0,281,0,99,2,1,3,11,0,0,0,278,3,0,0,20,11,242,4,4,0,0,264,1,0,0,0,16,0,0,25,0,255,1,0,0,121,66,0,0,70,0,20,0,0,4,0,0,397,6.572192513368984,21.3048128342246,6.818181818181818,22.657754010695182,1.00711743772242,2.772241992882562,1.612099644128114,283,210,764,31,131,9,10,23,0,16,1,5,1,0,18,20,6,0,7,2,7,321,949,0,17,1253,0,72,1198,0,881,389,0,488,782,0,485,3,520,262,0,263,34,39,0,53,60,75,72,83,217,0,0,0,52,70,101,34,25,81,1,1,1,2,3,2,0,1,0,0,0,0,0,0,0,0,560,1,440,0,0,0,1,1,232,157,24,26,53,4,4,6,1,1,491,1,0,751,733,18,64,6,227,1,0,245,0,5,45,2,383,9,0,0,909,87,0,1,2,2,0,0,0,0,0,3,3,2,4,14,465,5,2,63,1236,70,42,46,40,25,10,3,1,1,1,0,0,0,0,9,58.0,49.0,61.0,46.0,48.0,52.0,48.0,48.0,31.0,42.0,38.0,45.0,36.0,32.0,49.0,41.0,39.0,27.0,31.0,25.0,26.0,18.0,20.0,19.0,22.0,22.0,15.0,16.0,19.0,16.0,22.0,8.0,16.0,12.0,13.0,19.0,17.0,13.0,17.0,17.0,10.0,8.0,9.0,9.0,10.0,12.0,6.0,16.0,13.0,11.0,6.0,11.0,7.0,6.0,10.0,8.0,13.0,8.0,12.0,3.0,10.0,2.0,10.0,6.0,4.0,7.0,4.0,5.0,4.0,3.0,3.0,1.0,5.0,7.0,3.0,2.0,2.0,1.0,2.0,4.0,1.0,2.0,2.0,2.0,0.0,2.0,0.0,7.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,683,730,71,0,262,221,200,163,105,88,71,83,46,58,40,44,32,23,19,11,7,11,0,0,0,0,1457,0,0,27,0,1457,0,0,27,0,352,1,42,141,39,0,227,682,0,1343,141,0,0,0,18,1061,0,0,0,0,0,0,2,403,0,66,32,4,0,0,0,0,1382,0,15,26,1,0,0,1442,0,3.02755905511811,0.0,4.760942760942761,0.0,4.033692722371968,18,10,0,0,0,0,0,255,0,45,15,38,45,72,29,18,11,7,1,1,1,0,0,0,0,69,214,1,282,3,280,93,190,5,278,2,281,209,74,3,280,113,170,2,281,1,1,2,281,1,282,1,282,273,10,271,12,3,280,16,177,89,1,0,236,47,0,0,5,206,0,0,0,0,0,0,0,72,0,2.6537102473498235,2.590106007067138,1.0,1.0,1.0,46.74204946996466 +120510,Comarca Ngäbe-Buglé,Ñürüm,El Peñón,640,23,0,1,0,0,0,0,0,0,0,0,2,0,0,0,4,352,56,332,24,7,0,1,47,1,44,0,11,215,2,11,128,0,1,0,0,277,35,86,10,4,73,308,0,0,0,31,412,0,23,32,0,194,3,0,0,0,408,4,0,0,83,10,286,31,1,1,0,409,0,0,0,1,2,0,1,72,5,330,4,0,0,313,23,0,0,57,0,1,0,0,18,0,0,666,5.517857142857143,14.87797619047619,6.895833333333333,23.52380952380953,1.0048543689320388,2.9781553398058254,1.854368932038835,416,252,983,17,157,9,12,12,3,27,1,7,5,0,13,5,4,3,5,0,4,606,1078,0,154,1530,0,417,1267,0,1359,325,0,693,991,0,684,9,801,190,0,194,22,52,3,78,90,110,87,94,256,0,1,0,62,96,150,53,74,210,0,2,4,12,9,14,7,2,2,0,0,0,0,0,0,0,860,19,494,0,0,13,6,2,292,149,14,37,96,28,26,8,2,2,715,0,0,969,932,40,75,8,381,0,4,369,0,147,79,11,534,9,0,0,1111,238,0,1,3,19,1,0,0,0,0,6,4,6,12,43,693,54,7,54,1567,120,58,48,44,25,11,8,6,2,3,0,0,0,0,9,59.0,58.0,43.0,57.0,66.0,40.0,67.0,53.0,37.0,48.0,59.0,51.0,64.0,39.0,48.0,61.0,45.0,52.0,45.0,28.0,36.0,40.0,34.0,31.0,33.0,28.0,22.0,23.0,22.0,20.0,15.0,22.0,18.0,15.0,19.0,15.0,14.0,22.0,13.0,17.0,14.0,15.0,17.0,12.0,22.0,13.0,11.0,20.0,16.0,18.0,15.0,20.0,10.0,6.0,14.0,15.0,13.0,4.0,12.0,11.0,6.0,4.0,8.0,8.0,6.0,5.0,4.0,3.0,10.0,5.0,6.0,6.0,9.0,3.0,6.0,7.0,9.0,8.0,1.0,4.0,2.0,1.0,3.0,5.0,4.0,1.0,1.0,2.0,3.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,789,1000,112,0,283,245,261,231,174,115,89,81,80,78,65,55,32,27,30,29,15,7,4,0,0,0,1888,0,1,12,0,1888,0,1,12,0,337,7,83,288,52,0,345,789,0,1331,570,0,0,0,261,1284,0,0,0,0,0,0,0,356,0,1,1,14,0,0,0,6,1879,0,38,82,3,0,0,1778,0,3.047692307692308,0.0,4.7293233082706765,0.0,5.3477117306680695,0,0,2,0,0,0,2,412,0,91,30,42,70,89,40,21,11,13,3,2,1,1,0,0,0,240,176,22,394,27,389,86,330,16,400,1,415,154,262,3,413,216,200,34,382,25,9,12,404,56,360,7,409,361,55,361,55,7,409,66,235,111,4,0,317,99,0,0,51,299,0,0,0,0,0,0,0,66,0,2.329326923076923,2.2403846153846154,0.0,1.1538461538461535,1.1538461538461535,47.14182692307692 +120511,Comarca Ngäbe-Buglé,Ñürüm,El Piro N°2 (Muakwata Kubu),237,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,178,29,166,22,17,0,0,12,0,0,0,2,91,1,7,116,0,0,0,0,184,24,9,0,0,41,175,0,0,0,1,217,0,14,3,0,30,0,0,0,0,216,0,0,1,34,37,90,55,0,1,0,216,0,0,0,1,0,0,9,35,0,168,5,0,0,108,21,0,0,83,0,3,0,0,2,0,0,264,6.170542635658915,19.94573643410853,6.883720930232558,23.25581395348837,1.0,2.216589861751152,1.1935483870967742,217,141,636,20,144,15,26,29,4,30,5,3,8,0,1,1,3,5,2,0,0,422,676,0,82,1016,0,196,902,0,856,242,0,451,647,0,431,20,464,183,0,184,19,18,0,39,66,59,56,56,159,1,0,0,62,57,92,25,54,65,0,0,14,5,25,27,7,3,2,0,3,0,0,0,0,0,409,4,452,0,1,0,3,2,255,178,7,10,47,67,8,5,10,0,273,0,0,605,673,34,13,6,249,0,0,108,0,57,37,4,498,2,0,0,714,102,0,0,8,37,1,3,0,0,0,4,23,6,2,16,273,66,6,17,1158,38,18,10,12,5,8,4,13,7,2,1,0,0,0,2,45.0,46.0,44.0,45.0,40.0,36.0,38.0,40.0,44.0,35.0,36.0,33.0,28.0,28.0,37.0,32.0,26.0,37.0,26.0,21.0,19.0,20.0,23.0,23.0,16.0,20.0,16.0,11.0,14.0,14.0,14.0,16.0,11.0,17.0,18.0,8.0,18.0,5.0,12.0,12.0,7.0,7.0,8.0,7.0,12.0,12.0,8.0,14.0,6.0,7.0,12.0,18.0,10.0,9.0,9.0,5.0,4.0,8.0,5.0,2.0,7.0,2.0,5.0,3.0,3.0,9.0,3.0,3.0,1.0,6.0,4.0,3.0,2.0,1.0,4.0,4.0,1.0,5.0,0.0,1.0,2.0,0.0,1.0,1.0,4.0,4.0,0.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,575,639,64,0,220,193,162,142,101,75,76,55,41,47,58,24,20,22,14,11,8,7,1,1,0,0,1268,0,0,10,0,1268,0,0,10,0,274,5,60,143,26,1,195,574,0,1186,92,0,0,0,1178,78,0,0,0,0,0,0,0,22,0,0,0,0,0,0,1,1,1276,0,36,58,2,0,0,1182,0,2.89010989010989,0.0,4.379928315412187,0.0,5.07433489827856,0,0,0,0,0,0,0,217,0,46,20,33,40,33,13,5,3,11,6,3,1,2,0,1,0,124,93,1,216,1,216,102,115,0,217,0,217,70,147,2,215,113,104,22,195,14,8,16,201,5,212,8,209,178,39,196,21,6,211,12,101,96,8,0,152,65,0,0,199,15,0,0,0,0,0,0,0,3,0,2.7880184331797238,3.1013824884792625,0.0,1.0833333333333333,1.0833333333333333,48.31336405529954 +120601,Comarca Ngäbe-Buglé,Kankintú,Bisira,862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,25,369,192,9,28,245,42,38,16,0,0,37,234,7,21,228,1,42,3,3,483,54,16,10,1,267,302,0,0,0,1,570,73,76,25,16,52,50,0,0,2,563,5,0,0,14,524,2,0,28,1,1,395,5,0,0,8,162,0,7,105,0,16,427,15,0,240,0,26,83,2,121,70,0,0,28,0,0,862,4.895833333333333,13.679166666666667,5.120833333333334,14.566666666666666,1.0035087719298246,3.543859649122807,2.3666666666666667,572,329,1395,85,795,21,22,55,1,97,8,10,19,0,19,9,5,1,7,1,13,677,2296,0,78,2895,0,373,2600,0,1974,999,0,1192,1781,0,1187,5,943,838,0,840,32,53,5,112,156,168,158,180,326,0,0,0,95,135,168,66,88,210,0,4,31,24,23,23,21,54,0,0,1,0,0,0,0,0,1259,20,1064,0,0,1,4,37,601,346,34,46,113,145,41,6,53,1,803,116,0,1681,1728,77,45,6,645,1,1,503,0,246,61,2,1311,3,0,0,1952,328,0,4,1,57,0,1,0,0,0,3,37,8,22,78,882,108,47,94,2972,138,78,57,63,26,26,8,14,17,4,1,2,0,0,3,104.0,107.0,108.0,117.0,104.0,100.0,105.0,98.0,118.0,105.0,105.0,102.0,100.0,100.0,90.0,97.0,79.0,78.0,60.0,68.0,66.0,61.0,61.0,64.0,35.0,37.0,41.0,40.0,38.0,30.0,28.0,29.0,27.0,29.0,35.0,23.0,32.0,38.0,26.0,35.0,29.0,28.0,23.0,28.0,23.0,21.0,22.0,24.0,24.0,25.0,22.0,27.0,26.0,17.0,24.0,23.0,18.0,16.0,16.0,16.0,20.0,15.0,16.0,18.0,8.0,8.0,11.0,9.0,11.0,8.0,9.0,5.0,10.0,13.0,10.0,5.0,9.0,7.0,7.0,2.0,4.0,3.0,4.0,6.0,3.0,4.0,3.0,3.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1563,1686,160,0,540,526,497,382,287,186,148,154,131,116,116,89,77,47,47,30,20,13,2,0,1,0,3190,1,1,217,0,3190,1,1,217,0,1033,6,179,93,73,2,465,1558,0,2665,743,1,0,3,3362,9,0,0,0,2,0,0,0,33,0,11,12,3,0,1,0,15,3367,0,47,85,37,3,3,3234,0,3.378836833602585,0.0,4.630864197530864,0.0,4.305661484306248,2,5,0,0,0,0,5,560,0,83,54,77,95,114,66,18,21,15,12,12,1,2,0,1,1,324,248,33,539,26,546,58,514,16,556,3,569,113,459,6,566,185,387,79,493,11,68,31,541,41,531,7,565,437,135,332,240,18,554,46,208,308,10,0,320,252,0,1,565,1,0,0,0,0,0,0,0,5,0,2.9388111888111887,3.020979020979021,0.0,1.21875,1.21875,50.29895104895105 +120604,Comarca Ngäbe-Buglé,Kankintú,Gworoni,859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,523,5,1,0,515,2,1,5,0,2,4,114,0,4,405,0,0,0,0,287,238,1,3,0,36,492,0,1,0,0,529,73,152,2,0,16,87,0,0,0,529,0,0,0,4,291,15,6,208,2,3,201,0,0,0,14,313,1,0,6,4,174,263,82,0,72,9,1,0,4,4,437,0,0,2,0,0,859,6.9753086419753085,22.185185185185187,6.9753086419753085,23.37037037037037,1.0,2.943289224952741,1.77882797731569,529,260,1670,28,876,17,54,74,4,79,6,0,12,0,11,8,3,0,4,0,4,294,2869,0,38,3125,0,152,3011,0,1926,1237,0,1252,1911,0,1251,1,806,1105,0,1105,46,35,2,126,152,210,202,183,396,0,0,0,155,138,152,65,63,114,0,0,4,2,4,3,2,4,0,0,0,0,0,0,0,0,1191,4,1236,0,0,0,0,8,744,448,7,29,60,196,21,8,53,0,832,25,0,1686,1923,24,30,8,663,0,0,470,0,235,61,5,1503,1,0,0,2298,129,0,0,0,4,0,0,0,0,0,4,6,6,7,96,876,126,1,73,3379,91,39,26,30,12,23,4,3,1,0,0,0,0,0,1,101.0,128.0,92.0,125.0,128.0,112.0,117.0,114.0,146.0,115.0,149.0,104.0,117.0,125.0,116.0,111.0,107.0,88.0,95.0,70.0,62.0,49.0,55.0,49.0,37.0,38.0,29.0,25.0,37.0,24.0,42.0,38.0,26.0,35.0,35.0,23.0,36.0,29.0,22.0,30.0,22.0,24.0,20.0,24.0,29.0,25.0,18.0,29.0,27.0,39.0,34.0,18.0,27.0,20.0,16.0,16.0,13.0,10.0,12.0,18.0,16.0,12.0,13.0,14.0,15.0,7.0,10.0,5.0,5.0,5.0,6.0,7.0,11.0,2.0,9.0,9.0,5.0,4.0,4.0,2.0,7.0,3.0,4.0,2.0,3.0,0.0,2.0,0.0,0.0,0.0,3.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1789,1703,117,0,574,604,611,471,252,153,176,140,119,138,115,69,70,32,35,24,19,2,5,0,0,0,3317,0,0,292,0,3317,0,0,292,0,1088,10,171,29,75,7,447,1782,0,3460,149,0,0,2,3592,10,0,0,0,0,0,0,1,4,0,1,0,0,0,1,0,4,3603,0,12,12,7,1,0,3577,0,3.248550724637681,0.0,4.894230769230769,0.0,3.247714048212801,0,0,0,0,0,0,0,529,0,109,52,95,109,98,30,12,6,10,6,1,1,0,0,0,0,61,468,3,526,3,526,75,454,4,525,2,527,44,485,3,526,14,515,0,529,0,0,2,527,7,522,2,527,497,32,250,279,10,519,36,152,335,6,0,239,290,0,0,528,0,0,0,0,0,0,0,1,0,0,3.1871455576559544,3.635160680529301,0.0,1.25,1.25,49.1758034026465 +120605,Comarca Ngäbe-Buglé,Kankintú,Kankintú,1216,0,0,13,0,1,0,1,0,0,0,0,0,0,0,2,196,18,599,195,21,3,548,0,44,4,0,0,71,390,7,24,307,2,14,0,10,665,96,21,23,0,470,342,1,0,0,2,815,58,101,67,26,115,47,0,0,4,804,7,0,0,49,737,0,1,21,4,3,648,4,0,0,0,163,0,16,234,1,90,466,8,0,570,2,22,20,8,15,141,0,0,34,3,0,1231,6.103146853146853,19.412587412587413,6.856643356643357,23.18006993006993,1.007361963190184,3.533742331288344,2.396319018404908,821,463,2180,94,956,29,62,83,10,130,16,4,31,0,27,30,10,4,12,1,18,1409,2845,0,216,4038,0,778,3476,0,3266,988,0,2039,2215,0,2028,11,1414,801,0,805,74,104,6,198,220,229,198,227,463,0,0,0,184,245,212,140,159,269,0,5,55,88,88,76,60,142,3,1,3,0,0,0,0,0,1522,26,1804,0,1,6,11,64,1118,542,22,58,268,155,26,6,91,4,948,36,0,2385,2494,155,90,6,736,11,11,525,0,359,94,7,1836,8,0,0,2561,595,0,4,9,180,1,2,0,0,0,12,71,28,33,119,958,109,45,173,4138,169,177,103,74,42,61,24,32,38,9,0,2,1,1,8,154.0,165.0,147.0,159.0,175.0,142.0,137.0,157.0,159.0,132.0,153.0,137.0,143.0,125.0,154.0,123.0,126.0,116.0,98.0,96.0,98.0,90.0,92.0,81.0,70.0,69.0,66.0,66.0,49.0,53.0,54.0,50.0,51.0,38.0,43.0,39.0,45.0,35.0,45.0,44.0,39.0,41.0,34.0,46.0,27.0,25.0,26.0,26.0,40.0,27.0,42.0,25.0,39.0,30.0,22.0,25.0,24.0,20.0,27.0,18.0,20.0,19.0,17.0,15.0,17.0,19.0,17.0,13.0,14.0,9.0,3.0,5.0,9.0,16.0,16.0,6.0,5.0,5.0,6.0,8.0,7.0,5.0,8.0,6.0,8.0,5.0,4.0,5.0,1.0,3.0,0.0,1.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2239,2428,212,0,800,727,712,559,431,303,236,208,187,144,158,114,88,72,49,30,34,18,6,2,1,0,4643,5,0,231,0,4643,5,0,231,0,1311,11,342,125,84,3,770,2233,0,3716,1156,7,0,2,4822,23,2,1,0,4,0,0,0,25,0,1,3,3,0,2,0,6,4864,0,110,198,59,6,3,4503,0,3.125,0.0,4.523389232127096,0.0,5.293707726993237,1,1,1,0,1,0,0,817,0,108,49,99,131,171,82,43,37,38,26,19,5,8,0,3,2,569,252,50,771,64,757,106,715,20,801,1,820,179,642,8,813,395,426,112,709,44,68,63,758,75,746,6,815,473,348,203,618,5,816,66,338,406,11,2,436,385,0,0,816,2,0,0,0,0,0,0,0,3,0,2.897934386391252,3.030376670716889,1.0,1.0625,1.0625,48.05115712545676 +120606,Comarca Ngäbe-Buglé,Kankintú,Mününi,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,229,0,0,1,0,0,2,81,2,2,131,0,12,0,0,193,17,19,1,0,1,228,1,0,0,0,230,59,133,10,0,58,28,0,0,0,229,1,0,0,1,27,0,3,151,18,30,20,0,0,0,8,201,1,0,0,4,200,26,0,0,0,0,3,212,0,0,15,0,0,0,0,0,518,0.0,0.0,0.0,0.0,1.0,1.5739130434782609,0.5695652173913044,230,114,882,19,247,8,36,54,5,33,6,0,4,0,12,25,7,1,1,1,3,377,1106,0,0,1483,0,7,1476,0,898,585,0,598,885,0,598,0,317,568,0,568,8,5,0,60,88,80,89,88,170,0,0,0,68,83,135,8,16,15,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,956,0,205,0,0,0,0,1,142,52,7,3,1,8,0,0,4,0,943,0,0,749,889,1,0,0,311,0,0,644,0,83,14,0,701,0,0,0,1144,16,0,0,0,1,0,0,0,0,0,0,1,0,0,1,943,7,0,4,1502,27,28,34,45,2,0,0,0,0,0,0,0,0,0,0,20.0,37.0,44.0,54.0,42.0,49.0,45.0,68.0,59.0,59.0,57.0,49.0,54.0,57.0,62.0,48.0,46.0,51.0,51.0,33.0,28.0,31.0,26.0,21.0,23.0,18.0,19.0,17.0,14.0,14.0,15.0,14.0,9.0,14.0,15.0,14.0,9.0,16.0,15.0,10.0,16.0,17.0,10.0,8.0,11.0,11.0,11.0,7.0,5.0,16.0,19.0,14.0,9.0,15.0,13.0,6.0,3.0,8.0,7.0,7.0,9.0,4.0,9.0,13.0,10.0,5.0,4.0,8.0,2.0,3.0,2.0,1.0,7.0,3.0,3.0,1.0,3.0,2.0,2.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,756,829,53,0,197,280,279,229,129,82,67,64,62,50,70,31,45,22,16,9,4,0,2,0,0,0,1540,0,0,98,0,1540,0,0,98,0,495,5,52,14,48,15,256,753,0,1624,14,0,0,0,1631,2,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,1637,0,1,0,2,0,0,1635,0,2.43778801843318,0.0,4.442771084337349,0.0,3.1245421245421245,0,1,0,0,0,0,0,229,0,34,19,30,49,65,28,4,1,0,0,0,0,0,0,0,0,4,226,1,229,2,228,110,120,1,229,0,230,9,221,1,229,2,228,0,230,0,0,0,230,1,229,0,230,226,4,66,164,2,228,5,69,153,3,0,125,105,0,0,230,0,0,0,0,0,0,0,0,0,0,3.256521739130435,3.865217391304348,0.0,1.1111111111111112,1.1111111111111112,50.891304347826086 +120607,Comarca Ngäbe-Buglé,Kankintú,Piedra Roja,627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,391,2,0,1,386,0,1,3,0,0,0,113,0,1,265,1,13,0,0,167,214,11,1,0,4,389,0,0,0,0,393,13,137,19,0,31,34,0,0,0,393,0,0,0,1,129,0,16,245,2,0,58,0,0,0,0,335,0,0,0,4,329,60,0,0,2,1,9,374,1,0,6,0,0,0,0,0,627,7.0,11.666666666666666,7.0,16.0,1.0,1.6666666666666667,0.628498727735369,393,186,1222,23,876,4,53,127,0,61,11,5,1,0,17,8,0,0,0,7,24,156,2428,0,7,2577,0,143,2441,0,1174,1410,0,960,1624,0,958,2,301,1323,0,1325,3,9,5,86,111,157,149,166,227,2,0,0,76,71,112,14,43,25,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1579,1,420,0,0,0,0,5,270,83,13,49,17,25,0,0,56,1,1481,0,0,1281,1681,14,2,0,478,2,0,1084,0,105,37,0,965,0,0,0,1972,27,0,0,1,0,0,0,0,0,0,3,0,8,2,4,1477,24,0,62,2657,90,100,83,17,8,4,2,0,0,1,0,0,0,0,0,89.0,90.0,103.0,96.0,82.0,100.0,104.0,95.0,101.0,102.0,110.0,103.0,110.0,109.0,114.0,90.0,87.0,79.0,74.0,51.0,48.0,40.0,34.0,33.0,37.0,26.0,27.0,24.0,21.0,14.0,26.0,26.0,16.0,20.0,24.0,21.0,27.0,30.0,22.0,30.0,31.0,28.0,23.0,21.0,14.0,15.0,14.0,14.0,24.0,28.0,30.0,20.0,22.0,12.0,15.0,12.0,22.0,15.0,10.0,12.0,17.0,13.0,6.0,6.0,4.0,9.0,7.0,8.0,4.0,3.0,4.0,5.0,8.0,5.0,6.0,3.0,3.0,3.0,1.0,5.0,4.0,4.0,2.0,3.0,0.0,2.0,1.0,4.0,0.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1508,1355,99,0,460,502,546,381,192,112,112,130,117,95,99,71,46,31,28,15,13,9,3,0,0,0,2562,2,1,397,0,2562,2,1,397,0,909,3,54,17,81,9,387,1502,0,2958,1,3,0,2,2948,7,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,3,2958,0,3,58,6,0,0,2895,0,2.723386420787929,0.0,4.617737003058104,0.0,2.2424037812288997,0,0,0,0,0,0,0,393,0,35,25,41,89,118,58,13,7,5,0,2,0,0,0,0,0,18,375,4,389,4,389,196,197,4,389,1,392,3,390,1,392,3,390,0,393,0,0,1,392,3,390,0,393,380,13,103,290,2,391,8,126,258,1,0,197,196,0,0,393,0,0,0,0,0,0,0,0,0,0,3.2595419847328246,4.277353689567431,0.0,1.0,1.0,51.98218829516539 +120610,Comarca Ngäbe-Buglé,Kankintú,Calante,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,165,4,0,0,163,1,0,1,0,0,4,43,0,7,113,1,1,0,0,150,17,2,0,0,20,148,1,0,0,0,169,31,69,4,0,41,30,0,0,0,169,0,0,0,0,157,1,3,8,0,0,68,0,0,0,0,101,0,0,3,0,3,157,6,0,58,18,15,6,0,13,59,0,0,0,0,0,344,6.5131578947368425,21.11842105263158,6.4868421052631575,21.88157894736842,1.0,3.076923076923077,1.8106508875739644,169,85,441,12,194,6,11,18,0,17,2,3,0,0,0,3,2,1,0,0,1,134,728,0,7,855,0,96,766,0,538,324,0,290,572,0,286,4,258,314,0,316,3,3,0,26,36,52,52,50,135,0,0,0,23,30,30,12,23,59,0,0,3,1,5,1,0,2,0,0,0,0,0,0,0,0,323,23,339,0,2,2,14,13,189,112,2,23,12,17,4,1,1,0,285,11,0,450,508,5,7,1,146,0,0,172,0,41,11,0,425,2,0,0,614,67,0,0,1,3,0,0,0,0,0,1,3,2,2,9,296,4,8,21,883,30,18,10,8,3,1,2,0,1,0,0,0,0,0,2,16.0,27.0,22.0,31.0,21.0,26.0,32.0,32.0,31.0,35.0,37.0,44.0,23.0,36.0,28.0,37.0,20.0,13.0,28.0,21.0,17.0,17.0,20.0,11.0,14.0,15.0,9.0,4.0,5.0,13.0,5.0,8.0,10.0,9.0,0.0,3.0,8.0,11.0,5.0,10.0,3.0,8.0,12.0,9.0,9.0,2.0,7.0,6.0,6.0,9.0,7.0,10.0,7.0,8.0,13.0,6.0,3.0,2.0,9.0,4.0,4.0,2.0,3.0,3.0,3.0,3.0,8.0,3.0,4.0,0.0,0.0,1.0,3.0,4.0,2.0,3.0,1.0,1.0,1.0,3.0,2.0,2.0,3.0,0.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,441,468,49,0,117,156,168,119,79,46,32,37,41,30,45,24,15,18,10,9,9,2,0,1,0,0,898,0,0,60,0,898,0,0,60,0,299,0,36,11,25,16,131,440,0,864,94,0,0,0,944,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,954,0,4,12,11,2,0,929,0,3.3029490616621984,0.0,4.616379310344827,0.0,3.605427974947808,0,0,0,0,0,0,0,169,0,56,13,29,29,28,7,3,2,1,1,0,0,0,0,0,0,49,120,3,166,0,169,14,155,1,168,0,169,46,123,5,164,31,138,2,167,0,2,0,169,1,168,1,168,123,46,55,114,4,165,8,55,106,0,0,69,100,0,0,168,1,0,0,0,0,0,0,0,0,0,2.662721893491124,3.0059171597633134,0.0,1.0,1.0,49.77514792899408 +120611,Comarca Ngäbe-Buglé,Kankintú,Tolote,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,276,5,1,0,272,0,1,3,0,0,11,70,2,3,196,0,0,0,0,241,30,4,7,0,28,254,0,0,0,0,282,52,136,10,0,34,12,0,0,0,279,3,0,0,3,21,0,45,211,2,0,73,0,0,0,0,209,0,0,4,1,255,22,0,0,0,0,4,117,1,1,159,0,0,0,0,0,526,0.0,0.0,0.0,0.0,1.0070921985815602,1.2801418439716312,0.2765957446808511,284,167,1088,27,511,15,30,83,1,76,7,2,5,0,3,3,1,0,1,2,2,645,1290,0,28,1907,0,489,1446,0,905,1030,0,617,1318,0,613,4,371,947,0,947,6,30,0,84,113,119,114,114,128,0,0,0,69,37,92,25,25,21,0,0,2,2,3,1,3,0,0,0,0,0,0,0,0,0,1276,0,202,0,0,0,0,1,169,19,8,5,44,34,4,0,13,0,1179,2,0,1104,1192,9,20,0,596,0,1,650,0,44,10,0,893,1,0,0,1446,32,0,0,0,0,0,0,0,0,0,2,1,4,0,48,1165,17,1,38,1837,95,103,87,102,34,29,3,2,2,1,0,0,0,0,1,106.0,81.0,92.0,82.0,85.0,75.0,89.0,65.0,77.0,66.0,71.0,78.0,59.0,60.0,70.0,44.0,68.0,51.0,56.0,49.0,41.0,31.0,42.0,40.0,30.0,25.0,30.0,30.0,28.0,21.0,21.0,12.0,21.0,22.0,22.0,20.0,16.0,9.0,21.0,16.0,32.0,16.0,24.0,21.0,13.0,15.0,8.0,8.0,13.0,25.0,23.0,6.0,12.0,10.0,10.0,7.0,7.0,10.0,8.0,9.0,11.0,9.0,13.0,8.0,8.0,6.0,8.0,2.0,6.0,2.0,1.0,2.0,3.0,4.0,0.0,3.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1156,1092,48,0,446,372,338,268,184,134,98,82,106,69,61,41,49,24,10,8,3,3,0,0,0,0,2036,4,0,256,0,2036,4,0,256,0,749,3,27,4,47,9,304,1153,0,2033,259,4,0,6,2273,10,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,2,2294,0,7,3,2,0,0,2284,0,3.4097744360902253,0.0,4.915433403805497,0.0,2.182491289198606,0,0,0,0,0,0,0,284,0,22,12,29,32,60,48,24,17,21,10,4,3,1,1,0,0,87,197,4,280,9,275,168,116,0,284,0,284,50,234,0,284,55,229,3,281,0,3,2,282,0,284,1,283,270,14,241,43,2,282,15,91,174,4,0,164,120,0,0,283,1,0,0,0,0,0,0,0,0,0,3.887323943661972,4.197183098591549,0.0,1.1764705882352942,1.1764705882352942,47.90492957746479 +120701,Comarca Ngäbe-Buglé,Kusapín,Kusapín,855,0,0,15,0,0,0,0,0,0,0,0,0,0,0,2,173,57,401,215,17,7,303,41,41,9,0,22,68,348,6,28,154,0,7,0,0,474,139,17,3,0,489,142,0,0,1,1,633,15,70,35,17,80,20,0,0,6,621,6,0,0,36,591,1,3,1,1,0,597,4,0,0,0,32,0,12,68,0,12,541,0,0,438,28,54,47,11,32,21,0,1,1,0,0,870,6.472103004291846,17.989270386266096,6.656652360515022,20.100858369098717,1.0,3.500789889415482,2.4170616113744074,633,358,1403,117,873,31,32,39,8,114,10,8,12,0,30,18,9,5,3,0,13,1315,1898,0,235,2978,0,620,2593,0,2716,497,0,1378,1835,0,1370,8,1443,392,0,395,32,77,1,139,161,196,193,194,420,0,1,0,157,175,187,87,153,373,0,1,43,37,39,24,39,82,4,1,2,0,0,0,0,0,1396,9,1180,0,3,2,4,44,751,308,33,44,206,169,45,7,57,1,811,105,0,1741,1897,136,50,8,789,0,2,416,0,231,115,16,418,1,0,0,1940,512,0,2,16,109,4,2,0,0,0,8,60,23,31,107,885,170,27,94,2889,242,177,77,73,53,45,23,22,18,14,1,2,0,1,1,94.0,106.0,109.0,116.0,113.0,114.0,104.0,108.0,93.0,96.0,118.0,99.0,94.0,105.0,88.0,88.0,79.0,93.0,74.0,70.0,60.0,49.0,62.0,60.0,33.0,47.0,54.0,46.0,41.0,37.0,44.0,30.0,51.0,34.0,36.0,33.0,38.0,44.0,25.0,42.0,32.0,26.0,20.0,22.0,26.0,27.0,32.0,27.0,24.0,25.0,27.0,30.0,29.0,19.0,31.0,18.0,18.0,24.0,32.0,15.0,36.0,16.0,14.0,8.0,17.0,15.0,10.0,15.0,10.0,1.0,7.0,7.0,11.0,20.0,7.0,8.0,14.0,8.0,7.0,7.0,8.0,4.0,6.0,6.0,13.0,7.0,2.0,6.0,4.0,3.0,3.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1557,1865,216,0,538,515,504,404,264,225,195,182,126,135,136,107,91,51,52,44,37,22,7,2,1,0,3516,3,0,119,0,3516,3,0,119,0,1044,10,104,178,80,8,661,1553,0,2815,817,6,0,1,3609,12,0,1,0,0,0,0,0,15,0,0,4,2,0,0,0,90,3542,0,76,197,48,5,0,3312,0,3.0094134685010863,0.0,4.320987654320987,0.0,5.735019241341396,0,2,0,0,0,0,15,616,0,46,38,53,94,144,71,55,36,48,19,10,4,7,5,3,0,564,69,102,531,129,504,86,547,41,592,6,627,186,447,8,625,350,283,191,442,80,111,45,588,49,584,2,631,540,93,260,373,42,591,58,231,333,11,0,317,316,0,0,628,0,0,0,0,0,0,0,0,5,0,2.750394944707741,2.996840442338073,1.0,1.1956521739130437,1.1956521739130437,50.92417061611374 +120702,Comarca Ngäbe-Buglé,Kusapín,Bahía Azul,1034,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,21,65,588,71,15,8,371,191,14,4,0,0,35,292,1,12,329,0,5,0,0,583,50,19,22,0,266,408,0,0,0,0,674,44,59,60,35,112,60,0,0,0,672,2,0,0,2,650,0,5,8,3,6,388,1,0,0,0,284,1,1,16,0,7,643,7,0,143,6,225,192,7,42,56,0,0,3,0,0,1044,4.664429530201343,9.718120805369129,6.899328859060403,23.91946308724832,1.0014836795252229,3.4480712166172105,2.3427299703264093,675,428,1939,92,875,16,39,47,6,86,9,11,3,0,55,21,6,10,15,0,11,864,2830,0,29,3665,0,179,3515,0,2724,970,0,1557,2137,0,1557,0,1330,807,0,808,46,88,4,198,229,232,236,240,510,1,0,0,174,213,272,108,108,168,0,3,11,12,11,3,8,11,0,0,0,0,0,0,0,0,1403,7,1447,0,0,1,1,34,861,479,46,27,68,176,26,9,29,0,863,237,0,1984,2242,23,38,9,974,2,2,360,0,328,99,7,598,3,0,0,2630,209,0,2,0,16,0,0,0,0,0,1,12,5,6,48,1039,230,21,48,3702,206,146,78,49,21,8,4,4,4,1,0,0,0,0,3,136.0,133.0,124.0,139.0,139.0,146.0,125.0,150.0,146.0,131.0,147.0,135.0,118.0,121.0,144.0,128.0,110.0,102.0,104.0,78.0,78.0,62.0,64.0,62.0,37.0,50.0,44.0,33.0,28.0,37.0,34.0,40.0,33.0,39.0,40.0,34.0,32.0,53.0,37.0,45.0,36.0,29.0,28.0,40.0,36.0,30.0,24.0,22.0,25.0,34.0,32.0,28.0,20.0,23.0,19.0,17.0,17.0,13.0,34.0,14.0,24.0,16.0,16.0,11.0,14.0,9.0,11.0,12.0,16.0,12.0,7.0,9.0,8.0,11.0,10.0,12.0,15.0,7.0,5.0,7.0,5.0,4.0,0.0,6.0,3.0,6.0,4.0,0.0,2.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2034,2006,186,0,671,698,665,522,303,192,186,201,169,135,122,95,81,60,45,46,18,12,2,2,1,0,3843,0,0,383,0,3843,0,0,383,0,1145,5,150,189,68,5,634,2030,0,3461,762,3,0,9,4190,4,0,0,0,0,0,0,1,22,0,0,3,0,0,1,0,10,4212,0,19,41,27,8,0,4131,0,3.5140431090790334,0.0,5.023858921161826,0.0,4.05040227165168,0,0,0,0,0,0,2,673,0,70,38,75,116,192,111,37,18,12,3,1,2,0,0,0,0,457,218,16,659,15,660,85,590,4,671,1,674,174,501,15,660,243,432,34,641,8,26,4,671,34,641,1,674,559,116,158,517,10,665,44,257,371,3,0,399,276,0,1,672,1,0,0,0,0,0,0,0,1,0,2.9392592592592592,3.3214814814814817,1.0,1.0606060606060606,1.0606060606060606,48.74222222222223 +120705,Comarca Ngäbe-Buglé,Kusapín,Río Chiriquí,960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,16,539,57,5,46,478,7,1,7,0,2,25,197,6,21,327,1,22,0,0,432,51,50,68,0,130,471,0,0,0,0,601,59,202,33,0,34,31,0,0,2,598,1,0,0,4,404,4,2,91,64,32,200,1,1,0,0,395,4,1,13,0,22,414,151,0,176,18,7,32,19,81,265,0,0,3,0,0,960,6.06701030927835,21.01546391752577,6.515463917525773,22.871134020618555,1.0016638935108153,3.086522462562396,1.9650582362728783,602,358,1810,34,812,23,25,40,7,96,14,10,5,0,15,17,5,2,7,0,41,604,2688,0,74,3218,0,187,3105,0,2252,1040,0,1327,1965,0,1323,4,1133,832,0,836,36,93,5,173,185,232,201,235,451,0,0,0,158,171,152,69,84,156,0,3,6,5,8,8,5,13,0,1,6,0,0,0,0,0,1503,21,967,0,2,0,2,12,552,341,11,51,103,85,29,11,5,0,1261,29,0,1846,1990,67,35,11,445,1,1,963,0,221,62,3,1443,8,0,0,2280,173,0,2,7,24,0,5,0,0,0,4,28,16,12,50,1277,72,16,49,3452,135,50,60,52,16,16,5,13,22,4,1,1,0,1,8,120.0,148.0,138.0,138.0,137.0,142.0,128.0,129.0,135.0,130.0,148.0,125.0,108.0,101.0,113.0,110.0,99.0,88.0,75.0,70.0,60.0,60.0,45.0,69.0,38.0,43.0,49.0,38.0,32.0,39.0,33.0,28.0,35.0,34.0,42.0,25.0,26.0,30.0,28.0,44.0,36.0,20.0,27.0,28.0,32.0,15.0,27.0,24.0,26.0,29.0,22.0,22.0,30.0,20.0,12.0,10.0,20.0,15.0,14.0,19.0,18.0,14.0,14.0,7.0,11.0,9.0,12.0,14.0,6.0,8.0,10.0,6.0,7.0,6.0,10.0,13.0,2.0,3.0,6.0,4.0,4.0,2.0,7.0,2.0,1.0,2.0,1.0,2.0,0.0,4.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1940,1752,144,0,681,664,595,442,272,201,172,153,143,121,106,78,64,49,39,28,16,9,3,0,0,0,3572,0,1,263,0,3572,0,1,263,0,1034,6,145,153,64,7,491,1936,0,3155,680,1,0,2,3763,17,0,0,0,0,0,0,0,54,0,4,39,12,2,3,2,51,3723,0,49,79,13,2,0,3693,0,3.450557620817844,0.0,4.794082840236686,0.0,3.688216892596455,1,5,4,0,2,2,16,572,0,129,40,91,88,106,71,21,9,14,16,9,2,5,0,1,0,199,403,40,562,39,563,107,495,21,581,2,600,91,511,3,599,77,525,49,553,21,28,20,582,6,596,2,600,493,109,301,301,8,594,29,264,304,5,0,341,261,0,0,586,1,0,0,0,0,0,0,0,15,0,3.0664451827242525,3.305647840531561,0.0,1.0294117647058822,1.0294117647058822,47.20099667774086 +120706,Comarca Ngäbe-Buglé,Kusapín,Tobobe,776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,35,429,100,2,11,254,124,24,16,0,1,20,220,4,18,241,0,27,0,0,394,66,18,53,0,276,249,1,0,0,5,531,16,102,40,13,58,16,0,0,1,525,5,0,0,5,511,0,4,9,1,1,411,1,1,0,0,118,0,1,18,0,6,503,3,0,93,27,131,113,53,86,28,0,0,0,0,0,776,5.741666666666666,12.925,6.816666666666666,22.08333333333333,1.0,3.340866290018832,2.146892655367232,531,365,1408,46,646,20,25,21,4,82,4,12,2,0,21,4,7,5,10,0,8,379,2393,0,33,2739,0,163,2609,0,2067,705,0,1157,1615,0,1152,5,1079,536,0,537,58,52,6,130,153,217,167,183,433,0,0,1,122,136,225,76,112,118,0,2,10,14,2,6,6,4,0,0,2,0,0,0,0,0,1001,16,1115,0,1,7,6,30,611,411,13,50,83,104,21,6,6,0,652,136,0,1534,1632,35,14,6,597,6,1,349,0,294,66,8,543,0,0,0,1967,149,1,1,1,11,0,2,0,0,0,1,13,10,9,71,764,84,16,49,2826,143,76,46,33,10,12,7,4,6,2,1,0,0,0,0,92.0,110.0,85.0,107.0,105.0,111.0,107.0,104.0,100.0,113.0,95.0,104.0,77.0,94.0,95.0,86.0,83.0,78.0,64.0,55.0,42.0,50.0,49.0,35.0,29.0,39.0,38.0,30.0,29.0,33.0,39.0,27.0,39.0,25.0,38.0,28.0,24.0,25.0,27.0,31.0,22.0,25.0,24.0,30.0,18.0,23.0,20.0,22.0,23.0,20.0,30.0,19.0,16.0,17.0,24.0,18.0,14.0,18.0,18.0,15.0,19.0,9.0,13.0,13.0,14.0,13.0,10.0,12.0,12.0,7.0,3.0,2.0,6.0,12.0,6.0,5.0,3.0,2.0,8.0,5.0,3.0,1.0,6.0,3.0,1.0,3.0,4.0,1.0,3.0,5.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1499,1527,140,0,499,535,465,366,205,169,168,135,119,108,106,83,68,54,29,23,14,16,4,0,0,0,2963,0,3,200,0,2963,0,3,200,0,864,11,62,198,47,6,482,1496,0,2558,605,3,0,4,3144,4,0,0,0,0,0,0,4,10,0,3,8,2,0,0,1,431,2721,0,29,95,29,3,1,3009,0,3.306233062330623,0.0,4.794405594405594,0.0,4.215413771320278,2,1,1,0,0,0,85,442,0,54,50,77,124,121,55,18,11,10,4,2,2,3,0,0,0,376,155,32,499,28,503,58,473,11,520,1,530,150,381,2,529,63,468,53,478,20,33,5,526,8,523,2,529,346,185,173,358,6,525,26,232,271,2,0,294,237,0,0,528,0,0,0,0,0,0,0,1,2,0,2.888888888888889,3.073446327683616,3.0,1.1578947368421053,1.1578947368421053,47.93596986817326 +120708,Comarca Ngäbe-Buglé,Kusapín,Cañaveral,535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,306,18,4,1,303,0,1,1,0,0,13,81,4,31,193,3,3,0,0,267,51,6,4,0,61,267,0,0,0,0,328,30,48,18,4,80,27,0,0,1,321,6,0,0,2,248,18,2,26,6,26,136,1,0,0,0,191,0,1,8,1,48,246,24,0,148,2,23,5,35,5,108,0,0,2,0,0,535,5.693333333333333,17.32,6.973333333333334,23.73333333333333,1.0030487804878048,3.216463414634146,2.100609756097561,329,170,948,57,498,10,31,47,9,54,9,3,16,0,40,20,3,0,8,0,74,211,1672,0,10,1873,0,86,1797,0,1179,704,0,762,1121,0,760,2,477,644,0,644,13,29,8,75,106,108,126,115,211,2,2,0,105,91,139,31,33,21,0,0,2,3,6,5,2,5,0,0,1,0,0,0,0,0,851,5,590,0,0,2,2,10,359,184,14,23,26,46,5,1,9,0,756,9,0,1051,1130,22,7,1,412,0,0,410,0,104,34,2,694,2,0,0,1401,35,0,0,4,5,0,1,0,0,0,5,8,3,7,15,758,33,3,24,2043,61,23,13,13,6,4,7,6,3,0,0,0,0,0,2,62.0,89.0,79.0,68.0,80.0,87.0,57.0,73.0,71.0,69.0,84.0,66.0,79.0,79.0,72.0,71.0,55.0,56.0,47.0,31.0,33.0,33.0,34.0,35.0,20.0,23.0,14.0,11.0,21.0,15.0,19.0,23.0,14.0,25.0,18.0,18.0,18.0,19.0,14.0,20.0,6.0,14.0,19.0,22.0,15.0,14.0,15.0,14.0,13.0,20.0,22.0,4.0,7.0,15.0,16.0,8.0,4.0,4.0,11.0,10.0,10.0,10.0,3.0,10.0,6.0,4.0,7.0,5.0,5.0,6.0,6.0,4.0,5.0,8.0,7.0,4.0,2.0,1.0,2.0,6.0,2.0,3.0,2.0,1.0,2.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1115,979,87,0,378,357,380,260,155,84,99,89,76,76,64,37,39,27,30,15,10,4,0,1,0,0,2007,0,0,174,0,2007,0,0,174,0,601,1,82,67,53,7,256,1114,0,1964,217,0,0,5,2170,5,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,5,2174,0,16,16,11,0,2,2136,0,3.5938697318007664,0.0,4.934156378600823,0.0,3.212746446584136,0,0,0,0,0,0,1,328,0,60,33,56,68,64,26,4,4,9,3,0,1,1,0,0,0,88,241,13,316,4,325,50,279,0,329,1,328,83,246,2,327,33,296,3,326,0,3,4,325,2,327,0,329,290,39,110,219,7,322,26,108,187,8,0,179,150,0,1,327,1,0,0,0,0,0,0,0,0,0,3.1945288753799392,3.434650455927052,0.0,1.0344827586206895,1.0344827586206895,47.46504559270517 +120801,Comarca Ngäbe-Buglé,Jirondai,Samboa,773,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,9,542,27,2,0,534,1,6,1,0,28,14,275,3,4,236,0,11,0,1,249,276,32,13,0,169,402,0,0,0,0,571,32,129,16,17,5,4,0,0,2,569,0,0,0,5,462,1,13,67,11,12,364,2,0,0,0,203,2,2,6,1,45,512,5,0,125,8,6,99,148,5,178,0,1,0,1,0,774,6.879699248120301,20.383458646616543,6.796992481203008,22.86466165413534,1.0,3.444833625218914,2.182136602451839,571,303,1982,62,754,12,33,62,2,60,3,6,4,0,13,8,0,1,4,0,7,429,2931,0,28,3332,0,230,3130,0,2088,1272,0,1437,1923,0,1428,9,731,1192,0,1196,31,47,0,159,147,213,191,193,349,1,0,0,135,139,189,73,74,193,1,1,2,1,4,4,7,9,0,0,1,0,0,0,0,0,1728,1,835,0,0,0,0,5,601,176,10,43,80,125,11,5,15,0,1492,1,0,1848,2006,40,38,5,846,5,3,792,0,197,37,1,1496,3,0,0,2341,203,0,0,1,18,0,1,0,0,0,7,16,5,9,40,1487,128,4,33,3570,98,49,34,35,23,21,9,2,6,4,0,0,0,0,3,122.0,125.0,125.0,122.0,130.0,119.0,116.0,140.0,153.0,138.0,130.0,153.0,113.0,143.0,152.0,97.0,126.0,111.0,88.0,80.0,64.0,58.0,54.0,49.0,30.0,42.0,54.0,28.0,31.0,27.0,42.0,41.0,27.0,33.0,34.0,32.0,39.0,33.0,52.0,41.0,26.0,23.0,33.0,38.0,17.0,26.0,19.0,14.0,29.0,28.0,32.0,25.0,33.0,19.0,12.0,18.0,10.0,10.0,6.0,12.0,11.0,7.0,8.0,12.0,8.0,5.0,6.0,7.0,8.0,3.0,1.0,5.0,2.0,7.0,12.0,2.0,1.0,3.0,5.0,1.0,2.0,1.0,5.0,2.0,1.0,0.0,2.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1981,1789,84,0,624,666,691,502,255,182,177,197,137,116,121,56,46,29,27,12,11,5,0,0,0,0,3570,0,0,284,0,3570,0,0,284,0,1085,6,128,26,65,5,563,1976,0,3480,374,0,0,3,3831,7,0,0,0,0,0,0,1,12,0,2,0,1,0,2,0,4,3845,0,34,37,7,0,0,3776,0,3.0522230063514466,0.0,4.809876543209876,0.0,3.3814218993253764,0,0,1,0,0,0,0,570,0,120,52,91,93,110,46,23,12,11,5,4,3,1,0,0,0,240,331,18,553,12,559,158,413,7,564,1,570,39,532,1,570,28,543,11,560,5,6,7,564,2,569,2,569,545,26,465,106,27,544,18,254,295,4,0,250,321,0,0,566,2,0,0,0,0,0,0,1,2,0,3.236427320490368,3.5131348511383536,0.0,1.1111111111111112,1.1111111111111112,45.38528896672504 +120802,Comarca Ngäbe-Buglé,Jirondai,Büri,1735,1,0,0,0,0,0,0,0,0,0,0,0,0,0,26,163,156,623,315,30,30,580,0,11,2,366,84,3,193,7,43,227,0,45,20,8,838,48,33,20,1,567,398,1,0,0,2,968,89,306,77,3,194,99,0,0,3,961,4,0,0,135,787,3,5,23,9,6,779,3,1,0,0,185,0,16,359,1,199,382,11,0,639,16,129,6,21,8,89,0,0,59,1,0,1736,5.803053435114504,20.166412213740458,6.332824427480916,22.35114503816794,1.0,3.4700413223140494,2.191115702479338,968,533,2723,82,1019,34,73,88,5,158,18,11,7,0,36,31,12,4,12,2,20,1463,3472,0,196,4739,0,214,4721,0,3625,1310,0,2026,2909,0,2009,17,1825,1084,0,1091,51,157,1,213,242,306,269,281,825,0,1,0,184,237,239,98,150,361,9,8,29,25,29,32,25,65,3,1,3,0,0,0,0,0,1958,52,1818,0,15,11,16,43,1048,655,35,37,287,126,65,21,43,1,1449,5,1,2786,2933,132,195,23,1014,6,1,626,1,382,68,9,2106,14,0,0,3237,497,0,0,2,88,1,3,0,0,1,20,56,20,32,145,1425,123,20,168,4940,188,107,115,90,95,76,23,38,21,7,2,1,1,1,14,193.0,198.0,177.0,216.0,179.0,181.0,200.0,177.0,173.0,197.0,148.0,179.0,155.0,159.0,171.0,147.0,161.0,124.0,147.0,127.0,99.0,100.0,102.0,90.0,72.0,74.0,73.0,77.0,65.0,59.0,75.0,47.0,47.0,67.0,56.0,64.0,52.0,55.0,57.0,51.0,45.0,44.0,45.0,48.0,42.0,38.0,31.0,35.0,35.0,29.0,39.0,26.0,28.0,29.0,36.0,22.0,20.0,16.0,25.0,21.0,27.0,16.0,13.0,22.0,14.0,13.0,15.0,10.0,13.0,10.0,8.0,10.0,16.0,10.0,13.0,6.0,7.0,5.0,14.0,3.0,6.0,3.0,3.0,4.0,4.0,2.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2703,2834,182,0,963,928,812,706,463,348,292,279,224,168,158,104,92,61,57,35,20,8,1,0,0,0,5423,1,0,295,0,5423,1,0,295,0,1687,12,342,116,70,12,779,2701,0,4431,1282,6,0,5,5588,18,4,1,2,1,0,0,1,99,0,1,5,1,2,1,1,20,5688,0,106,220,44,5,0,5344,0,2.9533267130089373,0.0,4.347113884555382,0.0,4.368770764119601,0,2,1,0,1,0,6,958,0,151,73,152,139,153,100,67,37,47,14,17,7,8,1,2,0,675,293,181,787,184,784,216,752,156,812,10,958,164,804,19,949,490,478,138,830,74,64,65,903,31,937,29,939,619,349,319,649,30,938,94,427,443,4,0,462,506,0,1,926,3,1,0,0,0,0,0,1,36,0,2.878099173553719,3.0299586776859506,0.0,1.0285714285714285,1.0285714285714285,44.51756198347108 +120803,Comarca Ngäbe-Buglé,Jirondai,Gwaribiara,912,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,28,513,83,3,11,493,0,7,2,0,0,19,250,20,21,221,1,67,3,2,554,15,16,8,1,157,440,2,0,0,0,599,147,75,23,5,15,52,0,0,0,598,1,0,0,8,513,4,11,52,4,7,370,4,2,1,0,221,1,6,22,0,117,450,4,0,265,11,28,17,58,46,170,0,0,2,2,0,916,6.753623188405797,17.8731884057971,6.902173913043479,23.369565217391305,1.001669449081803,3.679465776293823,2.358931552587646,600,323,2045,61,826,14,50,36,5,66,2,2,6,0,18,13,1,0,7,0,17,735,2874,0,31,3578,0,15,3594,0,2331,1278,0,1474,2135,0,1472,2,945,1190,0,1192,19,41,8,139,193,217,195,252,488,0,0,0,157,152,174,60,79,197,0,0,10,8,8,4,6,8,1,1,0,0,0,0,0,0,1890,10,917,0,1,1,1,23,679,183,16,16,57,200,8,1,18,0,1583,32,0,1884,2152,42,20,2,917,4,2,912,0,198,38,2,1605,9,0,0,2574,228,0,0,1,14,0,0,0,0,0,3,19,7,15,46,1611,171,4,24,3672,126,78,35,37,22,22,15,8,7,4,0,0,1,0,9,100.0,97.0,118.0,112.0,125.0,144.0,116.0,129.0,139.0,139.0,141.0,129.0,124.0,119.0,138.0,112.0,130.0,89.0,99.0,87.0,64.0,87.0,70.0,59.0,60.0,51.0,54.0,52.0,42.0,45.0,39.0,43.0,31.0,33.0,41.0,28.0,32.0,35.0,34.0,35.0,44.0,25.0,35.0,30.0,29.0,22.0,19.0,19.0,25.0,47.0,35.0,35.0,24.0,26.0,27.0,14.0,13.0,24.0,22.0,7.0,19.0,8.0,10.0,21.0,10.0,20.0,13.0,13.0,12.0,4.0,3.0,1.0,6.0,6.0,4.0,4.0,4.0,4.0,5.0,6.0,1.0,2.0,1.0,2.0,3.0,1.0,3.0,2.0,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1870,2042,124,0,552,667,651,517,340,244,187,164,163,132,147,80,68,62,20,23,9,8,2,0,0,0,3660,0,0,376,0,3660,0,0,376,0,1390,14,132,28,52,11,543,1866,0,3710,326,0,0,5,3995,11,0,0,1,2,0,0,2,20,0,2,1,2,1,3,0,7,4020,0,22,33,21,3,0,3957,0,2.945560596241089,0.0,4.543169398907104,0.0,3.609514370664024,0,0,1,0,0,0,3,596,0,126,46,84,124,109,43,15,20,9,8,7,0,4,1,1,3,245,355,12,588,6,594,93,507,2,598,0,600,64,536,12,588,87,513,26,574,7,19,6,594,3,597,2,598,511,89,256,344,11,589,35,180,379,6,0,307,293,0,1,595,2,0,0,0,0,0,0,0,2,0,3.14,3.5866666666666664,0.0,1.0833333333333333,1.0833333333333333,48.531666666666666 +120804,Comarca Ngäbe-Buglé,Jirondai,Man Creek,1381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,40,878,58,5,9,816,42,7,4,0,2,12,409,6,39,439,1,33,0,2,667,215,24,33,0,298,643,0,0,0,0,941,106,205,39,14,39,37,0,0,2,937,2,0,0,7,880,4,5,28,8,9,654,12,0,0,0,274,1,6,47,1,51,827,9,0,327,52,98,44,74,107,235,0,0,3,1,0,1381,5.562005277044855,19.56200527704485,6.306068601583114,22.61741424802111,1.002125398512221,3.240170031880978,2.148777895855473,943,533,3174,112,1504,17,49,94,8,136,16,7,1,0,23,17,3,1,5,0,10,1070,4643,0,47,5666,0,176,5537,0,3984,1729,0,2458,3255,0,2446,12,1686,1569,0,1575,49,133,3,297,293,407,350,354,815,1,0,0,248,277,386,107,122,233,0,0,16,12,10,6,10,8,0,1,0,0,0,0,0,0,2815,7,1502,0,0,2,1,25,1160,228,24,65,146,262,25,8,16,3,2296,64,0,3179,3415,59,120,8,1508,5,1,1119,0,253,77,0,1827,4,0,0,4028,279,0,0,2,15,0,0,0,0,0,7,21,13,11,105,2346,197,13,109,5816,235,158,123,128,57,31,18,10,9,4,1,0,0,0,4,213.0,219.0,223.0,226.0,220.0,221.0,225.0,255.0,228.0,240.0,229.0,218.0,224.0,208.0,214.0,177.0,181.0,151.0,139.0,133.0,128.0,101.0,97.0,91.0,70.0,77.0,79.0,67.0,71.0,54.0,73.0,52.0,68.0,73.0,51.0,55.0,48.0,47.0,52.0,65.0,48.0,62.0,46.0,45.0,35.0,38.0,28.0,40.0,36.0,44.0,57.0,26.0,42.0,38.0,38.0,34.0,22.0,17.0,32.0,26.0,17.0,20.0,11.0,19.0,15.0,16.0,18.0,18.0,12.0,7.0,5.0,5.0,11.0,9.0,8.0,12.0,11.0,5.0,6.0,7.0,11.0,7.0,4.0,3.0,6.0,4.0,1.0,1.0,1.0,0.0,0.0,3.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3363,3036,195,0,1101,1169,1093,781,487,348,317,267,236,186,201,131,82,71,38,41,31,7,5,2,0,0,5979,4,0,611,0,5979,4,0,611,0,1865,7,312,135,96,5,824,3350,0,5812,778,4,0,2,6557,16,0,0,0,0,0,0,0,19,0,3,6,0,0,3,1,10,6571,0,40,81,26,2,1,6444,0,3.298147350280052,0.0,4.768537768537769,0.0,3.603275705186533,2,1,0,0,1,0,2,937,0,88,47,110,188,236,119,66,32,33,15,6,2,1,0,0,0,449,494,33,910,9,934,227,716,9,934,3,940,88,855,14,929,278,665,19,924,6,13,14,929,15,928,1,942,827,116,510,433,20,923,59,350,533,1,0,463,480,0,0,938,2,0,0,0,0,0,0,0,3,0,3.3711558854718984,3.621420996818664,1.0,1.0975609756097562,1.0975609756097562,47.58748674443266 +120805,Comarca Ngäbe-Buglé,Jirondai,Tu Gwai,1261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,193,217,492,364,47,9,390,1,35,57,164,2,14,349,4,13,283,2,72,2,45,729,15,85,26,1,456,447,0,0,0,0,903,84,203,20,6,20,25,0,0,1,899,3,0,0,104,769,2,0,23,4,1,701,5,0,0,0,196,1,5,210,1,139,534,14,0,537,40,91,70,55,12,62,0,0,35,1,0,1261,5.253032928942807,13.939341421143848,5.994800693240901,18.11958405545927,1.0055370985603544,3.485049833887043,2.236987818383167,908,532,2650,50,1095,18,47,98,1,167,16,5,14,0,30,20,6,2,11,3,14,1029,3846,0,125,4750,0,190,4685,0,3598,1277,0,2024,2851,0,2010,14,1811,1040,0,1049,83,146,3,275,262,295,272,260,699,1,2,1,206,283,361,123,162,292,4,2,14,10,20,12,8,26,2,0,2,0,0,0,0,0,1962,28,1798,0,2,3,10,38,1001,689,36,34,197,61,15,7,12,2,1687,1,0,2713,2888,77,109,7,901,5,2,881,0,280,68,10,2481,16,0,0,3395,354,1,1,2,31,2,2,0,0,0,12,28,12,20,74,1689,39,6,110,5067,154,90,80,67,42,38,15,17,8,5,2,0,0,0,16,171.0,200.0,193.0,162.0,188.0,184.0,199.0,191.0,168.0,157.0,167.0,180.0,133.0,137.0,183.0,132.0,149.0,155.0,135.0,119.0,112.0,106.0,73.0,84.0,63.0,78.0,69.0,81.0,75.0,66.0,56.0,49.0,64.0,58.0,64.0,45.0,47.0,49.0,58.0,43.0,47.0,42.0,47.0,44.0,54.0,28.0,38.0,29.0,33.0,47.0,44.0,30.0,27.0,33.0,21.0,31.0,27.0,21.0,27.0,19.0,20.0,12.0,14.0,16.0,15.0,14.0,10.0,11.0,15.0,8.0,9.0,7.0,6.0,11.0,19.0,9.0,8.0,5.0,15.0,10.0,5.0,4.0,5.0,3.0,2.0,3.0,2.0,1.0,0.0,3.0,2.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2613,2796,192,0,914,899,800,690,438,369,291,242,234,175,155,125,77,58,52,47,19,9,7,0,0,0,5344,3,2,252,0,5344,3,2,252,0,1633,11,240,234,73,7,794,2609,0,4361,1236,4,0,6,5518,33,5,0,0,0,0,0,0,39,0,2,612,4,5,2,0,26,4950,0,80,150,40,6,2,5323,0,3.0210420841683367,0.0,4.586991869918699,0.0,4.168005713265488,0,97,1,0,0,0,4,806,0,215,96,146,145,122,70,39,27,24,11,7,2,0,1,1,2,588,320,76,832,55,853,239,669,80,828,4,904,240,668,9,899,323,585,97,811,36,61,32,876,29,879,7,901,698,210,377,531,12,896,62,410,425,11,0,495,413,0,2,887,8,1,0,0,0,0,0,0,10,0,2.987885462555066,3.1806167400881056,0.0,1.069767441860465,1.069767441860465,46.33700440528634 +120901,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Santa Catalina o Calovébora (Bledeshia),1078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,523,108,532,39,25,79,0,3,1,0,1,27,199,12,15,425,0,0,0,0,547,66,59,7,0,103,571,0,0,0,5,679,13,99,37,9,205,36,0,0,0,676,3,0,0,13,500,4,2,121,26,13,161,1,1,0,0,513,3,7,31,1,83,485,72,0,172,3,2,30,180,28,264,0,0,0,0,0,1078,7.0,23.53142857142857,7.0,23.52,1.0191458026509572,2.3475699558173786,1.272459499263623,692,413,1499,97,262,18,26,26,6,27,9,3,5,0,14,27,3,1,7,5,11,426,2269,0,44,2651,0,320,2375,0,1979,716,0,1056,1639,0,1045,11,989,650,0,650,17,58,0,114,119,146,131,174,377,0,0,0,119,139,186,77,110,226,0,3,6,8,4,8,13,9,0,0,1,0,0,0,0,0,1682,5,459,0,0,1,3,6,333,89,19,12,90,47,20,6,14,1,1496,12,0,1550,1533,65,18,9,777,5,1,811,0,229,41,0,1047,1,0,0,1868,248,0,3,1,25,0,1,0,0,0,8,14,10,17,33,1504,48,10,43,2861,80,30,19,22,17,25,5,11,6,4,0,1,1,0,1,80.0,118.0,97.0,93.0,91.0,112.0,89.0,96.0,90.0,71.0,94.0,85.0,65.0,89.0,79.0,68.0,77.0,73.0,71.0,72.0,61.0,49.0,47.0,62.0,47.0,48.0,38.0,38.0,38.0,26.0,51.0,41.0,32.0,25.0,32.0,35.0,26.0,21.0,26.0,27.0,30.0,34.0,36.0,32.0,22.0,18.0,29.0,22.0,27.0,29.0,20.0,13.0,19.0,14.0,19.0,13.0,11.0,15.0,16.0,17.0,20.0,4.0,4.0,11.0,10.0,13.0,7.0,10.0,9.0,10.0,9.0,5.0,10.0,3.0,4.0,5.0,3.0,6.0,3.0,4.0,2.0,0.0,2.0,4.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1349,1616,118,0,479,458,412,361,266,188,181,135,154,125,85,72,49,49,31,21,8,4,3,1,1,0,2965,1,0,117,0,2965,1,0,117,0,970,13,109,79,56,1,508,1347,0,2669,413,1,0,2,776,1867,0,2,211,2,0,0,5,218,0,20,17,62,1,0,0,104,2879,0,42,53,6,0,1,2981,0,2.803867403314917,0.0,4.305059523809524,0.0,4.404800518975025,4,5,19,0,0,0,27,637,0,263,71,122,94,57,28,22,15,6,5,4,0,3,2,0,0,163,529,31,661,39,653,145,547,10,682,0,692,185,507,11,681,71,621,43,649,26,17,18,674,15,677,5,687,610,82,488,204,43,649,87,412,188,5,0,491,201,0,0,178,402,0,0,46,1,0,0,0,65,0,2.239884393063584,2.2153179190751446,0.0,1.32,1.32,42.9378612716763 +120902,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Alto Bilingüe (Gdogüeshia),334,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,221,26,208,23,5,20,0,1,0,0,0,3,60,3,1,189,1,0,0,0,68,128,31,1,29,11,246,0,0,0,0,257,4,104,8,0,7,9,0,0,0,244,13,0,0,5,131,1,1,43,43,33,103,0,1,0,0,151,2,1,7,0,79,128,42,0,95,17,0,0,121,0,24,0,0,0,0,0,389,5.5,20.6875,6.6875,23.714285714285715,1.0,1.9883268482490275,0.9688715953307392,257,164,744,34,97,9,8,3,3,16,3,2,12,0,10,9,0,7,4,0,7,135,1033,0,12,1156,0,47,1121,0,772,396,0,424,744,0,423,1,400,344,0,346,10,40,0,43,47,66,56,71,183,0,0,0,45,62,80,24,30,52,0,0,4,3,1,2,0,3,0,0,0,0,0,0,0,0,630,2,281,0,1,0,0,0,143,116,9,13,22,11,5,2,0,0,592,0,0,648,704,13,14,2,241,0,0,362,0,61,11,0,239,0,0,0,848,59,0,0,1,5,0,0,0,0,0,4,1,2,5,4,589,17,0,10,1127,99,63,24,14,12,7,1,2,0,3,0,0,0,0,0,30.0,52.0,42.0,60.0,39.0,47.0,44.0,43.0,45.0,37.0,49.0,38.0,43.0,36.0,44.0,38.0,32.0,28.0,27.0,27.0,22.0,21.0,17.0,20.0,16.0,22.0,11.0,12.0,13.0,12.0,12.0,10.0,26.0,14.0,17.0,16.0,12.0,11.0,12.0,14.0,18.0,17.0,11.0,7.0,9.0,4.0,7.0,14.0,16.0,8.0,11.0,11.0,8.0,6.0,6.0,4.0,5.0,5.0,2.0,7.0,6.0,6.0,7.0,5.0,4.0,8.0,2.0,3.0,2.0,2.0,5.0,2.0,2.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,649,666,37,0,223,216,210,152,96,70,79,65,62,49,42,23,28,17,13,3,3,1,0,0,0,0,1292,0,0,60,0,1292,0,0,60,0,406,0,22,11,34,0,230,649,0,1241,111,0,0,1,22,1201,0,0,46,0,0,0,0,82,0,0,0,0,0,1,0,3,1348,0,12,15,0,0,0,1325,0,3.1379310344827585,0.0,4.630281690140845,0.0,3.64792899408284,0,0,0,0,1,0,1,255,0,34,21,33,42,52,37,18,10,4,3,2,1,0,0,0,0,43,214,2,255,3,254,50,207,0,257,0,257,49,208,0,257,19,238,5,252,4,1,3,254,3,254,0,257,244,13,193,64,0,257,26,159,61,11,0,184,73,0,0,5,220,0,0,12,0,0,0,0,20,0,2.5214007782101167,2.7392996108949417,0.0,1.1428571428571428,1.1428571428571428,43.3852140077821 +120903,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Loma Yuca (Ijuicho),317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,115,46,1,0,114,0,1,0,0,0,1,28,1,0,132,0,0,0,0,99,2,55,6,0,3,159,0,0,0,0,162,85,0,1,0,67,2,0,0,0,162,0,0,0,0,77,0,0,77,5,3,39,0,0,0,0,123,0,0,1,0,103,55,3,0,0,10,7,46,21,1,77,0,0,0,0,0,317,7.0,24.0,7.0,24.0,1.0,1.845679012345679,0.8395061728395061,162,100,467,16,35,11,5,7,3,6,5,0,3,0,2,3,2,0,4,0,4,166,544,0,7,703,0,22,688,0,356,354,0,188,522,0,188,0,183,339,0,339,3,9,0,22,32,21,33,37,153,0,0,0,10,9,21,3,2,15,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,452,0,99,0,0,0,0,0,66,30,0,3,14,59,5,0,1,0,361,12,0,409,411,11,0,0,277,0,0,164,0,42,5,0,247,0,0,0,535,15,0,0,0,1,0,0,0,0,0,2,1,1,6,9,373,55,1,4,793,9,5,3,2,1,4,1,1,1,0,0,0,0,0,0,23.0,20.0,33.0,34.0,28.0,28.0,26.0,30.0,28.0,19.0,26.0,30.0,22.0,22.0,27.0,24.0,19.0,19.0,21.0,15.0,9.0,7.0,13.0,19.0,7.0,9.0,12.0,9.0,8.0,15.0,9.0,12.0,9.0,10.0,9.0,7.0,5.0,7.0,5.0,7.0,9.0,5.0,10.0,7.0,6.0,8.0,3.0,6.0,2.0,8.0,7.0,5.0,2.0,7.0,6.0,2.0,2.0,0.0,5.0,2.0,3.0,2.0,2.0,3.0,1.0,3.0,2.0,1.0,2.0,2.0,2.0,3.0,4.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,396,399,25,0,138,131,127,98,55,53,49,31,37,27,27,11,11,10,10,3,1,0,1,0,0,0,752,0,0,68,0,752,0,0,68,0,248,1,21,24,14,2,114,396,0,689,131,0,0,2,577,239,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,819,0,1,1,0,0,0,818,0,2.5069444444444446,0.0,4.25,0.0,2.3963414634146343,0,0,0,0,0,0,0,162,0,71,21,25,26,8,3,4,2,1,1,0,0,0,0,0,0,8,154,2,160,1,161,91,71,2,160,0,162,15,147,2,160,11,151,0,162,0,0,1,161,2,160,0,162,152,10,101,61,1,161,13,106,40,3,0,103,59,0,0,115,47,0,0,0,0,0,0,0,0,0,2.5246913580246915,2.537037037037037,0.0,1.125,1.125,41.18518518518518 +120904,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),San Pedrito (Jiküi),837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,17,499,24,5,13,481,2,1,2,0,0,11,210,4,3,293,1,6,0,0,339,171,15,3,0,54,474,0,0,0,0,528,28,72,35,2,105,67,0,0,0,525,3,0,0,2,302,4,5,175,21,19,141,1,0,0,0,386,0,2,11,1,99,308,107,0,181,22,28,34,12,3,248,0,0,0,0,0,837,6.768472906403941,20.073891625615765,6.8817733990147785,22.935960591133004,1.0,2.75,1.681818181818182,528,337,1766,61,470,27,38,80,15,82,9,3,9,0,16,20,6,2,2,3,7,265,2611,0,20,2856,0,153,2723,0,1629,1247,0,1087,1789,0,1083,4,841,948,0,948,17,58,4,133,147,208,185,181,535,0,0,0,136,60,99,33,34,80,1,0,3,2,2,2,4,4,0,0,0,0,0,0,0,0,1527,6,596,0,0,0,5,1,399,166,14,16,39,21,13,0,7,2,1425,21,0,1616,1809,32,5,0,585,0,3,903,0,243,37,0,1379,0,0,0,2031,89,0,0,1,8,0,0,0,0,0,4,6,8,9,15,1439,30,7,15,3220,105,35,19,12,7,14,2,2,3,3,1,1,0,1,0,113.0,159.0,117.0,160.0,121.0,146.0,134.0,115.0,105.0,126.0,101.0,121.0,98.0,92.0,83.0,106.0,76.0,78.0,74.0,67.0,62.0,54.0,40.0,48.0,37.0,48.0,44.0,32.0,38.0,39.0,37.0,31.0,25.0,23.0,38.0,25.0,20.0,29.0,26.0,25.0,28.0,18.0,25.0,32.0,23.0,32.0,13.0,13.0,17.0,18.0,19.0,17.0,23.0,20.0,14.0,13.0,10.0,13.0,17.0,8.0,10.0,11.0,12.0,10.0,4.0,4.0,5.0,8.0,7.0,5.0,5.0,3.0,10.0,4.0,6.0,8.0,5.0,2.0,0.0,0.0,1.0,3.0,3.0,2.0,0.0,3.0,1.0,2.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1791,1542,92,0,670,626,495,401,241,201,154,125,126,93,93,61,47,29,28,15,9,7,2,1,1,0,3097,1,0,327,0,3097,1,0,327,0,1030,5,102,48,55,3,395,1787,0,2815,609,1,0,7,3315,80,0,0,0,0,0,0,0,23,0,0,140,1,1,1,0,4,3278,0,16,32,1,0,0,3376,0,3.251299826689775,0.0,4.791666666666667,0.0,2.970802919708029,0,25,0,0,1,0,0,502,0,112,62,97,121,83,23,5,7,9,2,3,1,2,0,1,0,89,439,8,520,6,522,133,395,2,526,0,528,38,490,1,527,53,475,12,516,5,7,3,525,3,525,2,526,461,67,262,266,6,522,18,264,239,7,0,334,194,0,0,511,10,0,0,0,0,0,0,0,7,0,3.060606060606061,3.426136363636364,0.0,1.0,1.0,43.25757575757576 +120905,Comarca Ngäbe-Buglé,Santa Catalina o Calovébora (Bledeshia),Valle Bonito (Dogata),543,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,342,15,329,19,0,10,0,4,1,0,0,4,103,17,4,235,0,0,0,0,99,231,31,2,0,12,351,0,0,0,0,363,1,183,20,0,4,15,0,0,1,360,2,0,0,4,205,4,2,115,1,32,155,2,0,0,0,206,0,1,21,0,111,186,44,0,141,58,35,0,104,0,22,0,0,3,0,0,586,6.658291457286432,22.34170854271357,6.9798994974874375,23.592964824120603,1.002754820936639,2.253443526170799,1.1129476584022038,364,245,1056,43,169,23,25,26,11,27,11,4,30,0,5,5,1,0,0,0,7,199,1554,0,8,1745,0,106,1647,0,1154,599,0,620,1133,0,608,12,565,568,0,570,18,39,5,68,82,106,110,123,270,0,0,0,44,70,118,22,26,54,0,0,6,5,3,2,3,8,1,0,0,0,0,0,0,0,605,20,742,0,4,1,5,0,355,366,9,12,33,76,2,3,1,3,506,1,0,998,1036,12,29,3,379,0,2,200,0,89,19,3,465,1,0,0,1285,72,0,0,2,7,1,0,0,0,0,2,2,1,5,4,496,80,0,35,1834,68,51,40,21,11,3,3,1,0,1,0,0,0,0,1,65.0,74.0,74.0,68.0,62.0,58.0,68.0,81.0,54.0,63.0,55.0,74.0,55.0,59.0,43.0,52.0,50.0,42.0,45.0,41.0,36.0,34.0,37.0,32.0,33.0,31.0,24.0,24.0,23.0,28.0,18.0,21.0,22.0,20.0,14.0,12.0,20.0,16.0,24.0,18.0,9.0,15.0,17.0,20.0,18.0,14.0,13.0,11.0,20.0,9.0,15.0,8.0,13.0,15.0,12.0,13.0,10.0,8.0,7.0,10.0,8.0,5.0,9.0,10.0,4.0,9.0,6.0,5.0,7.0,2.0,7.0,3.0,7.0,3.0,3.0,1.0,1.0,0.0,1.0,1.0,2.0,2.0,2.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,953,1010,71,0,343,324,286,230,172,130,95,90,79,67,63,48,36,29,23,4,10,1,4,0,0,0,1942,0,0,92,0,1942,0,0,92,0,622,1,44,17,44,0,353,953,0,1816,218,0,0,0,36,1905,0,1,4,0,0,0,6,82,0,0,0,0,2,1,1,134,1896,0,18,15,0,0,0,2001,0,2.817796610169492,0.0,4.507211538461538,0.0,3.317600786627336,0,0,0,1,1,0,23,339,0,88,27,60,64,63,32,17,7,2,3,1,0,0,0,0,0,45,319,6,358,4,360,87,277,2,362,2,362,84,280,2,362,50,314,5,359,5,0,2,362,1,363,2,362,345,19,292,72,6,358,35,192,117,20,0,272,92,0,0,10,339,0,0,1,0,0,0,2,12,0,2.741758241758242,2.8461538461538463,0.0,1.0,1.0,43.15934065934066 +130101,Panamá Oeste,Arraiján,Arraiján,13969,71,1035,172,2,2,0,0,0,0,0,1,14,0,0,394,9584,2028,192,11153,853,4,6,0,158,24,11581,491,16,13,3,34,23,0,37,4997,3796,2995,54,107,3,246,11844,62,103,0,0,189,12198,117,447,363,854,1011,257,0,530,1616,9040,686,58,268,11550,213,3,382,2,48,0,11777,197,115,103,5,0,1,5957,5801,9,380,51,0,10287,383,72,66,49,48,6,27,982,214,47,17,14807,459,3.86017501396388,13.098957363619435,3.9475889033699496,13.37618692980823,1.0309886866699458,3.4482702082308574,2.18216101000164,12591,7132,16068,999,3721,465,599,707,192,944,252,227,416,14,820,262,124,253,197,308,296,36261,5479,5,14168,27572,5,32365,9375,5,39035,2706,4,13145,28597,3,10838,2307,26793,1802,2,1902,307,684,104,850,977,1239,1076,1144,4381,10,25,275,1617,2206,4103,1471,2303,8775,37,93,787,1072,1260,1691,1552,1025,155,36,540,1,4,4,35,4,16217,2442,18645,4,88,898,392,2671,8063,6644,555,712,12996,696,2002,637,1532,157,39,43,140,22052,22275,2930,9844,698,4335,205,4,58,168,92,696,127,15440,118,1,1,19847,12313,293,143,425,3602,133,512,36,4,192,982,1845,1737,1332,3999,146,3019,1405,4002,21889,3086,960,1407,2158,3119,5036,2736,2081,845,409,159,174,57,93,118,601.0,612.0,662.0,707.0,805.0,681.0,716.0,761.0,763.0,711.0,806.0,817.0,662.0,751.0,781.0,692.0,741.0,726.0,730.0,739.0,778.0,779.0,794.0,846.0,720.0,783.0,786.0,718.0,669.0,638.0,621.0,614.0,570.0,612.0,560.0,565.0,565.0,606.0,623.0,484.0,534.0,535.0,529.0,539.0,514.0,531.0,521.0,552.0,528.0,524.0,551.0,579.0,543.0,521.0,533.0,503.0,504.0,488.0,518.0,448.0,470.0,370.0,407.0,412.0,333.0,332.0,297.0,304.0,263.0,245.0,219.0,221.0,219.0,213.0,199.0,187.0,162.0,134.0,140.0,125.0,102.0,75.0,86.0,79.0,86.0,53.0,46.0,53.0,39.0,46.0,22.0,24.0,20.0,11.0,11.0,5.0,7.0,5.0,8.0,3.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10836,29446,4045,0,3387,3632,3817,3628,3917,3594,2977,2843,2651,2656,2727,2461,1992,1441,1071,748,428,237,88,28,4,0,42115,1383,713,111,5,42141,1587,483,111,5,10117,599,2344,7445,1158,370,11457,10834,3,16348,27239,734,6,7466,1077,48,16,13,3,927,119,5,344,34304,5,2052,1778,1605,303,116,173,7681,30613,6,9897,10256,2809,228,51,21080,6,1.8791495710555763,5.328502158043374e-05,2.790160724483968,8.158603247124092e-05,8.798407291267173,684,582,579,128,53,69,2633,7863,0,741,402,230,465,841,1197,1766,1302,2120,1316,816,461,455,195,242,27,12326,265,11530,1061,10448,2143,1968,10623,11427,1164,2462,10129,6166,6425,2607,9984,12042,549,11061,1530,7191,3870,4954,7637,9735,2856,4871,7720,2325,10266,998,11593,105,12486,2129,6699,3458,305,4,7746,4845,0,1094,321,16,9,5,0,196,22,2,114,10812,0,1.7508535132989282,1.7685589519650655,1.36986301369863,1.054773082942097,1.054773082942097,50.841712334206974 +130102,Panamá Oeste,Arraiján,Juan Demóstenes Arosemena,24626,82,964,67,0,0,0,1,1,0,0,1,12,0,0,17004,3273,309,66,20339,247,1,0,0,60,5,20504,113,8,10,0,6,5,0,6,16075,3678,780,16,19,0,84,20330,17,164,0,0,141,20652,84,1239,795,958,1774,237,0,12466,2165,5367,292,74,288,20507,25,1,115,0,4,0,11369,1150,7901,230,1,0,1,18755,1811,1,77,6,2,19837,258,12,14,1,3,1,1,216,294,8,7,25727,27,6.66156065051972,21.61073258069329,6.665091759088875,21.651116526582783,1.0130737943056365,3.877493705210149,2.590741816773194,20935,12704,23227,1576,2636,1241,852,662,538,676,309,293,752,73,906,268,171,377,257,198,221,59061,3931,0,41888,21104,0,57077,5915,0,59966,3026,0,21651,41341,0,12411,9240,39936,1405,0,1560,709,1102,113,1166,1246,1473,1252,1319,3561,4,36,450,1450,1867,3976,1510,2371,14487,95,496,1571,2240,2895,4774,5076,2932,706,213,2254,2,10,4,72,0,30496,2799,23044,0,91,827,282,3567,12046,6305,574,552,26044,1391,2364,462,2358,70,51,61,105,31905,34569,8056,17611,520,6211,266,4,52,186,12,477,109,20540,822,1,1,17836,21770,484,601,1193,11601,661,2118,75,0,267,3200,6843,5670,3013,5713,123,3420,2352,2694,28401,1999,1273,1543,2425,3454,6149,5189,6885,3966,2018,888,863,284,315,822,763.0,815.0,903.0,1001.0,1025.0,1096.0,1042.0,1156.0,1177.0,1157.0,1106.0,1135.0,1079.0,1095.0,1084.0,973.0,998.0,977.0,936.0,980.0,938.0,967.0,1007.0,1015.0,932.0,1016.0,1046.0,1046.0,991.0,1019.0,1117.0,1173.0,1204.0,1193.0,1247.0,1187.0,1199.0,1247.0,1239.0,1204.0,1235.0,1112.0,1054.0,1109.0,1020.0,955.0,912.0,912.0,892.0,823.0,935.0,831.0,842.0,817.0,778.0,740.0,661.0,602.0,618.0,570.0,545.0,495.0,513.0,401.0,374.0,382.0,340.0,330.0,255.0,278.0,287.0,187.0,208.0,229.0,200.0,177.0,153.0,130.0,144.0,121.0,119.0,95.0,86.0,64.0,73.0,55.0,46.0,51.0,35.0,30.0,42.0,25.0,27.0,19.0,13.0,12.0,8.0,7.0,4.0,1.0,6.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,15634,46597,4243,0,4507,5628,5499,4864,4859,5118,5934,6076,5530,4494,4203,3191,2328,1585,1111,725,437,217,126,32,10,0,61966,2785,1656,67,0,62020,3157,1230,67,0,14274,687,1297,14631,1358,724,17870,15633,0,13726,51134,1614,0,2800,581,67,10,9,4,160,23,8,801,62011,0,5768,2325,2546,901,291,379,10779,43485,0,22154,18055,3631,256,141,22237,0,1.4974791053361758,3.3837512266098194e-05,2.285290377278508,5.2988554472234e-05,10.59952763486476,2036,774,998,419,114,169,3852,12573,0,710,228,153,314,642,956,1561,1640,3478,3173,2463,1610,2001,931,874,188,20737,198,20407,528,19457,1478,3025,17910,19672,1263,10902,10033,11926,9009,7342,13593,20546,389,19992,943,16793,3199,13698,7237,18900,2035,14219,6716,2310,18625,736,20199,256,20679,3137,12830,4303,665,2,12627,8308,0,523,194,22,3,5,3,49,12,3,277,19844,0,1.5238572861441466,1.6510961455795958,1.328125,1.0439093484419264,1.0439093484419264,46.16403152615238 +130103,Panamá Oeste,Arraiján,Nuevo Emperador,4644,55,49,1,0,0,0,0,8,0,0,0,7,0,0,1487,1481,184,18,3090,62,0,0,0,13,5,3005,109,8,17,3,6,14,0,8,2050,86,961,13,36,1,23,3123,22,16,0,0,9,3170,74,492,318,88,376,231,0,1245,209,1662,46,4,4,3096,5,0,57,2,10,0,2150,349,665,3,0,3,0,2354,765,0,47,3,1,2597,507,41,14,0,0,0,2,0,5,3,1,4062,702,6.744674085850557,22.02639109697933,6.796820349761526,22.342130365659777,1.0100946372239747,3.526813880126183,2.38832807570978,3209,1920,3914,274,384,119,125,114,43,88,48,24,146,6,109,29,11,45,32,36,34,8498,1176,0,3686,5988,0,7959,1715,0,9041,633,0,3297,6377,0,2532,765,6016,361,0,374,129,171,12,245,248,284,270,277,947,4,1,52,273,399,827,297,445,2352,11,104,197,298,279,348,371,306,29,14,105,1,0,1,3,0,4083,481,3881,0,38,177,100,336,1870,1454,114,107,3273,152,444,98,451,8,14,2,14,5110,5304,887,2329,120,1015,21,0,12,72,4,129,17,3471,159,0,0,3953,3096,61,134,156,930,24,88,3,0,104,251,518,512,361,965,64,679,391,719,5242,480,247,312,445,624,943,709,734,303,103,47,46,6,14,159,153.0,195.0,176.0,216.0,202.0,202.0,194.0,216.0,220.0,195.0,212.0,206.0,208.0,187.0,168.0,160.0,151.0,166.0,144.0,169.0,141.0,125.0,152.0,143.0,153.0,186.0,171.0,174.0,168.0,200.0,207.0,195.0,206.0,206.0,217.0,180.0,195.0,186.0,190.0,161.0,167.0,130.0,136.0,147.0,127.0,115.0,114.0,120.0,138.0,92.0,121.0,112.0,127.0,97.0,95.0,88.0,68.0,68.0,74.0,80.0,58.0,68.0,66.0,59.0,58.0,53.0,43.0,43.0,46.0,35.0,35.0,28.0,40.0,29.0,30.0,28.0,28.0,14.0,15.0,13.0,13.0,11.0,17.0,15.0,9.0,4.0,8.0,3.0,5.0,4.0,3.0,4.0,3.0,4.0,2.0,1.0,4.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2950,6871,593,0,942,1027,981,790,714,899,1031,912,707,579,552,378,309,220,162,98,65,24,16,8,0,0,9947,319,115,33,0,9948,341,92,33,0,2711,81,122,1689,178,61,2622,2950,0,3181,7066,167,0,503,337,21,3,2,0,52,4,2,97,9393,0,816,380,486,157,51,47,2338,6139,0,2710,2693,334,26,9,4642,0,1.7519612367328103,0.0,2.6333333333333333,0.0,8.81524870366814,271,136,168,66,21,17,810,1720,0,220,95,62,117,188,254,359,324,570,393,246,131,128,47,29,39,3187,22,3013,196,2854,355,394,2815,2896,313,918,2291,1747,1462,859,2350,3083,126,2884,325,2204,680,1406,1803,2514,695,1653,1556,724,2485,324,2885,60,3149,519,2004,567,119,8,2082,1127,0,99,86,7,2,1,0,18,1,1,35,2959,0,1.58843643145788,1.6487410631022692,1.1,1.0595238095238095,1.0595238095238095,45.11810532876285 +130105,Panamá Oeste,Arraiján,Veracruz,7121,93,1156,0,10,1,0,0,0,0,2,1,2,0,0,1706,3883,880,186,6125,344,7,1,0,137,41,5745,860,6,10,1,7,10,0,16,3781,1912,876,32,19,2,33,6341,44,170,0,2,98,6655,187,374,163,451,300,240,0,845,1148,3653,339,15,655,6107,344,3,191,0,10,0,5068,341,414,817,8,0,7,4011,2317,6,244,74,3,4817,429,19,66,19,28,7,6,1073,123,54,14,8094,292,5.666096866096866,17.21823361823362,5.67369420702754,17.296866096866097,1.029000751314801,3.529526671675432,2.246130728775357,6851,3997,8955,425,1976,318,345,290,123,443,120,118,403,122,352,112,64,112,140,77,107,19286,3541,0,9755,13072,0,16989,5838,0,21157,1670,0,7543,15284,0,5449,2094,14450,834,0,899,359,487,91,595,608,719,579,625,2151,2,10,112,863,1152,2126,752,1254,3858,31,154,370,445,499,902,965,857,258,69,938,2,6,8,81,0,9302,1035,9562,0,31,465,142,1204,4292,3450,335,281,7270,611,959,311,756,58,10,80,82,12135,12351,1476,5661,293,2388,189,7,29,94,30,320,65,9261,659,0,0,10299,5343,128,152,200,2512,258,922,85,0,111,1209,1412,948,601,1825,124,1548,596,1963,12602,1192,443,635,967,1346,2270,952,1022,514,428,250,386,219,601,659,397.0,364.0,436.0,462.0,434.0,507.0,475.0,541.0,497.0,474.0,474.0,449.0,439.0,440.0,369.0,398.0,352.0,362.0,403.0,375.0,359.0,378.0,399.0,415.0,338.0,403.0,381.0,348.0,344.0,328.0,372.0,367.0,314.0,363.0,336.0,380.0,335.0,380.0,390.0,381.0,356.0,314.0,360.0,325.0,337.0,283.0,321.0,302.0,313.0,274.0,299.0,298.0,281.0,285.0,270.0,236.0,216.0,203.0,209.0,198.0,221.0,168.0,200.0,166.0,149.0,155.0,131.0,135.0,126.0,99.0,123.0,111.0,101.0,92.0,113.0,81.0,96.0,69.0,73.0,49.0,49.0,51.0,31.0,35.0,35.0,22.0,30.0,23.0,21.0,21.0,16.0,6.0,9.0,10.0,8.0,3.0,6.0,6.0,2.0,3.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,6758,15785,1943,0,2093,2494,2171,1890,1889,1804,1752,1866,1692,1493,1433,1062,904,646,540,368,201,117,49,20,2,0,21345,1295,1745,101,0,21401,2187,797,101,0,5155,207,249,4715,577,191,6636,6756,0,10435,12766,1285,0,4937,360,33,2,0,1,925,64,2,361,17801,0,1311,541,1194,343,49,104,2605,18339,0,5658,5197,1106,74,152,12299,0,1.9053718597954523,0.0,2.7992464204973624,0.0,8.978436657681941,443,189,427,141,19,50,833,4749,0,482,199,106,230,381,524,793,505,932,535,378,240,336,228,790,189,6695,156,6327,524,5783,1068,1029,5822,6087,764,2873,3978,3553,3298,1859,4992,6520,331,6168,683,4583,1585,3341,3510,5371,1480,3098,3753,804,6047,320,6531,61,6790,1193,3686,1630,342,13,4142,2709,0,752,113,7,1,0,1,240,14,0,123,5600,0,1.7679195804195804,1.799388111888112,1.3243243243243243,1.053156146179402,1.053156146179402,48.443876806305646 +130109,Panamá Oeste,Arraiján,Vacamonte,14487,1,2177,3,0,0,0,0,0,0,0,0,2,0,0,13215,202,2,1,13271,148,0,0,0,1,0,13403,10,2,3,0,1,0,0,1,10075,3322,6,2,1,0,14,13284,4,79,0,0,53,13420,132,706,909,455,869,177,0,7502,1437,4339,106,33,3,13415,4,0,1,0,0,0,8304,790,2831,1491,0,0,4,12055,1356,3,1,2,3,13405,8,1,0,0,0,0,0,0,5,0,1,16669,1,6.892276725808856,21.52355747726256,6.893767705382436,21.578798270463693,1.0130402384500743,3.8226527570789863,2.5847242921013414,13597,7806,16852,1041,3169,803,646,670,303,690,254,229,514,23,689,224,116,256,203,166,197,41125,3098,0,22920,21303,0,39622,4601,0,41944,2279,0,14802,29421,0,10753,4049,28242,1179,0,1264,374,750,148,850,888,1089,979,1002,2614,0,21,386,1288,1647,3797,1476,2392,12094,14,197,1143,1608,1688,2212,1806,1661,195,60,554,0,2,3,21,0,18894,2639,17942,0,79,957,348,2995,8821,5127,425,574,16728,699,1508,309,1623,54,4,43,83,21996,24601,4891,11747,378,3786,101,0,23,125,14,318,104,14120,440,0,0,15723,16915,401,248,591,4936,147,497,17,0,149,1506,2575,2964,2420,4684,63,2395,1844,2933,21437,1830,999,1206,1921,2772,5847,3810,3714,1516,603,208,190,46,58,440,525.0,582.0,623.0,644.0,775.0,739.0,774.0,797.0,799.0,864.0,881.0,848.0,817.0,824.0,789.0,808.0,734.0,775.0,750.0,758.0,754.0,769.0,792.0,772.0,704.0,828.0,800.0,729.0,705.0,735.0,690.0,674.0,693.0,665.0,740.0,683.0,646.0,739.0,682.0,672.0,710.0,650.0,647.0,622.0,592.0,592.0,597.0,538.0,577.0,591.0,605.0,637.0,642.0,600.0,608.0,542.0,543.0,537.0,572.0,516.0,508.0,415.0,410.0,402.0,355.0,285.0,290.0,262.0,215.0,168.0,180.0,194.0,146.0,144.0,114.0,97.0,111.0,101.0,79.0,81.0,70.0,58.0,47.0,54.0,49.0,44.0,40.0,35.0,25.0,20.0,17.0,20.0,13.0,14.0,11.0,5.0,4.0,6.0,3.0,1.0,3.0,2.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,11281,32305,3011,0,3149,3973,4159,3825,3791,3797,3462,3422,3221,2895,3092,2710,2090,1220,778,469,278,164,75,19,8,0,44621,1113,789,74,0,44646,1273,604,74,0,10092,664,2626,8509,1130,421,11876,11279,0,9864,36125,608,0,4842,271,28,12,3,3,140,17,0,629,40652,0,4426,2074,2524,809,226,326,7330,28882,0,13922,12493,3087,198,28,16869,0,1.6503898820844427,0.0,2.4538842013383766,0.0,9.76077859089641,1475,664,896,337,99,149,2363,7614,0,547,170,152,277,531,810,1534,1400,2611,2083,1374,799,725,297,188,97,13534,63,13300,297,12621,976,1999,11598,13007,590,5844,7753,7894,5703,4256,9341,13344,253,13139,458,10627,2512,7301,6296,12174,1423,7554,6043,295,13302,156,13441,108,13489,1821,7797,3561,418,0,7655,5942,0,795,113,11,5,1,3,44,4,0,180,12441,0,1.6177097889240273,1.809296168272413,1.2402597402597402,1.0413907284768211,1.0413907284768211,48.1563580201515 +130107,Panamá Oeste,Arraiján,Burunga,15770,1798,1148,120,0,0,0,1,0,0,0,3,22,0,0,1961,9384,3156,655,13866,635,14,7,0,588,46,14187,692,10,51,14,101,93,0,8,8300,1012,5508,73,85,5,173,14641,239,79,2,1,194,15156,45,528,379,606,1561,561,0,1731,1344,10573,661,32,815,12483,558,2,2053,9,51,0,14400,102,614,18,15,4,3,7057,6139,4,1847,106,3,13918,508,79,28,9,17,20,91,127,80,270,9,16331,2531,3.950086177180282,14.779041709755257,4.057290589451913,15.016959669079627,1.0197281604645023,3.0328582739509105,1.8629585642649773,15480,8782,19197,1264,2842,616,688,507,197,746,245,199,383,21,796,321,146,279,218,166,176,42212,5769,0,16066,31915,0,33563,14418,0,44691,3290,0,15709,32272,0,12782,2927,30324,1948,0,2006,567,905,104,1119,1268,1513,1311,1321,5501,11,35,182,1830,2440,4702,1713,2658,9962,78,238,799,1122,1223,1706,1465,1341,207,58,562,2,1,4,27,0,18909,2828,20592,0,121,1369,427,2237,9346,7861,623,525,14753,676,2796,704,1819,283,47,71,26,25500,25667,3316,11257,836,5428,246,8,43,41,74,625,130,17681,815,0,0,23259,13654,192,258,445,3776,181,537,27,0,99,913,2093,2016,1466,4617,255,4047,1665,4566,26126,2644,1156,1650,2290,3312,5586,3134,2494,1049,477,179,153,53,49,815,751.0,767.0,820.0,848.0,951.0,961.0,935.0,979.0,906.0,920.0,938.0,966.0,840.0,882.0,876.0,862.0,844.0,855.0,789.0,835.0,897.0,904.0,941.0,959.0,886.0,971.0,980.0,870.0,871.0,802.0,798.0,801.0,769.0,743.0,687.0,702.0,707.0,651.0,702.0,676.0,712.0,616.0,674.0,683.0,612.0,609.0,683.0,641.0,632.0,637.0,665.0,581.0,628.0,625.0,583.0,581.0,493.0,530.0,480.0,449.0,418.0,376.0,386.0,366.0,320.0,302.0,269.0,238.0,243.0,224.0,208.0,181.0,191.0,206.0,144.0,116.0,130.0,94.0,85.0,86.0,85.0,80.0,64.0,65.0,48.0,54.0,37.0,41.0,31.0,25.0,15.0,14.0,15.0,15.0,9.0,8.0,5.0,3.0,5.0,2.0,1.0,1.0,4.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,13340,34482,3345,0,4137,4701,4502,4185,4587,4494,3798,3438,3297,3202,3082,2533,1866,1276,930,511,342,188,68,23,7,0,48763,1595,625,184,0,48783,1676,524,184,0,12997,579,2359,7563,1036,328,12971,13334,0,16411,33875,881,0,2340,1711,143,14,29,17,2111,673,4,466,43659,0,2716,1960,2374,565,57,145,7392,35958,0,11595,11586,2193,204,32,25557,0,1.894719564809604,0.0,2.778391390540923,0.0,8.555123419391405,881,680,848,244,23,63,2465,10276,0,1254,481,343,626,1080,1402,2267,1538,2493,1463,939,512,518,199,180,160,15092,388,13626,1854,12706,2774,2095,13385,14007,1473,3085,12395,7615,7865,2761,12719,14829,651,12903,2577,9203,3700,5666,9814,10773,4707,5940,9540,567,14913,300,15180,136,15344,2660,9050,3460,310,1,9429,6051,0,443,497,54,3,8,5,558,165,3,161,13583,0,1.6471804147018927,1.6579678315354305,1.1984732824427482,1.0440613026819925,1.0440613026819925,46.90872093023256 +130108,Panamá Oeste,Arraiján,Cerro Silvestre,11473,169,73,34,0,2,0,0,1,0,0,1,5,0,0,5279,3485,638,123,9115,287,0,1,3,111,8,9382,112,4,3,1,9,9,1,4,7370,285,1648,122,48,2,50,9365,40,40,0,0,80,9525,42,515,437,358,687,185,0,3475,943,4707,194,34,172,9225,31,1,243,1,24,0,8758,237,514,12,2,1,1,6852,2471,1,189,9,3,9441,66,6,1,0,1,0,1,0,5,3,1,10074,1684,6.769578471565227,21.794807106065385,6.78124671502155,21.885104593713866,1.019002624671916,3.5581102362204726,2.385301837270341,9712,5562,11186,822,1889,415,421,334,139,430,138,144,358,17,471,164,87,159,156,48,120,26996,2832,0,13782,16046,0,23919,5909,0,28276,1552,0,9751,20077,0,7137,2614,19221,856,0,918,302,499,74,592,641,833,714,749,2557,3,17,301,872,1251,2589,977,1521,7291,34,296,632,935,1022,1396,1224,918,176,49,422,0,3,4,16,0,13022,1351,12313,0,36,532,180,1944,5774,3854,345,396,10368,502,1750,357,969,64,12,115,22,15494,16073,3080,7310,384,3253,89,2,14,27,15,431,78,9305,120,0,0,11899,10292,317,307,336,2971,149,402,13,0,32,816,1703,1793,1336,2960,144,2174,1277,2138,14462,1614,635,1057,1592,2190,3502,2354,2347,970,359,136,128,44,57,120,427.0,385.0,443.0,484.0,498.0,480.0,557.0,529.0,544.0,534.0,595.0,570.0,514.0,541.0,483.0,544.0,552.0,485.0,502.0,508.0,445.0,485.0,547.0,517.0,478.0,586.0,594.0,553.0,506.0,470.0,491.0,483.0,476.0,480.0,444.0,453.0,481.0,477.0,503.0,490.0,432.0,453.0,435.0,480.0,431.0,486.0,442.0,424.0,429.0,367.0,421.0,382.0,347.0,371.0,306.0,337.0,285.0,265.0,265.0,265.0,250.0,227.0,233.0,220.0,227.0,190.0,200.0,155.0,195.0,167.0,176.0,153.0,154.0,159.0,116.0,133.0,89.0,98.0,88.0,80.0,43.0,78.0,48.0,44.0,47.0,45.0,34.0,27.0,23.0,19.0,15.0,16.0,8.0,16.0,13.0,14.0,5.0,2.0,0.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7584,21330,2653,0,2237,2644,2703,2591,2472,2709,2374,2404,2231,2148,1827,1417,1157,907,758,488,260,148,68,21,3,0,30175,951,399,42,0,30186,1014,325,42,0,7416,397,1307,5487,822,283,8274,7581,0,9321,21779,467,0,1214,459,52,1,0,1,124,25,6,311,29374,0,2176,1096,1322,408,104,127,4306,22028,0,8626,8148,1978,170,31,12614,0,1.7149525893508388,0.0,2.5620397232760546,0.0,9.39870751100833,745,383,514,154,37,64,1572,6243,0,357,238,170,300,554,734,1173,969,1859,1348,787,430,437,174,145,31,9612,100,9266,446,8769,943,1385,8327,9089,623,2979,6733,5250,4462,2482,7230,9426,286,8981,731,6626,2355,4500,5212,7187,2525,4864,4848,205,9507,145,9567,75,9637,1596,5593,2300,223,3,5890,3822,0,227,134,16,0,0,0,40,7,1,115,9172,0,1.5948533196088523,1.6544518785383429,1.1756756756756757,1.0398936170212767,1.0398936170212767,48.1579489291598 +130301,Panamá Oeste,Capira,Capira,2321,1,0,0,0,0,0,2,1,0,0,1,2,0,0,54,1640,122,12,1751,65,1,1,0,9,1,1795,8,0,5,5,5,10,0,0,213,1380,220,5,5,0,5,1768,24,8,0,0,28,1828,0,233,53,40,125,43,0,105,237,1360,123,3,0,1806,6,0,13,0,3,0,1792,4,29,0,1,1,1,854,957,0,16,1,0,907,635,45,13,0,1,0,2,109,110,4,2,1423,905,6.264020163831128,20.100189035916824,6.352867044738501,20.88531821045999,1.0142231947483589,3.5568927789934355,2.2685995623632387,1856,962,1996,120,419,53,74,52,19,94,33,17,120,4,91,34,26,54,23,8,29,4874,658,0,2256,3276,0,4226,1306,0,5178,354,0,1572,3960,0,1260,312,3735,225,0,228,41,87,18,110,101,150,133,141,663,0,2,35,145,254,523,186,312,1290,2,17,96,138,185,229,227,108,29,7,70,0,0,0,5,0,2322,174,2540,0,2,80,31,450,1015,863,84,128,1641,128,359,63,196,8,70,3,2,2902,2917,597,1021,83,722,42,0,2,3,2,146,30,1853,1,0,0,2583,1703,39,20,84,507,28,67,5,0,3,175,283,246,151,434,71,477,219,437,2783,273,155,198,371,432,677,325,354,132,54,21,25,7,11,1,53.0,73.0,80.0,81.0,85.0,92.0,74.0,92.0,68.0,85.0,94.0,101.0,83.0,79.0,98.0,107.0,91.0,90.0,87.0,78.0,98.0,91.0,92.0,112.0,93.0,100.0,93.0,76.0,80.0,71.0,71.0,76.0,84.0,86.0,75.0,75.0,73.0,79.0,77.0,83.0,67.0,79.0,79.0,72.0,83.0,74.0,82.0,63.0,72.0,65.0,80.0,82.0,77.0,75.0,84.0,71.0,69.0,65.0,65.0,53.0,69.0,46.0,61.0,50.0,59.0,47.0,57.0,49.0,40.0,38.0,37.0,41.0,30.0,34.0,42.0,29.0,27.0,21.0,19.0,27.0,23.0,13.0,15.0,13.0,15.0,6.0,11.0,12.0,7.0,8.0,12.0,7.0,3.0,7.0,1.0,3.0,3.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1238,3880,701,0,372,411,455,453,486,420,392,387,380,356,398,323,285,231,184,123,79,44,30,9,1,0,5576,162,72,9,0,5580,179,51,9,0,1453,70,385,871,213,75,1515,1237,0,2429,3255,135,0,33,118,5,0,1,0,4,0,0,54,5604,0,221,202,501,43,40,7,1623,3182,0,1334,1232,437,44,8,2764,0,1.869928400954654,0.0,2.705601907032181,0.0,9.058944835882452,81,76,190,20,14,4,534,937,0,115,60,36,82,143,211,261,168,300,178,105,75,64,28,27,1,1815,41,1725,131,1592,264,305,1551,1605,251,481,1375,1008,848,317,1539,1715,141,1637,219,1008,629,739,1117,1291,565,776,1080,400,1456,300,1556,41,1815,393,935,441,87,4,1197,659,0,8,29,3,0,0,0,3,0,0,19,1794,0,1.560215053763441,1.5682795698924732,1.3333333333333333,1.0714285714285714,1.0714285714285714,52.716594827586206 +130302,Panamá Oeste,Capira,Caimito,871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,564,100,2,650,15,0,0,0,2,0,621,4,17,16,3,1,4,0,1,92,21,540,1,9,0,4,648,13,0,0,0,6,667,0,144,23,3,26,8,0,1,7,622,35,2,0,640,14,0,12,1,0,0,665,0,0,0,0,2,0,112,538,0,17,0,0,0,433,216,2,0,7,0,0,0,8,1,0,0,871,6.406779661016949,14.893682588597844,6.764252696456087,16.764252696456087,1.0194902548725635,3.2188905547226385,2.12143928035982,680,397,788,40,94,7,22,9,2,34,5,1,5,0,41,18,5,12,8,1,9,1489,458,0,227,1720,0,1040,907,0,1826,121,0,472,1475,0,445,27,1398,77,0,78,20,29,1,33,67,83,65,66,530,0,0,3,48,96,221,49,86,332,0,11,12,17,17,40,17,17,1,1,6,0,0,0,1,0,869,58,821,0,1,10,0,47,286,431,38,19,394,60,195,42,45,5,163,4,0,1095,989,95,384,46,366,4,0,13,0,18,111,13,524,3,0,0,1272,373,3,15,8,69,3,4,1,0,0,24,28,29,35,132,150,153,52,324,1146,189,101,92,117,177,134,67,41,9,5,1,2,0,0,3,30.0,36.0,39.0,32.0,35.0,39.0,23.0,33.0,35.0,34.0,41.0,37.0,38.0,23.0,35.0,40.0,24.0,24.0,28.0,33.0,26.0,32.0,41.0,34.0,33.0,38.0,38.0,35.0,42.0,38.0,37.0,40.0,48.0,33.0,23.0,32.0,32.0,28.0,33.0,30.0,26.0,23.0,23.0,16.0,16.0,20.0,22.0,27.0,29.0,23.0,19.0,31.0,26.0,21.0,25.0,25.0,17.0,21.0,17.0,16.0,11.0,20.0,17.0,22.0,13.0,19.0,10.0,14.0,10.0,11.0,14.0,13.0,13.0,14.0,7.0,16.0,6.0,6.0,2.0,5.0,6.0,9.0,1.0,3.0,2.0,3.0,3.0,2.0,2.0,1.0,2.0,3.0,2.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,510,1368,206,0,172,164,174,149,166,191,181,155,104,121,122,96,83,64,61,35,21,11,10,3,1,0,2070,12,1,1,0,2070,13,0,1,0,744,9,48,172,35,5,561,510,0,1379,699,6,0,2,44,11,0,0,0,1,0,0,5,2021,0,22,34,195,6,24,1,436,1366,0,330,380,44,6,0,1324,0,2.234355828220859,0.0,3.128342245989305,0.0,7.1708253358925145,5,14,82,3,11,1,147,417,0,43,56,40,70,72,115,95,56,76,31,14,5,4,1,1,1,663,17,590,90,537,143,87,593,457,223,29,651,326,354,13,667,570,110,570,110,256,314,87,593,350,330,144,536,304,376,297,383,12,668,145,414,116,5,0,471,209,0,0,16,0,0,0,0,0,0,0,1,663,0,1.6102941176470589,1.4544117647058823,1.0,1.1333333333333333,1.1333333333333333,49.78382352941176 +130303,Panamá Oeste,Capira,Campana,939,14,0,0,0,0,0,0,3,0,0,0,0,0,0,1,539,115,26,638,17,1,0,0,24,1,657,9,0,4,0,0,10,1,0,91,256,324,3,5,1,1,664,11,1,0,0,5,681,0,156,56,6,37,17,0,1,31,567,78,3,1,653,6,0,21,0,1,0,672,1,5,1,0,2,0,221,434,0,22,4,0,7,455,141,6,0,2,0,2,0,62,6,0,0,956,5.774461028192372,18.140961857379768,6.85240464344942,22.86567164179105,1.011747430249633,3.3245227606461087,2.202643171806167,689,356,798,25,185,12,26,33,8,44,14,8,68,2,23,15,12,8,10,11,9,1795,354,0,464,1685,0,1610,539,0,2000,149,0,571,1578,0,524,47,1518,60,0,65,31,50,9,36,49,66,65,70,427,1,0,6,49,122,228,64,110,443,0,0,23,37,53,88,32,12,3,1,8,0,0,0,1,0,920,101,909,0,4,53,25,97,337,329,49,97,441,106,170,68,125,7,64,1,0,1189,1079,108,349,72,437,13,0,3,0,11,86,13,686,43,0,0,1223,538,7,3,32,115,3,8,1,0,0,35,42,41,33,219,130,198,61,262,1159,194,85,92,158,145,187,79,81,25,14,2,3,0,1,43,26.0,34.0,24.0,35.0,35.0,44.0,40.0,32.0,30.0,38.0,41.0,45.0,27.0,32.0,38.0,41.0,27.0,33.0,37.0,40.0,26.0,38.0,35.0,47.0,29.0,45.0,43.0,38.0,31.0,28.0,35.0,44.0,34.0,31.0,26.0,25.0,36.0,20.0,22.0,24.0,28.0,26.0,26.0,18.0,25.0,18.0,23.0,24.0,32.0,24.0,31.0,30.0,35.0,31.0,40.0,23.0,30.0,23.0,27.0,33.0,27.0,14.0,17.0,17.0,12.0,18.0,28.0,13.0,13.0,19.0,12.0,14.0,10.0,14.0,14.0,10.0,10.0,9.0,6.0,14.0,12.0,8.0,11.0,2.0,3.0,6.0,3.0,4.0,4.0,4.0,1.0,2.0,6.0,2.0,3.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,521,1469,278,0,154,184,183,178,175,185,170,127,123,121,167,136,87,91,64,49,36,21,14,3,0,0,2210,33,19,6,0,2211,35,16,6,0,608,24,246,334,71,10,454,521,0,1298,947,23,0,12,34,21,0,0,0,0,0,0,12,2189,0,32,38,155,10,2,1,616,1414,0,331,380,100,3,7,1447,0,2.13551912568306,0.0,3.017741935483871,0.0,7.998236331569664,11,9,52,3,0,1,188,425,0,42,64,34,41,81,76,78,59,87,55,30,9,17,2,2,12,677,12,600,89,551,138,94,595,532,157,83,606,380,309,21,668,611,78,607,82,335,272,147,542,443,246,187,502,305,384,180,509,99,590,148,333,159,49,3,457,232,0,3,8,3,0,0,0,0,0,0,5,670,0,1.7182080924855492,1.5592485549132948,1.5,1.0740740740740742,1.0740740740740742,53.06966618287373 +130310,Panamá Oeste,Capira,Lídice,2334,135,0,0,0,0,0,0,0,0,0,0,2,0,0,7,1483,362,46,1757,95,2,0,0,43,1,1779,4,7,49,3,10,44,0,2,52,1316,510,4,14,0,2,1788,44,4,0,0,62,1898,0,342,68,23,96,42,0,40,88,1688,57,3,22,1778,29,0,83,5,2,1,1867,1,28,0,0,2,0,657,1153,0,88,0,0,1365,347,22,19,1,65,0,2,0,57,20,0,1769,702,5.9746251441753175,17.273933102652826,6.170126874279124,18.79123414071511,1.0131717597471022,3.247629083245521,2.1332982086406744,1925,1084,2261,118,484,53,78,58,22,122,20,23,66,1,86,47,22,36,41,33,48,5169,802,0,2089,3882,0,4861,1110,0,5562,409,0,1642,4329,0,1439,203,4137,192,0,200,87,97,24,121,130,211,164,167,1067,0,2,35,174,240,535,184,301,1298,6,26,93,127,152,184,233,67,8,1,36,0,0,0,1,0,2737,236,2397,0,12,108,24,260,955,946,159,77,1456,205,401,243,267,12,329,4,0,3198,3117,398,1214,250,989,24,0,42,0,7,279,35,1644,29,0,0,3095,1691,40,30,77,393,7,36,1,0,0,89,211,163,92,633,249,603,232,701,2968,503,269,321,452,494,555,288,256,101,40,16,13,6,4,29,69.0,85.0,98.0,92.0,115.0,107.0,84.0,104.0,83.0,108.0,131.0,94.0,89.0,88.0,81.0,101.0,92.0,94.0,95.0,98.0,110.0,109.0,130.0,103.0,108.0,111.0,125.0,113.0,84.0,83.0,104.0,94.0,85.0,82.0,82.0,90.0,82.0,86.0,79.0,82.0,82.0,76.0,83.0,76.0,85.0,71.0,60.0,79.0,73.0,81.0,87.0,87.0,87.0,83.0,83.0,73.0,70.0,58.0,72.0,55.0,65.0,47.0,57.0,45.0,45.0,46.0,56.0,37.0,37.0,38.0,38.0,38.0,31.0,38.0,32.0,43.0,19.0,39.0,17.0,25.0,15.0,10.0,17.0,11.0,14.0,8.0,10.0,5.0,9.0,7.0,6.0,7.0,6.0,6.0,5.0,3.0,2.0,4.0,1.0,0.0,3.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1428,4202,685,0,459,486,483,480,560,516,447,419,402,364,427,328,259,214,177,143,67,39,30,10,5,0,6212,39,45,19,0,6214,42,40,19,0,1753,103,606,840,204,25,1356,1428,0,3044,3231,40,0,30,89,4,0,0,0,4,1,0,18,6169,0,164,175,485,51,19,14,2719,2688,0,1115,1265,247,28,15,3645,0,2.086527514231499,0.0,2.931339977851606,0.0,8.337450514647664,62,57,182,20,7,5,874,718,0,67,84,64,138,203,241,247,191,304,140,93,48,57,16,20,10,1833,92,1603,322,1502,423,312,1613,1543,382,257,1668,1014,911,194,1731,1750,175,1618,307,1144,474,601,1324,1442,483,621,1304,794,1131,552,1373,33,1892,371,998,491,65,0,1259,666,0,9,18,4,0,0,0,0,1,0,5,1888,0,1.6612987012987013,1.6192207792207791,1.8571428571428568,1.021505376344086,1.021505376344086,51.79012987012987 +130305,Panamá Oeste,Capira,Cirí de Los Sotos,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,506,12,596,33,0,0,0,12,0,0,0,6,568,16,5,46,0,0,0,1,625,2,13,0,0,470,168,0,0,0,3,641,0,191,24,0,26,34,0,0,5,614,21,1,0,263,374,1,2,0,1,0,630,1,1,0,0,9,0,13,466,0,140,22,0,0,190,422,19,4,6,0,0,0,0,0,0,0,916,6.753267973856209,23.266339869281047,6.968954248366013,23.91830065359477,1.0062402496099845,3.232449297971919,2.1310452418096726,645,435,989,43,107,15,17,12,2,33,1,10,2,2,23,14,12,7,16,6,18,1148,1022,0,53,2117,0,735,1435,0,1930,240,0,589,1581,0,579,10,1468,113,0,116,22,40,5,64,96,115,101,114,740,0,1,1,68,73,210,41,74,248,1,0,5,5,9,11,4,3,1,0,2,0,0,0,0,0,1004,36,892,0,0,21,5,8,352,417,47,68,146,43,42,55,51,1,675,2,1,1248,1065,30,313,55,529,17,0,71,1,128,110,11,643,16,0,0,1642,273,1,1,3,10,0,2,0,0,1,10,5,7,10,93,474,66,25,349,1694,200,104,79,89,55,30,26,15,2,2,0,0,0,1,16,35.0,40.0,34.0,34.0,44.0,36.0,44.0,42.0,34.0,38.0,61.0,41.0,37.0,50.0,59.0,50.0,49.0,49.0,52.0,45.0,35.0,41.0,36.0,38.0,34.0,32.0,29.0,34.0,31.0,22.0,24.0,32.0,29.0,23.0,28.0,26.0,24.0,32.0,28.0,26.0,36.0,32.0,26.0,23.0,21.0,25.0,29.0,32.0,26.0,15.0,28.0,25.0,22.0,28.0,25.0,25.0,25.0,21.0,23.0,16.0,21.0,21.0,23.0,26.0,17.0,12.0,18.0,10.0,18.0,14.0,17.0,14.0,10.0,7.0,13.0,8.0,6.0,9.0,6.0,10.0,6.0,7.0,5.0,4.0,2.0,6.0,4.0,4.0,2.0,5.0,1.0,1.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,629,1460,224,0,187,194,248,245,184,148,136,136,138,127,128,110,108,72,61,39,24,21,4,3,0,0,2286,3,0,24,0,2286,3,0,24,0,747,15,58,213,66,0,585,629,0,1446,865,2,0,3,7,0,0,0,0,3,2,0,182,2116,0,9,186,55,0,0,1,739,1323,0,69,149,10,2,0,2083,0,3.001141552511416,0.0,4.455357142857143,0.0,5.975789018590575,4,47,21,0,0,1,246,326,0,134,65,86,89,97,62,38,19,36,9,6,0,1,0,1,2,574,71,46,599,126,519,118,527,18,627,0,645,339,306,9,636,469,176,255,390,141,114,16,629,209,436,35,610,555,90,454,191,2,643,119,406,116,4,0,523,122,0,1,4,0,0,0,0,2,2,0,45,591,0,1.9348837209302323,1.6511627906976745,0.0,1.0,1.0,51.86046511627907 +130306,Panamá Oeste,Capira,Cirí Grande,1610,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,179,939,42,1027,91,0,0,0,41,1,463,1,9,478,28,10,169,0,2,10,6,1077,13,44,4,6,798,357,1,2,0,2,1160,0,337,63,8,20,23,0,3,7,1119,29,2,0,616,529,3,11,0,0,1,1140,0,1,0,1,18,0,35,814,2,297,12,0,1,571,265,16,0,284,0,10,0,9,3,1,15,1597,6.358422939068101,20.630824372759857,6.841099163679809,22.990442054958184,1.0275862068965518,3.0982758620689657,1.956034482758621,1192,841,2065,85,228,22,33,17,5,68,6,8,23,0,30,25,12,28,21,14,7,2405,1797,0,196,4006,0,1365,2837,0,3729,473,0,1198,3004,0,1172,26,2794,210,0,218,67,109,4,115,160,257,157,155,1401,0,0,0,118,133,455,112,106,541,1,2,15,12,19,15,15,12,0,0,3,0,0,0,0,0,1902,51,1689,0,2,27,14,14,612,839,53,171,240,102,138,82,69,2,1304,0,0,2462,2131,68,427,85,934,2,9,409,3,201,193,24,1289,96,0,0,3006,599,1,2,7,24,0,3,0,0,3,11,10,15,13,141,1164,103,68,425,3302,312,215,189,179,141,97,35,21,3,0,2,1,0,0,96,89.0,107.0,93.0,102.0,94.0,96.0,100.0,97.0,101.0,72.0,105.0,94.0,79.0,91.0,100.0,100.0,88.0,76.0,101.0,84.0,82.0,87.0,80.0,78.0,83.0,66.0,67.0,79.0,85.0,65.0,52.0,66.0,68.0,63.0,48.0,61.0,43.0,56.0,53.0,42.0,55.0,57.0,52.0,55.0,41.0,56.0,31.0,45.0,42.0,44.0,48.0,41.0,31.0,47.0,34.0,40.0,35.0,30.0,29.0,36.0,35.0,28.0,25.0,37.0,33.0,25.0,28.0,28.0,31.0,23.0,19.0,19.0,17.0,16.0,25.0,13.0,15.0,19.0,15.0,10.0,16.0,8.0,5.0,6.0,8.0,5.0,4.0,5.0,5.0,5.0,4.0,9.0,1.0,1.0,2.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1420,2780,393,0,485,466,469,449,410,362,297,255,260,218,201,170,158,135,96,72,43,24,17,3,3,0,4550,9,3,31,0,4550,11,1,31,0,1482,9,140,440,105,2,997,1418,0,2984,1600,9,0,2,31,14,0,0,0,0,0,0,22,4524,0,17,791,55,1,3,1,1081,2644,0,167,289,20,0,1,4116,0,2.734730538922156,0.0,4.108411214953271,0.0,5.930328761158284,5,216,16,0,0,1,321,633,0,204,104,150,162,201,127,96,68,51,17,3,4,2,0,0,3,1082,110,406,786,398,794,251,941,323,869,6,1186,513,679,43,1149,781,411,482,710,374,108,61,1131,469,723,100,1092,877,315,646,546,32,1160,157,801,224,10,1,986,206,0,0,1,3,0,0,0,0,0,0,4,1184,0,2.063704945515507,1.7862531433361275,1.0,1.0425531914893618,1.0425531914893618,49.62751677852349 +130307,Panamá Oeste,Capira,El Cacao,2096,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,316,1154,49,1346,125,0,0,0,48,1,854,5,16,417,31,14,182,0,1,18,5,1391,27,74,0,5,1068,445,2,2,0,3,1520,0,408,68,4,68,30,0,1,19,1445,54,1,0,743,713,7,41,11,5,0,1472,4,4,0,1,39,0,29,1065,2,385,39,0,3,696,380,42,14,321,0,51,0,2,11,0,16,2082,6.023169601482855,18.748841519925858,6.535681186283596,21.322520852641336,1.0125,2.9289473684210527,1.7888157894736842,1539,968,2352,95,382,35,63,29,11,131,13,8,13,0,54,28,9,31,34,13,23,3356,1863,0,267,4952,0,1859,3360,0,4736,483,0,1401,3818,0,1356,45,3514,304,0,306,42,98,4,141,229,270,220,243,1609,0,0,0,153,211,517,146,189,651,4,3,30,34,34,44,18,17,4,0,2,0,0,0,0,0,2666,35,1908,0,1,19,3,46,742,889,114,117,382,232,218,113,93,14,1642,0,2,3089,2550,106,767,118,1278,8,1,416,2,203,250,27,1754,5,0,0,3766,761,0,5,26,47,2,2,0,0,2,12,28,26,33,267,1368,182,67,716,4019,471,230,246,255,210,107,53,25,15,2,1,0,0,0,5,90.0,113.0,92.0,125.0,104.0,100.0,96.0,112.0,116.0,82.0,119.0,103.0,95.0,89.0,106.0,117.0,107.0,104.0,116.0,98.0,100.0,114.0,105.0,94.0,83.0,91.0,98.0,82.0,75.0,77.0,82.0,77.0,81.0,87.0,77.0,77.0,75.0,87.0,83.0,74.0,64.0,68.0,64.0,61.0,64.0,63.0,50.0,55.0,53.0,50.0,63.0,44.0,52.0,41.0,46.0,45.0,43.0,56.0,40.0,40.0,50.0,29.0,63.0,40.0,29.0,43.0,31.0,32.0,35.0,35.0,38.0,31.0,29.0,39.0,21.0,23.0,20.0,18.0,16.0,19.0,15.0,13.0,12.0,9.0,20.0,14.0,12.0,10.0,8.0,6.0,5.0,1.0,2.0,0.0,1.0,3.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1542,3534,563,0,524,506,512,542,496,423,404,396,321,271,246,224,211,176,158,96,69,50,9,4,1,0,5595,18,10,16,0,5596,22,5,16,0,1983,17,141,387,116,6,1447,1542,0,3678,1948,13,0,4,8,1,0,1,0,2,0,0,18,5605,0,7,34,179,4,2,0,1098,4315,0,298,387,52,7,3,4892,0,2.786506024096385,0.0,4.013005780346821,0.0,6.175385706685582,0,13,54,1,1,0,379,1091,0,279,118,172,212,243,201,112,86,69,31,8,4,1,1,0,2,1369,170,690,849,685,854,228,1311,466,1073,17,1522,588,951,22,1517,1181,358,723,816,477,246,76,1463,494,1045,139,1400,1029,510,772,767,29,1510,288,879,359,13,0,1148,391,0,1,2,0,0,1,0,0,0,0,6,1529,0,2.0071474983755686,1.6569200779727096,0.0,1.0161290322580645,1.0161290322580645,50.89538661468486 +130308,Panamá Oeste,Capira,La Trinidad,1137,5,0,0,0,0,0,0,0,0,0,0,1,0,0,0,230,578,41,762,46,0,0,0,41,0,429,4,9,348,8,4,46,0,1,10,13,813,0,12,1,0,750,93,1,2,0,3,849,0,204,35,0,26,28,0,3,16,810,15,5,0,627,189,0,22,0,11,0,835,0,1,0,0,13,0,38,698,2,103,7,1,4,433,332,47,1,18,1,5,0,0,7,1,0,1143,5.877763328998699,17.83224967490247,6.637191157347204,21.76723016905072,1.028268551236749,3.027090694935218,1.9305064782096584,874,548,1225,74,142,18,24,11,6,51,3,6,9,0,44,17,9,2,15,8,31,1940,851,0,169,2622,0,1321,1470,0,2490,301,0,681,2110,0,656,25,1960,150,0,155,29,47,9,73,107,121,89,107,966,0,0,0,69,104,267,74,91,360,0,5,18,21,23,26,9,15,3,0,3,0,0,0,0,0,1248,298,944,0,3,148,55,21,389,370,72,92,429,124,146,134,100,3,491,2,2,1626,1365,61,730,138,376,24,3,97,2,122,152,19,861,17,0,0,2007,420,0,6,9,44,1,3,0,0,3,27,27,19,24,190,302,114,50,790,1804,310,148,172,204,176,93,37,20,3,4,1,0,0,2,17,61.0,48.0,51.0,40.0,45.0,63.0,55.0,43.0,50.0,45.0,41.0,66.0,35.0,53.0,47.0,61.0,56.0,54.0,67.0,46.0,41.0,64.0,55.0,55.0,66.0,50.0,78.0,51.0,43.0,51.0,47.0,46.0,36.0,63.0,35.0,39.0,36.0,42.0,43.0,34.0,31.0,29.0,40.0,29.0,36.0,32.0,38.0,28.0,32.0,32.0,31.0,27.0,29.0,30.0,25.0,18.0,37.0,19.0,22.0,25.0,27.0,15.0,20.0,26.0,22.0,20.0,15.0,19.0,16.0,17.0,9.0,18.0,14.0,15.0,10.0,10.0,12.0,12.0,15.0,14.0,9.0,15.0,6.0,6.0,6.0,7.0,3.0,2.0,4.0,4.0,1.0,1.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,743,1959,289,0,245,256,242,284,281,273,227,194,165,162,142,121,110,87,66,63,42,20,6,4,1,0,2970,4,1,16,0,2971,4,0,16,0,1066,8,53,195,90,4,832,743,0,1833,1153,5,0,2,13,5,0,0,0,1,0,0,40,2930,0,3,30,509,3,0,1,1434,1011,0,208,299,22,5,0,2457,0,2.6678445229681977,0.0,3.741469816272966,0.0,6.357405549983283,1,10,174,2,0,0,403,284,0,89,64,80,102,149,145,97,51,57,23,8,3,0,1,1,3,839,35,382,492,487,387,115,759,319,555,10,864,441,433,9,865,726,148,493,381,291,202,60,814,447,427,120,754,538,336,543,331,9,865,172,530,165,7,0,676,198,0,0,2,0,0,0,0,1,0,0,7,864,0,1.860411899313501,1.5617848970251715,0.0,1.0238095238095235,1.0238095238095235,49.941647597254 +130309,Panamá Oeste,Capira,Las Ollas Arriba,653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314,179,2,435,58,0,0,0,2,0,466,3,3,14,4,1,3,0,1,25,207,254,0,8,0,1,467,17,0,0,0,11,495,0,104,28,0,23,3,0,0,9,435,50,1,0,468,6,1,13,1,6,0,488,0,1,2,0,2,2,131,350,0,12,2,0,2,369,84,10,2,19,0,1,0,8,0,0,0,653,5.068131868131868,9.7010989010989,5.498901098901099,10.068131868131868,1.0101010101010102,3.2,1.698989898989899,500,276,601,8,84,12,9,8,4,22,2,3,21,0,32,11,4,10,24,3,10,1257,185,0,352,1090,0,1195,247,0,1350,92,0,374,1068,0,328,46,1010,58,0,60,10,21,10,30,29,42,35,49,264,0,1,6,34,80,131,45,77,311,12,34,11,14,27,65,20,18,0,0,6,0,0,0,0,0,637,48,616,0,0,35,8,70,248,248,41,9,349,45,103,41,42,5,74,1,0,794,756,76,307,40,227,7,1,2,0,3,51,24,471,4,0,0,776,389,6,14,13,97,0,6,0,0,0,18,36,30,26,95,101,152,56,171,777,96,47,95,120,166,121,57,47,12,5,0,2,0,1,4,32.0,22.0,27.0,27.0,27.0,27.0,22.0,25.0,19.0,21.0,25.0,32.0,18.0,12.0,29.0,31.0,24.0,33.0,22.0,20.0,26.0,26.0,47.0,19.0,22.0,26.0,24.0,30.0,31.0,24.0,16.0,27.0,24.0,22.0,19.0,23.0,12.0,22.0,22.0,26.0,19.0,16.0,21.0,12.0,11.0,24.0,23.0,16.0,22.0,15.0,16.0,15.0,21.0,24.0,12.0,18.0,17.0,24.0,22.0,10.0,21.0,14.0,11.0,17.0,12.0,8.0,7.0,12.0,5.0,8.0,7.0,5.0,4.0,4.0,4.0,4.0,4.0,4.0,3.0,6.0,6.0,5.0,6.0,9.0,5.0,6.0,4.0,1.0,3.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,365,1051,134,0,135,114,116,130,140,135,108,105,79,100,88,91,75,40,24,21,31,14,2,1,1,0,1523,16,3,8,0,1523,16,3,8,0,429,10,90,222,52,5,377,365,0,920,621,9,0,1,99,6,0,0,0,1,0,0,7,1436,0,36,70,271,16,4,0,610,543,0,289,322,67,9,1,862,0,2.1984126984126986,0.0,2.96,0.0,8.084516129032258,13,31,99,5,1,0,213,138,0,23,26,10,41,63,99,59,49,59,41,11,12,3,2,1,1,487,13,434,66,396,104,70,430,396,104,42,458,249,251,63,437,459,41,403,97,218,185,129,371,439,61,169,331,174,326,129,371,11,489,117,278,84,21,0,324,176,0,1,33,1,0,0,0,1,0,0,4,460,0,1.588,1.512,0.0,1.0,1.0,50.118 +130311,Panamá Oeste,Capira,Villa Carmen,688,0,0,0,0,0,0,0,0,0,0,0,4,0,0,2,495,24,5,478,43,3,0,0,2,0,515,2,0,1,1,7,0,0,0,15,400,99,2,7,0,3,507,6,1,0,0,12,526,0,72,19,27,31,13,0,15,45,382,78,6,0,508,2,0,14,0,2,0,511,4,9,0,0,0,2,211,307,0,5,2,1,7,416,100,0,0,0,0,0,0,3,0,0,0,692,6.776290630975144,10.2887189292543,6.78585086042065,10.424474187380495,1.011406844106464,3.365019011406844,2.096958174904943,536,306,614,22,105,12,15,23,5,28,7,6,18,0,41,11,1,13,14,0,9,1423,177,0,484,1116,0,1275,325,0,1503,97,0,441,1159,0,358,83,1088,71,0,78,17,23,8,28,44,44,38,46,193,0,0,12,52,60,150,44,82,449,0,3,11,21,28,65,49,30,5,0,19,0,0,0,1,0,686,66,680,0,1,18,16,119,259,262,26,14,489,45,104,13,64,1,11,0,0,865,832,127,363,13,216,8,0,0,0,4,23,8,489,5,0,0,738,485,12,5,26,140,5,20,1,0,0,37,62,72,41,144,7,140,92,157,847,63,43,79,73,170,202,75,77,27,15,11,6,2,2,5,28.0,24.0,22.0,23.0,29.0,33.0,31.0,28.0,29.0,18.0,24.0,31.0,20.0,25.0,27.0,20.0,23.0,30.0,28.0,35.0,29.0,32.0,38.0,20.0,30.0,38.0,29.0,21.0,26.0,20.0,31.0,31.0,23.0,15.0,18.0,20.0,15.0,25.0,19.0,17.0,16.0,16.0,26.0,22.0,25.0,21.0,18.0,30.0,26.0,22.0,25.0,26.0,19.0,18.0,19.0,24.0,17.0,11.0,17.0,22.0,19.0,11.0,15.0,17.0,17.0,14.0,8.0,14.0,13.0,13.0,7.0,7.0,8.0,5.0,11.0,12.0,8.0,9.0,5.0,6.0,5.0,3.0,1.0,5.0,4.0,3.0,2.0,0.0,1.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,392,1132,173,0,126,139,127,136,149,134,118,96,105,117,107,91,79,62,38,40,18,6,8,1,0,0,1652,25,15,5,0,1652,26,14,5,0,450,25,33,279,55,11,452,392,0,692,980,25,0,8,59,68,0,0,0,3,0,0,44,1515,0,90,74,218,20,6,6,345,938,0,373,370,112,14,6,822,0,1.7977207977207976,0.0,2.539256198347108,0.0,8.620506776664703,33,13,66,14,3,4,115,288,0,30,14,14,25,46,65,78,42,92,48,36,14,15,4,8,1,521,15,490,46,456,80,112,424,481,55,128,408,283,253,68,468,506,30,468,68,297,171,183,353,452,84,227,309,175,361,108,428,9,527,102,299,118,17,0,362,174,0,2,14,15,0,0,0,1,0,0,11,493,0,1.6138059701492538,1.5522388059701493,0.0,1.05,1.05,50.798507462686565 +130312,Panamá Oeste,Capira,Villa Rosario,2315,3,1,0,0,0,0,0,0,0,0,0,10,0,0,138,1473,194,18,1721,84,2,0,0,16,0,1788,9,2,6,1,2,10,0,5,192,1414,191,2,14,1,9,1762,14,17,0,1,29,1823,4,160,94,36,186,16,0,504,176,992,145,5,1,1780,9,0,29,1,4,0,1792,14,14,1,0,2,0,790,1003,0,29,0,1,899,789,55,4,4,1,0,0,0,61,5,5,1431,898,6.136546184738956,13.399311531841652,6.27653471026965,14.449799196787149,1.0197476686780034,3.469007131102578,2.176631925397696,1869,1000,2150,142,318,53,75,58,15,100,31,18,88,3,82,33,10,23,49,8,33,5075,491,1,1902,3664,1,4482,1084,1,5219,347,1,1581,3986,0,1349,232,3796,189,1,195,47,96,22,117,136,169,131,167,701,1,1,26,208,253,560,176,265,1328,10,15,132,141,165,210,147,94,19,4,30,0,0,0,0,1,2508,297,2175,1,6,91,35,277,911,813,38,136,1813,164,471,94,160,5,35,1,3,2974,2946,410,1434,113,738,31,0,17,3,10,130,17,1478,49,0,0,2656,1764,27,30,79,382,13,29,0,1,3,125,192,197,148,659,44,592,278,567,2684,330,247,283,416,462,667,332,287,101,34,8,12,2,6,49,81.0,95.0,73.0,104.0,102.0,89.0,98.0,92.0,105.0,100.0,93.0,124.0,84.0,111.0,73.0,87.0,72.0,98.0,98.0,107.0,100.0,99.0,114.0,95.0,102.0,116.0,116.0,114.0,96.0,89.0,92.0,92.0,88.0,72.0,77.0,77.0,71.0,85.0,86.0,68.0,83.0,79.0,74.0,81.0,82.0,82.0,74.0,84.0,88.0,79.0,73.0,74.0,73.0,65.0,48.0,55.0,69.0,78.0,61.0,45.0,56.0,40.0,25.0,46.0,45.0,42.0,30.0,42.0,42.0,30.0,32.0,29.0,19.0,17.0,19.0,27.0,20.0,13.0,14.0,18.0,27.0,15.0,12.0,7.0,10.0,9.0,6.0,7.0,3.0,2.0,3.0,4.0,6.0,4.0,6.0,4.0,4.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,1424,3970,525,1,455,484,485,462,510,531,421,387,399,407,333,308,212,186,116,92,71,27,23,9,1,1,5726,125,64,4,1,5726,133,56,4,1,1558,124,434,859,190,51,1279,1424,1,2122,3733,64,1,34,201,9,4,1,2,13,1,0,166,5488,1,320,337,528,44,10,17,1432,3231,1,1318,1361,289,14,9,2928,1,1.9227346278317152,0.0,2.6959858323494688,0.0,8.603716216216217,104,112,177,21,5,11,500,939,0,54,62,48,95,172,209,281,204,317,174,98,48,61,13,11,12,1836,33,1703,166,1620,249,282,1587,1642,227,404,1465,1020,849,265,1604,1794,75,1647,222,1247,400,662,1207,1475,394,781,1088,287,1582,283,1586,23,1846,363,992,437,77,0,1168,701,0,14,48,7,3,1,1,6,0,0,61,1728,0,1.5912252541466023,1.5762439807383628,1.3,1.0365853658536586,1.0365853658536586,49.196361690743714 +130313,Panamá Oeste,Capira,Santa Rosa,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,460,7,504,18,1,0,0,6,0,18,0,4,433,9,1,63,0,1,0,0,504,1,24,0,0,320,209,0,0,0,0,529,0,110,8,0,8,15,0,0,1,521,6,1,0,175,337,3,7,4,2,1,508,1,1,0,1,18,0,6,311,6,199,7,0,0,213,271,7,18,9,0,7,0,1,3,0,0,670,6.506198347107438,21.73553719008265,6.952479338842975,23.84710743801653,1.0207939508506616,3.2665406427221173,2.062381852551985,540,381,1065,12,99,10,14,6,5,30,1,2,1,0,29,7,7,1,10,2,1,890,1116,0,38,1968,0,397,1609,0,1798,208,0,607,1399,0,597,10,1269,130,0,132,19,43,1,60,70,91,76,113,713,0,0,0,58,60,186,41,61,249,2,0,7,5,4,7,4,3,1,0,0,0,0,0,0,0,813,44,879,0,4,14,20,6,337,422,19,95,109,49,67,42,14,2,560,0,3,1186,980,32,181,43,440,40,1,106,3,133,82,6,764,15,0,0,1454,267,0,1,3,11,0,0,0,0,3,3,7,3,12,58,498,55,17,201,1745,129,51,64,70,45,31,5,3,5,3,0,0,0,0,15,36.0,45.0,35.0,44.0,43.0,41.0,52.0,54.0,35.0,45.0,45.0,68.0,51.0,51.0,44.0,55.0,44.0,45.0,54.0,35.0,49.0,44.0,38.0,43.0,36.0,27.0,28.0,27.0,33.0,31.0,23.0,30.0,17.0,21.0,20.0,27.0,21.0,25.0,29.0,24.0,28.0,26.0,18.0,26.0,23.0,15.0,13.0,22.0,21.0,22.0,19.0,18.0,14.0,17.0,19.0,18.0,15.0,14.0,19.0,18.0,18.0,15.0,19.0,12.0,13.0,11.0,16.0,16.0,13.0,8.0,17.0,12.0,15.0,7.0,10.0,2.0,5.0,5.0,6.0,3.0,8.0,2.0,4.0,1.0,4.0,2.0,5.0,1.0,5.0,4.0,1.0,1.0,2.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,689,1288,189,0,203,227,259,233,210,146,111,126,121,93,87,84,77,64,61,21,19,17,5,2,0,0,2142,4,0,20,0,2142,4,0,20,0,666,0,35,192,57,1,526,689,0,1411,755,0,0,0,4,0,0,0,0,3,0,0,7,2152,0,1,7,3,1,0,0,38,2116,0,81,83,7,0,0,1995,0,3.01280409731114,0.0,4.658995815899582,0.0,5.885964912280702,0,3,2,0,0,0,20,515,0,164,48,57,64,79,50,41,7,13,5,5,2,1,0,0,4,438,102,35,505,78,462,71,469,21,519,3,537,259,281,27,513,228,312,165,375,104,61,10,530,76,464,25,515,427,113,292,248,3,537,91,348,100,1,0,445,95,0,0,1,0,0,0,0,0,0,0,2,537,0,2.196296296296296,1.8148148148148149,0.0,1.0714285714285714,1.0714285714285714,51.06851851851852 +130401,Panamá Oeste,Chame,Chame,1387,3,42,2,0,0,0,0,0,0,0,5,1,0,0,5,806,23,11,803,31,0,1,0,10,0,833,0,2,2,0,3,1,0,4,701,76,50,4,3,0,11,826,4,7,0,0,8,845,0,370,34,69,87,29,0,21,130,613,78,3,0,824,4,1,9,0,7,0,768,5,69,2,1,0,0,493,345,1,5,1,0,787,0,44,2,0,0,0,0,0,8,1,3,1350,90,6.641395908543923,22.31287605294825,6.671480144404332,22.719614921780988,1.015384615384615,3.6568047337278102,2.4698224852071005,864,435,799,66,177,22,40,21,21,42,4,12,37,4,56,18,6,17,15,4,10,2195,230,0,989,1436,0,1951,474,0,2306,119,0,619,1806,0,486,133,1744,62,0,65,22,40,3,40,57,53,50,39,273,0,1,20,76,140,208,77,115,578,1,19,35,67,96,92,108,101,9,1,38,0,0,0,1,0,958,125,1143,0,1,34,18,307,382,366,29,59,641,48,121,66,129,3,54,3,2,1248,1296,179,480,72,297,23,0,14,2,1,72,7,798,9,0,0,1050,750,23,39,58,263,7,35,1,0,2,72,106,93,64,214,53,206,63,210,1070,144,64,112,209,276,252,141,155,39,27,13,12,7,14,9,32.0,22.0,29.0,36.0,34.0,33.0,36.0,35.0,31.0,30.0,31.0,27.0,30.0,36.0,49.0,33.0,30.0,41.0,33.0,36.0,33.0,44.0,37.0,29.0,51.0,42.0,37.0,38.0,16.0,28.0,25.0,26.0,40.0,32.0,35.0,34.0,34.0,37.0,40.0,39.0,37.0,33.0,34.0,31.0,28.0,29.0,30.0,39.0,36.0,30.0,29.0,31.0,30.0,33.0,27.0,25.0,31.0,30.0,24.0,26.0,23.0,21.0,23.0,20.0,25.0,21.0,31.0,31.0,26.0,29.0,24.0,22.0,22.0,19.0,22.0,23.0,21.0,25.0,20.0,10.0,8.0,7.0,11.0,9.0,12.0,7.0,8.0,9.0,8.0,5.0,5.0,4.0,4.0,1.0,3.0,2.0,2.0,3.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,491,1595,458,0,153,165,173,173,194,161,158,184,163,164,150,136,112,138,109,99,47,37,17,9,2,0,2310,155,78,1,0,2311,162,70,1,0,552,40,82,469,111,22,777,491,0,1040,1392,112,0,3,53,2,0,0,0,5,0,0,27,2454,0,172,181,207,25,15,3,463,1478,0,493,519,285,20,19,1208,0,1.8603839441535777,0.0,2.651554404145078,0.0,9.527908805031446,52,58,79,18,4,2,186,465,0,45,16,16,33,75,106,110,91,142,91,47,22,26,9,25,4,851,13,807,57,742,122,194,670,773,91,302,562,450,414,191,673,813,51,781,83,579,202,352,512,677,187,352,512,93,771,71,793,6,858,186,426,218,34,0,552,312,0,1,13,1,0,0,0,3,0,0,11,835,0,1.4444444444444444,1.5,1.2222222222222223,1.048780487804878,1.048780487804878,55.31018518518518 +130402,Panamá Oeste,Chame,Bejuco,2744,10,51,2,0,0,0,1,0,0,0,0,20,0,0,174,1608,130,60,1845,67,1,0,0,57,2,1941,5,1,3,4,2,15,0,1,1201,252,491,12,10,2,4,1916,9,9,0,0,38,1972,0,403,46,115,214,57,0,43,199,1595,128,7,0,1895,2,3,25,0,47,0,1886,16,70,0,0,0,0,973,984,0,15,0,0,1317,537,88,2,0,0,0,0,0,15,11,2,1896,932,6.70648815653965,22.3048403707518,6.81513903192585,22.99536560247168,1.013184584178499,3.5461460446247464,2.3179513184584177,2018,1090,2161,159,396,60,86,55,22,93,19,12,65,6,174,34,21,30,42,0,32,5075,825,0,1894,4006,0,3864,2036,0,5522,378,0,1584,4316,0,1399,185,4106,210,0,217,40,161,11,121,174,175,166,142,1067,1,11,6,203,267,507,150,289,1391,8,28,37,94,115,149,157,151,20,0,37,1,0,0,4,0,2399,298,2559,0,4,114,48,384,952,1022,118,83,1378,179,605,125,269,5,45,57,1,3100,3142,304,1083,142,1071,57,1,5,1,5,213,16,1916,15,0,0,3048,1634,9,36,77,396,17,36,3,0,6,107,186,206,121,562,151,639,182,537,2881,548,233,321,441,511,610,269,239,94,40,8,12,10,10,15,81.0,81.0,80.0,100.0,103.0,108.0,105.0,113.0,119.0,96.0,119.0,82.0,91.0,91.0,93.0,85.0,83.0,94.0,95.0,90.0,100.0,74.0,112.0,100.0,97.0,120.0,96.0,100.0,79.0,82.0,101.0,87.0,90.0,91.0,89.0,93.0,84.0,77.0,77.0,77.0,70.0,68.0,63.0,75.0,74.0,79.0,65.0,82.0,78.0,76.0,73.0,87.0,74.0,92.0,70.0,86.0,71.0,65.0,83.0,60.0,59.0,49.0,42.0,43.0,47.0,60.0,60.0,44.0,44.0,54.0,50.0,43.0,32.0,39.0,29.0,28.0,22.0,28.0,19.0,21.0,20.0,13.0,28.0,11.0,17.0,15.0,15.0,12.0,11.0,13.0,10.0,6.0,7.0,8.0,4.0,3.0,2.0,1.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1462,4004,776,0,445,541,476,447,483,477,458,408,350,380,396,365,240,262,193,118,89,66,35,11,2,0,5955,175,86,26,0,5959,183,74,26,0,1630,66,241,926,211,47,1660,1461,0,3048,3051,143,0,11,69,6,0,5,0,24,1,0,141,5985,0,268,268,476,19,31,35,1189,3956,0,1035,1241,360,29,24,3553,0,2.038878504672897,0.0,2.853804347826087,0.0,8.238705543095161,96,98,178,13,13,10,410,1200,0,124,119,61,104,206,233,276,212,295,166,86,51,32,13,17,3,1977,41,1874,144,1708,310,298,1720,1783,235,518,1500,1035,983,197,1821,1856,162,1839,179,1302,537,648,1370,1214,804,758,1260,133,1885,123,1895,20,1998,395,1130,442,51,1,1263,755,0,6,19,1,0,1,0,8,0,0,55,1928,0,1.5354135710747896,1.5562159484893512,1.3125,1.0333333333333334,1.0333333333333334,52.19970267591675 +130403,Panamá Oeste,Chame,Buenos Aires,1131,0,1,0,0,0,0,0,1,0,0,1,0,0,0,2,447,251,28,670,30,2,0,0,26,0,668,2,8,14,3,14,18,0,1,290,19,393,3,20,0,3,680,27,2,0,0,19,728,0,291,62,25,24,2,0,1,17,668,40,2,0,667,8,7,16,0,30,0,699,1,27,0,1,0,0,212,493,0,20,3,0,4,615,89,0,1,3,2,4,0,6,4,0,0,1134,4.745762711864407,12.175141242937851,5.71045197740113,16.02542372881356,1.010989010989011,3.181318681318681,2.081043956043956,737,428,821,64,140,7,13,5,6,40,10,3,13,1,30,10,4,17,17,2,10,1660,513,0,338,1835,0,1314,859,0,2038,135,0,551,1622,0,508,43,1554,68,0,71,20,43,4,42,51,111,68,61,572,1,0,1,69,97,185,67,99,373,3,2,20,44,34,58,42,20,4,1,9,0,0,0,1,0,787,150,1027,0,0,107,16,110,340,443,56,78,350,67,152,132,108,1,87,4,0,1239,1049,110,366,139,247,20,0,18,1,14,149,11,782,14,0,0,1345,480,1,9,22,96,1,9,1,0,1,20,52,44,39,113,95,164,62,347,1202,261,68,157,128,185,142,59,39,11,9,3,4,3,3,14,28.0,26.0,26.0,35.0,35.0,26.0,44.0,34.0,20.0,50.0,41.0,30.0,27.0,29.0,37.0,32.0,49.0,31.0,32.0,38.0,36.0,36.0,40.0,30.0,35.0,29.0,37.0,27.0,29.0,32.0,33.0,37.0,29.0,26.0,29.0,21.0,40.0,35.0,29.0,28.0,24.0,27.0,34.0,25.0,28.0,40.0,30.0,33.0,29.0,33.0,24.0,34.0,30.0,26.0,31.0,32.0,16.0,21.0,19.0,18.0,19.0,22.0,24.0,16.0,20.0,22.0,28.0,25.0,18.0,13.0,16.0,21.0,14.0,9.0,6.0,14.0,15.0,13.0,9.0,13.0,3.0,11.0,10.0,9.0,7.0,11.0,3.0,14.0,2.0,4.0,2.0,0.0,4.0,1.0,4.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,488,1475,325,0,150,174,164,182,177,154,154,153,138,165,145,106,101,106,66,64,40,34,11,4,0,0,2248,29,6,5,0,2248,29,6,5,0,727,11,27,259,68,5,705,486,0,1455,812,21,0,2,30,0,0,0,0,0,0,0,9,2247,0,21,21,82,11,2,0,269,1882,0,297,365,108,12,5,1501,0,2.373318385650224,0.0,3.2251968503937007,0.0,7.610576923076923,8,9,37,4,2,0,105,572,0,59,65,23,83,93,108,104,58,76,28,14,4,7,3,5,6,707,30,591,146,553,184,97,640,494,243,77,660,410,327,19,718,612,125,622,115,372,250,147,590,425,312,168,569,191,546,115,622,5,732,163,428,134,12,1,533,204,0,0,7,0,0,0,0,0,0,0,7,723,0,1.6788617886178865,1.4214092140921408,1.5,1.0434782608695652,1.0434782608695652,54.42333785617368 +130404,Panamá Oeste,Chame,Cabuya,1195,6,0,4,0,0,0,0,0,0,0,0,1,0,0,1,491,152,15,629,15,0,0,0,14,1,621,1,0,18,1,3,15,0,0,326,16,293,3,16,0,5,631,15,3,0,0,10,659,0,363,64,8,70,41,0,2,20,592,45,0,0,620,5,9,22,0,3,0,638,10,11,0,0,0,0,269,374,0,15,1,0,22,572,58,0,0,0,0,1,0,3,2,1,79,1127,6.585889570552148,20.34355828220859,6.611963190184049,20.6319018404908,1.0409711684370258,3.1669195751138086,2.056145675265554,687,384,757,28,80,31,34,21,1,28,5,4,18,0,41,24,8,11,6,2,14,1698,275,0,619,1354,0,1152,821,0,1859,114,0,516,1457,0,481,35,1405,52,0,53,22,38,1,43,51,74,52,53,465,0,0,13,61,94,222,52,100,361,5,41,9,17,13,49,19,42,3,0,19,0,1,0,0,0,731,120,913,0,2,42,15,150,310,364,56,33,359,79,163,63,46,0,52,0,54,1065,1013,128,246,74,290,9,1,14,54,2,73,9,445,219,0,0,1161,419,14,36,9,109,0,16,0,0,58,46,37,40,35,136,94,166,40,199,861,206,88,110,165,161,121,53,59,13,12,0,4,0,6,219,23.0,23.0,31.0,28.0,25.0,34.0,34.0,37.0,41.0,38.0,39.0,24.0,43.0,32.0,37.0,34.0,31.0,36.0,32.0,30.0,30.0,39.0,22.0,24.0,13.0,29.0,25.0,38.0,24.0,25.0,21.0,31.0,30.0,17.0,29.0,27.0,31.0,32.0,42.0,31.0,28.0,32.0,25.0,25.0,23.0,23.0,25.0,25.0,28.0,25.0,22.0,26.0,22.0,23.0,21.0,25.0,28.0,25.0,16.0,22.0,15.0,24.0,20.0,23.0,16.0,17.0,13.0,11.0,13.0,20.0,17.0,12.0,13.0,11.0,14.0,15.0,15.0,15.0,12.0,7.0,7.0,11.0,8.0,8.0,5.0,4.0,6.0,5.0,7.0,3.0,2.0,2.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,489,1310,279,0,130,184,175,163,128,141,128,163,133,126,114,116,98,74,67,64,39,25,6,3,1,0,2029,25,19,5,0,2029,36,8,5,0,585,13,83,316,54,14,524,489,0,1116,915,47,0,8,51,11,0,0,0,2,0,0,20,1986,0,81,82,106,12,1,10,388,1398,0,330,463,135,11,12,1127,0,2.069739952718676,0.0,3.046017699115044,0.0,7.884985563041386,31,35,43,5,0,5,151,417,0,47,57,24,56,95,108,80,49,74,32,22,6,10,2,6,18,666,21,599,88,531,156,119,568,577,110,108,579,352,335,119,568,636,51,613,74,347,266,208,479,457,230,227,460,186,501,162,525,10,677,146,398,128,15,0,404,283,0,1,14,1,0,0,0,2,0,0,8,661,0,1.5502183406113537,1.4745269286754004,1.1666666666666667,1.0,1.0,51.9839883551674 +130405,Panamá Oeste,Chame,Chicá,599,2,0,0,0,0,0,0,0,0,0,0,0,0,0,15,224,40,11,274,5,0,0,0,11,0,273,2,1,4,1,1,8,0,0,221,1,47,0,9,0,12,281,3,0,0,0,6,290,0,228,32,21,23,7,0,0,9,258,23,0,0,269,0,0,10,2,9,0,276,7,5,2,0,0,0,96,184,0,9,1,0,3,198,54,0,0,1,0,1,0,26,7,0,0,601,6.419607843137255,11.31372549019608,6.729411764705882,12.847058823529412,1.0241379310344827,3.206896551724138,2.1517241379310343,297,179,300,18,53,4,11,4,1,8,1,0,5,1,5,5,6,9,12,1,7,687,155,0,158,684,0,553,289,0,777,65,0,213,629,0,189,24,602,27,0,27,17,14,5,12,21,28,19,26,190,0,0,3,28,33,87,19,30,159,0,0,5,15,20,37,31,9,2,0,4,0,0,0,1,0,380,53,334,0,2,7,1,33,126,130,19,26,137,63,78,53,36,6,51,0,0,468,414,44,106,54,205,7,0,8,0,2,62,11,198,7,0,0,481,180,3,4,16,77,2,3,1,0,1,10,26,21,19,55,88,73,23,117,431,100,49,50,54,69,54,29,23,6,6,3,0,1,0,7,5.0,10.0,8.0,17.0,11.0,24.0,10.0,8.0,9.0,13.0,18.0,16.0,21.0,11.0,13.0,16.0,9.0,9.0,12.0,11.0,9.0,15.0,7.0,12.0,9.0,11.0,10.0,11.0,9.0,9.0,13.0,14.0,16.0,16.0,12.0,13.0,19.0,12.0,11.0,7.0,14.0,12.0,9.0,10.0,7.0,10.0,7.0,11.0,10.0,10.0,14.0,9.0,10.0,8.0,13.0,9.0,5.0,11.0,5.0,12.0,9.0,10.0,15.0,6.0,13.0,12.0,9.0,10.0,15.0,12.0,7.0,3.0,7.0,3.0,4.0,6.0,8.0,6.0,2.0,5.0,3.0,3.0,5.0,6.0,1.0,4.0,0.0,5.0,2.0,1.0,1.0,0.0,2.0,0.0,4.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,194,541,147,0,51,64,79,57,52,50,71,62,52,48,54,42,53,58,24,27,18,12,7,1,0,0,856,21,3,2,0,856,21,3,2,0,236,5,52,161,33,8,193,194,0,566,300,16,0,0,4,9,0,0,0,3,0,0,1,865,0,1,8,39,1,1,0,57,775,0,108,178,42,3,1,550,0,2.127371273712737,0.0,2.953307392996109,0.0,8.138321995464853,0,3,13,1,0,0,24,256,0,23,17,13,26,41,41,36,23,45,13,8,1,7,1,0,2,290,7,265,32,246,51,45,252,114,183,5,292,154,143,8,289,268,29,256,41,163,93,68,229,219,78,102,195,53,244,41,256,118,179,58,175,59,5,0,216,81,0,0,2,1,0,0,0,1,0,0,1,292,0,1.5757575757575757,1.393939393939394,1.0,1.0,1.0,55.38383838383838 +130406,Panamá Oeste,Chame,El Líbano,165,18,0,2,0,0,0,0,0,0,0,0,0,0,0,1,97,8,5,102,4,0,1,0,3,1,106,1,0,2,1,0,1,0,0,69,3,39,0,0,0,0,105,2,1,0,0,3,111,0,29,18,1,18,8,0,1,6,95,9,0,0,91,2,0,9,0,9,0,105,0,4,1,0,0,1,26,79,0,5,1,0,0,109,2,0,0,0,0,0,0,0,0,0,0,185,6.783783783783784,23.69369369369369,6.801801801801802,23.69369369369369,1.0,3.1621621621621623,2.018018018018018,111,41,105,8,15,2,6,1,2,3,2,0,3,0,13,3,0,0,0,1,1,230,52,0,68,214,0,189,93,0,258,24,0,70,212,0,61,9,197,15,0,15,3,1,0,10,13,12,10,7,55,0,0,1,11,16,26,6,12,63,0,0,0,0,4,3,7,6,0,0,1,0,0,0,0,0,98,19,127,0,1,5,4,25,40,46,8,8,70,6,21,4,13,0,1,1,0,139,160,21,50,4,40,0,0,1,0,0,10,0,99,3,0,0,159,63,1,0,3,17,0,1,0,0,0,9,6,8,5,21,9,25,6,28,154,16,9,17,22,24,25,11,11,4,2,0,0,0,1,3,5.0,5.0,2.0,5.0,6.0,6.0,5.0,6.0,8.0,7.0,1.0,6.0,5.0,3.0,3.0,2.0,7.0,4.0,2.0,5.0,9.0,3.0,3.0,5.0,3.0,3.0,6.0,1.0,3.0,4.0,4.0,6.0,9.0,5.0,6.0,5.0,0.0,3.0,7.0,1.0,4.0,2.0,6.0,0.0,4.0,2.0,5.0,6.0,2.0,4.0,2.0,5.0,4.0,4.0,5.0,1.0,2.0,1.0,4.0,1.0,2.0,3.0,5.0,2.0,2.0,0.0,3.0,4.0,3.0,3.0,2.0,0.0,1.0,1.0,5.0,0.0,2.0,3.0,3.0,2.0,1.0,0.0,2.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,73,184,42,0,23,32,18,20,23,17,30,16,16,19,20,9,14,13,9,10,8,0,2,0,0,0,293,2,4,0,0,293,2,4,0,0,73,4,42,25,12,4,66,73,0,152,146,1,0,7,4,0,0,0,0,13,0,0,0,275,0,18,29,30,0,0,0,86,136,0,47,51,23,2,0,176,0,2.19672131147541,0.0,2.9431818181818183,0.0,7.451505016722408,4,9,18,0,0,0,35,45,0,10,3,3,12,19,15,12,11,12,6,2,2,2,0,1,1,107,4,100,11,90,21,13,98,99,12,14,97,61,50,2,109,101,10,97,14,77,20,30,81,84,27,32,79,8,103,4,107,1,110,38,49,21,3,0,67,44,0,0,1,0,0,0,0,4,0,0,0,106,0,1.2522522522522523,1.4414414414414414,0.0,1.2,1.2,52.57657657657658 +130407,Panamá Oeste,Chame,Las Lajas,2841,4,518,12,0,0,0,0,0,0,0,10,2,0,0,86,1099,95,19,1263,17,0,0,0,18,1,1286,5,1,1,2,1,1,0,2,726,315,232,2,18,0,6,1227,8,46,0,0,18,1299,0,1507,73,203,251,42,0,16,192,1030,61,0,0,1273,1,4,17,1,3,0,1156,70,26,44,1,1,1,820,464,1,12,1,1,343,719,216,0,0,0,0,1,0,19,0,1,3225,162,6.779342723004695,17.965571205007826,6.815336463223788,18.50625978090767,1.0300230946882216,3.340261739799846,2.139337952270978,1350,735,1274,105,216,29,26,22,9,57,13,9,40,8,52,18,6,20,21,13,23,3162,504,0,1174,2492,0,2359,1307,0,3438,228,0,952,2714,0,805,147,2620,94,0,96,28,85,7,73,76,96,94,88,596,1,4,15,102,163,354,119,154,838,1,55,25,50,59,117,163,126,12,4,60,1,0,0,4,0,1473,177,1646,0,2,47,78,366,563,553,75,89,749,91,374,236,84,2,22,3,64,1956,1937,175,567,252,518,36,0,12,65,3,76,12,962,332,0,0,1760,972,16,57,33,391,8,55,4,0,69,98,113,121,83,290,73,315,65,423,1578,179,136,176,259,351,339,159,166,77,49,27,21,18,26,332,55.0,47.0,61.0,64.0,61.0,60.0,74.0,64.0,55.0,56.0,58.0,48.0,51.0,55.0,69.0,54.0,57.0,58.0,49.0,62.0,66.0,56.0,63.0,70.0,56.0,49.0,58.0,55.0,46.0,65.0,49.0,42.0,54.0,53.0,51.0,44.0,60.0,40.0,48.0,55.0,56.0,43.0,54.0,53.0,48.0,44.0,53.0,50.0,64.0,44.0,53.0,51.0,43.0,44.0,42.0,44.0,42.0,47.0,35.0,41.0,42.0,33.0,35.0,44.0,47.0,30.0,46.0,40.0,29.0,23.0,26.0,32.0,27.0,26.0,22.0,32.0,25.0,20.0,25.0,10.0,11.0,9.0,10.0,8.0,15.0,5.0,4.0,4.0,6.0,6.0,1.0,0.0,2.0,6.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,878,2512,503,0,288,309,281,280,311,273,249,247,254,255,233,209,201,168,133,112,53,25,10,1,1,0,3469,210,214,0,0,3476,258,159,0,0,1036,36,244,714,118,55,812,878,0,1901,1656,336,0,21,78,13,0,4,0,0,0,0,11,3766,0,323,174,199,13,5,10,651,2518,0,659,776,234,27,119,2078,0,1.913887204366283,0.0,2.778280542986425,0.0,8.846134086822502,100,78,88,8,4,5,223,844,0,81,52,31,68,147,168,176,126,168,90,73,26,40,17,39,36,1323,27,1266,84,1125,225,184,1166,1227,123,469,881,662,688,318,1032,1265,85,1225,125,924,301,540,810,939,411,567,783,262,1088,159,1191,19,1331,323,758,232,37,0,905,445,0,4,22,5,0,1,0,0,0,0,3,1315,0,1.448888888888889,1.4348148148148148,1.0909090909090908,1.0277777777777777,1.0277777777777777,52.12814814814815 +130408,Panamá Oeste,Chame,Nueva Gorgona,3708,7,1529,6,0,1,0,0,0,0,0,1,2,0,0,127,1432,113,21,1607,65,0,0,0,20,1,1665,17,0,3,0,4,0,0,4,990,350,310,3,31,3,6,1578,16,83,0,0,16,1693,0,2992,144,133,174,114,0,14,166,1328,179,2,4,1636,7,0,35,0,15,0,1254,142,111,182,3,0,1,1113,552,0,27,1,0,1176,366,50,11,2,1,0,0,1,80,0,6,5162,92,6.846105527638191,22.451005025125628,6.9290201005025125,23.275125628140703,1.015357353809805,3.432368576491436,2.108682811577082,1722,994,1605,118,227,34,39,30,17,56,21,15,56,11,87,27,10,20,16,10,21,4010,659,0,1617,3052,0,3604,1065,0,4383,286,0,1220,3449,0,1025,195,3305,144,0,154,61,62,3,99,131,155,113,149,743,1,0,21,185,273,411,128,198,849,11,54,54,80,102,177,109,229,17,2,81,1,0,2,14,0,1763,267,2133,0,12,134,50,505,706,745,106,71,845,153,361,309,280,4,10,37,3,2453,2492,203,613,329,805,28,4,14,6,3,128,8,1654,42,0,0,2357,1116,22,54,70,444,14,74,12,0,7,71,138,151,77,369,110,462,87,558,2362,285,143,225,331,396,375,178,195,100,94,33,59,19,108,42,72.0,62.0,67.0,75.0,86.0,76.0,67.0,83.0,103.0,91.0,80.0,78.0,59.0,82.0,74.0,75.0,67.0,66.0,75.0,80.0,71.0,79.0,82.0,96.0,57.0,78.0,69.0,64.0,68.0,64.0,72.0,73.0,57.0,73.0,62.0,72.0,54.0,67.0,65.0,73.0,53.0,49.0,65.0,61.0,61.0,73.0,63.0,68.0,51.0,54.0,71.0,63.0,60.0,66.0,54.0,50.0,56.0,44.0,34.0,51.0,50.0,32.0,53.0,49.0,57.0,47.0,41.0,47.0,46.0,36.0,43.0,34.0,38.0,42.0,30.0,28.0,25.0,23.0,23.0,17.0,20.0,15.0,13.0,10.0,9.0,8.0,12.0,5.0,5.0,6.0,2.0,4.0,2.0,3.0,6.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1155,3147,643,0,362,420,373,363,385,343,337,331,289,309,314,235,241,217,187,116,67,36,17,3,0,0,4230,435,258,22,0,4234,518,171,22,0,1396,34,81,903,106,46,1224,1155,0,2186,2251,508,0,14,51,2,3,1,1,8,0,0,36,4829,0,107,190,365,57,5,16,1101,3104,0,689,779,232,22,268,2955,0,1.9326968973747016,0.0,2.83764367816092,0.0,8.677249747219413,52,90,141,27,3,9,394,1006,0,128,63,36,104,185,214,184,149,207,105,81,50,47,46,111,9,1705,17,1603,119,1456,266,231,1491,1564,158,694,1028,915,807,337,1385,1621,101,1562,160,1171,391,735,987,1277,445,711,1011,184,1538,130,1592,21,1701,429,989,266,38,1,1112,610,0,8,9,1,2,1,0,3,0,0,20,1678,0,1.423679628554846,1.4463145676146256,1.2352941176470589,1.018867924528302,1.018867924528302,51.14343786295006 +130409,Panamá Oeste,Chame,Punta Chame,439,2,441,1,0,0,0,0,0,0,0,0,5,0,0,5,179,0,4,181,3,1,0,0,3,0,182,0,2,1,0,0,1,0,2,151,13,23,0,0,1,0,183,1,2,0,0,2,188,0,476,14,181,6,18,0,5,18,140,24,1,0,175,3,0,0,1,9,0,33,1,143,9,0,0,2,89,98,0,1,0,0,0,144,43,0,0,1,0,0,0,0,0,0,0,888,6.957219251336898,23.684491978609625,7.0,23.97860962566845,1.0,3.4680851063829787,1.9095744680851063,193,90,138,14,18,2,5,2,1,8,0,0,6,0,13,2,2,1,1,0,0,409,51,0,141,319,0,384,76,0,432,28,0,92,368,0,81,11,352,16,0,16,5,8,0,7,6,13,7,12,96,0,0,1,25,16,47,16,18,101,0,1,4,3,8,7,7,25,0,1,7,0,0,0,3,0,235,12,173,0,0,5,2,34,49,71,7,12,115,8,25,24,21,0,0,52,0,256,221,25,83,26,104,7,0,0,0,0,13,2,122,1,0,0,252,116,1,1,3,38,0,6,3,0,2,18,10,23,3,51,52,19,14,55,234,43,17,30,32,34,40,7,11,6,10,4,3,2,3,1,4.0,3.0,2.0,8.0,8.0,7.0,7.0,9.0,5.0,4.0,5.0,5.0,5.0,10.0,5.0,6.0,6.0,5.0,3.0,7.0,8.0,9.0,3.0,12.0,3.0,3.0,10.0,9.0,6.0,2.0,8.0,9.0,5.0,6.0,6.0,12.0,5.0,9.0,8.0,6.0,6.0,5.0,7.0,6.0,7.0,2.0,3.0,4.0,8.0,15.0,9.0,7.0,8.0,9.0,3.0,9.0,8.0,6.0,10.0,6.0,10.0,6.0,9.0,8.0,3.0,1.0,4.0,2.0,2.0,3.0,2.0,5.0,3.0,1.0,5.0,3.0,3.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,1.0,1.0,2.0,0.0,3.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,87,340,50,0,25,32,30,27,35,30,34,40,31,32,36,39,36,12,16,9,3,7,3,0,0,0,415,45,17,0,0,415,46,16,0,0,143,9,54,73,22,2,87,87,0,230,199,48,0,0,4,0,0,0,0,0,0,0,2,471,0,17,18,36,10,8,0,167,221,0,91,77,25,1,8,275,0,1.9322916666666667,0.0,2.763358778625954,0.0,8.723270440251572,4,8,13,3,4,0,70,91,0,20,13,13,13,27,23,28,10,12,7,6,5,4,3,4,0,191,2,178,15,162,31,34,159,186,7,55,138,111,82,25,168,184,9,175,18,102,73,72,121,168,25,77,116,5,188,4,189,3,190,71,84,33,5,0,122,71,0,0,1,0,0,0,0,0,0,0,0,192,0,1.3264248704663213,1.145077720207254,1.0,1.0,1.0,52.95336787564767 +130410,Panamá Oeste,Chame,Sajalices,1129,1,3,2,0,0,0,0,3,0,0,1,1,0,0,4,738,94,23,811,25,0,0,0,22,1,819,5,3,5,2,4,17,0,4,443,25,371,0,16,0,4,838,14,2,0,0,5,859,0,146,28,14,65,23,0,2,37,788,31,0,1,815,4,0,26,0,14,0,843,3,12,0,0,0,1,339,507,0,11,1,1,32,778,19,5,0,0,0,1,0,23,1,0,0,1140,6.215922798552473,21.47285886610374,6.254523522316044,22.00120627261761,1.019790454016298,3.408614668218859,2.008149010477299,878,504,1214,43,183,19,36,22,7,68,5,2,23,0,39,10,4,9,9,0,6,2360,414,0,595,2179,0,1640,1134,0,2605,169,0,812,1962,0,727,85,1853,109,0,109,37,32,1,69,86,85,92,95,487,0,0,7,108,152,295,108,162,495,3,2,42,57,43,77,68,46,6,0,9,0,0,0,1,0,1118,83,1275,0,0,29,40,95,520,570,56,34,433,66,292,37,213,4,14,114,2,1535,1469,105,328,49,684,4,0,1,4,3,62,11,1067,0,0,0,1620,635,7,6,40,154,5,8,1,0,5,11,59,56,43,240,195,268,93,231,1677,201,90,171,287,211,187,75,73,14,10,3,4,1,0,0,48.0,54.0,57.0,71.0,47.0,43.0,47.0,64.0,46.0,51.0,52.0,64.0,51.0,51.0,52.0,56.0,33.0,52.0,46.0,64.0,46.0,53.0,56.0,61.0,52.0,57.0,55.0,48.0,45.0,50.0,50.0,33.0,44.0,42.0,47.0,47.0,42.0,45.0,38.0,32.0,37.0,28.0,41.0,27.0,27.0,33.0,28.0,38.0,34.0,44.0,33.0,40.0,27.0,40.0,35.0,34.0,24.0,27.0,26.0,33.0,30.0,22.0,28.0,18.0,17.0,9.0,21.0,12.0,24.0,15.0,12.0,17.0,10.0,11.0,6.0,7.0,9.0,14.0,13.0,4.0,3.0,8.0,4.0,3.0,6.0,6.0,3.0,3.0,5.0,2.0,3.0,1.0,2.0,1.0,5.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,798,1965,241,0,277,251,270,251,268,255,216,204,160,177,175,144,115,81,56,47,24,19,12,2,0,0,2907,67,15,15,0,2907,74,8,15,0,925,15,80,310,58,11,807,798,0,1949,1018,37,0,2,41,18,1,1,0,1,0,1,42,2897,0,28,90,216,18,3,0,695,1954,0,358,439,90,12,6,2099,0,2.124382207578254,0.0,3.104089219330855,0.0,7.769973368841544,16,30,68,9,0,0,233,522,0,69,41,33,68,149,140,118,65,99,42,23,15,10,2,2,0,866,12,782,96,745,133,88,790,748,130,195,683,488,390,46,832,792,86,757,121,520,237,219,659,502,376,272,606,38,840,29,849,15,863,149,508,208,13,3,553,325,0,0,9,3,0,1,0,0,0,1,14,850,0,1.742338251986379,1.667423382519864,1.0,1.032258064516129,1.032258064516129,49.67995444191344 +130411,Panamá Oeste,Chame,Sorá,1332,3,1,0,0,0,0,0,0,0,0,0,0,0,0,2,535,88,14,594,31,0,0,0,13,1,559,1,13,29,1,5,27,0,4,190,89,323,1,29,0,7,607,26,1,0,0,5,639,0,540,82,45,23,7,0,2,38,539,57,0,3,535,39,9,31,0,25,0,499,46,83,10,1,0,0,260,320,2,52,4,1,0,378,236,3,1,3,0,6,0,11,1,0,346,990,6.366449511400652,21.72801302931596,6.929967426710098,23.71986970684039,1.0156494522691706,3.456964006259781,2.1940532081377158,649,360,613,55,112,10,19,18,5,27,1,2,11,1,18,9,1,9,8,2,7,1561,219,0,510,1270,0,1393,387,0,1672,108,0,438,1342,0,397,41,1309,33,0,33,25,42,1,35,52,60,65,73,434,0,0,0,54,82,148,49,69,280,0,13,19,34,21,56,33,54,4,3,39,0,0,1,1,0,678,38,905,0,1,18,10,173,274,360,29,69,196,66,171,143,42,0,87,3,5,999,884,45,252,147,228,8,0,28,5,12,79,8,569,40,0,0,1063,365,0,10,16,125,2,39,1,0,5,20,31,27,21,73,124,108,28,279,924,146,74,88,135,176,108,57,43,32,27,12,12,4,5,40,25.0,26.0,29.0,23.0,14.0,32.0,41.0,28.0,25.0,19.0,34.0,28.0,25.0,21.0,29.0,34.0,37.0,29.0,30.0,26.0,28.0,20.0,38.0,34.0,22.0,27.0,21.0,32.0,17.0,25.0,26.0,13.0,27.0,22.0,28.0,23.0,19.0,24.0,19.0,27.0,18.0,24.0,28.0,27.0,21.0,19.0,31.0,26.0,22.0,20.0,23.0,22.0,20.0,26.0,22.0,13.0,13.0,22.0,16.0,25.0,22.0,18.0,10.0,16.0,16.0,20.0,20.0,20.0,26.0,11.0,14.0,19.0,15.0,22.0,13.0,11.0,21.0,13.0,9.0,12.0,12.0,7.0,7.0,5.0,6.0,4.0,7.0,3.0,3.0,2.0,3.0,4.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,399,1168,316,0,117,145,137,156,142,122,116,112,118,118,113,89,82,97,83,66,37,19,8,3,3,0,1746,62,71,4,0,1749,120,10,4,0,514,10,77,343,54,22,464,399,0,886,881,116,0,0,29,1,0,0,0,2,0,0,18,1833,0,8,58,76,8,1,2,121,1609,0,181,246,102,5,84,1265,0,2.16490765171504,0.0,3.147410358565737,0.0,8.033988316516197,3,18,28,2,1,2,55,540,0,41,40,33,45,68,110,72,43,62,35,28,13,16,11,10,22,636,13,543,106,475,174,116,533,374,275,57,592,374,275,49,600,616,33,512,137,342,170,190,459,430,219,206,443,258,391,260,389,28,621,172,353,116,8,0,496,153,0,0,7,0,0,0,0,0,0,0,5,637,0,1.539291217257319,1.362095531587057,1.0,1.04,1.04,54.76425269645608 +130701,Panamá Oeste,La Chorrera,Barrio Balboa,9472,35,704,138,0,0,0,6,0,0,1,1,14,4,0,1398,6058,1024,65,7798,682,0,2,0,60,3,8349,150,12,2,1,14,8,0,9,7577,238,671,15,25,3,16,8268,41,73,0,0,163,8545,29,282,166,546,618,163,0,284,1351,6199,597,73,41,8332,19,2,192,0,0,0,8224,85,144,90,2,0,0,4870,3576,0,93,5,1,8122,290,7,1,0,0,1,0,109,8,4,3,10375,0,6.849744625252406,21.380686542344694,6.873737973631073,21.74711961040504,1.0183733177296663,3.589467524868344,2.2304271503803395,8722,4217,8469,464,2149,303,463,282,88,441,79,101,365,22,615,216,111,197,203,142,189,21821,3125,0,9108,15838,0,19542,5404,0,23699,1247,0,6393,18553,0,5079,1314,17847,706,0,728,154,339,83,433,487,684,560,533,2549,3,6,146,833,1078,2596,817,1449,5790,16,51,433,557,823,933,1383,945,163,29,325,0,0,2,18,0,9852,1494,11422,0,49,674,179,2517,3842,4341,554,168,7131,716,1727,387,988,74,45,17,3,12888,13277,2077,5037,424,3352,170,1,20,7,24,659,79,6850,50,0,0,11105,7652,165,103,417,2839,154,315,18,0,7,563,1472,1140,647,2405,92,2175,976,1869,11063,2269,793,1143,1872,2098,2807,1391,1385,648,308,111,135,44,48,50,306.0,288.0,295.0,330.0,352.0,344.0,354.0,363.0,387.0,378.0,407.0,352.0,346.0,356.0,310.0,359.0,327.0,362.0,342.0,366.0,381.0,434.0,423.0,472.0,404.0,480.0,442.0,410.0,347.0,358.0,353.0,334.0,341.0,340.0,331.0,272.0,295.0,324.0,315.0,296.0,327.0,285.0,285.0,286.0,295.0,284.0,318.0,295.0,340.0,329.0,335.0,385.0,359.0,369.0,359.0,322.0,346.0,338.0,320.0,334.0,352.0,288.0,310.0,282.0,251.0,261.0,256.0,245.0,215.0,202.0,204.0,217.0,207.0,205.0,157.0,160.0,160.0,150.0,149.0,128.0,120.0,106.0,103.0,90.0,84.0,72.0,63.0,66.0,39.0,53.0,42.0,26.0,29.0,20.0,14.0,12.0,10.0,4.0,8.0,6.0,3.0,4.0,4.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5168,17102,3895,0,1571,1826,1771,1756,2114,2037,1699,1502,1478,1566,1807,1660,1483,1179,990,747,503,293,131,40,12,0,24976,782,354,53,0,24985,835,292,53,0,5349,505,1579,4753,1033,385,7395,5166,0,9982,15721,462,0,183,367,49,1,6,3,21,5,1,400,25129,0,1466,1218,1382,204,93,89,3783,17930,0,5300,5468,2641,148,29,12579,0,1.9645689655172411,0.0,2.745948641236599,0.0,9.523332696350089,514,452,581,102,50,46,1477,5500,0,368,404,228,436,808,955,1100,834,1375,802,481,294,325,141,138,13,8541,181,8114,608,7544,1178,1502,7220,8003,719,2040,6682,4470,4252,1847,6875,8230,492,7899,823,5859,2040,3282,5440,6607,2115,3530,5192,1412,7310,619,8103,70,8652,1877,4300,2309,236,6,4978,3744,0,37,125,17,0,5,1,6,2,0,159,8370,0,1.476626947754354,1.521196150320807,1.2921348314606742,1.0417495029821071,1.0417495029821071,54.1425131850493 +130702,Panamá Oeste,La Chorrera,Barrio Colón,14707,15,757,34,1,0,0,3,1,0,1,1,6,0,0,8000,4211,518,50,12415,314,2,2,0,38,8,12289,462,0,5,3,8,6,1,5,9396,3188,170,4,4,1,16,12546,23,99,2,0,109,12779,4,486,187,589,1249,219,0,4249,1689,5977,373,76,415,12430,48,0,288,1,12,0,9677,759,2261,73,2,0,7,10010,2658,0,99,6,6,12306,401,28,2,0,0,0,3,0,29,9,1,15526,0,6.941107184923439,22.72516686297605,6.941892422457793,22.732391048292108,1.0148681430471869,3.88841067376164,2.463338289381016,12976,7014,13508,650,2009,648,578,443,216,475,131,202,374,49,802,263,123,245,243,185,236,34512,3138,0,20488,17162,0,32726,4924,0,36087,1563,0,11069,26581,0,7039,4030,25728,853,0,930,285,556,117,619,720,817,688,719,2794,3,8,261,933,1239,2654,1049,1692,8446,17,240,820,1183,1604,2654,2957,1857,416,88,1211,5,3,6,59,0,16892,1709,15753,0,66,692,219,3418,6619,4716,544,456,13206,793,1674,332,2092,62,84,20,32,18979,20294,4452,8295,371,4720,322,6,55,74,19,534,84,11203,1743,0,0,12372,12235,285,289,821,6763,366,1165,58,0,90,1607,3730,2559,1394,3265,148,2463,1398,1947,16366,1492,802,1146,1841,2354,3299,2985,3131,1857,955,445,475,178,204,1743,332.0,362.0,463.0,466.0,496.0,520.0,569.0,576.0,604.0,531.0,589.0,594.0,549.0,559.0,550.0,544.0,568.0,512.0,602.0,547.0,560.0,578.0,651.0,566.0,589.0,623.0,602.0,526.0,521.0,453.0,533.0,499.0,546.0,582.0,592.0,553.0,618.0,585.0,643.0,638.0,677.0,601.0,586.0,589.0,590.0,557.0,536.0,535.0,541.0,519.0,557.0,553.0,514.0,524.0,544.0,485.0,508.0,500.0,470.0,437.0,422.0,401.0,399.0,372.0,356.0,320.0,313.0,323.0,283.0,274.0,235.0,228.0,232.0,208.0,190.0,176.0,197.0,151.0,185.0,156.0,132.0,91.0,116.0,84.0,82.0,79.0,67.0,56.0,49.0,54.0,36.0,32.0,26.0,31.0,29.0,19.0,16.0,14.0,11.0,3.0,7.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7760,27004,4509,0,2119,2800,2841,2773,2944,2725,2752,3037,3043,2688,2692,2400,1950,1513,1093,865,505,305,154,63,11,0,36168,2067,955,83,0,36196,2271,723,83,0,7413,561,1505,8813,1281,636,11304,7760,0,11119,26908,1246,0,440,508,42,1,10,7,84,10,6,736,37429,0,2614,1317,1513,351,132,187,6360,26799,0,10712,9077,3577,193,66,15648,0,1.647072021539152,0.0,2.4194260485651213,0.0,10.62396557431314,887,497,628,156,60,85,2389,8274,0,717,271,193,338,609,841,1097,1089,1924,1543,1066,765,953,490,520,553,12840,136,12511,465,11898,1078,2157,10819,12030,946,5463,7513,7203,5773,3938,9038,12506,470,12151,825,9718,2433,7250,5726,10922,2054,7725,5251,1377,11599,686,12290,132,12844,2318,7307,3026,325,6,7440,5536,0,118,172,13,1,3,4,33,5,2,288,12337,0,1.4619473116623016,1.5632414111847173,1.207920792079208,1.0563139931740615,1.0563139931740615,51.41669235511714 +130703,Panamá Oeste,La Chorrera,Amador,1476,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,203,822,28,889,136,0,0,0,27,1,845,0,21,84,9,21,70,1,2,245,38,716,10,40,1,3,961,71,3,0,0,18,1053,2,288,64,2,53,14,0,0,52,944,47,10,0,883,88,1,73,1,7,0,1022,0,17,0,5,9,0,104,818,0,103,27,1,1,636,79,93,13,144,9,28,0,18,29,3,0,1478,3.11731843575419,9.435754189944134,3.625698324022346,10.600558659217876,1.0237416904083572,3.0142450142450143,1.8233618233618236,1080,582,1239,97,181,19,35,24,4,45,5,3,22,1,52,19,7,18,23,12,14,2404,705,0,255,2854,0,973,2136,0,2847,262,0,818,2291,0,763,55,2127,164,0,166,31,52,11,88,95,133,128,119,948,0,2,2,84,137,337,76,125,418,1,7,15,21,28,23,20,34,1,2,4,0,0,0,1,0,1047,117,1577,0,1,62,18,75,494,884,92,32,521,80,178,62,96,1,188,17,1,1758,1579,68,599,65,332,29,0,50,1,20,164,17,962,59,0,0,2163,486,3,5,16,65,1,2,0,0,1,12,29,36,32,119,144,142,93,556,1759,508,108,154,252,241,125,55,44,18,10,0,1,1,2,59,61.0,60.0,58.0,49.0,64.0,67.0,54.0,59.0,58.0,66.0,80.0,60.0,55.0,56.0,43.0,59.0,42.0,41.0,50.0,65.0,53.0,57.0,65.0,45.0,54.0,50.0,57.0,51.0,53.0,55.0,63.0,44.0,43.0,52.0,50.0,52.0,39.0,37.0,40.0,54.0,48.0,52.0,49.0,32.0,32.0,45.0,51.0,28.0,42.0,37.0,36.0,36.0,40.0,24.0,33.0,31.0,37.0,20.0,29.0,28.0,27.0,25.0,27.0,29.0,29.0,14.0,17.0,19.0,21.0,7.0,10.0,17.0,14.0,12.0,16.0,18.0,17.0,12.0,17.0,7.0,12.0,11.0,14.0,9.0,8.0,6.0,5.0,1.0,5.0,2.0,4.0,3.0,2.0,0.0,0.0,0.0,1.0,1.0,3.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,890,2138,309,0,292,304,294,257,274,266,252,222,213,203,169,145,137,78,69,71,54,19,9,7,2,0,3284,24,20,9,0,3284,26,18,9,0,1079,10,167,281,91,5,814,890,0,1907,1413,17,0,9,119,14,9,1,0,10,0,1,19,3155,0,36,274,221,18,10,8,668,2102,0,353,419,64,14,6,2481,0,2.5199692780337943,0.0,3.5551763367463027,0.0,6.554689841174707,14,88,66,10,6,1,238,657,0,113,81,57,121,158,197,111,78,89,27,19,7,3,4,2,11,1027,53,731,349,688,392,126,954,632,448,31,1049,424,656,6,1074,942,138,745,335,116,629,108,972,382,698,182,898,494,586,449,631,20,1060,247,638,178,17,0,723,357,0,2,34,5,1,1,0,3,0,0,9,1025,0,1.6277777777777778,1.462037037037037,1.0,1.0816326530612246,1.0816326530612246,49.6787037037037 +130704,Panamá Oeste,La Chorrera,Arosemena,278,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,88,92,4,167,13,1,0,0,3,0,168,0,0,5,0,1,7,0,3,59,2,120,0,3,0,0,170,13,1,0,0,0,184,0,62,7,4,13,8,0,0,6,154,24,0,0,161,12,0,11,0,0,0,184,0,0,0,0,0,0,21,140,2,21,0,0,1,141,31,5,0,0,1,4,0,1,0,0,0,279,6.838150289017341,11.508670520231211,6.855491329479769,11.919075144508671,1.0108695652173914,2.9347826086956523,1.75,186,111,189,28,25,5,16,9,2,5,2,1,7,0,5,0,0,3,1,0,1,508,46,0,61,493,0,429,125,0,507,47,0,169,385,0,152,17,373,12,0,16,16,7,4,20,16,24,22,24,162,0,0,0,15,19,56,17,23,66,5,4,5,7,8,11,4,1,0,1,1,0,0,0,0,0,233,4,249,0,0,3,0,8,90,141,7,3,100,6,37,6,12,0,76,0,0,323,263,30,162,6,32,7,0,0,0,1,22,0,147,1,0,0,373,94,0,1,4,13,0,1,0,0,0,16,7,5,10,30,13,26,15,115,275,81,15,38,53,57,37,13,9,0,0,2,4,0,1,1,8.0,8.0,7.0,9.0,11.0,13.0,10.0,13.0,10.0,11.0,10.0,13.0,9.0,10.0,8.0,7.0,7.0,8.0,9.0,13.0,8.0,12.0,13.0,14.0,9.0,13.0,11.0,8.0,13.0,11.0,14.0,8.0,12.0,11.0,9.0,8.0,5.0,7.0,10.0,6.0,9.0,4.0,10.0,5.0,9.0,5.0,4.0,6.0,3.0,10.0,4.0,6.0,8.0,2.0,8.0,3.0,6.0,7.0,6.0,7.0,2.0,6.0,2.0,9.0,0.0,5.0,4.0,1.0,3.0,3.0,2.0,2.0,4.0,3.0,2.0,3.0,2.0,2.0,3.0,2.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,150,387,49,0,43,57,50,44,56,56,54,36,37,28,28,29,19,16,13,12,5,2,1,0,0,0,583,1,0,2,0,583,1,0,2,0,201,1,40,50,5,0,139,150,0,290,295,1,0,0,16,1,0,0,0,0,0,0,0,569,0,0,4,10,0,0,0,10,562,0,92,89,10,0,0,395,0,2.28110599078341,0.0,3.326388888888889,0.0,6.800341296928328,0,4,6,0,0,0,1,175,0,2,12,7,22,30,37,27,12,20,7,1,3,2,1,2,1,182,4,148,38,131,55,18,168,139,47,8,178,80,106,1,185,159,27,141,45,33,108,14,172,139,47,53,133,64,122,50,136,0,186,47,101,35,3,1,162,24,0,0,6,1,0,0,0,0,0,0,0,179,0,1.7272727272727273,1.4064171122994653,0.0,1.0,1.0,48.553763440860216 +130705,Panamá Oeste,La Chorrera,El Arado,2793,34,11,14,0,0,0,0,0,0,0,4,3,0,0,840,824,229,17,1832,61,0,0,0,17,0,1850,7,2,18,1,7,23,0,2,1299,235,340,10,19,1,6,1841,39,19,2,0,9,1910,9,320,257,168,163,25,0,886,125,793,102,4,0,1761,16,0,51,2,80,0,1275,398,233,2,0,0,2,1319,542,0,42,4,3,1392,210,209,33,14,7,1,2,11,28,3,0,0,2859,6.335726118166758,20.812810601877416,6.431805632247377,21.32136940916621,1.02565445026178,3.64869109947644,2.457591623036649,1966,1193,2164,270,269,63,70,46,22,68,22,29,54,6,126,227,20,55,45,23,53,5077,731,0,2584,3224,0,4609,1199,0,5383,425,0,1947,3861,0,1437,510,3678,183,0,191,79,126,13,136,135,178,165,156,747,1,3,18,183,215,497,165,223,1133,10,52,99,153,162,356,302,141,39,12,111,0,0,0,7,0,2577,279,2223,0,10,101,76,198,1030,816,130,49,2035,114,233,79,189,14,136,4,2,3075,3167,529,1534,90,570,35,4,41,3,4,129,16,2240,34,0,0,2478,1582,18,61,99,711,36,87,7,0,3,183,384,334,212,538,122,350,238,492,2919,434,174,239,282,394,502,370,459,205,105,40,47,13,25,34,120.0,97.0,118.0,99.0,118.0,121.0,122.0,132.0,112.0,124.0,119.0,122.0,115.0,108.0,93.0,91.0,90.0,92.0,82.0,83.0,90.0,82.0,88.0,95.0,94.0,127.0,107.0,103.0,114.0,104.0,109.0,89.0,120.0,136.0,108.0,101.0,116.0,107.0,130.0,112.0,118.0,93.0,95.0,78.0,70.0,80.0,70.0,52.0,61.0,63.0,63.0,64.0,63.0,60.0,58.0,54.0,56.0,56.0,43.0,54.0,33.0,34.0,36.0,33.0,26.0,44.0,23.0,25.0,27.0,20.0,25.0,26.0,18.0,16.0,19.0,20.0,19.0,23.0,10.0,16.0,13.0,20.0,10.0,12.0,10.0,6.0,6.0,3.0,5.0,3.0,2.0,4.0,2.0,3.0,1.0,3.0,2.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1720,4083,439,0,552,611,557,438,449,555,562,566,454,326,308,263,162,139,104,88,65,23,12,7,1,0,5976,155,94,17,0,5986,172,67,17,0,1635,69,97,1049,119,42,1511,1720,0,1803,4341,98,0,113,246,22,1,2,0,18,0,2,160,5678,0,357,357,491,98,22,22,1463,3432,0,1666,1734,175,32,16,2619,0,1.7637490317583269,0.0,2.554976851851852,0.0,8.916372957385454,114,89,200,39,10,13,512,989,0,98,73,27,80,124,200,197,190,309,226,156,92,92,44,43,8,1923,43,1802,164,1720,246,275,1691,1709,257,589,1377,1025,941,443,1523,1880,86,1771,195,1274,497,897,1069,1538,428,1087,879,427,1539,286,1680,21,1945,317,1239,363,47,0,1267,699,0,24,59,9,1,1,0,5,0,0,48,1819,0,1.564089521871821,1.61088504577823,1.0769230769230769,1.0689655172413792,1.0689655172413792,45.63479145473042 +130706,Panamá Oeste,La Chorrera,El Coco,8655,162,253,94,4,0,0,1,0,0,6,4,7,0,0,170,5306,1620,74,6459,637,1,0,0,64,9,6966,139,3,13,4,14,14,0,17,4506,376,2124,10,52,0,102,6948,56,28,0,0,138,7170,4,519,397,371,421,282,0,208,862,5776,303,17,4,6880,28,0,253,0,9,0,7007,43,116,3,1,0,0,3048,3943,1,172,3,3,5319,1545,91,30,1,0,2,1,119,26,23,13,8949,237,6.003594536304817,14.316894320632638,6.05607476635514,14.534004313443566,1.0220362622036263,3.2474198047419804,1.9856345885634588,7339,3998,8018,677,1330,203,233,170,74,294,66,48,349,8,501,143,63,154,171,151,122,19008,2588,0,6312,15284,0,15267,6329,0,20171,1425,0,6275,15321,0,5353,922,14469,852,0,868,113,322,83,455,522,651,551,529,2968,1,15,54,753,1130,2160,772,1238,5046,22,106,313,345,483,703,607,538,63,11,162,0,3,0,9,0,8058,1511,9760,0,79,550,182,1192,3915,3775,407,471,5835,437,1651,328,931,46,61,3,16,11368,11439,1342,4741,378,2656,120,2,31,38,35,495,69,8270,483,0,0,10848,6204,57,101,301,1616,46,144,12,0,41,296,861,782,566,2006,136,2153,975,1753,11222,1817,680,1040,1286,1537,2222,1010,901,334,152,45,42,13,23,483,294.0,288.0,314.0,315.0,397.0,380.0,342.0,407.0,367.0,374.0,413.0,357.0,367.0,368.0,349.0,356.0,386.0,346.0,347.0,417.0,366.0,381.0,442.0,422.0,370.0,394.0,408.0,366.0,355.0,297.0,351.0,301.0,309.0,291.0,311.0,307.0,321.0,313.0,308.0,281.0,292.0,294.0,304.0,284.0,277.0,289.0,291.0,294.0,303.0,300.0,298.0,298.0,272.0,273.0,282.0,260.0,260.0,265.0,253.0,239.0,221.0,190.0,193.0,175.0,183.0,148.0,161.0,156.0,149.0,116.0,129.0,107.0,127.0,113.0,111.0,73.0,96.0,84.0,70.0,57.0,60.0,53.0,48.0,44.0,32.0,32.0,30.0,17.0,27.0,23.0,18.0,13.0,8.0,14.0,5.0,7.0,5.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,5332,15336,2139,0,1608,1870,1854,1852,1981,1820,1563,1530,1451,1477,1423,1277,962,730,587,380,237,129,58,14,4,0,22138,451,183,35,0,22152,478,142,35,0,5725,342,1387,3490,594,179,5759,5331,0,7920,14634,253,0,130,709,43,2,9,1,53,5,1,329,21525,0,864,929,1005,137,50,60,4177,15585,0,4422,5030,1200,104,33,12018,0,1.9392418032786884,0.0,2.7833891086096743,0.0,8.61279431753409,307,316,412,64,16,32,1500,4692,0,567,389,199,470,697,799,1078,702,1048,551,283,161,153,51,44,136,7151,188,6682,657,6317,1022,1239,6100,6598,741,1202,6137,3657,3682,1082,6257,6963,376,6465,874,4013,2452,2395,4944,4809,2530,2800,4539,1648,5691,991,6348,73,7266,1461,4172,1537,169,11,4523,2816,0,27,197,19,1,2,1,17,1,0,123,6951,0,1.5466666666666666,1.556326530612245,1.26,1.0496688741721854,1.0496688741721854,49.73634010083118 +130707,Panamá Oeste,La Chorrera,Feuillet,1622,5,71,7,0,0,0,2,0,0,0,0,0,0,0,338,838,149,10,1255,70,0,0,0,9,1,1275,34,7,3,2,1,6,0,7,675,328,313,2,5,0,12,1294,10,15,0,0,16,1335,1,114,48,114,70,23,0,347,146,741,85,9,7,1310,5,1,17,0,2,0,884,123,325,3,0,0,0,849,475,0,9,1,1,28,925,360,2,0,0,0,0,0,17,2,1,1550,157,6.690784463061691,18.91012947448591,6.83015993907083,19.993145468392992,1.0224719101123596,3.413483146067416,2.149063670411985,1365,755,1479,57,187,54,55,24,7,41,14,15,36,5,76,24,10,31,21,53,24,3479,384,0,1572,2291,0,3011,852,0,3642,221,0,1192,2671,0,935,257,2547,124,0,132,30,63,15,86,88,102,110,109,406,1,1,21,136,175,344,124,208,875,16,69,66,72,77,127,134,167,43,8,55,0,0,1,2,0,1684,203,1543,0,12,114,23,223,698,506,74,42,1263,85,227,72,165,3,35,5,1,2038,2056,331,961,74,440,34,0,14,2,4,60,9,1031,44,0,0,1692,1137,22,70,22,405,27,53,2,0,2,117,200,186,131,393,28,307,177,346,1789,273,133,136,236,311,496,241,230,93,47,16,25,9,15,44,52.0,56.0,54.0,69.0,69.0,78.0,60.0,81.0,68.0,77.0,84.0,66.0,70.0,80.0,53.0,67.0,66.0,56.0,65.0,64.0,54.0,51.0,76.0,73.0,50.0,60.0,75.0,80.0,65.0,69.0,84.0,63.0,64.0,67.0,63.0,50.0,63.0,54.0,56.0,65.0,55.0,62.0,66.0,64.0,54.0,50.0,65.0,49.0,48.0,54.0,39.0,51.0,47.0,44.0,37.0,36.0,39.0,37.0,39.0,32.0,32.0,26.0,37.0,31.0,28.0,26.0,29.0,28.0,22.0,35.0,13.0,24.0,22.0,15.0,20.0,17.0,15.0,9.0,8.0,13.0,5.0,9.0,5.0,8.0,3.0,4.0,5.0,1.0,5.0,2.0,5.0,4.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1017,2722,355,0,300,364,353,318,304,349,341,288,301,266,218,183,154,140,94,62,30,17,11,1,0,0,3857,148,74,15,0,3859,161,59,15,0,979,59,103,734,94,44,1064,1017,0,1153,2810,131,0,53,126,9,3,1,0,12,1,0,47,3842,0,164,175,220,45,22,20,711,2737,0,990,975,220,13,17,1879,0,1.6948165404775772,0.0,2.532685512367491,0.0,9.114313629702004,68,64,86,22,12,6,271,836,0,43,31,28,57,99,144,199,159,250,136,74,40,50,10,33,12,1345,20,1280,85,1224,141,203,1162,1226,139,380,985,804,561,292,1073,1306,59,1217,148,894,323,531,834,1120,245,666,699,423,942,246,1119,26,1339,284,801,250,30,2,799,566,0,10,37,4,1,1,0,2,1,0,18,1291,0,1.490855888807608,1.5040234089246525,1.25,1.04,1.04,47.663003663003664 +130708,Panamá Oeste,La Chorrera,Guadalupe,13604,391,642,341,0,0,0,1,0,0,0,0,21,0,0,1945,7934,2323,111,10918,1284,2,0,0,86,23,11720,437,3,21,5,24,20,0,83,9206,431,2488,17,81,0,90,11946,82,76,1,1,207,12313,19,650,394,669,744,189,0,1564,1742,8297,654,41,15,11795,65,0,431,3,19,0,11664,219,395,27,3,4,1,6039,5963,0,301,7,3,9606,2271,110,32,8,17,1,0,133,67,55,13,14439,561,6.463835822140652,17.6087428047051,6.530074247101026,18.08534245432552,1.0183545845853976,3.249898481279948,2.049947210265573,12560,6816,13682,1126,2125,383,436,338,137,465,147,139,344,26,761,278,140,297,263,200,239,32597,4076,1,12504,24169,1,28695,7978,1,34525,2149,0,11009,25665,0,9056,1953,24328,1337,0,1392,191,609,96,763,919,1076,945,875,4680,7,8,138,1298,1834,3548,1266,1933,7904,14,78,733,980,1217,1397,1318,804,238,38,358,0,0,3,14,0,15524,2267,15042,0,87,699,289,2091,6538,5181,536,696,11232,944,2808,681,1514,84,149,37,34,19331,19393,2783,8592,762,5012,200,5,81,48,72,888,100,11053,479,0,0,17542,10846,148,191,605,2941,211,335,14,0,49,702,1696,1574,1098,4031,223,3634,1598,3186,17028,3406,1299,1629,2212,2929,4008,2208,2059,764,356,135,122,34,56,479,468.0,473.0,527.0,582.0,612.0,609.0,642.0,659.0,658.0,661.0,650.0,634.0,618.0,663.0,590.0,614.0,654.0,569.0,646.0,597.0,620.0,684.0,692.0,709.0,637.0,703.0,625.0,600.0,573.0,528.0,570.0,581.0,564.0,549.0,530.0,539.0,546.0,582.0,577.0,524.0,505.0,520.0,545.0,500.0,455.0,544.0,511.0,515.0,493.0,515.0,513.0,529.0,492.0,478.0,423.0,420.0,441.0,403.0,397.0,395.0,376.0,328.0,322.0,269.0,283.0,296.0,239.0,223.0,230.0,226.0,219.0,153.0,186.0,170.0,174.0,151.0,151.0,122.0,116.0,115.0,97.0,102.0,72.0,53.0,72.0,50.0,47.0,49.0,39.0,23.0,13.0,25.0,25.0,14.0,13.0,3.0,5.0,5.0,3.0,4.0,1.0,1.0,2.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,9046,26185,3493,0,2662,3229,3155,3080,3342,3029,2794,2768,2525,2578,2435,2056,1578,1214,902,655,396,208,90,20,8,0,37411,867,366,79,1,37423,946,275,79,1,9215,614,1712,6398,1020,400,10320,9044,1,12828,25379,516,1,342,1755,92,16,11,3,65,10,8,746,35675,1,1814,1720,2592,321,149,149,10770,21208,1,8354,8952,2240,163,18,18996,1,1.913622066295669,0.0,2.7475553960706915,0.0,8.848853424233035,616,620,951,159,56,67,3817,6274,0,568,537,299,599,1069,1352,1683,1245,2151,1174,704,372,377,150,139,120,12324,236,11476,1084,10791,1769,2030,10530,11258,1302,2559,10001,6381,6179,2112,10448,12047,513,11051,1509,7866,3185,4568,7992,9727,2833,5032,7528,3155,9405,1471,11089,146,12414,2500,7155,2626,279,1,7762,4798,0,90,468,34,6,6,2,23,4,0,278,11649,0,1.538969827243054,1.5439057399888545,1.1473684210526316,1.0441176470588236,1.0441176470588236,49.314331210191085 +130709,Panamá Oeste,La Chorrera,Herrera,10763,253,0,0,0,0,0,0,11,0,0,0,1,0,0,6478,247,415,31,7092,48,2,1,0,27,1,6868,39,42,147,7,18,44,0,6,4007,2807,329,14,9,1,4,7096,31,30,1,0,13,7171,30,1262,886,242,1356,69,0,5539,639,822,145,11,15,6911,4,1,254,0,1,0,3007,930,3233,1,0,0,0,6591,380,0,197,0,3,6541,205,98,29,3,45,0,1,230,10,9,0,9362,1666,6.952220923436586,23.47063120981882,6.95572764465225,23.519725306838108,1.005438572026217,3.2349742016455165,2.158694742713708,7211,4335,8540,818,703,343,330,259,137,179,178,80,301,10,212,64,50,150,78,66,56,19741,1827,0,8881,12687,0,19130,2438,0,19882,1686,0,7262,14306,0,6220,1042,13365,941,0,994,215,480,67,533,605,612,590,554,1694,0,15,66,638,886,1954,702,1273,5727,58,171,396,495,633,780,586,625,66,16,133,0,1,0,3,0,10062,788,7549,0,19,318,60,374,3982,2934,140,119,8232,370,905,211,630,19,283,14,10,11382,12042,1868,6490,251,1932,97,2,22,12,5,101,29,6462,96,0,0,8603,7408,69,125,272,1746,49,124,3,0,12,482,874,1145,936,2918,199,1473,963,1848,11575,822,497,559,881,1419,3615,1727,1504,477,159,29,44,8,12,96,383.0,463.0,484.0,526.0,542.0,555.0,538.0,519.0,521.0,494.0,501.0,465.0,401.0,390.0,405.0,387.0,345.0,353.0,359.0,332.0,309.0,331.0,361.0,338.0,340.0,408.0,439.0,459.0,504.0,485.0,598.0,515.0,545.0,538.0,483.0,466.0,479.0,439.0,446.0,413.0,405.0,370.0,340.0,302.0,270.0,287.0,277.0,267.0,218.0,205.0,219.0,201.0,211.0,201.0,157.0,149.0,144.0,143.0,125.0,108.0,121.0,78.0,87.0,67.0,70.0,51.0,46.0,51.0,39.0,32.0,42.0,24.0,30.0,28.0,12.0,22.0,19.0,22.0,16.0,10.0,17.0,10.0,12.0,10.0,8.0,4.0,5.0,7.0,10.0,4.0,4.0,1.0,3.0,1.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,7187,15694,543,0,2398,2627,2162,1776,1679,2295,2679,2243,1687,1254,989,669,423,219,136,89,57,30,10,2,0,0,22394,677,288,65,0,22406,707,246,65,0,6985,200,1626,2795,193,134,4305,7186,0,2873,20311,240,0,1977,858,52,28,18,0,149,5,5,212,20120,0,1355,1290,1394,373,58,69,4581,14304,0,7104,6614,358,48,13,9287,0,1.6461828859060403,0.0,2.4542707173532685,0.0,8.589096653005464,499,398,578,169,25,31,1626,3885,0,157,81,72,149,296,517,1280,946,1699,1055,485,207,180,47,26,13,7167,44,6774,437,6489,722,670,6541,6599,612,2001,5210,4214,2997,1639,5572,7056,155,6613,598,5116,1497,3071,4140,6312,899,3140,4071,999,6212,402,6809,71,7140,1150,4527,1333,201,11,4383,2828,0,363,231,17,4,6,0,43,2,1,76,6468,0,1.5760177236222652,1.6674051509277208,1.2941176470588236,1.0076923076923077,1.0076923076923077,40.24018860074886 +130710,Panamá Oeste,La Chorrera,Hurtado,795,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,323,199,12,488,34,2,0,0,10,0,491,1,3,28,3,2,6,0,0,219,24,279,5,5,0,2,510,21,2,0,0,1,534,0,163,36,5,42,16,0,1,34,396,103,0,0,501,4,0,28,1,0,0,507,5,15,5,1,1,0,126,381,0,27,0,0,0,432,86,1,4,5,0,2,0,1,3,0,0,796,6.735521235521236,19.65444015444016,6.785714285714286,20.301158301158303,1.0355805243445693,2.9906367041198503,1.794007490636704,553,287,517,66,90,8,12,10,4,20,1,5,23,3,64,12,3,8,10,15,13,1258,220,0,230,1248,0,1079,399,0,1373,105,0,368,1110,0,321,47,1034,76,0,76,4,27,4,43,36,47,59,64,367,1,0,0,45,65,152,45,64,221,1,3,20,18,16,32,40,21,2,1,4,0,0,0,0,0,694,16,614,0,0,9,6,51,219,303,32,9,357,36,115,37,39,1,121,0,2,848,751,59,419,37,170,10,0,11,2,11,50,3,235,3,0,0,944,278,1,4,9,82,2,4,0,0,1,37,28,28,15,84,54,98,64,301,636,183,74,81,163,182,138,49,51,23,5,4,3,0,4,3,42.0,26.0,27.0,26.0,29.0,23.0,24.0,31.0,27.0,20.0,30.0,25.0,27.0,23.0,24.0,14.0,33.0,27.0,19.0,28.0,17.0,32.0,23.0,21.0,26.0,32.0,31.0,18.0,19.0,17.0,28.0,22.0,26.0,18.0,29.0,21.0,25.0,26.0,25.0,21.0,26.0,23.0,19.0,25.0,15.0,28.0,21.0,19.0,23.0,19.0,21.0,14.0,18.0,19.0,24.0,15.0,18.0,15.0,10.0,13.0,12.0,11.0,10.0,9.0,6.0,14.0,8.0,10.0,12.0,7.0,10.0,6.0,11.0,9.0,5.0,5.0,2.0,6.0,7.0,3.0,3.0,10.0,3.0,4.0,6.0,4.0,3.0,4.0,4.0,3.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,404,1031,164,0,150,125,129,121,119,117,123,118,108,110,96,71,48,51,41,23,26,18,3,2,0,0,1531,49,6,13,0,1531,50,5,13,0,503,6,70,187,50,11,368,404,0,667,898,34,0,2,164,21,0,0,0,1,0,0,3,1408,0,33,127,281,19,1,3,584,551,0,255,238,50,7,4,1045,0,2.2156549520766773,0.0,3.1391509433962264,0.0,7.219512195121951,9,47,92,7,0,1,223,174,0,10,20,19,27,81,104,77,57,74,38,17,16,5,3,5,0,542,11,453,100,407,146,79,474,407,146,60,493,245,308,7,546,525,28,415,138,157,258,95,458,446,107,193,360,254,299,225,328,8,545,150,298,85,20,0,390,163,0,1,42,3,0,0,0,0,0,0,1,506,0,1.5334538878842676,1.3580470162748643,1.5,1.0,1.0,49.35081374321881 +130711,Panamá Oeste,La Chorrera,Iturralde,679,2,0,0,0,0,0,0,1,0,0,0,0,0,0,1,232,218,12,405,46,1,0,0,11,0,426,1,0,16,2,1,14,0,3,210,34,205,1,13,0,0,446,10,0,0,0,7,463,1,140,12,1,51,13,0,0,25,329,108,0,1,415,14,1,27,0,6,0,454,2,3,0,0,2,2,85,349,0,26,1,2,2,345,87,3,3,14,0,3,0,2,1,3,0,682,4.7304147465437785,15.30184331797235,4.8986175115207375,16.112903225806452,1.0129589632829374,2.896328293736501,1.736501079913607,469,265,606,29,72,13,14,6,6,17,3,2,14,0,43,20,4,6,7,0,13,1179,233,0,156,1256,0,1071,341,0,1272,140,0,400,1012,0,372,28,940,72,0,76,17,30,0,38,55,64,43,55,355,0,0,0,54,79,148,54,61,197,9,13,7,2,11,16,12,11,2,1,2,0,0,0,0,0,596,65,581,0,0,12,4,26,235,270,23,27,297,34,84,42,23,1,147,21,0,805,711,40,376,47,166,7,0,13,0,4,49,6,319,10,0,0,958,235,1,2,6,37,1,2,0,0,0,12,19,18,23,67,66,98,62,296,706,192,85,78,110,162,92,53,18,8,1,0,0,0,1,10,30.0,17.0,28.0,29.0,18.0,35.0,30.0,27.0,32.0,28.0,29.0,37.0,17.0,31.0,36.0,31.0,25.0,34.0,13.0,21.0,31.0,19.0,34.0,19.0,22.0,23.0,31.0,20.0,26.0,24.0,22.0,27.0,28.0,21.0,26.0,25.0,19.0,13.0,20.0,25.0,22.0,17.0,22.0,19.0,17.0,26.0,21.0,13.0,16.0,9.0,17.0,20.0,17.0,15.0,13.0,19.0,13.0,18.0,4.0,8.0,18.0,10.0,11.0,8.0,4.0,6.0,7.0,3.0,5.0,6.0,8.0,9.0,2.0,8.0,8.0,1.0,6.0,4.0,6.0,3.0,8.0,1.0,4.0,3.0,2.0,4.0,6.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,424,976,116,0,122,152,150,124,125,124,124,102,97,85,82,62,51,27,35,20,18,12,2,2,0,0,1468,34,7,7,0,1468,36,5,7,0,458,8,140,150,33,5,298,424,0,709,778,29,0,0,159,4,0,0,0,5,0,0,5,1343,0,42,54,107,11,1,0,352,949,0,227,262,34,4,2,987,0,2.3893805309734515,0.0,3.269521410579345,0.0,6.7097625329815305,12,17,35,4,1,0,130,270,0,12,24,16,30,67,98,73,62,45,27,8,6,0,0,1,0,455,14,379,90,347,122,67,402,327,142,32,437,211,258,9,460,427,42,336,133,113,223,59,410,356,113,108,361,216,253,153,316,5,464,94,268,97,10,1,315,154,0,0,41,4,0,0,0,1,0,0,2,421,0,1.7127659574468086,1.5127659574468084,1.0,1.0,1.0,47.02985074626866 +130712,Panamá Oeste,La Chorrera,La Represa,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,110,176,33,248,40,0,0,0,33,0,289,0,6,13,0,0,13,0,0,71,116,116,1,16,0,1,305,10,0,0,0,6,321,0,103,17,2,42,9,0,2,5,291,23,0,0,315,3,0,3,0,0,0,317,0,3,0,0,1,0,87,229,0,5,0,0,2,223,30,27,9,14,0,9,0,2,5,0,0,494,6.066666666666666,17.564705882352943,6.070588235294117,17.564705882352943,1.0031152647975077,3.152647975077881,2.074766355140187,322,186,325,33,37,7,9,4,0,5,1,1,6,0,22,8,2,5,5,4,9,689,177,0,108,758,0,407,459,0,793,73,0,229,637,0,205,24,615,22,0,29,11,16,8,21,31,36,30,34,285,1,0,1,26,43,74,20,36,103,0,0,5,12,14,14,11,4,0,1,0,0,0,0,0,0,330,44,400,0,0,16,20,25,131,203,24,17,143,24,62,6,28,0,68,39,0,495,441,26,155,7,161,3,0,18,0,1,41,4,344,5,0,0,609,128,1,2,7,27,0,0,0,0,0,5,8,18,12,44,66,44,64,113,572,72,29,37,59,71,41,25,15,4,4,0,1,1,0,5,23.0,12.0,17.0,18.0,11.0,13.0,21.0,15.0,17.0,15.0,24.0,21.0,11.0,9.0,11.0,15.0,17.0,8.0,10.0,14.0,20.0,13.0,24.0,10.0,6.0,21.0,17.0,21.0,11.0,12.0,14.0,15.0,16.0,8.0,9.0,17.0,15.0,10.0,8.0,14.0,8.0,12.0,7.0,14.0,8.0,12.0,6.0,10.0,7.0,10.0,13.0,9.0,9.0,14.0,10.0,9.0,8.0,11.0,12.0,10.0,5.0,11.0,9.0,9.0,13.0,7.0,6.0,8.0,7.0,7.0,5.0,5.0,6.0,1.0,6.0,7.0,2.0,3.0,1.0,3.0,6.0,3.0,2.0,1.0,3.0,0.0,2.0,2.0,3.0,2.0,4.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,238,591,107,0,81,81,76,64,73,82,62,64,49,45,55,50,47,35,23,16,15,9,7,2,0,0,923,8,0,5,0,923,8,0,5,0,315,5,60,90,30,2,196,238,0,553,377,6,0,6,45,1,0,0,0,8,0,0,14,862,0,10,53,83,40,37,12,349,352,0,103,127,26,5,3,672,0,2.333333333333333,0.0,3.305555555555556,0.0,6.598290598290598,4,19,32,20,14,4,124,105,0,46,30,23,25,36,63,30,20,31,8,4,2,2,0,1,1,311,11,267,55,234,88,35,287,245,77,22,300,140,182,3,319,297,25,255,67,113,142,34,288,133,189,91,231,120,202,114,208,1,321,77,199,42,4,0,257,65,0,3,12,0,0,0,0,0,0,0,5,302,0,1.5372670807453417,1.3695652173913044,0.0,1.0,1.0,50.09316770186335 +130713,Panamá Oeste,La Chorrera,Los Díaz,747,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,357,192,21,522,27,1,0,0,19,1,549,0,0,11,1,1,7,0,1,286,38,233,4,9,0,0,552,13,1,0,0,4,570,0,124,24,3,22,9,0,3,15,477,75,0,0,550,8,0,11,1,0,0,556,6,6,1,0,1,0,130,429,0,10,1,0,0,479,62,8,0,17,0,1,0,1,1,1,0,752,6.606284658040665,16.2181146025878,6.728280961182994,16.91866913123845,1.0070175438596491,3.082456140350877,1.9596491228070176,574,323,604,54,99,10,17,16,4,28,9,2,9,1,36,16,5,12,2,3,10,1375,254,0,314,1315,0,812,817,0,1527,102,0,397,1232,0,357,40,1162,70,0,75,16,18,0,32,47,56,53,61,439,1,1,0,49,76,142,47,85,286,6,6,8,11,24,44,23,22,1,0,0,0,0,0,0,0,712,76,660,0,1,25,19,43,231,324,35,27,369,46,135,50,67,4,94,1,0,883,867,107,340,52,262,1,2,2,0,3,75,9,387,1,0,0,1017,334,0,3,15,78,1,0,0,0,0,18,28,39,35,127,50,160,80,251,732,244,45,92,170,197,142,42,55,22,4,2,1,0,1,1,33.0,25.0,32.0,31.0,34.0,27.0,27.0,26.0,39.0,28.0,34.0,33.0,21.0,25.0,31.0,19.0,27.0,20.0,28.0,24.0,27.0,35.0,29.0,27.0,28.0,37.0,36.0,36.0,37.0,17.0,20.0,25.0,32.0,27.0,29.0,30.0,17.0,25.0,22.0,25.0,20.0,22.0,19.0,22.0,25.0,31.0,17.0,15.0,19.0,25.0,22.0,19.0,18.0,21.0,22.0,19.0,18.0,14.0,17.0,16.0,16.0,8.0,18.0,8.0,13.0,8.0,12.0,12.0,9.0,10.0,8.0,6.0,12.0,8.0,10.0,4.0,4.0,5.0,8.0,2.0,4.0,2.0,4.0,4.0,8.0,5.0,1.0,3.0,2.0,4.0,0.0,1.0,1.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,446,1143,161,0,155,147,144,118,146,163,133,119,108,107,102,84,63,51,44,23,22,15,5,1,0,0,1726,9,9,6,0,1728,16,0,6,0,573,10,59,186,52,5,420,445,0,896,845,9,0,2,67,6,0,0,0,2,1,0,26,1646,0,32,97,128,4,5,1,92,1391,0,269,344,39,4,5,1089,0,2.035961272475795,0.0,2.795228628230616,0.0,7.323428571428572,7,32,52,1,3,1,42,436,0,13,28,17,38,81,102,88,40,85,45,19,9,4,3,1,1,568,6,518,56,491,83,74,500,460,114,63,511,279,295,34,540,521,53,495,79,231,264,118,456,301,273,178,396,216,358,219,355,12,562,119,327,120,8,0,383,191,0,0,14,1,0,0,0,0,0,0,6,553,0,1.538327526132404,1.5104529616724738,1.3333333333333333,1.105263157894737,1.105263157894737,49.05574912891986 +130714,Panamá Oeste,La Chorrera,Mendoza,673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,255,205,35,427,34,0,0,0,34,1,463,10,1,8,2,1,10,0,1,220,25,232,0,16,0,3,471,8,0,0,0,17,496,0,83,31,1,50,12,0,1,13,428,51,3,0,482,2,1,11,0,0,0,487,0,9,0,0,0,0,117,368,0,11,0,0,9,433,21,12,9,6,0,0,0,2,4,0,0,673,6.853131749460043,21.300215982721383,6.861771058315335,21.360691144708422,1.0120967741935485,3.169354838709677,2.024193548387097,502,275,514,61,88,10,13,13,2,11,4,4,20,0,26,9,3,12,11,2,15,1137,285,0,211,1211,0,739,683,0,1308,114,0,358,1064,0,320,38,1018,46,0,49,14,25,11,28,39,44,31,57,473,0,0,2,33,62,135,50,60,181,0,2,22,22,16,29,18,12,2,1,4,0,0,0,0,0,559,90,615,0,1,31,17,68,206,268,25,48,242,31,94,39,57,3,165,3,0,788,729,52,305,41,182,24,0,30,0,1,57,6,553,9,0,0,953,237,2,2,14,50,2,4,0,0,0,13,16,18,22,76,107,90,54,253,875,125,59,68,122,110,73,35,23,10,5,2,1,0,0,9,23.0,18.0,28.0,26.0,29.0,22.0,29.0,20.0,33.0,25.0,22.0,26.0,31.0,19.0,19.0,22.0,18.0,22.0,26.0,17.0,18.0,30.0,24.0,25.0,37.0,24.0,28.0,18.0,19.0,24.0,19.0,17.0,21.0,20.0,18.0,20.0,23.0,17.0,18.0,22.0,21.0,15.0,19.0,23.0,18.0,22.0,18.0,25.0,18.0,21.0,16.0,17.0,24.0,22.0,16.0,17.0,17.0,12.0,20.0,6.0,22.0,15.0,9.0,13.0,15.0,9.0,10.0,8.0,9.0,6.0,11.0,12.0,3.0,7.0,4.0,7.0,6.0,6.0,5.0,4.0,8.0,4.0,3.0,5.0,7.0,3.0,2.0,4.0,3.0,2.0,3.0,1.0,2.0,1.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,370,988,159,0,124,129,117,105,134,113,95,100,96,104,95,72,74,42,37,28,27,14,7,3,1,0,1481,28,5,3,0,1481,29,4,3,0,444,17,137,182,41,4,322,370,0,872,626,19,0,13,44,2,1,1,1,10,0,3,47,1395,0,44,166,158,6,8,6,469,660,0,169,249,66,10,3,1020,0,2.2895622895622894,0.0,3.090692124105012,0.0,7.094264996704021,14,50,60,5,7,1,189,176,0,75,25,30,42,87,69,47,48,42,19,9,4,3,1,0,1,482,20,407,95,382,120,63,439,386,116,31,471,201,301,4,498,458,44,399,103,127,272,80,422,307,195,133,369,201,301,167,335,4,498,107,283,95,17,0,366,136,0,2,15,1,1,0,1,3,0,0,18,461,0,1.5697211155378483,1.452191235059761,2.0,1.0,1.0,50.95816733067729 +130715,Panamá Oeste,La Chorrera,Obaldía,417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,125,4,235,20,0,0,0,4,0,231,0,2,13,3,0,10,0,0,54,6,198,0,1,0,0,244,13,0,0,0,2,259,0,104,27,3,17,7,0,2,6,226,25,0,0,242,12,0,3,1,1,0,253,0,3,0,0,3,0,36,210,0,13,0,0,1,197,38,3,0,19,0,0,0,1,0,0,0,417,6.919491525423729,20.029661016949152,6.936440677966102,20.572033898305083,1.0077220077220077,2.841698841698842,1.7297297297297298,261,150,273,10,38,1,4,5,3,10,4,1,7,0,10,5,5,5,7,0,3,576,140,0,83,633,0,535,181,0,649,67,0,184,532,0,163,21,507,25,0,29,8,14,0,28,24,46,33,29,186,0,0,0,24,38,59,8,29,102,1,0,8,7,12,16,10,5,0,0,0,0,0,0,0,0,339,15,278,0,0,5,3,15,91,158,8,6,129,45,44,16,21,2,97,0,0,385,382,30,169,18,122,2,0,13,0,5,63,1,58,1,0,0,471,129,0,1,4,27,0,0,0,0,0,5,11,9,12,49,47,64,25,132,284,118,56,73,104,50,33,24,18,3,1,1,0,1,0,1,12.0,15.0,14.0,10.0,13.0,7.0,16.0,14.0,18.0,16.0,9.0,18.0,9.0,11.0,10.0,7.0,9.0,9.0,12.0,9.0,15.0,5.0,10.0,12.0,11.0,17.0,8.0,16.0,14.0,11.0,17.0,6.0,15.0,15.0,14.0,13.0,10.0,10.0,8.0,11.0,6.0,10.0,13.0,12.0,10.0,8.0,6.0,8.0,10.0,11.0,7.0,3.0,5.0,8.0,7.0,4.0,5.0,6.0,8.0,7.0,8.0,7.0,8.0,10.0,6.0,4.0,5.0,1.0,6.0,7.0,6.0,6.0,5.0,8.0,5.0,8.0,7.0,1.0,3.0,4.0,1.0,7.0,1.0,0.0,2.0,1.0,2.0,2.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,192,477,98,0,64,71,57,46,53,66,67,52,51,43,30,30,39,23,30,23,11,8,3,0,0,0,759,8,0,0,0,759,8,0,0,0,263,6,66,75,23,2,140,192,0,339,424,4,0,4,33,0,0,0,0,8,0,0,5,717,0,3,11,61,2,0,0,166,524,0,82,117,13,4,0,551,0,2.315286624203821,0.0,3.2816901408450705,0.0,6.70664928292047,2,5,20,1,0,0,64,169,0,4,16,13,20,48,57,34,15,29,16,4,3,0,1,1,0,256,5,202,59,190,71,40,221,172,89,16,245,140,121,2,259,224,37,202,59,68,134,24,237,189,72,50,211,127,134,121,140,2,259,60,154,41,6,0,187,74,0,0,9,0,0,0,0,1,0,0,1,250,0,1.475095785440613,1.4636015325670495,0.0,1.125,1.125,51.71264367816092 +130716,Panamá Oeste,La Chorrera,Playa Leona,16534,41,97,9,2,2,0,0,1,0,0,0,13,0,0,8045,2429,545,44,10763,256,3,0,0,38,3,10924,82,10,15,1,9,9,0,13,9767,456,751,25,25,0,39,10894,38,62,1,1,67,11063,13,1196,2479,714,1057,159,0,7349,996,2529,163,25,1,10913,25,0,106,0,18,1,6001,1350,3708,2,1,0,1,9382,1617,1,56,3,4,10216,745,53,8,2,4,1,0,0,29,4,1,16284,415,6.924913746141275,22.101961140366807,6.935718176865807,22.31051389141093,1.0072313115791376,3.550031636988159,2.347012564403869,11156,6881,12746,1526,1033,549,510,341,182,284,226,172,486,24,358,119,55,229,179,124,107,30593,2868,3,15252,18209,3,28573,4888,3,30981,2481,2,11593,21868,3,9466,2127,20643,1225,0,1274,373,770,82,834,880,987,868,900,2551,2,8,97,1047,1395,2729,1031,1715,8531,26,174,737,1041,1126,1600,1312,779,201,56,321,0,3,1,10,3,15858,1712,11325,3,57,671,152,743,6214,3767,279,322,13102,689,1565,353,1279,48,71,201,21,17558,18558,3321,9703,403,3668,137,13,53,31,34,279,49,10453,159,2,2,12828,11395,106,276,631,3153,189,306,11,3,34,912,1792,2108,1455,4361,284,2594,1726,2304,16967,1641,836,949,1332,2218,5042,2784,2606,938,369,110,89,32,44,159,613.0,611.0,736.0,692.0,771.0,756.0,766.0,796.0,773.0,704.0,769.0,747.0,676.0,633.0,607.0,556.0,538.0,500.0,513.0,443.0,481.0,522.0,522.0,555.0,643.0,743.0,727.0,731.0,772.0,773.0,879.0,855.0,902.0,894.0,789.0,755.0,674.0,720.0,654.0,587.0,568.0,507.0,516.0,405.0,428.0,423.0,369.0,307.0,367.0,314.0,330.0,269.0,277.0,280.0,277.0,242.0,237.0,210.0,224.0,191.0,174.0,165.0,135.0,147.0,111.0,119.0,100.0,87.0,84.0,91.0,76.0,64.0,66.0,64.0,45.0,60.0,49.0,40.0,44.0,33.0,39.0,37.0,27.0,24.0,18.0,15.0,22.0,13.0,7.0,8.0,7.0,5.0,7.0,3.0,1.0,0.0,5.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,10650,24201,1265,0,3423,3795,3432,2550,2723,3746,4319,3390,2424,1780,1433,1104,732,481,315,226,145,65,23,7,3,0,34600,1052,396,67,1,34611,1108,329,67,1,10564,423,1864,4812,471,254,7080,10648,0,5979,29747,388,2,1510,818,53,15,10,1,218,24,6,436,33022,3,2127,1520,2340,498,342,190,8753,20343,3,10946,10391,732,85,19,13940,3,1.6032518158192843,0.0001332711401346,2.4227165070538565,0.0002059520131809,8.908240115184405,632,492,854,225,127,65,3018,5742,1,352,174,127,246,489,725,1590,1296,2514,1672,895,469,368,108,96,22,11051,105,10703,453,10222,934,1160,9996,10425,731,3283,7873,6094,5062,2485,8671,10885,271,10438,718,7491,2947,5078,6078,9117,2039,5963,5193,567,10589,341,10815,83,11073,1664,7191,1962,339,5,6978,4178,0,270,262,8,7,3,1,58,7,2,146,10391,1,1.5731565271929038,1.6627542334916223,1.3428571428571427,1.020408163265306,1.020408163265306,40.97696306920043 +130717,Panamá Oeste,La Chorrera,Puerto Caimito,17579,274,165,45,1,0,0,0,0,0,0,0,25,0,0,10048,2995,1325,124,14043,325,10,0,3,98,13,14372,72,2,9,2,12,11,0,12,11995,1289,1139,21,36,3,9,14248,37,142,0,0,65,14492,43,1156,644,522,1057,149,0,8177,1294,4797,174,28,22,13811,115,0,545,1,20,0,9872,1375,3155,87,1,0,2,11205,2934,4,313,29,7,14193,177,0,0,0,0,0,0,31,74,11,6,17664,425,6.783020180932498,20.42296450939457,6.807794015309673,20.53437717466945,1.0099365166988683,3.694176097157052,2.460736958321833,14661,8979,17443,1148,1521,691,484,396,301,396,223,206,417,57,517,169,94,233,175,141,140,39720,4163,9,24304,19579,9,37444,6439,9,40983,2900,9,15410,28477,5,9953,5457,27006,1467,4,1607,577,882,88,1093,1111,1287,1121,1101,3473,3,5,70,1326,1734,3167,1308,1858,8860,19,305,775,1191,1394,2865,2787,1684,445,95,1572,2,4,4,70,9,20262,1930,15980,9,68,751,251,1418,8494,5264,357,447,16458,1089,1980,397,1248,104,47,433,38,22774,24149,4476,11540,471,4795,371,14,53,74,41,287,71,14495,1050,4,4,15972,12242,81,347,767,6777,419,1498,69,9,84,2153,3970,3173,1581,4141,539,2560,1505,2486,21516,1736,895,1247,1611,2539,4270,2640,3875,2132,1263,587,721,269,572,1050,675.0,697.0,812.0,847.0,904.0,936.0,963.0,998.0,976.0,934.0,984.0,894.0,885.0,836.0,779.0,791.0,752.0,689.0,673.0,649.0,603.0,630.0,688.0,621.0,609.0,673.0,659.0,643.0,683.0,756.0,850.0,893.0,985.0,1071.0,967.0,992.0,915.0,916.0,914.0,899.0,916.0,822.0,813.0,807.0,673.0,627.0,574.0,581.0,547.0,482.0,508.0,522.0,469.0,435.0,390.0,406.0,386.0,357.0,346.0,314.0,287.0,255.0,258.0,232.0,191.0,210.0,163.0,165.0,148.0,136.0,123.0,106.0,102.0,96.0,106.0,100.0,73.0,85.0,63.0,57.0,33.0,40.0,39.0,48.0,22.0,35.0,24.0,14.0,21.0,26.0,11.0,8.0,5.0,5.0,7.0,4.0,2.0,3.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,13120,31719,2084,0,3935,4807,4378,3554,3151,3414,4766,4636,4031,2811,2324,1809,1223,822,533,378,182,120,36,9,4,0,43394,1868,1557,98,6,43442,2410,967,98,6,11053,495,850,9070,691,442,11201,13119,2,10790,34998,1126,9,1184,1087,66,5,9,6,377,42,4,424,43710,9,2925,2294,2578,672,150,203,8323,29769,9,13640,11961,1411,136,83,19683,9,1.578664118297958,0.0002011870033195,2.413125294025404,0.0003136270973812,9.576071436182682,1006,748,964,297,57,110,2889,8587,3,603,267,193,373,609,981,1516,1109,2326,1724,1351,907,1079,562,898,138,14551,110,13899,762,13632,1029,1753,12908,13572,1089,7251,7410,8191,6470,4446,10215,14245,416,13771,890,10413,3358,8430,6231,12569,2092,9204,5457,527,14134,337,14324,119,14542,2285,9397,2597,382,1,9073,5588,0,238,308,17,2,3,1,88,14,1,141,13845,3,1.5532669485745465,1.647046787614241,1.2701149425287357,1.0428211586901763,1.0428211586901763,43.718368460541576 +130718,Panamá Oeste,La Chorrera,Santa Rita,1025,4,0,0,0,0,0,0,1,0,0,0,1,0,0,29,597,169,12,746,49,0,0,0,11,1,784,0,2,13,0,2,6,0,0,462,68,248,7,21,0,1,783,18,1,0,0,5,807,0,91,41,17,55,18,0,25,31,670,79,2,0,785,0,0,15,0,7,0,790,3,11,2,0,0,1,310,486,0,10,0,1,4,670,101,4,1,12,0,0,6,4,4,1,0,1031,6.814193548387097,17.941935483870967,6.832258064516129,18.40258064516129,1.0223048327137547,3.138785625774473,1.9987608426270136,826,477,849,66,114,17,17,8,8,33,8,8,14,0,56,25,7,12,18,7,5,2071,233,0,389,1915,0,1722,582,0,2174,130,0,644,1660,0,569,75,1571,89,0,91,15,46,6,55,66,84,70,88,414,0,0,5,66,116,212,69,117,424,0,8,27,55,38,80,99,35,3,0,13,0,0,0,2,0,1013,64,969,0,3,32,11,78,372,461,40,18,599,41,170,51,114,2,96,2,0,1260,1185,177,497,52,328,17,0,4,0,5,80,7,422,10,0,0,1255,553,6,12,28,175,2,13,2,0,0,38,80,90,60,152,46,190,153,268,989,291,100,131,191,229,215,113,106,40,13,7,6,3,1,10,35.0,32.0,45.0,29.0,47.0,26.0,48.0,44.0,49.0,44.0,39.0,53.0,37.0,26.0,38.0,39.0,37.0,34.0,31.0,37.0,46.0,37.0,43.0,43.0,31.0,34.0,33.0,40.0,33.0,36.0,44.0,46.0,32.0,48.0,47.0,43.0,41.0,33.0,45.0,40.0,24.0,35.0,35.0,26.0,33.0,33.0,23.0,30.0,18.0,28.0,27.0,38.0,34.0,33.0,24.0,16.0,21.0,28.0,30.0,26.0,19.0,20.0,17.0,12.0,24.0,15.0,14.0,15.0,10.0,14.0,15.0,14.0,17.0,10.0,17.0,4.0,3.0,6.0,7.0,12.0,8.0,5.0,5.0,4.0,5.0,9.0,3.0,1.0,4.0,1.0,2.0,2.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,592,1627,226,0,188,211,193,178,200,176,217,202,153,132,156,121,92,68,73,32,27,18,5,3,0,0,2404,25,12,4,0,2404,25,12,4,0,726,13,143,363,72,21,515,592,0,1119,1296,30,0,9,92,6,0,0,0,3,0,0,10,2325,0,40,47,172,5,2,1,458,1720,0,432,461,76,13,2,1461,0,1.9617706237424548,0.0,2.74633431085044,0.0,8.101431492842536,14,17,78,3,1,0,156,557,0,20,43,22,54,90,139,109,70,124,63,38,16,23,6,6,2,811,15,749,77,721,105,83,743,703,123,94,732,473,353,50,776,765,61,718,108,463,255,160,666,464,362,353,473,278,548,225,601,13,813,178,486,149,13,1,578,248,0,2,23,2,0,0,0,0,0,0,2,797,0,1.5235792019347036,1.4328899637243049,1.0,1.0344827586206895,1.0344827586206895,49.21065375302664 +130901,Panamá Oeste,San Carlos,San Carlos,2640,13,759,3,0,0,0,0,0,0,0,0,2,0,0,190,989,119,31,1263,35,0,0,0,31,0,1292,6,0,8,1,4,7,0,11,890,78,331,6,23,0,1,1268,13,27,0,0,21,1329,3,1611,105,223,101,43,0,35,128,1053,106,6,1,1308,3,2,14,0,2,0,1033,76,118,99,3,0,0,712,603,4,8,2,0,454,691,133,2,0,1,0,0,0,38,10,0,1802,1615,6.958528951486698,19.964788732394368,6.970266040688576,20.42410015649452,1.0293453724604966,3.799849510910459,2.4424379232505644,1370,741,1300,64,256,26,37,35,13,66,8,8,47,9,75,17,9,26,20,22,37,3400,389,0,1329,2460,0,3256,533,0,3575,214,0,973,2816,0,798,175,2739,77,0,79,42,68,3,66,86,102,71,95,595,0,2,29,103,173,349,115,158,907,0,27,36,69,105,193,143,86,17,1,58,0,0,0,11,0,1603,217,1631,0,7,93,61,447,561,539,68,16,905,91,367,220,90,7,11,103,0,2059,1921,222,683,230,571,72,3,10,3,3,68,14,913,124,0,0,1763,1061,32,40,78,399,14,53,11,0,3,111,119,158,87,360,136,308,95,443,1573,287,167,216,336,336,351,166,183,84,45,27,26,20,39,124,47.0,46.0,57.0,41.0,46.0,56.0,58.0,57.0,69.0,52.0,56.0,60.0,67.0,56.0,66.0,53.0,52.0,45.0,54.0,53.0,51.0,49.0,52.0,52.0,68.0,50.0,63.0,56.0,50.0,52.0,52.0,53.0,51.0,50.0,55.0,48.0,53.0,41.0,57.0,33.0,56.0,50.0,59.0,48.0,56.0,61.0,43.0,52.0,61.0,64.0,65.0,54.0,55.0,44.0,53.0,42.0,49.0,41.0,40.0,49.0,46.0,42.0,39.0,56.0,40.0,44.0,41.0,31.0,29.0,38.0,35.0,34.0,28.0,31.0,32.0,25.0,28.0,22.0,20.0,8.0,15.0,16.0,12.0,14.0,15.0,15.0,11.0,10.0,4.0,9.0,1.0,4.0,3.0,2.0,3.0,2.0,3.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,834,2558,588,0,237,292,305,257,272,271,261,232,269,281,271,221,223,183,160,103,72,49,13,6,2,0,3584,248,145,3,0,3594,304,79,3,0,966,42,400,781,144,64,749,834,0,1729,2054,197,0,15,19,6,0,0,0,4,0,1,46,3889,0,154,134,149,22,5,15,637,2864,0,669,855,367,7,115,1967,0,2.073809523809524,0.0,2.8286919831223627,0.0,9.137185929648242,64,50,61,11,1,5,242,936,0,66,44,28,53,141,156,177,134,193,115,69,36,45,20,55,36,1326,44,1277,93,1159,211,230,1140,1230,140,503,867,723,647,260,1110,1322,48,1252,118,1010,242,557,813,1179,191,611,759,301,1069,233,1137,11,1359,320,713,293,44,0,860,510,0,5,6,5,0,0,0,2,0,0,10,1342,0,1.5029197080291972,1.4021897810218975,1.0909090909090908,1.03125,1.03125,54.15547445255474 +130902,Panamá Oeste,San Carlos,El Espino,1107,2,3,0,0,0,0,0,1,0,0,0,1,0,0,1,444,143,23,571,17,1,0,0,22,0,583,4,1,6,5,1,8,0,3,113,7,412,6,62,0,11,566,31,1,0,0,13,611,0,363,76,13,37,12,0,0,16,561,33,1,0,582,3,12,13,0,1,0,606,0,5,0,0,0,0,191,411,0,9,0,0,2,550,33,3,0,0,0,0,0,10,13,0,0,1114,5.541880341880342,12.998290598290598,6.049572649572649,15.770940170940172,1.0490998363338788,3.299509001636661,2.176759410801964,642,332,726,39,142,15,41,27,7,32,7,5,14,3,82,21,1,11,20,7,22,1613,313,0,392,1534,0,1235,691,0,1808,118,0,466,1460,0,421,45,1420,40,0,44,25,22,14,41,30,75,44,39,490,0,0,0,67,108,214,56,97,347,5,11,27,35,34,42,25,29,2,0,3,0,0,0,0,0,749,63,955,0,2,36,10,116,287,469,51,32,351,97,201,79,42,8,23,0,3,1076,956,57,310,95,290,20,0,29,3,8,79,9,702,9,0,0,1206,438,1,10,24,84,1,3,0,0,4,30,30,37,24,135,81,182,56,233,1071,177,96,139,146,147,116,61,35,20,3,5,5,0,2,9,26.0,23.0,28.0,29.0,32.0,24.0,25.0,28.0,25.0,25.0,20.0,24.0,25.0,37.0,27.0,34.0,27.0,35.0,43.0,36.0,35.0,38.0,34.0,33.0,30.0,33.0,36.0,37.0,25.0,21.0,30.0,24.0,21.0,22.0,14.0,30.0,27.0,25.0,22.0,33.0,36.0,23.0,16.0,25.0,17.0,32.0,26.0,26.0,23.0,22.0,34.0,22.0,29.0,26.0,29.0,27.0,26.0,32.0,19.0,27.0,28.0,17.0,27.0,20.0,25.0,16.0,15.0,16.0,15.0,14.0,15.0,10.0,13.0,7.0,10.0,12.0,8.0,10.0,10.0,7.0,4.0,3.0,7.0,9.0,6.0,7.0,7.0,4.0,4.0,5.0,5.0,6.0,3.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,398,1379,255,0,138,127,133,175,170,152,111,137,117,129,140,131,117,76,55,47,29,27,18,3,0,0,1986,19,23,4,0,1986,19,23,4,0,567,19,132,254,69,11,582,398,0,1177,831,24,0,1,9,1,0,0,0,0,0,3,16,2002,0,37,56,40,2,0,7,167,1723,0,249,365,105,11,10,1292,0,2.2607142857142857,0.0,3.1655052264808363,0.0,7.861220472440944,13,18,18,0,0,2,74,517,0,75,46,25,56,92,85,75,51,66,34,16,6,7,3,3,1,621,21,570,72,514,128,102,540,486,156,78,564,336,306,42,600,599,43,585,57,310,275,165,477,439,203,207,435,207,435,223,419,16,626,131,340,161,10,1,403,239,0,0,2,1,0,0,0,0,0,0,6,633,0,1.6734059097978229,1.4867807153965786,1.0,1.05,1.05,54.58255451713396 +130903,Panamá Oeste,San Carlos,El Higo,1628,9,449,0,0,0,0,0,20,0,0,0,0,0,0,63,683,204,39,914,36,0,0,0,39,0,932,1,2,17,1,4,17,0,15,426,15,460,1,80,0,7,924,27,26,0,0,12,989,0,879,77,34,60,47,0,44,37,837,66,5,0,953,3,13,13,0,7,0,934,1,32,22,0,0,0,373,603,1,11,1,0,2,854,97,1,0,0,0,1,0,29,5,0,0,2106,6.886673662119622,17.575026232948584,6.958027282266527,19.19202518363064,1.031344792719919,3.4600606673407484,2.2790697674418605,1020,533,1132,61,308,26,84,44,5,64,8,9,78,1,59,22,11,26,19,14,11,2764,444,0,815,2393,0,2291,917,0,3045,163,0,791,2417,0,698,93,2355,62,0,67,44,41,7,46,60,80,70,81,870,1,1,19,73,116,284,93,131,697,1,13,32,53,58,101,77,54,8,0,29,0,0,1,0,0,1287,175,1467,0,9,91,29,223,487,601,75,81,785,80,322,133,76,1,21,18,1,1730,1643,153,664,137,443,22,1,14,3,6,141,19,981,28,0,0,1783,809,21,24,46,215,4,27,0,0,4,59,72,106,69,290,88,181,99,494,1645,299,118,147,256,302,283,109,100,34,19,11,12,0,10,28,36.0,37.0,44.0,48.0,42.0,50.0,47.0,41.0,47.0,52.0,54.0,48.0,55.0,46.0,44.0,50.0,57.0,48.0,40.0,45.0,54.0,45.0,59.0,45.0,66.0,55.0,51.0,59.0,53.0,50.0,53.0,53.0,50.0,43.0,45.0,38.0,53.0,37.0,43.0,46.0,43.0,42.0,48.0,48.0,36.0,47.0,35.0,40.0,35.0,54.0,56.0,47.0,44.0,42.0,39.0,42.0,51.0,36.0,37.0,33.0,27.0,32.0,46.0,24.0,38.0,26.0,15.0,21.0,28.0,35.0,18.0,17.0,21.0,16.0,20.0,21.0,13.0,18.0,15.0,11.0,17.0,11.0,15.0,9.0,14.0,9.0,15.0,5.0,8.0,6.0,5.0,4.0,2.0,0.0,3.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,691,2260,422,0,207,237,247,240,269,268,244,217,217,211,228,199,167,125,92,78,66,43,14,3,1,0,3282,48,41,2,0,3284,52,35,2,0,972,18,52,414,102,19,1105,691,0,1771,1552,50,0,20,51,3,0,0,1,0,0,0,53,3245,0,82,147,191,18,7,15,1346,1567,0,645,830,213,19,19,1647,0,2.026685393258427,0.0,2.8880829015544043,0.0,8.330862733471687,18,43,59,5,4,7,435,449,0,71,62,26,53,106,133,156,84,152,69,41,20,19,10,13,5,999,21,905,115,813,207,153,867,841,179,196,824,572,448,82,938,977,43,907,113,703,204,322,698,706,314,370,650,333,687,374,646,11,1009,192,508,279,41,20,629,391,0,5,14,1,0,0,1,0,0,0,15,984,0,1.6634615384615383,1.5798076923076922,1.0,1.068181818181818,1.068181818181818,53.97156862745098 +130904,Panamá Oeste,San Carlos,Guayabito,366,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,53,10,174,8,0,0,0,10,0,159,0,5,12,3,0,13,0,0,17,3,131,5,34,0,2,183,4,2,0,0,3,192,0,118,31,7,21,5,0,3,3,164,22,0,0,181,0,8,3,0,0,0,181,3,8,0,0,0,0,43,144,0,5,0,0,0,150,34,0,0,1,0,0,0,4,3,0,0,374,6.570652173913044,21.58695652173913,6.880434782608695,23.483695652173918,1.0052083333333333,3.078125,1.9427083333333333,193,99,213,9,53,6,7,5,2,15,1,0,2,0,13,0,3,4,0,2,3,484,95,0,87,492,0,423,156,0,537,42,0,141,438,0,126,15,414,24,0,25,5,8,1,13,17,26,20,21,146,0,0,5,23,25,41,17,34,116,0,0,1,1,4,7,13,7,0,0,3,0,0,0,0,0,242,25,256,0,0,13,11,44,90,95,13,14,84,14,35,57,44,0,24,0,0,321,284,15,88,58,93,0,0,4,0,5,21,0,188,0,0,0,365,122,5,1,2,25,0,3,0,0,0,9,6,11,5,33,42,30,17,114,312,57,29,46,53,41,43,14,4,2,1,0,0,0,3,0,6.0,6.0,10.0,4.0,8.0,8.0,10.0,7.0,15.0,8.0,12.0,12.0,5.0,11.0,10.0,13.0,10.0,11.0,13.0,11.0,3.0,6.0,12.0,7.0,11.0,10.0,6.0,12.0,12.0,8.0,6.0,10.0,14.0,9.0,8.0,6.0,5.0,1.0,6.0,4.0,4.0,7.0,11.0,6.0,6.0,9.0,5.0,14.0,3.0,6.0,7.0,9.0,11.0,5.0,13.0,6.0,6.0,9.0,11.0,6.0,4.0,5.0,3.0,6.0,3.0,6.0,1.0,5.0,6.0,6.0,5.0,4.0,3.0,2.0,5.0,6.0,4.0,1.0,0.0,0.0,2.0,2.0,5.0,2.0,2.0,2.0,4.0,0.0,4.0,2.0,1.0,0.0,0.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,132,389,84,0,34,48,50,58,39,48,47,22,34,37,45,38,21,24,19,11,13,12,4,1,0,0,584,10,8,3,0,584,11,7,3,0,193,5,87,56,30,3,99,132,0,307,287,11,0,0,0,0,0,0,0,0,0,0,4,601,0,3,3,3,0,0,0,14,582,0,88,127,38,3,4,345,0,2.156378600823045,0.0,3.20125786163522,0.0,7.44297520661157,1,1,2,0,0,0,10,179,0,11,15,13,15,33,31,31,10,19,5,3,2,2,0,3,0,188,5,152,41,136,57,36,157,134,59,21,172,101,92,5,188,182,11,162,31,61,101,34,159,144,49,59,134,68,125,67,126,2,191,54,84,53,2,0,126,67,0,0,0,0,0,0,0,0,0,0,1,192,0,1.6632124352331603,1.471502590673575,0.0,1.1111111111111112,1.1111111111111112,55.21243523316062 +130905,Panamá Oeste,San Carlos,La Ermita,815,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,479,50,9,518,12,0,0,0,9,0,515,1,0,5,5,0,11,0,2,180,2,292,0,65,0,0,523,3,2,0,0,11,539,0,177,57,14,21,9,0,4,28,490,17,0,0,523,4,2,9,1,0,0,533,3,2,1,0,0,0,207,321,0,11,0,0,0,520,13,0,0,0,0,0,0,6,0,0,0,817,6.656660412757974,17.75422138836773,6.769230769230769,18.574108818011258,1.007421150278293,3.434137291280148,2.3413729128014844,543,300,640,69,148,6,17,20,5,42,4,3,22,1,27,4,3,16,2,0,2,1348,380,0,258,1470,0,1266,462,0,1624,104,0,470,1258,0,419,51,1215,43,0,46,18,28,9,33,36,54,44,44,391,0,1,8,65,76,164,38,85,379,0,28,12,17,30,47,31,27,6,0,11,0,0,0,0,0,625,92,836,0,3,31,17,143,290,319,70,14,285,70,193,63,66,7,2,4,3,927,893,90,201,69,297,26,0,7,3,1,63,7,631,0,0,0,957,434,8,27,7,104,6,10,0,0,3,28,48,34,25,126,110,101,57,185,1014,127,53,76,141,132,125,46,64,21,13,3,1,3,1,0,18.0,18.0,26.0,30.0,23.0,24.0,35.0,23.0,38.0,32.0,38.0,23.0,31.0,37.0,25.0,22.0,33.0,26.0,36.0,29.0,30.0,31.0,24.0,26.0,27.0,26.0,28.0,26.0,16.0,30.0,27.0,24.0,24.0,23.0,14.0,23.0,26.0,28.0,23.0,30.0,23.0,15.0,30.0,31.0,21.0,25.0,23.0,26.0,17.0,19.0,18.0,18.0,25.0,22.0,20.0,24.0,15.0,12.0,13.0,16.0,16.0,19.0,17.0,16.0,14.0,14.0,14.0,13.0,21.0,14.0,13.0,17.0,11.0,9.0,5.0,12.0,8.0,12.0,10.0,3.0,13.0,7.0,3.0,5.0,3.0,8.0,7.0,3.0,2.0,4.0,4.0,3.0,1.0,4.0,3.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,421,1147,252,0,115,152,154,146,138,126,112,130,120,110,103,80,82,76,55,45,31,24,15,5,1,0,1756,37,27,0,0,1757,43,20,0,0,502,6,133,252,70,3,434,420,0,992,798,30,0,12,5,3,1,0,0,4,0,0,65,1730,0,88,62,114,6,4,9,1080,457,0,246,392,132,13,5,1032,0,2.2342105263157896,0.0,3.1332046332046333,0.0,8.146153846153846,30,18,39,2,2,2,316,134,0,57,26,16,28,75,93,52,40,76,23,25,16,9,4,3,0,529,14,478,65,422,121,80,463,439,104,86,457,254,289,4,539,511,32,470,73,203,267,147,396,470,73,186,357,195,348,218,325,31,512,105,283,138,17,0,370,173,0,2,1,1,1,0,0,0,0,0,28,510,0,1.707182320441989,1.6445672191528544,1.0,1.0,1.0,55.20257826887661 +130906,Panamá Oeste,San Carlos,La Laguna,962,16,0,0,0,0,0,0,1,0,0,0,0,0,0,1,307,133,12,425,16,0,0,0,12,0,373,4,8,30,6,0,26,0,6,84,57,259,2,45,2,4,428,20,5,0,0,0,453,0,395,59,11,33,27,0,1,19,392,41,0,0,388,11,10,21,0,23,0,397,17,38,1,0,0,0,145,280,0,26,1,1,0,238,183,6,4,8,0,2,0,8,3,1,259,720,6.767220902612826,22.91448931116389,6.9691211401425175,23.78147268408551,1.033112582781457,3.5496688741721854,2.3443708609271523,468,269,436,19,80,12,12,2,1,21,4,5,27,3,14,13,3,2,3,5,26,1086,198,0,277,1007,0,712,572,0,1211,73,0,267,1017,0,240,27,971,46,0,46,11,12,1,28,39,41,30,30,350,0,1,1,37,52,142,30,48,207,0,4,10,28,21,20,26,44,5,1,14,0,0,0,5,0,552,29,591,0,2,16,5,90,163,252,28,58,165,42,78,79,38,5,168,0,3,722,637,44,185,89,215,21,5,15,4,2,61,7,433,10,0,0,786,257,1,6,19,85,3,11,4,0,4,14,24,22,14,67,173,61,25,177,684,124,61,82,133,74,63,30,27,26,16,7,5,2,15,10,16.0,20.0,18.0,21.0,18.0,21.0,18.0,23.0,18.0,14.0,16.0,21.0,14.0,19.0,18.0,24.0,15.0,15.0,22.0,19.0,19.0,31.0,9.0,16.0,20.0,25.0,22.0,19.0,13.0,22.0,17.0,18.0,10.0,24.0,11.0,18.0,21.0,10.0,21.0,22.0,23.0,12.0,24.0,17.0,15.0,14.0,15.0,17.0,12.0,14.0,15.0,19.0,13.0,17.0,18.0,17.0,19.0,19.0,23.0,12.0,18.0,18.0,15.0,12.0,18.0,15.0,13.0,11.0,9.0,12.0,8.0,21.0,10.0,16.0,10.0,7.0,7.0,10.0,3.0,7.0,5.0,5.0,5.0,4.0,2.0,3.0,4.0,4.0,2.0,4.0,1.0,0.0,1.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,275,879,205,0,93,94,88,95,95,101,80,92,91,72,82,90,81,60,65,34,21,17,5,3,0,0,1286,18,51,4,0,1286,33,36,4,0,416,13,130,228,47,11,240,274,0,710,585,64,0,0,9,7,4,0,0,0,0,0,18,1321,0,17,65,66,1,11,1,242,956,0,152,196,53,0,47,911,0,2.295955882352941,0.0,3.1952506596306067,0.0,7.970566593083149,6,18,27,1,5,1,74,336,0,53,38,21,39,68,58,52,26,33,25,10,8,12,6,16,3,458,10,379,89,338,130,111,357,214,254,42,426,251,217,12,456,425,43,379,89,323,56,126,342,309,159,153,315,231,237,185,283,36,432,121,235,95,17,1,331,137,0,0,3,4,2,0,0,0,0,0,3,456,0,1.5394456289978675,1.3582089552238803,1.0,1.0416666666666667,1.0416666666666667,55.17094017094017 +130907,Panamá Oeste,San Carlos,Las Uvas,1046,1,165,0,0,0,0,0,0,0,0,0,0,0,0,9,474,120,14,580,23,0,0,0,14,0,599,0,1,5,3,4,4,0,1,200,7,397,1,9,0,3,599,13,1,0,0,4,617,0,503,43,5,32,12,0,0,33,536,46,2,0,605,0,3,9,0,0,0,604,3,10,0,0,0,0,245,366,1,5,0,0,0,543,69,1,0,0,0,0,0,1,3,0,0,1212,6.080065359477124,12.967320261437909,6.328431372549019,13.898692810457517,1.0162074554294975,3.2512155591572123,1.9303079416531608,627,338,625,46,179,8,21,14,6,41,4,3,27,3,16,7,7,21,6,12,9,1548,301,0,345,1504,0,1159,690,0,1740,109,0,445,1404,0,399,46,1372,32,0,33,27,24,17,40,43,60,56,43,444,0,0,7,58,101,191,49,78,349,0,4,17,39,41,38,46,27,2,0,13,0,0,0,2,0,623,142,910,0,0,23,72,155,273,421,53,8,264,51,247,84,75,3,9,20,0,968,974,60,277,85,308,15,0,8,0,0,87,9,720,3,0,0,1090,443,7,8,22,92,1,10,2,0,0,52,28,36,26,123,38,151,47,264,1096,150,48,102,117,188,108,52,29,18,9,3,5,4,10,3,20.0,16.0,31.0,26.0,32.0,23.0,22.0,31.0,32.0,34.0,21.0,32.0,25.0,25.0,28.0,31.0,34.0,25.0,26.0,19.0,42.0,23.0,25.0,26.0,30.0,39.0,33.0,22.0,23.0,20.0,26.0,23.0,24.0,22.0,20.0,29.0,30.0,29.0,33.0,29.0,30.0,28.0,24.0,31.0,23.0,21.0,20.0,20.0,28.0,23.0,24.0,37.0,25.0,22.0,24.0,27.0,16.0,21.0,28.0,23.0,17.0,14.0,12.0,19.0,19.0,14.0,22.0,11.0,12.0,19.0,21.0,9.0,15.0,14.0,15.0,13.0,13.0,8.0,13.0,10.0,6.0,6.0,9.0,9.0,7.0,8.0,3.0,3.0,3.0,4.0,1.0,1.0,3.0,3.0,4.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,398,1259,285,0,125,142,131,135,146,137,115,150,136,112,132,115,81,78,74,57,37,21,12,4,2,0,1850,47,43,2,0,1850,52,38,2,0,563,19,63,265,70,6,559,397,0,1099,810,33,0,2,1,1,0,0,0,0,0,0,7,1931,0,34,54,42,2,19,4,431,1356,0,195,326,130,7,21,1263,0,2.150537634408602,0.0,2.993091537132988,0.0,8.031410916580844,14,26,23,0,5,2,163,394,0,79,35,27,43,73,122,66,38,73,26,18,4,5,6,11,1,617,10,572,55,505,122,105,522,536,91,108,519,361,266,76,551,591,36,566,61,275,291,151,476,456,171,229,398,112,515,80,547,0,627,143,328,134,22,0,397,230,0,1,1,0,0,0,0,0,0,0,2,623,0,1.543859649122807,1.5534290271132376,1.0,1.0,1.0,54.81499202551834 +130908,Panamá Oeste,San Carlos,Los Llanitos,1484,27,0,0,0,0,0,0,2,0,0,0,0,0,0,1,547,443,49,908,83,0,0,0,46,3,919,4,8,20,7,13,63,0,6,76,7,809,7,127,3,11,946,64,3,0,0,27,1040,0,295,108,3,34,31,0,1,9,981,49,0,0,933,7,41,52,1,5,1,1021,0,19,0,0,0,0,207,766,2,64,0,1,0,795,179,7,3,36,1,3,0,3,9,4,0,1513,6.412731006160164,21.082135523613964,6.820328542094456,22.857289527720734,1.0317307692307691,3.173076923076923,1.8086538461538464,1073,612,1436,78,333,25,48,25,7,91,13,12,38,0,52,15,8,18,7,15,15,2808,757,0,563,3002,0,1523,2042,0,3348,217,0,848,2717,0,781,67,2607,110,0,113,24,60,12,80,109,131,107,117,1124,0,0,3,111,130,358,87,129,593,15,4,29,29,43,44,20,72,3,0,15,0,0,0,3,0,1457,88,1665,0,3,41,21,83,526,940,80,36,459,62,214,334,94,13,339,3,1,2033,1758,94,512,361,456,45,2,46,3,15,189,11,1365,61,0,0,2336,703,3,5,37,109,2,12,3,0,4,29,56,43,32,170,346,158,85,622,2296,373,141,177,234,251,121,57,46,21,4,2,2,1,4,61,55.0,59.0,59.0,53.0,62.0,49.0,56.0,63.0,64.0,61.0,59.0,55.0,52.0,54.0,70.0,68.0,60.0,59.0,78.0,63.0,67.0,53.0,67.0,66.0,58.0,57.0,78.0,58.0,54.0,52.0,43.0,63.0,49.0,51.0,44.0,56.0,41.0,56.0,46.0,54.0,43.0,39.0,48.0,53.0,52.0,49.0,42.0,46.0,51.0,48.0,53.0,44.0,47.0,46.0,45.0,43.0,39.0,34.0,50.0,32.0,43.0,31.0,38.0,31.0,30.0,30.0,27.0,19.0,24.0,22.0,19.0,26.0,14.0,25.0,20.0,18.0,16.0,10.0,6.0,12.0,13.0,10.0,12.0,13.0,10.0,8.0,8.0,6.0,5.0,8.0,6.0,3.0,4.0,4.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,871,2518,402,0,288,293,290,328,311,299,250,253,235,236,235,198,173,122,104,62,58,35,17,4,0,0,3754,12,21,4,0,3754,12,21,4,0,1153,28,378,388,110,9,854,871,0,2393,1376,22,0,4,20,5,1,0,2,0,0,0,23,3736,0,52,156,139,4,3,3,715,2719,0,416,614,76,10,12,2663,0,2.3840482573726542,0.0,3.3887240356083086,0.0,7.217356897916117,10,56,46,4,0,0,247,710,0,136,100,83,104,160,159,99,51,97,22,15,12,11,2,3,19,1021,52,817,256,669,404,151,922,325,748,23,1050,441,632,24,1049,949,124,836,237,223,613,166,907,495,578,180,893,444,629,348,725,87,986,208,515,329,21,2,760,313,0,1,4,3,1,0,1,0,0,0,7,1056,0,1.8911627906976745,1.6353488372093024,1.0,1.0425531914893618,1.0425531914893618,53.17054986020504 +130909,Panamá Oeste,San Carlos,San José,1830,15,255,16,0,0,0,0,0,0,0,0,5,0,0,12,937,88,24,1013,24,0,0,0,24,0,1041,2,0,9,0,2,5,0,2,566,100,373,2,17,0,3,1017,10,14,0,0,20,1061,0,736,115,88,98,18,0,14,85,818,141,2,1,1034,3,5,16,0,3,0,975,5,52,29,0,0,0,570,478,4,7,2,0,50,796,196,0,0,0,0,1,0,13,5,0,0,2121,6.9884836852207295,21.914587332053745,6.993282149712092,22.705374280230327,1.0292177191328935,3.352497643732328,2.130065975494816,1097,612,1068,111,212,32,30,29,8,52,6,9,23,10,47,12,6,32,11,14,9,2790,354,0,953,2191,0,2573,571,0,2953,191,0,866,2278,0,762,104,2176,102,0,103,35,49,11,59,89,95,87,89,570,2,4,15,105,145,315,107,157,647,1,17,24,55,66,74,54,107,11,2,43,0,0,0,6,0,1383,116,1319,0,4,45,37,216,522,509,45,27,588,62,307,344,131,0,29,11,2,1681,1618,118,513,352,449,22,2,13,5,0,76,8,909,19,0,0,1693,763,16,24,54,210,10,42,6,0,6,58,85,82,38,251,64,270,91,554,1516,192,131,173,261,333,318,123,125,38,22,12,16,3,17,19,39.0,37.0,39.0,40.0,52.0,51.0,52.0,60.0,64.0,47.0,55.0,55.0,52.0,53.0,45.0,58.0,53.0,58.0,48.0,47.0,35.0,51.0,37.0,64.0,48.0,48.0,52.0,51.0,44.0,42.0,49.0,47.0,51.0,62.0,43.0,52.0,47.0,45.0,59.0,59.0,38.0,44.0,44.0,41.0,52.0,34.0,46.0,44.0,44.0,33.0,45.0,44.0,44.0,41.0,44.0,36.0,41.0,35.0,30.0,36.0,27.0,32.0,23.0,21.0,28.0,26.0,20.0,21.0,20.0,26.0,27.0,14.0,9.0,22.0,18.0,15.0,24.0,18.0,14.0,13.0,8.0,5.0,8.0,6.0,13.0,5.0,3.0,4.0,3.0,1.0,5.0,4.0,1.0,3.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,741,2197,361,0,207,274,260,264,235,237,252,262,219,201,218,178,131,113,90,84,40,16,14,4,0,0,3074,150,70,5,0,3078,156,60,5,0,946,42,382,511,104,33,541,740,0,1413,1761,125,0,3,31,1,0,0,0,0,0,1,55,3208,0,114,53,173,13,3,6,707,2230,0,555,675,179,11,44,1835,0,2.046863734679164,0.0,2.902439024390244,0.0,8.425886632312823,42,24,72,8,1,3,255,692,0,49,36,30,58,121,151,171,98,163,86,43,19,18,10,25,14,1068,29,1013,84,894,203,182,915,970,127,308,789,580,517,159,938,1041,56,973,124,732,241,400,697,921,176,421,676,197,900,184,913,12,1085,243,586,243,25,0,732,365,0,2,9,1,0,0,0,0,0,1,12,1072,0,1.5323609845031905,1.4749316317228809,1.125,1.0303030303030305,1.0303030303030305,50.81221513217867 +130304,Panamá Oeste,Capira,Cermeño,925,8,0,0,0,0,0,1,0,0,1,0,3,0,0,6,505,166,24,652,25,2,0,0,20,2,667,3,1,7,1,4,17,0,1,34,270,392,2,3,0,0,660,29,1,0,0,11,701,0,139,23,2,37,31,0,1,8,630,60,2,0,654,27,0,18,2,0,0,689,7,3,0,2,0,0,277,384,0,37,2,1,289,305,38,30,1,10,1,0,0,17,4,6,0,938,5.694620253164557,13.356012658227847,5.82120253164557,13.998417721518988,1.0128388017118402,3.3238231098430813,2.115549215406562,713,380,807,36,132,26,45,23,7,37,8,4,50,6,36,4,9,25,18,3,7,1676,461,0,501,1636,0,1391,746,0,1956,181,0,546,1591,0,508,38,1487,104,0,107,23,29,1,46,87,82,82,88,382,0,0,4,89,102,225,71,107,375,0,5,19,38,39,28,23,58,3,1,23,0,0,0,0,0,781,37,1113,0,0,19,10,106,350,520,31,106,351,35,138,63,31,3,140,43,0,1213,1061,133,350,72,232,14,0,3,0,5,89,16,831,16,0,0,1315,474,4,8,12,92,3,23,0,0,0,28,51,38,30,101,100,118,71,281,1316,180,71,110,134,137,166,51,57,15,12,4,3,1,1,16,36.0,24.0,31.0,46.0,34.0,32.0,32.0,33.0,41.0,34.0,42.0,37.0,38.0,36.0,30.0,37.0,29.0,29.0,43.0,35.0,45.0,32.0,42.0,37.0,29.0,41.0,31.0,37.0,36.0,35.0,27.0,28.0,30.0,30.0,26.0,27.0,27.0,30.0,35.0,36.0,40.0,34.0,31.0,24.0,21.0,22.0,30.0,29.0,34.0,25.0,19.0,29.0,28.0,23.0,25.0,22.0,26.0,25.0,23.0,22.0,23.0,17.0,25.0,22.0,18.0,17.0,21.0,15.0,12.0,25.0,10.0,15.0,13.0,12.0,12.0,11.0,9.0,17.0,9.0,9.0,8.0,9.0,12.0,7.0,2.0,7.0,3.0,5.0,0.0,4.0,3.0,0.0,5.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,526,1471,277,0,171,172,183,173,185,180,141,155,150,140,124,118,105,90,62,55,38,19,11,2,0,0,2223,23,16,12,0,2223,24,15,12,0,616,7,253,297,62,3,510,526,0,1350,895,29,0,1,107,6,0,0,0,0,1,0,10,2149,0,35,39,241,7,0,0,771,1181,0,311,383,98,7,9,1466,0,2.2232044198895027,0.0,3.2479201331114806,0.0,7.592788038698329,14,18,97,3,0,0,250,331,0,64,65,42,76,86,77,105,50,69,24,12,9,14,3,4,10,690,23,609,104,586,127,104,609,534,179,66,647,375,338,65,648,589,124,597,116,459,138,151,562,431,282,165,548,202,511,205,508,10,703,157,353,176,27,2,491,222,0,0,22,1,0,0,0,0,1,0,5,684,0,1.6965034965034964,1.483916083916084,1.0,1.0476190476190477,1.0476190476190477,52.5960729312763 +80814,Panamá,Panamá,Ancón,8553,39,7794,12,9,28,19,11,0,0,0,1,9,0,0,8011,1631,1385,207,10810,217,17,22,0,154,14,11034,107,12,22,1,23,19,0,16,8112,2185,875,21,16,14,11,10704,44,441,0,2,43,11234,2298,802,217,538,1141,89,79,3387,2335,4580,114,19,799,9852,1224,2,134,0,20,2,4677,2100,277,4057,106,1,16,8563,1620,1,661,376,13,10699,191,10,11,11,8,0,4,25,180,90,5,13660,2815,6.083577981651376,21.639908256880734,6.095688073394496,21.659633027522936,1.0226989496172334,4.196902260993413,2.6040591062844936,11500,6778,13121,520,1193,665,605,386,226,335,168,208,1118,401,368,97,68,129,96,53,84,31618,3515,27,23526,11607,27,29604,5529,27,33210,1928,22,11171,23972,17,4649,6522,22930,1036,6,1133,447,543,31,692,784,814,786,828,2079,9,3,60,1076,1265,1991,879,1275,5114,58,371,515,726,1051,2682,2541,2768,538,188,3494,5,28,25,339,22,16490,1144,14010,23,88,448,195,2215,6743,4044,210,798,13509,1162,1204,535,872,44,45,28,51,18038,19186,2827,9446,573,3421,946,14,126,97,27,104,39,13224,2791,11,11,11052,7678,66,375,413,7891,503,3325,342,22,201,3513,4591,2261,816,2802,109,935,454,1952,16500,554,396,547,923,1650,2178,1715,2277,1738,1430,817,1351,719,1638,2791,484.0,513.0,502.0,565.0,578.0,600.0,585.0,573.0,602.0,555.0,654.0,567.0,566.0,626.0,613.0,593.0,596.0,560.0,598.0,553.0,528.0,567.0,620.0,599.0,613.0,584.0,576.0,563.0,614.0,535.0,578.0,540.0,553.0,557.0,575.0,533.0,595.0,571.0,556.0,543.0,551.0,516.0,544.0,526.0,511.0,566.0,537.0,588.0,502.0,547.0,550.0,568.0,516.0,462.0,439.0,437.0,398.0,378.0,367.0,360.0,342.0,317.0,292.0,269.0,241.0,235.0,216.0,224.0,204.0,169.0,153.0,158.0,131.0,183.0,137.0,162.0,97.0,122.0,109.0,95.0,77.0,59.0,58.0,60.0,46.0,50.0,47.0,32.0,40.0,33.0,27.0,18.0,17.0,13.0,8.0,9.0,6.0,3.0,7.0,4.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,4,8583,25624,3013,4,2642,2915,3026,2900,2927,2872,2803,2798,2648,2740,2535,1940,1461,1048,762,585,300,202,83,29,4,4,28555,4850,3570,225,24,28718,5738,2519,225,24,5370,321,539,10338,867,763,10438,8578,10,6896,26345,3957,26,2040,818,39,48,27,27,2904,310,17,473,30494,27,1567,1932,972,380,90,183,2734,29339,27,9620,6234,2177,85,373,18709,26,1.467868812779862,0.0006656178143531,2.406937823308652,0.0011157318186428,11.058940468514937,586,613,325,144,37,95,922,8774,4,649,115,118,161,324,483,692,558,1005,845,789,556,1027,771,2368,1028,11386,114,10964,536,10654,846,1864,9636,10217,1283,8258,3242,5994,5506,5641,5859,11183,317,10714,786,8480,2234,8389,3111,10276,1224,8276,3224,800,10700,477,11023,131,11369,1944,6530,2141,885,66,7035,4465,0,356,199,8,14,12,8,656,75,7,165,9996,4,1.559571156839011,1.6588275981324572,1.3592592592592592,1.0586510263929618,1.0586510263929618,47.63426086956522 +50308,Darién,Santa Fe,Río Iglesias,906,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,412,177,43,577,12,19,3,0,20,1,477,0,3,90,8,9,45,0,0,122,4,485,3,16,0,2,607,22,0,0,0,3,632,0,184,38,1,8,44,0,0,9,547,75,1,0,240,374,0,8,0,10,0,616,0,2,0,0,14,0,50,426,0,75,81,0,115,331,84,18,4,9,1,35,1,29,3,2,0,908,5.50188679245283,19.743396226415094,6.464150943396226,22.71320754716981,1.0031645569620251,3.199367088607595,2.1550632911392404,634,340,718,78,132,7,10,20,2,24,2,2,17,0,18,12,3,6,12,6,5,1317,517,0,166,1668,0,1039,795,0,1629,205,0,579,1255,0,534,45,1120,135,0,143,38,36,1,57,94,93,75,87,400,0,0,0,71,105,131,76,65,220,0,2,25,24,26,29,21,12,1,0,2,0,0,0,0,0,744,47,777,0,5,24,8,9,314,379,21,54,191,40,55,11,81,0,396,12,1,1074,912,75,293,8,313,63,4,29,2,50,101,5,728,7,0,0,1205,305,1,1,11,42,1,2,0,0,2,51,20,21,33,60,204,61,43,296,1217,222,95,120,98,87,58,29,29,9,7,4,2,0,2,7,34.0,40.0,42.0,36.0,41.0,41.0,46.0,44.0,45.0,49.0,44.0,43.0,36.0,25.0,33.0,36.0,43.0,37.0,28.0,38.0,36.0,32.0,42.0,24.0,29.0,30.0,41.0,38.0,33.0,20.0,25.0,32.0,34.0,29.0,28.0,31.0,25.0,17.0,21.0,18.0,16.0,21.0,14.0,24.0,23.0,18.0,19.0,15.0,26.0,19.0,24.0,17.0,24.0,25.0,21.0,14.0,22.0,13.0,13.0,11.0,15.0,9.0,18.0,10.0,13.0,11.0,8.0,17.0,11.0,7.0,18.0,8.0,11.0,11.0,15.0,6.0,8.0,9.0,4.0,5.0,7.0,2.0,1.0,3.0,2.0,1.0,1.0,2.0,1.0,0.0,0.0,2.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,599,1211,176,0,193,225,181,182,163,162,148,112,98,97,111,73,65,54,63,32,15,5,7,0,0,0,1967,9,2,8,0,1967,10,1,8,0,545,12,65,235,42,5,483,599,0,854,1129,3,0,2,69,7,7,1,2,109,35,0,25,1729,0,31,137,204,79,1,2,473,1059,0,121,224,10,1,0,1630,0,2.737134909596662,0.0,3.754491017964072,0.0,6.27643504531722,11,37,75,32,1,2,146,330,0,83,76,71,81,93,69,47,34,38,14,14,4,7,0,2,1,619,15,394,240,432,202,93,541,417,217,21,613,265,369,8,626,520,114,350,284,320,30,68,566,284,350,130,504,315,319,417,217,6,628,162,369,95,8,1,480,154,0,0,24,2,1,1,2,13,7,0,15,569,0,1.6913385826771654,1.4362204724409449,0.0,1.0,1.0,49.19558359621451 +50102,Darién,Chepigana,Camogantí,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,8,22,73,1,17,1,0,3,1,63,0,1,12,3,4,13,0,0,0,0,67,28,1,0,0,81,11,0,0,0,4,96,0,23,21,1,5,12,0,0,1,82,13,0,0,11,73,0,3,2,3,4,89,0,1,0,0,6,0,2,26,0,1,67,0,0,80,0,0,0,0,0,16,0,0,0,0,0,158,5.1875,19.675,2.95,8.225,1.0,3.083333333333333,2.020833333333333,96,52,138,17,41,3,4,11,2,8,2,2,1,0,6,5,3,1,3,0,4,120,200,0,13,307,0,102,218,0,231,89,0,125,195,0,124,1,144,51,0,53,9,9,0,15,19,20,26,12,53,0,0,0,9,9,35,11,10,22,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,0,96,32,127,0,1,6,25,1,50,57,14,5,24,5,7,0,0,1,70,5,0,193,184,21,4,0,47,32,1,7,0,1,0,1,228,7,0,0,225,24,0,0,0,6,0,0,0,0,1,2,5,2,2,9,71,9,1,26,300,16,5,19,6,4,8,3,1,4,3,0,1,0,0,7,17.0,14.0,18.0,8.0,10.0,14.0,9.0,10.0,11.0,11.0,11.0,12.0,6.0,7.0,4.0,6.0,4.0,5.0,4.0,5.0,9.0,9.0,2.0,10.0,1.0,6.0,4.0,3.0,7.0,1.0,5.0,6.0,1.0,4.0,4.0,5.0,3.0,5.0,3.0,3.0,2.0,6.0,2.0,1.0,3.0,2.0,5.0,1.0,2.0,3.0,2.0,2.0,0.0,2.0,2.0,5.0,2.0,5.0,2.0,2.0,4.0,4.0,4.0,2.0,0.0,2.0,1.0,5.0,2.0,1.0,1.0,0.0,3.0,1.0,0.0,0.0,3.0,3.0,2.0,3.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,162,180,35,0,67,55,40,24,31,21,20,19,14,13,8,16,14,11,5,11,2,3,2,1,0,0,346,3,2,26,0,346,3,2,26,0,115,2,1,19,7,0,71,162,0,201,171,5,0,0,1,0,0,0,0,195,61,0,1,119,0,15,2,21,51,6,0,36,246,0,12,20,3,0,0,342,0,4.173913043478261,0.0,4.625,0.0,4.381962864721485,5,2,4,17,3,0,9,56,0,43,6,4,13,6,5,7,3,1,1,1,2,2,1,0,1,84,12,38,58,51,45,7,89,37,59,2,94,26,70,0,96,32,64,39,57,35,4,2,94,32,64,3,93,57,39,54,42,3,93,23,46,26,1,0,79,17,0,0,0,0,0,0,0,39,13,0,1,43,0,2.0104166666666665,1.9166666666666667,1.0,1.1666666666666667,1.1666666666666667,49.53125 +91205,Veraguas,Mariato,Tebario,343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,110,9,219,9,2,0,0,7,0,193,0,1,21,1,2,19,0,0,0,10,186,14,27,0,0,198,34,0,0,0,5,237,0,71,6,0,16,13,0,0,5,225,7,0,0,186,22,0,3,2,24,0,229,0,0,0,0,8,0,29,186,0,21,1,0,0,193,10,0,0,16,0,6,0,9,2,1,0,343,5.295566502463054,15.532019704433498,6.059113300492611,18.80788177339901,1.0084388185654007,3.2489451476793247,2.092827004219409,239,121,201,22,34,8,6,1,0,6,1,0,3,0,15,0,2,4,2,0,3,429,173,0,65,537,0,343,259,0,500,102,0,146,456,0,135,11,364,92,0,93,2,4,0,13,32,29,26,34,130,0,0,0,28,27,37,18,13,76,0,0,5,7,4,12,6,3,1,0,2,0,0,0,0,0,233,13,292,0,1,6,2,9,104,137,4,38,64,5,22,3,12,0,122,17,1,361,281,27,144,4,65,4,0,1,1,19,57,3,171,0,0,0,422,91,0,0,3,19,1,2,0,0,1,7,7,5,8,24,28,25,14,127,363,92,31,42,45,31,16,9,9,2,1,0,0,0,1,0,11.0,9.0,5.0,15.0,13.0,14.0,10.0,9.0,10.0,8.0,15.0,13.0,12.0,16.0,6.0,12.0,12.0,9.0,8.0,6.0,10.0,5.0,9.0,11.0,4.0,5.0,7.0,7.0,11.0,6.0,14.0,5.0,7.0,6.0,5.0,6.0,8.0,7.0,11.0,8.0,10.0,7.0,7.0,7.0,12.0,8.0,4.0,10.0,7.0,8.0,7.0,10.0,4.0,6.0,4.0,14.0,5.0,11.0,6.0,7.0,6.0,10.0,6.0,7.0,6.0,7.0,4.0,5.0,4.0,2.0,4.0,4.0,2.0,6.0,1.0,3.0,7.0,3.0,2.0,2.0,5.0,4.0,2.0,4.0,4.0,0.0,2.0,2.0,2.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,166,388,88,0,53,51,62,47,39,36,37,40,43,37,31,43,35,22,17,17,19,8,4,1,0,0,640,1,1,0,0,640,1,1,0,0,190,4,84,82,20,2,94,166,0,403,238,1,0,0,9,0,0,0,0,0,0,0,2,631,0,2,4,77,5,0,0,289,265,0,52,121,10,0,0,459,0,2.871369294605809,0.0,3.575418994413408,0.0,5.962616822429907,1,0,35,4,0,0,108,91,0,29,34,24,41,35,34,13,11,8,5,2,0,1,0,2,0,222,17,168,71,162,77,27,212,162,77,6,233,114,125,5,234,193,46,125,114,91,34,18,221,134,105,40,199,157,82,165,74,0,239,75,119,42,3,0,186,53,0,0,1,0,0,0,0,0,0,0,0,238,0,1.5104602510460252,1.1757322175732217,1.0,1.0,1.0,54.43096234309623 +30107,Colón,Colón,Escobal,887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,418,240,29,601,66,1,0,0,27,1,570,0,5,93,7,6,15,0,0,543,0,152,0,1,0,0,670,11,0,0,0,15,696,0,97,48,6,31,9,0,0,24,623,49,0,0,594,87,0,14,1,0,0,684,1,6,1,1,3,0,234,383,0,50,29,0,542,31,6,36,3,23,0,33,0,8,14,0,0,887,6.433506044905009,17.934369602763386,6.645941278065631,18.61139896373057,1.0100574712643675,3.1149425287356323,1.9310344827586208,703,365,839,61,187,18,29,20,6,44,4,7,8,2,49,18,7,8,11,7,3,1812,342,0,314,1840,0,1649,505,0,1997,157,0,694,1460,0,665,29,1376,84,0,84,32,40,1,60,62,77,64,99,358,1,0,15,62,108,179,64,108,461,1,4,26,42,45,93,23,32,6,0,7,0,0,0,0,0,765,56,1057,0,1,37,11,90,413,513,16,25,446,45,82,31,66,2,136,7,0,1138,1155,165,332,32,260,6,0,20,0,4,92,12,567,4,0,0,1123,573,15,6,25,128,1,7,0,0,0,31,57,45,37,151,105,107,75,213,1208,276,103,94,115,116,195,64,60,37,15,1,1,2,2,4,40.0,25.0,39.0,35.0,50.0,40.0,44.0,49.0,43.0,50.0,46.0,58.0,36.0,35.0,34.0,38.0,32.0,34.0,32.0,41.0,37.0,29.0,38.0,47.0,41.0,54.0,42.0,37.0,25.0,32.0,44.0,31.0,33.0,34.0,29.0,22.0,26.0,31.0,26.0,35.0,20.0,20.0,27.0,20.0,28.0,29.0,22.0,28.0,32.0,37.0,27.0,20.0,30.0,22.0,22.0,21.0,17.0,21.0,23.0,14.0,17.0,24.0,16.0,17.0,14.0,19.0,19.0,17.0,13.0,9.0,11.0,12.0,5.0,8.0,11.0,9.0,15.0,7.0,4.0,16.0,6.0,7.0,4.0,1.0,7.0,6.0,2.0,5.0,5.0,3.0,1.0,0.0,1.0,1.0,3.0,0.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,624,1438,231,0,189,226,209,177,192,190,171,140,115,148,121,96,88,77,47,51,25,21,6,3,1,0,2255,16,11,11,0,2258,17,7,11,0,544,21,283,330,66,6,419,624,0,1573,700,20,0,1,16,1,0,1,0,0,0,0,22,2252,0,51,113,145,15,0,1,275,1693,0,342,497,88,6,3,1357,0,2.3925531914893616,0.0,3.3271317829457363,0.0,7.895333624073267,19,31,60,9,0,1,91,492,0,60,43,45,63,87,70,83,63,82,49,22,15,10,8,3,0,677,26,526,177,510,193,89,614,558,145,117,586,389,314,41,662,621,82,542,161,282,260,172,531,453,250,199,504,271,432,149,554,4,699,143,360,193,7,0,456,247,0,0,7,1,0,0,0,0,0,0,9,686,0,1.6187766714082503,1.642958748221906,0.0,1.0,1.0,50.29587482219061 +10223,Bocas del Toro,Changuinola,La Mesa,547,0,0,0,0,0,0,0,0,0,0,2,0,0,0,138,81,57,110,263,13,11,52,0,46,1,222,0,1,61,0,12,89,0,1,0,171,182,4,26,1,2,298,84,0,0,0,4,386,0,59,46,2,35,19,0,0,11,362,11,1,1,175,195,1,6,8,1,0,346,0,0,0,0,40,0,21,171,0,39,153,2,0,262,3,3,15,18,12,63,0,1,9,0,0,549,4.022641509433963,6.8830188679245285,6.418867924528302,14.426415094339625,1.0129533678756475,3.4559585492227978,2.435233160621762,393,276,882,37,460,8,23,30,8,88,11,11,10,0,14,13,1,4,10,5,3,987,1005,0,134,1858,0,832,1160,0,1621,371,0,664,1328,0,644,20,1006,322,0,323,15,56,0,83,96,90,90,83,229,0,0,0,81,107,150,60,75,326,1,8,8,17,21,15,13,42,0,0,3,0,0,0,0,0,422,145,1043,0,1,130,11,87,385,479,10,82,308,12,6,0,5,0,120,0,0,1124,1113,68,270,0,98,13,0,2,0,34,16,5,1118,0,0,0,1156,379,0,8,3,63,0,1,0,0,0,16,25,11,23,31,105,17,10,329,1772,43,28,42,70,148,77,26,15,12,4,0,0,0,0,0,59.0,61.0,70.0,55.0,67.0,66.0,76.0,57.0,68.0,48.0,57.0,49.0,52.0,42.0,48.0,39.0,36.0,45.0,38.0,44.0,41.0,41.0,45.0,40.0,49.0,39.0,43.0,40.0,33.0,30.0,29.0,34.0,25.0,25.0,23.0,29.0,25.0,27.0,29.0,30.0,31.0,14.0,20.0,21.0,26.0,16.0,20.0,10.0,16.0,19.0,20.0,17.0,12.0,11.0,9.0,18.0,18.0,15.0,12.0,13.0,6.0,13.0,7.0,6.0,7.0,4.0,8.0,7.0,9.0,8.0,5.0,2.0,3.0,8.0,10.0,6.0,6.0,4.0,6.0,6.0,3.0,4.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,875,1256,106,0,312,315,248,202,216,185,136,140,112,81,69,76,39,36,28,28,10,3,0,0,1,0,2168,10,1,58,0,2168,10,1,58,0,672,5,67,200,24,3,392,874,0,1569,659,9,0,6,1924,12,25,15,0,0,0,4,3,248,0,8,26,3,3,1,1,61,2134,0,268,635,80,8,0,1246,0,2.4875311720698257,0.0,3.6666666666666665,0.0,5.750111756817166,0,12,3,0,1,1,18,358,0,50,16,27,25,43,78,46,35,34,22,8,4,2,0,1,0,324,69,192,201,181,212,37,356,169,224,15,378,115,278,12,381,237,156,180,213,96,84,49,344,103,290,43,350,82,311,34,359,3,390,36,185,167,5,0,301,92,0,3,303,4,9,4,0,0,0,1,1,68,0,2.8600508905852418,2.83206106870229,1.0,1.1578947368421053,1.1578947368421053,48.10178117048346 +10214,Bocas del Toro,Changuinola,El Silencio,1392,7,0,0,0,0,0,0,0,0,0,0,0,0,0,16,756,183,54,934,21,14,5,0,35,0,839,0,2,73,1,24,59,0,11,59,489,422,3,28,0,8,928,65,1,0,0,15,1009,0,110,125,27,71,57,0,207,55,657,64,26,0,658,327,0,5,2,15,2,1002,4,2,1,0,0,0,421,354,0,38,195,1,886,0,14,3,4,17,7,15,0,23,31,9,0,1399,6.712222222222223,21.40333333333333,6.756666666666667,21.75888888888889,1.0109018830525272,3.450941526263627,2.1932606541129838,1020,581,1570,83,285,32,38,65,17,64,16,22,44,2,56,22,6,33,19,15,31,2695,808,0,1131,2372,0,2481,1022,0,3178,325,0,1473,2030,0,1285,188,1780,250,0,258,32,95,11,113,132,133,119,138,377,0,0,0,141,163,240,115,139,594,1,10,70,65,79,52,72,248,35,1,67,0,0,0,3,0,1458,148,1398,0,4,61,19,100,811,389,51,47,946,114,148,60,104,4,193,4,1,1910,1929,562,460,69,376,49,0,57,1,38,66,21,1026,4,0,0,1707,793,0,15,66,332,23,65,3,0,1,64,263,132,73,290,142,202,110,329,2152,199,151,147,186,177,213,155,203,155,47,18,17,6,9,4,90.0,77.0,85.0,84.0,82.0,72.0,91.0,86.0,94.0,74.0,90.0,92.0,70.0,69.0,105.0,72.0,84.0,72.0,88.0,73.0,57.0,63.0,65.0,60.0,43.0,60.0,50.0,56.0,47.0,49.0,50.0,48.0,55.0,59.0,63.0,53.0,62.0,75.0,45.0,53.0,47.0,59.0,45.0,53.0,45.0,34.0,48.0,35.0,31.0,37.0,41.0,38.0,32.0,36.0,33.0,27.0,30.0,24.0,28.0,24.0,26.0,26.0,29.0,27.0,21.0,19.0,16.0,18.0,7.0,11.0,9.0,12.0,13.0,7.0,15.0,8.0,8.0,4.0,4.0,6.0,8.0,2.0,4.0,3.0,7.0,1.0,3.0,2.0,1.0,2.0,5.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1261,2378,200,0,418,417,426,389,288,262,275,288,249,185,180,133,129,71,56,30,24,9,8,2,0,0,3771,12,29,27,0,3774,16,22,27,0,962,26,147,484,55,17,888,1260,0,1455,2363,21,0,14,1307,16,618,12,0,2,0,12,49,1809,0,272,114,118,61,22,14,581,2657,0,813,1166,106,15,1,1738,0,2.174227481919789,0.0,3.1673306772908365,0.0,7.874446470435009,102,31,50,18,14,5,190,610,0,45,25,31,60,93,113,96,79,137,108,81,59,55,18,20,0,961,59,756,264,757,263,144,876,723,297,197,823,487,533,162,858,900,120,729,291,478,251,417,603,687,333,396,624,314,706,288,732,28,992,172,561,249,38,0,588,432,0,2,253,2,163,6,0,0,0,5,20,569,0,1.8725490196078431,1.8911764705882352,1.0,1.0,1.0,46.76078431372549 +10216,Bocas del Toro,Changuinola,Finca 30,2113,83,52,16,0,0,0,0,0,0,0,0,7,0,0,283,1130,267,91,1605,75,8,4,0,72,7,1585,0,4,39,0,65,68,0,10,548,655,533,3,28,1,3,1674,58,1,0,0,38,1771,0,152,125,80,86,50,0,7,130,1529,103,1,1,1361,337,0,10,47,15,1,1753,0,1,3,0,6,8,273,1230,0,132,136,0,1654,0,0,0,1,0,13,2,0,4,91,6,0,2271,5.937122128174123,17.444377267230955,5.903869407496977,17.409915356711004,1.020892151326934,3.249576510446076,1.9678147939017503,1815,1118,3719,254,1076,45,164,180,11,236,59,28,96,0,78,35,11,58,43,18,35,4879,2923,0,2803,4999,0,4733,3069,0,6549,1253,0,3002,4800,0,2815,187,3768,1032,0,1039,52,183,9,320,343,396,373,383,903,0,1,1,421,429,522,306,369,1163,8,17,59,78,93,71,169,59,8,1,26,0,0,0,0,0,2143,462,3806,0,7,235,56,257,1827,1524,86,112,1913,86,148,73,165,0,64,1,4,4435,4366,384,1624,82,329,22,2,7,4,68,31,42,3036,2,0,0,4657,1384,1,15,60,266,5,23,0,0,2,74,162,71,90,316,56,188,120,1526,5940,265,234,199,470,805,409,186,179,71,26,4,3,4,4,2,241.0,241.0,246.0,271.0,227.0,255.0,219.0,211.0,262.0,217.0,243.0,225.0,185.0,196.0,215.0,199.0,209.0,179.0,186.0,182.0,193.0,164.0,184.0,179.0,127.0,156.0,145.0,128.0,129.0,116.0,118.0,119.0,110.0,109.0,113.0,84.0,91.0,101.0,106.0,86.0,87.0,108.0,95.0,67.0,69.0,89.0,81.0,65.0,85.0,83.0,74.0,63.0,64.0,52.0,60.0,62.0,52.0,36.0,35.0,44.0,31.0,31.0,23.0,38.0,28.0,25.0,19.0,18.0,25.0,25.0,11.0,13.0,14.0,23.0,28.0,12.0,9.0,16.0,18.0,15.0,11.0,5.0,3.0,4.0,3.0,3.0,0.0,3.0,6.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3454,5035,312,0,1226,1164,1064,955,847,674,569,468,426,403,313,229,151,112,89,70,26,12,3,0,0,0,8613,14,30,144,0,8613,17,27,144,0,2542,62,512,583,86,14,1552,3450,0,4218,4555,28,0,20,6975,25,131,73,0,3,1,8,93,1472,0,89,89,126,59,1,13,353,8071,0,1596,2865,234,39,1,4066,0,2.4168773704171933,0.0,3.7013574660633486,0.0,5.970457902511078,32,30,35,23,0,6,101,1588,0,75,31,47,90,182,334,313,171,268,139,72,36,29,10,10,1,1739,76,1164,651,1139,676,282,1533,1193,622,146,1669,753,1062,85,1730,1383,432,1217,598,640,577,419,1396,938,877,228,1587,307,1508,370,1445,18,1797,245,920,589,61,0,1175,640,0,5,1234,3,38,15,0,2,0,0,19,499,0,2.443526170798898,2.4055096418732784,1.0,1.1375,1.1375,45.15261707988981 +10213,Bocas del Toro,Changuinola,Barriada 4 de Abril,2758,75,5,11,0,0,0,0,0,0,0,0,8,0,0,147,963,846,243,1843,113,12,86,0,144,1,1394,0,13,340,3,281,166,0,2,253,643,1177,9,111,0,6,2103,50,1,1,0,44,2199,6,311,178,21,75,59,0,9,46,1997,83,0,64,1031,934,0,94,55,80,5,2195,0,0,0,0,3,1,139,1272,0,397,391,0,1414,0,2,19,5,0,73,0,356,29,295,6,2619,238,6.303672316384181,16.78319209039548,6.285310734463277,16.66454802259887,1.0159163256025463,2.778080945884493,1.7171441564347432,2242,1363,4641,494,874,83,200,207,37,188,79,30,117,2,104,56,15,45,43,28,44,5159,4185,0,971,8373,0,3901,5443,0,7685,1659,0,3709,5635,0,3510,199,4269,1366,0,1368,62,215,21,396,459,483,440,426,1288,0,0,1,495,512,573,344,402,1130,10,22,110,121,124,130,162,28,8,3,11,0,0,0,0,0,2543,364,4516,0,18,185,63,201,2228,1649,84,354,1865,171,444,86,172,1,61,4,0,5275,5282,368,1676,114,620,17,1,8,0,159,49,49,4754,12,0,0,5563,1506,1,25,53,259,5,11,0,0,0,75,157,91,103,493,51,382,133,1422,7517,330,255,329,665,819,293,127,114,62,19,4,6,4,1,12,281.0,330.0,283.0,319.0,335.0,302.0,351.0,310.0,343.0,280.0,305.0,300.0,278.0,231.0,248.0,249.0,250.0,229.0,220.0,214.0,170.0,193.0,193.0,184.0,149.0,156.0,152.0,148.0,167.0,146.0,114.0,140.0,154.0,159.0,130.0,137.0,142.0,148.0,128.0,116.0,121.0,87.0,101.0,94.0,84.0,86.0,80.0,75.0,92.0,91.0,89.0,78.0,64.0,62.0,53.0,44.0,36.0,49.0,38.0,33.0,46.0,23.0,32.0,33.0,31.0,26.0,27.0,19.0,9.0,9.0,14.0,13.0,16.0,16.0,18.0,9.0,8.0,10.0,11.0,15.0,5.0,6.0,7.0,2.0,1.0,2.0,2.0,1.0,0.0,1.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4496,5810,251,0,1548,1586,1362,1162,889,769,697,671,487,424,346,200,165,90,77,53,21,6,3,1,0,0,10342,42,38,135,0,10347,48,27,135,0,2865,55,347,669,80,13,2040,4488,0,3766,6742,49,0,61,8263,58,100,46,4,3,5,4,108,1905,0,147,257,142,71,2,7,1064,8867,0,1546,3464,173,36,7,5331,0,2.4670896114195084,0.0,3.7434599156118153,0.0,5.656815383158095,61,69,51,22,1,5,305,1728,0,129,76,111,153,359,518,302,167,245,88,39,18,19,2,6,2,2171,71,1040,1202,1025,1217,285,1957,1112,1130,107,2135,681,1561,87,2155,1701,541,1136,1106,453,683,361,1881,1024,1218,256,1986,215,2027,188,2054,11,2231,250,1299,626,67,0,1573,669,0,10,1544,15,33,6,1,1,1,1,31,599,0,2.3528099910793934,2.3559322033898304,1.5,1.05,1.05,42.40722569134701 +10201,Bocas del Toro,Changuinola,Changuinola,2234,9,53,0,0,0,0,0,0,0,0,3,0,2,0,47,1290,312,63,1585,64,7,0,0,49,7,1320,0,8,246,2,75,61,0,0,437,819,422,5,24,1,4,1657,26,3,0,0,26,1712,12,119,110,76,250,17,0,210,272,1183,40,0,7,1193,468,0,30,10,11,0,1706,0,4,0,0,0,2,734,603,0,220,155,0,1468,0,0,0,1,0,1,0,0,217,24,1,2301,0,6.566757493188011,19.685967302452315,6.624659400544959,20.17643051771117,1.012266355140187,3.2908878504672896,1.9188084112149533,1736,851,2375,146,524,71,83,116,15,119,31,31,36,2,77,41,17,31,31,18,29,4262,1374,0,2279,3357,0,3821,1815,0,5048,588,0,2126,3510,0,1720,406,3104,406,0,412,48,122,13,179,175,216,210,215,491,0,2,1,224,285,382,184,256,1013,3,34,77,122,163,123,299,231,35,6,107,0,3,0,5,0,2096,203,2533,0,6,95,37,252,1249,962,39,31,1700,93,221,82,139,2,11,0,0,2949,3187,768,878,86,427,70,0,19,0,51,60,21,2215,14,0,0,2606,1345,1,41,139,572,21,99,8,0,0,174,408,193,175,455,18,248,127,501,3502,214,145,220,327,361,380,218,302,204,119,41,38,19,32,14,145.0,109.0,107.0,139.0,130.0,131.0,135.0,121.0,149.0,138.0,146.0,133.0,132.0,118.0,118.0,127.0,123.0,125.0,105.0,98.0,102.0,90.0,108.0,93.0,99.0,90.0,122.0,89.0,64.0,85.0,95.0,83.0,86.0,81.0,90.0,78.0,84.0,81.0,88.0,87.0,67.0,76.0,69.0,75.0,49.0,72.0,67.0,69.0,76.0,79.0,64.0,66.0,57.0,56.0,64.0,44.0,40.0,50.0,43.0,41.0,62.0,38.0,37.0,46.0,29.0,37.0,39.0,31.0,17.0,23.0,20.0,23.0,15.0,24.0,18.0,14.0,15.0,14.0,14.0,11.0,7.0,6.0,4.0,7.0,8.0,2.0,2.0,5.0,4.0,4.0,4.0,1.0,4.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1951,3809,376,0,630,674,647,578,492,450,435,418,336,363,307,218,212,147,100,68,32,17,10,2,0,0,5926,71,88,51,0,5932,76,77,51,0,1514,26,107,722,109,32,1677,1949,0,1694,4311,131,0,17,2835,20,67,67,0,2,4,7,101,3016,0,562,208,161,100,22,25,622,4436,0,1376,1759,249,31,4,2717,0,2.08905750798722,0.0,3.0879657910812464,0.0,8.169491525423728,196,68,52,40,12,8,227,1133,0,145,42,54,83,157,213,167,128,184,152,138,73,91,47,58,1,1702,34,1171,565,1192,544,249,1487,1214,522,561,1175,779,957,296,1440,1577,159,1248,488,844,404,763,973,1264,472,642,1094,156,1580,145,1591,21,1715,349,908,453,26,2,925,811,0,4,622,3,22,24,0,2,1,3,32,1023,0,1.6967779056386652,1.833716915995397,1.2857142857142858,1.0862068965517242,1.0862068965517242,47.154377880184335 +10206,Bocas del Toro,Changuinola,El Empalme,2942,7,316,9,0,0,0,0,0,0,0,2,3,0,0,138,2454,64,59,2587,69,3,1,0,49,6,2638,0,0,10,1,13,27,0,26,548,1838,283,21,18,1,6,2624,19,3,2,0,67,2715,0,203,40,43,236,37,0,84,351,2077,193,9,1,2392,312,0,3,2,6,0,2704,0,9,2,0,0,0,869,1677,0,56,113,0,2592,52,0,0,2,0,1,1,0,34,31,2,3254,25,6.633888048411498,18.103630862329805,6.635400907715582,17.911497730711044,1.021731123388582,3.5646408839779005,2.2732965009208104,2779,1406,4424,257,1631,87,180,203,28,286,38,42,100,1,152,66,23,108,47,43,21,7913,2596,0,3345,7164,0,6724,3785,0,9452,1057,0,4160,6349,0,3647,513,5518,831,0,836,49,219,31,308,373,406,338,418,1178,0,0,1,503,531,772,349,501,1561,2,9,223,308,336,329,479,200,49,14,176,0,1,3,6,0,3496,536,4997,0,11,272,99,609,2603,1507,104,174,2796,162,301,125,427,3,56,4,5,5755,5707,1079,1700,136,869,63,1,26,5,81,122,41,3874,6,0,0,5328,2472,1,26,172,811,41,171,7,0,4,193,579,240,246,712,79,505,318,1156,6837,407,314,410,726,800,676,406,427,242,105,42,42,13,9,6,235.0,221.0,272.0,225.0,266.0,231.0,239.0,247.0,260.0,237.0,254.0,297.0,247.0,256.0,228.0,249.0,215.0,239.0,216.0,220.0,220.0,213.0,225.0,230.0,185.0,204.0,150.0,169.0,150.0,134.0,151.0,143.0,142.0,151.0,133.0,126.0,119.0,150.0,151.0,133.0,158.0,120.0,112.0,134.0,111.0,107.0,88.0,110.0,119.0,106.0,139.0,94.0,105.0,99.0,97.0,89.0,95.0,103.0,72.0,89.0,78.0,71.0,70.0,68.0,76.0,73.0,76.0,58.0,56.0,50.0,47.0,36.0,38.0,45.0,55.0,38.0,19.0,17.0,29.0,29.0,14.0,22.0,18.0,9.0,9.0,9.0,8.0,12.0,7.0,14.0,4.0,6.0,9.0,2.0,4.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3715,6928,819,0,1219,1214,1282,1139,1073,807,720,679,635,530,534,448,363,313,221,132,72,50,25,4,2,0,11249,70,78,65,0,11252,77,68,65,0,2616,95,1117,1267,246,71,2340,3710,0,5436,5917,109,0,85,5226,34,190,98,1,9,0,15,87,5717,0,731,661,246,222,7,24,936,8635,0,2128,3622,567,96,5,5044,0,2.279771076381246,0.0,3.3766101694915256,0.0,7.815651718722736,225,204,81,109,5,13,259,1883,0,122,63,82,133,259,377,341,279,402,258,166,94,112,45,41,0,2698,81,2317,462,2291,488,448,2331,2348,431,532,2247,1405,1374,413,2366,2554,225,2320,459,1605,715,1177,1602,1960,819,822,1957,260,2519,245,2534,33,2746,483,1278,949,69,0,1580,1199,0,14,923,12,48,33,1,3,0,6,31,1708,0,2.0708888089240736,2.0536164087801367,1.0,1.0846153846153843,1.0846153846153843,50.04030226700252 +10220,Bocas del Toro,Changuinola,Finca 12,852,0,49,0,0,1,0,0,0,0,0,0,0,0,0,83,636,12,6,721,10,0,0,0,5,1,732,0,0,0,0,4,1,0,0,140,582,13,2,0,0,0,726,1,2,0,0,8,737,2,15,6,65,63,13,0,13,145,517,61,1,0,705,30,0,0,0,2,0,732,0,2,3,0,0,0,357,367,0,11,2,0,669,0,0,0,0,0,0,0,0,68,0,0,902,0,6.80119581464873,22.10014947683109,6.738415545590433,21.985052316890883,1.0325644504748983,3.4084124830393487,2.238805970149253,761,434,1141,109,501,27,69,49,5,97,16,10,43,2,28,15,5,28,27,5,7,2376,584,0,1001,1959,0,1938,1022,0,2643,317,0,1134,1826,0,922,212,1624,202,0,232,12,52,16,101,89,111,98,93,305,0,0,0,139,140,236,100,152,431,2,16,45,76,104,103,178,49,15,5,54,0,3,1,2,0,1093,181,1285,0,10,56,28,179,617,449,24,16,951,46,83,63,88,0,20,0,0,1670,1594,301,642,63,203,32,1,9,0,21,25,15,1197,16,0,0,1475,657,0,20,45,287,15,56,4,0,0,112,170,108,79,218,16,128,64,379,1872,105,77,138,178,278,195,102,144,75,37,17,15,5,10,16,81.0,70.0,73.0,80.0,60.0,59.0,65.0,82.0,63.0,72.0,87.0,63.0,55.0,54.0,60.0,60.0,56.0,63.0,65.0,50.0,61.0,48.0,70.0,59.0,45.0,48.0,60.0,46.0,42.0,42.0,66.0,55.0,30.0,45.0,38.0,61.0,48.0,48.0,38.0,51.0,34.0,34.0,35.0,36.0,39.0,27.0,22.0,24.0,37.0,24.0,26.0,31.0,27.0,30.0,29.0,28.0,40.0,34.0,29.0,27.0,20.0,23.0,22.0,13.0,23.0,25.0,11.0,10.0,25.0,17.0,14.0,11.0,18.0,16.0,14.0,11.0,11.0,6.0,8.0,13.0,1.0,4.0,2.0,2.0,1.0,2.0,0.0,1.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1024,2009,231,0,364,341,319,294,283,238,234,246,178,134,143,158,101,88,73,49,10,7,3,1,0,0,3129,33,81,21,0,3134,41,68,21,0,734,31,64,465,65,16,865,1024,0,1299,1905,60,0,93,1849,1,14,29,0,0,0,2,24,1252,0,235,51,40,30,2,12,217,2677,0,705,1099,172,32,1,1255,0,2.1390205371248023,0.0,3.064935064935065,0.0,7.953431372549019,84,15,14,11,1,5,50,581,0,20,9,16,21,54,111,80,68,126,93,51,31,41,14,21,5,746,15,646,115,622,139,132,629,636,125,180,581,342,419,124,637,702,59,653,108,423,230,339,422,525,236,255,506,72,689,76,685,4,757,126,360,253,22,1,516,245,0,17,309,1,4,5,0,0,0,1,6,418,0,2.1916010498687664,2.0918635170603674,2.25,1.125,1.125,50.369250985545335 +10222,Bocas del Toro,Changuinola,Finca 66,805,0,7,3,0,0,0,0,0,0,0,1,0,0,0,229,389,4,8,609,13,0,0,0,8,0,623,0,0,0,0,0,4,0,3,173,445,9,0,1,0,2,602,1,11,0,0,16,630,13,31,12,50,64,15,0,22,163,387,58,0,0,598,30,0,0,0,2,0,629,0,1,0,0,0,0,272,350,0,4,4,0,502,0,0,0,0,0,0,0,0,126,1,1,816,0,6.948207171314741,23.51394422310757,6.946215139442231,23.55577689243028,1.042857142857143,3.596825396825397,2.2857142857142856,657,270,724,41,285,16,35,41,6,59,7,12,28,3,25,11,7,23,10,6,6,1798,251,0,765,1284,0,1752,297,0,1860,189,0,722,1327,0,558,164,1201,126,0,131,21,33,9,60,58,67,61,61,200,0,0,1,74,87,167,63,89,307,1,1,46,82,87,134,98,36,7,2,57,0,0,1,8,0,870,104,840,0,2,32,9,168,396,244,21,11,722,67,52,31,72,0,15,0,0,1108,1076,299,399,35,164,37,0,24,1,5,11,13,622,25,0,0,946,495,1,15,58,229,7,55,8,0,1,56,172,73,71,225,20,66,57,233,1059,65,64,89,143,189,178,86,121,56,32,16,27,12,22,25,40.0,24.0,33.0,38.0,43.0,29.0,36.0,42.0,45.0,40.0,40.0,40.0,33.0,34.0,38.0,35.0,35.0,40.0,45.0,28.0,39.0,50.0,31.0,38.0,27.0,34.0,41.0,23.0,27.0,27.0,41.0,25.0,39.0,25.0,36.0,26.0,31.0,26.0,24.0,28.0,35.0,22.0,29.0,33.0,17.0,18.0,26.0,28.0,30.0,27.0,25.0,19.0,22.0,21.0,28.0,22.0,27.0,21.0,30.0,19.0,25.0,16.0,14.0,16.0,12.0,9.0,17.0,8.0,18.0,14.0,11.0,15.0,17.0,19.0,18.0,4.0,9.0,9.0,10.0,11.0,6.0,3.0,4.0,6.0,3.0,2.0,3.0,1.0,1.0,1.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,555,1403,226,0,178,192,185,183,185,152,166,135,136,129,115,119,83,66,80,43,22,8,4,3,0,0,2077,62,34,11,0,2079,64,30,11,0,448,30,57,323,59,23,689,555,0,831,1316,37,0,38,861,18,12,6,0,1,0,1,12,1235,0,157,38,57,32,2,7,202,1689,0,548,636,183,18,1,798,0,2.160815402038505,0.0,3.0364842454394694,0.0,8.78617216117216,74,16,21,13,1,3,68,461,0,23,10,12,21,56,72,71,59,112,60,42,34,34,17,29,5,634,23,576,81,564,93,107,550,578,79,211,446,356,301,113,544,632,25,563,94,401,162,314,343,573,84,218,439,78,579,68,589,4,653,178,274,189,16,1,384,273,0,11,185,1,4,1,0,1,0,1,3,450,0,1.6838905775075987,1.635258358662614,1.1666666666666667,1.0588235294117647,1.0588235294117647,52.17047184170472 +10219,Bocas del Toro,Changuinola,Finca 4,1444,25,16,0,0,0,0,0,0,0,0,0,1,0,0,337,595,216,40,1132,16,0,11,0,26,3,1003,0,3,80,1,55,37,0,9,119,600,409,41,19,0,0,1102,69,0,0,0,17,1188,0,135,42,31,47,42,0,46,57,1015,69,0,1,834,332,0,4,10,7,1,1178,0,8,0,0,1,1,238,683,0,127,139,1,701,245,0,92,13,3,44,15,17,55,3,0,0,1486,4.297040169133193,8.673361522198732,4.739957716701903,10.912262156448202,1.0328282828282829,3.4444444444444446,2.3324915824915826,1228,686,2444,107,839,40,73,103,18,167,25,12,39,0,38,27,12,17,18,9,14,3284,1927,0,932,4279,0,2752,2459,0,4529,682,0,1962,3249,0,1852,110,2643,606,0,608,53,114,1,198,204,231,210,264,617,0,0,1,304,316,419,175,245,728,1,2,56,62,82,83,157,31,18,4,27,0,0,0,0,0,1297,213,2822,0,9,82,61,256,1234,1227,31,74,1003,58,116,22,123,2,115,5,6,2834,2947,325,718,25,332,24,0,20,6,34,35,22,2324,29,0,0,3062,981,1,4,30,212,16,26,0,0,6,45,125,43,62,258,99,156,98,618,4029,151,125,208,306,462,175,102,102,47,25,8,6,3,3,29,130.0,149.0,149.0,142.0,149.0,148.0,155.0,148.0,140.0,139.0,125.0,161.0,135.0,134.0,131.0,149.0,117.0,132.0,106.0,122.0,104.0,126.0,97.0,99.0,85.0,104.0,85.0,83.0,73.0,77.0,78.0,79.0,68.0,62.0,70.0,53.0,62.0,77.0,59.0,75.0,65.0,64.0,72.0,57.0,48.0,53.0,40.0,52.0,45.0,45.0,47.0,36.0,41.0,42.0,45.0,37.0,47.0,31.0,39.0,33.0,35.0,22.0,35.0,31.0,25.0,25.0,30.0,14.0,19.0,15.0,25.0,13.0,19.0,30.0,23.0,16.0,8.0,6.0,10.0,16.0,3.0,4.0,10.0,5.0,10.0,3.0,5.0,0.0,2.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2135,3329,317,0,719,730,686,626,511,422,357,326,306,235,211,187,148,103,110,56,32,12,3,1,0,0,5694,9,20,58,0,5695,10,18,58,0,1535,22,423,440,110,12,1105,2134,0,3592,2161,28,0,3,4118,14,14,15,0,0,0,7,10,1600,0,257,560,60,44,9,16,137,4698,0,858,1814,248,29,1,2831,0,2.385752688172043,0.0,3.638810198300283,0.0,6.427607680332122,85,162,16,20,4,5,48,888,0,114,31,44,90,162,199,160,102,142,84,38,19,24,11,3,4,1146,82,804,424,813,415,166,1062,777,451,115,1113,509,719,97,1131,953,275,788,440,549,239,352,876,652,576,212,1016,213,1015,130,1098,17,1211,163,576,467,22,0,708,520,0,0,758,5,4,4,0,0,0,0,6,451,0,2.307817589576547,2.3998371335504887,1.0,1.0384615384615383,1.0384615384615383,48.3542345276873 +10215,Bocas del Toro,Changuinola,Finca 6,2600,360,0,0,0,0,0,0,0,0,0,0,10,0,0,76,1305,635,112,1913,103,18,1,0,74,19,1239,0,18,456,2,259,143,0,11,412,864,730,14,104,4,0,2001,94,5,0,0,28,2128,4,332,166,147,120,63,0,102,160,1813,48,5,0,1274,611,0,73,147,20,3,2113,0,3,0,0,7,5,530,974,0,452,172,0,1848,0,1,1,0,0,7,0,37,8,226,0,2686,284,6.262844780962682,12.466197944835049,6.084369929691725,11.94862087614927,1.0244360902255638,2.829887218045113,1.6912593984962403,2190,1251,3737,305,822,79,144,154,30,160,48,12,46,4,119,96,22,32,52,44,32,5096,2888,0,1664,6320,0,4347,3637,0,6751,1233,0,2842,5142,0,2573,269,4084,1058,0,1066,68,178,6,289,341,340,308,330,941,1,0,0,348,445,577,254,307,1198,4,28,100,126,117,162,228,96,23,12,84,0,0,3,4,0,2477,290,3808,0,7,118,52,331,1691,1439,65,282,1969,147,242,53,260,0,24,1,1,4491,4491,597,1427,58,579,29,2,3,2,106,41,23,3754,91,0,0,4389,1573,0,36,35,437,19,83,3,0,3,115,292,137,154,421,27,329,153,1136,5941,218,162,272,709,637,339,172,209,111,56,22,24,9,10,91,253.0,232.0,242.0,271.0,273.0,240.0,257.0,211.0,230.0,198.0,216.0,214.0,174.0,177.0,190.0,177.0,168.0,172.0,173.0,168.0,168.0,165.0,149.0,188.0,121.0,166.0,131.0,141.0,137.0,128.0,134.0,109.0,123.0,112.0,111.0,78.0,103.0,114.0,113.0,98.0,105.0,106.0,100.0,96.0,79.0,81.0,79.0,96.0,85.0,78.0,95.0,72.0,64.0,55.0,66.0,55.0,55.0,61.0,46.0,61.0,56.0,49.0,50.0,43.0,38.0,32.0,27.0,31.0,23.0,35.0,28.0,21.0,11.0,19.0,22.0,17.0,9.0,18.0,18.0,13.0,14.0,8.0,2.0,4.0,11.0,3.0,5.0,2.0,4.0,1.0,2.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,3378,5218,386,0,1271,1136,971,858,791,703,589,506,486,419,352,278,236,148,101,75,39,15,5,3,0,0,8744,44,49,145,0,8747,48,42,145,0,2438,52,458,761,121,32,1747,3373,0,3376,5538,68,0,81,5542,50,37,19,0,2,3,9,53,3186,0,426,260,152,141,13,2,418,7570,0,1691,2841,316,25,7,4102,0,2.3812104787714543,0.0,3.4213636363636364,0.0,6.453239812959252,143,96,57,61,8,2,135,1688,0,167,65,73,121,362,419,267,169,211,114,74,39,53,18,26,2,2085,105,1137,1053,1127,1063,242,1948,1165,1025,341,1849,737,1453,198,1992,1623,567,1170,1020,751,419,571,1619,1198,992,485,1705,160,2030,115,2075,17,2173,338,1207,606,39,0,1489,701,0,15,1103,8,13,8,0,1,1,4,15,1022,0,2.0506849315068494,2.0506849315068494,1.0,1.0266666666666666,1.0266666666666666,45.28949771689498 +10404,Bocas del Toro,Almirante,Nance de Riscó,566,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,96,121,46,206,15,6,25,0,12,3,107,0,0,83,1,10,64,0,2,28,0,219,5,13,1,1,99,168,0,0,0,0,267,0,196,28,0,42,34,0,0,0,265,1,1,0,55,208,0,1,1,1,1,256,1,0,0,0,10,0,9,99,1,128,30,0,0,164,44,3,3,4,4,42,0,0,3,0,0,567,5.307692307692308,13.23076923076923,5.870192307692308,18.115384615384617,1.0,3.842696629213483,2.617977528089888,267,189,809,33,269,6,12,14,1,46,3,0,1,0,10,13,2,2,5,5,2,523,921,0,18,1426,0,59,1385,0,1168,276,0,627,817,0,620,7,611,206,0,209,25,57,1,93,75,100,74,73,228,0,1,0,59,71,96,33,49,180,1,1,1,2,3,2,1,9,0,0,0,0,0,0,0,0,541,6,576,0,0,0,0,9,360,168,17,22,41,67,6,0,23,3,403,4,0,817,833,18,31,1,271,10,0,216,0,92,22,4,769,0,0,0,919,191,0,0,2,11,0,0,0,0,0,6,3,5,6,39,412,42,8,26,1536,46,13,14,15,11,11,3,0,0,1,0,0,0,0,0,47.0,61.0,50.0,48.0,50.0,57.0,58.0,57.0,56.0,43.0,53.0,48.0,47.0,41.0,50.0,54.0,35.0,41.0,29.0,35.0,31.0,26.0,27.0,31.0,36.0,24.0,22.0,16.0,20.0,21.0,24.0,22.0,18.0,12.0,11.0,13.0,14.0,8.0,15.0,18.0,10.0,13.0,11.0,16.0,16.0,13.0,15.0,7.0,14.0,15.0,12.0,8.0,11.0,9.0,7.0,6.0,10.0,9.0,4.0,5.0,7.0,7.0,4.0,6.0,2.0,4.0,2.0,2.0,3.0,2.0,1.0,1.0,2.0,2.0,1.0,1.0,3.0,2.0,0.0,3.0,2.0,4.0,1.0,2.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,766,840,44,0,256,271,239,194,151,103,87,68,66,64,47,34,26,13,7,9,11,3,1,0,0,0,1632,0,0,18,0,1632,0,0,18,0,497,5,53,68,20,4,239,764,0,1260,390,0,0,0,1614,2,3,4,0,0,0,0,1,26,0,0,1,2,0,0,0,11,1636,0,41,87,11,0,0,1511,0,2.860068259385665,0.0,4.317934782608695,0.0,4.713939393939394,0,1,0,0,0,0,2,264,0,85,30,38,41,41,14,8,2,5,2,1,0,0,0,0,0,171,96,54,213,38,229,42,225,30,237,1,266,30,237,2,265,152,115,35,232,14,21,8,259,6,261,2,265,152,115,123,144,6,261,13,134,119,1,0,146,121,0,0,260,0,0,0,0,0,0,0,0,7,0,3.059925093632959,3.119850187265917,1.0,1.2142857142857142,1.2142857142857142,45.0374531835206 +10403,Bocas del Toro,Almirante,Barriada Guaymí,1384,3,2,0,0,0,0,0,0,0,0,0,0,0,0,27,604,184,187,736,79,10,28,69,80,0,672,0,2,197,4,70,54,0,3,472,6,512,0,9,2,1,932,60,1,1,0,8,1002,3,174,71,38,52,49,0,1,42,940,19,0,0,368,618,0,6,0,10,0,999,0,1,0,0,1,1,135,323,0,28,513,3,644,165,20,41,11,3,54,15,2,13,32,2,673,716,6.523522316043426,10.965018094089263,6.750301568154403,13.463208685162847,1.0089820359281436,3.4441117764471056,2.333333333333333,1011,550,2018,176,660,18,64,75,8,89,25,9,51,0,25,13,5,13,16,7,13,2575,1626,0,480,3721,0,2264,1937,0,3628,573,0,1661,2540,0,1551,110,2060,480,0,483,51,100,12,168,180,198,167,172,570,0,0,1,182,178,301,143,187,707,2,3,48,61,86,72,112,14,0,0,3,0,0,0,0,0,1015,227,2170,0,28,122,27,108,989,951,52,70,691,64,153,53,58,0,139,12,0,2368,2386,221,605,63,238,14,0,29,0,29,47,15,2193,1,0,0,2303,893,1,4,38,170,0,3,0,0,0,36,85,35,84,222,91,214,70,405,3516,165,78,159,185,181,157,98,139,51,8,8,5,2,1,1,142.0,132.0,127.0,152.0,145.0,143.0,135.0,140.0,112.0,114.0,108.0,124.0,128.0,108.0,99.0,109.0,99.0,107.0,82.0,82.0,83.0,93.0,81.0,103.0,78.0,60.0,66.0,59.0,64.0,64.0,67.0,53.0,67.0,54.0,53.0,51.0,55.0,48.0,58.0,57.0,45.0,50.0,40.0,44.0,37.0,47.0,41.0,43.0,33.0,49.0,27.0,39.0,26.0,31.0,25.0,22.0,27.0,29.0,30.0,26.0,25.0,24.0,21.0,26.0,13.0,14.0,14.0,16.0,13.0,10.0,11.0,12.0,13.0,12.0,15.0,7.0,9.0,11.0,10.0,2.0,11.0,9.0,8.0,9.0,2.0,5.0,7.0,2.0,4.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1909,2613,232,0,698,644,567,479,438,313,294,269,216,213,148,134,109,67,63,39,39,18,5,0,1,0,4661,4,8,81,0,4662,4,7,81,0,1130,10,316,366,78,8,938,1908,0,3138,1590,26,0,1,3669,6,2,7,0,2,0,0,13,1054,0,140,254,85,25,12,7,218,4013,0,495,1049,107,13,2,3088,0,2.8292263610315187,0.0,4.127753303964758,0.0,6.239167017248633,33,72,29,11,3,4,63,796,0,157,51,45,70,141,124,96,66,121,54,33,16,26,5,5,1,968,43,515,496,535,476,132,879,530,481,73,938,352,659,49,962,692,319,531,480,338,193,199,812,325,686,120,891,212,799,242,769,34,977,150,497,336,28,0,553,458,0,0,705,3,0,0,0,1,0,0,4,298,0,2.3422354104846685,2.360039564787339,2.0,1.1363636363636365,1.1363636363636365,47.2809099901088 +10105,Bocas del Toro,Bocas del Toro,Tierra Oscura,535,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,63,243,87,16,9,36,194,3,1,0,0,23,249,2,19,52,0,1,0,3,318,6,8,4,7,249,91,1,0,0,5,346,0,83,49,6,37,15,0,0,0,327,19,0,0,9,336,0,0,0,1,0,339,1,1,0,1,3,1,1,7,0,1,336,1,0,65,4,14,11,4,215,26,0,7,0,0,0,536,3.420289855072464,7.681159420289855,6.898550724637682,23.405797101449277,1.0115606936416186,3.1705202312138727,2.115606936416185,350,241,795,44,246,9,11,7,6,44,5,0,13,0,10,7,2,6,5,9,3,859,707,0,141,1425,0,532,1034,0,1264,302,0,647,919,0,643,4,714,205,0,207,17,66,0,71,81,94,89,79,303,0,0,0,65,79,147,55,59,104,0,1,4,1,5,16,15,3,2,0,1,0,0,0,2,0,712,8,513,0,0,1,3,31,234,198,18,32,109,79,31,66,21,1,336,77,0,909,862,20,107,68,357,3,0,165,0,93,44,6,606,8,0,0,1079,119,0,1,3,27,1,1,2,0,0,3,9,3,4,78,369,97,12,145,1320,103,69,51,76,54,26,16,19,19,7,1,0,2,0,8,50.0,57.0,51.0,47.0,59.0,43.0,68.0,57.0,53.0,53.0,43.0,51.0,54.0,44.0,55.0,50.0,39.0,45.0,36.0,25.0,30.0,19.0,19.0,30.0,18.0,30.0,28.0,21.0,22.0,17.0,26.0,19.0,10.0,16.0,25.0,17.0,19.0,18.0,14.0,19.0,13.0,9.0,17.0,22.0,8.0,13.0,20.0,13.0,12.0,8.0,14.0,8.0,8.0,12.0,12.0,11.0,6.0,13.0,9.0,10.0,9.0,6.0,9.0,8.0,5.0,6.0,5.0,10.0,7.0,3.0,9.0,4.0,8.0,4.0,7.0,2.0,5.0,0.0,4.0,5.0,2.0,1.0,5.0,3.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,785,887,99,0,264,274,247,195,116,118,96,87,69,66,54,49,37,31,32,16,14,2,2,1,1,0,1650,11,37,73,0,1652,13,33,73,0,554,2,68,91,37,3,231,785,0,1127,601,43,0,1,1443,6,0,0,0,0,1,3,0,317,0,17,73,48,11,2,1,41,1578,0,77,161,8,2,25,1498,0,3.24283305227656,0.0,4.859838274932614,0.0,4.9480519480519485,4,14,15,5,2,0,21,289,0,50,14,24,39,48,56,38,18,28,9,11,5,6,3,0,1,306,44,67,283,80,270,38,312,41,309,2,348,159,191,0,350,241,109,63,287,19,44,38,312,88,262,3,347,242,108,213,137,6,344,53,193,95,9,0,260,90,0,1,264,3,0,0,0,0,0,0,0,82,0,2.597142857142857,2.462857142857143,1.0,1.0555555555555556,1.0555555555555556,47.58285714285714 +10107,Bocas del Toro,Bocas del Toro,San Cristóbal,530,6,0,0,0,0,0,0,1,0,0,1,0,0,0,0,40,54,264,89,5,13,73,167,10,1,0,0,52,258,3,20,25,0,0,0,3,331,2,11,1,10,317,41,0,0,0,0,358,1,106,33,2,30,6,0,0,1,349,8,0,0,6,348,0,0,0,4,0,347,0,0,0,6,4,1,2,9,0,1,345,1,0,126,1,2,72,24,112,16,0,1,4,0,0,538,4.937007874015748,13.559055118110235,6.181102362204724,19.04724409448819,1.0027932960893855,3.399441340782123,2.1675977653631286,360,235,772,47,195,3,8,13,1,48,2,1,24,0,10,6,6,8,3,1,7,878,626,0,187,1317,0,732,772,0,1277,227,0,537,967,0,521,16,786,181,0,182,26,39,0,48,81,85,79,89,296,0,0,0,64,95,89,40,47,170,0,3,6,4,8,18,7,27,0,0,0,0,0,0,1,0,601,4,603,0,0,1,2,35,281,270,7,10,181,88,58,50,25,1,155,46,0,863,846,26,197,56,260,8,2,55,0,73,22,5,585,5,0,0,964,183,0,4,6,50,0,0,1,0,0,18,16,14,6,86,137,111,25,192,1162,94,37,82,98,117,38,18,28,6,14,3,2,3,2,5,56.0,47.0,54.0,48.0,53.0,52.0,46.0,49.0,49.0,47.0,42.0,57.0,45.0,41.0,46.0,31.0,35.0,40.0,31.0,38.0,23.0,35.0,30.0,37.0,23.0,32.0,20.0,28.0,26.0,18.0,19.0,21.0,17.0,20.0,19.0,21.0,24.0,18.0,17.0,19.0,19.0,15.0,14.0,9.0,15.0,12.0,14.0,13.0,13.0,12.0,11.0,11.0,9.0,9.0,6.0,5.0,9.0,19.0,7.0,7.0,10.0,11.0,8.0,6.0,5.0,2.0,8.0,4.0,2.0,4.0,3.0,4.0,1.0,1.0,8.0,2.0,6.0,3.0,2.0,1.0,1.0,3.0,4.0,2.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,732,911,66,0,258,243,231,175,148,124,96,99,72,64,46,47,40,20,17,14,10,4,1,0,0,0,1576,48,14,71,0,1576,54,8,71,0,498,4,51,135,9,3,278,731,0,1177,476,56,0,3,1554,10,0,0,0,0,0,0,3,139,0,6,427,23,7,0,2,34,1210,0,108,118,8,7,22,1446,0,3.067911714770798,0.0,4.349614395886889,0.0,5.370977179637214,1,78,6,1,0,0,9,265,0,26,16,14,31,46,73,50,27,36,10,11,4,0,6,6,3,337,23,75,285,67,293,30,330,61,299,12,348,85,275,0,360,262,98,100,260,44,56,54,306,188,172,2,358,116,244,125,235,4,356,41,207,103,9,1,213,147,0,0,300,2,0,0,0,0,0,0,3,55,0,2.390581717451524,2.343490304709141,1.0,1.0,1.0,45.32222222222222 +10401,Bocas del Toro,Almirante,Almirante,1869,1,47,11,0,0,0,0,0,0,0,0,4,0,0,314,893,70,111,1236,41,2,19,70,13,7,1312,0,0,18,3,15,8,0,32,1138,75,158,5,4,1,7,1343,20,6,0,0,19,1388,9,104,109,69,158,91,0,19,173,1093,100,2,1,899,452,0,24,0,13,0,1374,4,1,2,5,1,1,463,500,2,9,414,0,1226,23,0,4,0,0,14,0,2,64,29,26,1525,407,6.796637309847879,13.4595676541233,6.813450760608487,13.800640512409927,1.0230547550432276,3.612391930835735,2.2672910662824206,1424,654,1784,134,565,56,54,60,13,73,10,20,37,2,64,33,7,23,32,54,47,3752,774,0,1705,2821,0,3164,1362,0,4144,382,0,1595,2931,0,1344,251,2638,293,0,301,26,58,21,125,131,140,133,156,450,0,1,7,169,251,352,175,260,974,1,6,73,121,133,100,198,91,19,1,52,0,1,0,0,0,1489,172,2283,0,9,87,39,255,989,797,80,162,1115,114,165,27,160,4,24,5,6,2362,2524,470,628,35,409,50,0,19,9,22,66,19,1821,53,0,0,2154,1221,8,22,136,342,12,49,0,0,7,72,247,100,122,378,31,274,131,299,2911,232,118,211,252,280,248,204,173,111,47,12,12,11,11,53,82.0,98.0,86.0,94.0,101.0,92.0,105.0,99.0,95.0,90.0,87.0,120.0,118.0,92.0,112.0,105.0,96.0,76.0,83.0,89.0,75.0,99.0,84.0,73.0,78.0,78.0,86.0,66.0,48.0,67.0,61.0,50.0,57.0,62.0,58.0,70.0,69.0,54.0,52.0,47.0,58.0,50.0,53.0,56.0,49.0,50.0,53.0,57.0,46.0,43.0,47.0,51.0,47.0,38.0,50.0,50.0,58.0,47.0,54.0,43.0,54.0,33.0,49.0,35.0,39.0,30.0,34.0,30.0,38.0,15.0,28.0,22.0,16.0,25.0,17.0,16.0,21.0,10.0,15.0,21.0,11.0,5.0,8.0,8.0,7.0,9.0,4.0,3.0,4.0,10.0,5.0,2.0,0.0,1.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1471,2993,422,0,461,481,529,449,409,345,288,292,266,249,233,252,210,147,108,83,39,30,10,5,0,0,4789,41,41,15,0,4791,47,33,15,0,1117,37,156,594,137,29,1348,1468,0,2459,2374,53,0,16,1441,21,11,18,5,0,4,5,192,3173,0,653,194,219,377,12,24,1180,2227,0,837,1316,266,21,5,2441,0,2.3022915650902,0.0,3.3026124818577647,0.0,8.253376995497339,237,67,69,158,6,13,301,573,0,175,58,40,77,129,199,157,129,171,95,67,37,37,16,22,11,1395,29,1174,250,1191,233,184,1240,1210,214,275,1149,770,654,242,1182,1264,160,1177,247,748,429,522,902,879,545,351,1073,139,1285,114,1310,21,1403,284,703,407,30,0,716,708,0,5,336,7,3,7,3,0,2,1,69,991,0,1.6587078651685394,1.7724719101123596,1.6,1.0298507462686568,1.0298507462686568,49.95786516853933 +10101,Bocas del Toro,Bocas del Toro,Bocas del Toro,2093,4,567,68,0,0,0,1,0,0,1,3,24,0,0,1179,456,145,160,1596,184,14,1,110,30,5,1748,0,4,108,0,34,43,1,2,950,737,239,7,3,0,4,1893,10,12,1,1,23,1940,0,143,87,397,126,39,0,4,520,1322,90,3,1,701,1216,0,10,0,13,0,1815,4,33,17,67,0,4,627,149,0,6,1157,1,423,1,3,12,2,3,143,12,0,1336,2,3,2107,654,6.07728337236534,3.836065573770492,6.180327868852459,3.990632318501171,1.035051546391753,3.2984536082474225,2.0525773195876287,2035,943,2461,217,429,56,118,112,11,94,47,38,143,4,81,20,12,42,40,2,19,4979,1176,0,1905,4250,0,4729,1426,0,5636,519,0,2071,4084,0,1768,303,3741,343,0,351,114,131,5,174,179,215,182,210,680,1,2,2,271,315,522,200,256,1357,2,70,65,82,124,210,269,81,14,4,55,0,0,0,12,0,2970,108,2190,0,3,52,24,321,1107,590,54,118,1927,273,450,68,195,2,19,107,1,3415,3293,415,1573,76,847,111,1,15,4,26,53,16,1793,13,0,0,2918,1575,2,74,87,537,9,54,12,0,5,246,221,199,172,785,39,532,153,726,3187,194,130,239,458,679,733,318,329,162,112,35,56,17,46,13,150.0,126.0,126.0,151.0,140.0,171.0,136.0,162.0,144.0,134.0,141.0,127.0,152.0,150.0,132.0,164.0,122.0,107.0,119.0,109.0,102.0,115.0,116.0,129.0,106.0,122.0,115.0,115.0,102.0,90.0,95.0,79.0,109.0,110.0,95.0,94.0,114.0,88.0,108.0,90.0,85.0,91.0,75.0,65.0,76.0,62.0,71.0,70.0,52.0,52.0,57.0,55.0,60.0,40.0,60.0,56.0,46.0,52.0,54.0,47.0,47.0,40.0,53.0,53.0,32.0,31.0,26.0,30.0,33.0,25.0,25.0,18.0,21.0,22.0,17.0,15.0,20.0,11.0,15.0,13.0,5.0,8.0,9.0,13.0,8.0,7.0,4.0,4.0,6.0,1.0,1.0,4.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2142,4166,400,0,693,747,702,621,568,544,488,494,392,307,272,255,225,145,103,74,43,22,13,0,0,0,6123,309,191,85,0,6131,318,174,85,0,1711,44,318,773,106,60,1556,2140,0,3798,2344,566,0,27,3469,36,5,12,0,2,3,0,194,2960,0,1108,425,214,226,9,43,1347,3336,0,1320,1266,231,13,121,3757,0,2.1263969171483623,0.0,3.1985602879424118,0.0,7.93783542039356,367,121,69,104,7,23,356,988,0,32,22,20,54,136,260,311,209,375,193,132,76,78,39,70,1,2000,35,1485,550,1445,590,250,1785,1723,312,526,1509,925,1110,235,1800,1869,166,1435,600,1087,348,828,1207,1705,330,315,1720,145,1890,114,1921,21,2014,533,966,445,91,2,1205,830,0,10,801,14,2,5,0,1,3,0,83,1116,0,1.676485027000491,1.616593028964163,1.1428571428571428,1.0704225352112675,1.0704225352112675,45.48992628992629 +10106,Bocas del Toro,Bocas del Toro,Bocas del Drago,1341,0,102,67,0,0,0,0,2,0,0,0,3,0,0,289,268,67,128,525,99,6,6,83,33,0,645,0,4,69,1,9,22,0,2,111,436,180,4,7,0,14,696,7,16,0,0,33,752,0,89,154,502,10,3,0,6,206,462,78,0,0,187,527,0,3,0,35,0,721,4,11,3,8,1,4,113,135,0,4,499,1,185,1,1,5,6,6,246,4,0,295,3,0,494,1021,6.422459893048129,6.764705882352941,6.903743315508021,8.411764705882353,1.0159574468085106,2.7566489361702127,1.648936170212766,767,397,917,87,166,10,22,32,2,42,17,13,46,0,20,11,5,17,7,4,7,1859,436,0,820,1475,0,1682,613,0,2044,251,0,827,1468,0,678,149,1352,116,0,125,28,72,7,79,80,84,61,79,263,0,0,0,97,120,175,68,121,461,3,25,27,30,60,82,88,22,9,0,24,0,0,0,5,0,1192,32,717,0,1,9,4,56,381,239,17,24,732,101,145,94,76,2,36,35,0,1294,1224,131,579,96,330,52,0,33,0,8,15,9,635,24,0,0,1105,564,0,29,27,180,7,24,5,0,0,106,67,53,51,280,39,228,80,320,1182,117,73,122,177,232,213,123,126,49,34,11,12,7,16,24,48.0,54.0,62.0,59.0,64.0,44.0,67.0,52.0,70.0,57.0,44.0,54.0,56.0,48.0,44.0,52.0,58.0,46.0,42.0,43.0,47.0,48.0,45.0,44.0,43.0,44.0,38.0,38.0,34.0,34.0,41.0,33.0,46.0,37.0,38.0,47.0,31.0,51.0,42.0,35.0,25.0,31.0,33.0,34.0,25.0,27.0,41.0,25.0,33.0,29.0,26.0,17.0,27.0,16.0,25.0,19.0,14.0,10.0,11.0,15.0,17.0,6.0,9.0,8.0,8.0,11.0,10.0,9.0,9.0,3.0,4.0,11.0,4.0,4.0,6.0,3.0,2.0,4.0,1.0,4.0,2.0,2.0,3.0,2.0,4.0,0.0,2.0,4.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0,823,1588,107,0,287,290,246,241,227,188,195,206,148,155,111,69,48,42,29,14,13,7,1,0,1,0,2263,118,95,42,0,2267,126,83,42,0,704,18,192,293,35,10,444,822,0,1195,1181,142,0,7,1277,38,4,10,9,1,0,0,19,1153,0,244,265,124,100,4,20,457,1304,0,422,452,39,7,27,1571,0,2.1246040126715946,0.0,3.1166936790923825,0.0,7.740270055599682,82,82,38,36,1,12,141,375,0,11,14,12,29,57,97,114,85,128,74,41,26,26,14,23,13,733,34,533,234,504,263,81,686,621,146,166,601,293,474,43,724,717,50,463,304,340,123,323,444,606,161,155,612,152,615,146,621,14,753,199,403,137,28,2,469,298,0,2,325,9,1,4,3,1,0,0,14,408,0,1.682704811443433,1.5916775032509751,1.3333333333333333,1.0476190476190477,1.0476190476190477,43.05867014341591 +10410,Bocas del Toro,Almirante,Miraflores,580,1,4,0,0,0,0,0,0,0,0,0,0,0,0,17,93,194,12,286,18,2,0,0,8,2,108,0,5,146,1,34,21,0,1,70,28,206,1,9,2,0,254,61,0,0,0,1,316,0,104,24,7,108,26,0,16,6,279,15,0,0,94,212,0,0,0,10,0,313,0,0,0,0,2,1,64,60,0,55,137,0,0,110,27,78,27,14,21,21,16,1,1,0,0,585,6.613138686131387,22.32116788321168,6.656934306569343,22.313868613138688,1.0063291139240509,3.79746835443038,2.6582278481012658,318,184,563,16,149,7,10,12,0,33,0,1,9,1,2,0,2,6,3,0,1,743,442,0,194,991,0,514,671,0,996,189,0,441,744,0,409,32,587,157,0,157,10,16,0,47,66,67,53,50,161,0,0,0,46,66,86,42,36,160,4,2,9,13,17,23,16,31,2,0,5,0,0,0,0,0,295,77,600,0,1,31,38,33,249,291,3,24,165,20,26,7,18,0,89,1,0,667,636,66,121,9,82,7,0,41,0,13,23,0,573,5,0,0,690,202,0,2,17,55,3,3,0,0,0,14,41,15,14,43,73,30,26,116,996,46,23,40,53,40,33,17,15,16,6,5,2,0,6,5,23.0,27.0,37.0,31.0,36.0,34.0,30.0,37.0,40.0,36.0,38.0,27.0,36.0,33.0,28.0,27.0,31.0,17.0,30.0,27.0,19.0,16.0,20.0,27.0,19.0,19.0,13.0,16.0,19.0,16.0,19.0,7.0,11.0,19.0,15.0,13.0,19.0,19.0,18.0,17.0,13.0,13.0,8.0,18.0,10.0,13.0,9.0,14.0,12.0,18.0,11.0,9.0,5.0,14.0,6.0,13.0,10.0,8.0,5.0,6.0,6.0,5.0,4.0,11.0,8.0,4.0,8.0,5.0,5.0,5.0,6.0,7.0,3.0,6.0,1.0,6.0,1.0,3.0,2.0,3.0,4.0,2.0,3.0,3.0,1.0,1.0,1.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,493,722,88,0,154,177,162,132,101,83,71,86,62,66,45,42,34,27,23,15,13,6,4,0,0,0,1277,6,3,17,0,1277,7,2,17,0,377,13,61,140,21,6,192,493,0,879,414,10,0,0,1017,1,0,1,1,0,0,0,2,281,0,33,35,6,6,0,0,7,1216,0,138,306,34,2,1,822,0,2.8529411764705883,0.0,4.079113924050633,0.0,6.2455871066769,12,11,1,1,0,0,4,289,0,69,23,26,35,30,31,29,17,20,10,7,4,5,3,7,2,278,40,103,215,108,210,36,282,95,223,29,289,145,173,14,304,202,116,119,199,78,41,61,257,106,212,59,259,114,204,63,255,4,314,63,161,89,5,0,200,118,0,0,221,1,0,0,1,0,0,0,0,95,0,2.09748427672956,2.0,0.0,1.0,1.0,48.86163522012578 +10406,Bocas del Toro,Almirante,Valle de Riscó,1398,9,0,0,0,0,0,0,1,0,0,0,1,0,0,3,213,375,197,567,24,13,155,0,27,2,315,0,2,191,2,100,160,0,18,382,0,351,37,18,0,0,333,455,0,0,0,0,788,0,374,138,7,76,24,0,0,1,783,4,0,0,93,678,0,2,14,1,0,686,0,0,21,0,81,0,6,246,0,183,349,4,0,530,61,11,35,72,6,69,0,1,2,1,0,1409,5.722504230118443,17.4585448392555,6.147208121827411,20.02876480541455,1.001269035532995,3.974619289340101,2.795685279187817,790,443,2028,49,815,21,39,37,4,130,7,10,13,0,34,25,2,12,18,5,17,1004,2830,0,112,3722,0,91,3743,0,3078,756,0,1617,2217,0,1597,20,1625,592,0,600,50,124,3,136,194,193,203,177,577,0,1,0,184,231,282,109,116,564,4,9,7,14,17,12,13,12,0,0,2,0,0,0,0,0,890,16,2152,0,1,2,3,37,1012,1001,31,71,163,30,5,4,10,1,685,1,0,2167,2219,97,72,4,429,6,1,290,0,276,70,17,2023,4,0,0,2403,606,0,3,10,35,0,1,0,0,1,6,29,17,18,54,682,31,18,50,4040,105,27,29,41,36,44,24,16,13,4,1,0,1,1,4,146.0,132.0,142.0,132.0,131.0,141.0,126.0,130.0,133.0,115.0,146.0,143.0,115.0,108.0,122.0,125.0,132.0,103.0,107.0,74.0,80.0,67.0,77.0,66.0,59.0,63.0,55.0,45.0,57.0,37.0,55.0,42.0,48.0,36.0,45.0,45.0,43.0,49.0,46.0,35.0,49.0,43.0,38.0,27.0,32.0,32.0,25.0,33.0,35.0,35.0,28.0,30.0,32.0,31.0,24.0,23.0,22.0,16.0,23.0,23.0,26.0,13.0,8.0,24.0,7.0,16.0,11.0,4.0,13.0,5.0,7.0,2.0,5.0,8.0,7.0,5.0,4.0,5.0,5.0,8.0,13.0,2.0,8.0,6.0,6.0,4.0,5.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1962,2270,154,0,683,645,634,541,349,257,226,218,189,160,145,107,78,49,29,27,35,12,0,2,0,0,4298,0,1,87,0,4299,0,0,87,0,1266,43,115,198,86,13,706,1959,0,3723,663,0,0,4,4368,7,0,0,0,0,1,0,3,3,0,1,2,1,0,0,0,9,4373,0,98,471,35,3,0,3779,0,3.060063897763578,0.0,4.527123848515865,0.0,5.122435020519836,0,1,0,0,0,0,2,787,0,252,84,102,112,80,45,37,23,30,9,8,2,1,1,2,1,471,319,130,660,154,636,86,704,122,668,3,787,113,677,6,784,242,548,131,659,35,96,38,752,26,764,10,780,439,351,174,616,13,777,76,365,344,5,1,377,413,0,1,782,3,0,0,0,0,0,0,2,2,0,2.739570164348925,2.8053097345132745,0.0,1.0689655172413792,1.0689655172413792,46.063291139240505 +10221,Bocas del Toro,Changuinola,Finca 51,1269,8,0,0,0,0,15,0,0,0,0,0,1,0,0,7,635,221,115,839,24,23,8,1,61,22,730,0,4,75,1,89,75,0,4,62,222,608,23,57,1,5,879,93,0,0,0,6,978,0,146,48,7,86,12,0,0,11,903,49,0,15,532,404,0,5,17,16,4,963,0,2,0,0,10,3,70,584,0,224,99,1,107,0,0,43,13,0,305,5,474,31,0,0,35,1258,5.046728971962617,8.14018691588785,2.850467289719626,4.345794392523365,1.0224948875255624,3.418200408997955,2.3047034764826178,1001,618,2302,168,705,31,69,94,2,115,17,11,599,0,39,25,11,21,10,22,10,2638,2446,0,423,4661,0,1595,3489,0,4225,859,0,1995,3089,0,1906,89,2372,717,0,718,43,105,5,214,242,261,235,243,616,0,0,1,285,326,411,259,233,668,2,5,15,36,36,35,42,32,2,0,14,0,0,0,0,0,1224,161,2802,0,11,89,41,125,1291,980,28,378,913,100,107,14,51,2,146,4,9,3154,2578,173,772,16,305,14,1,56,9,102,30,14,2051,37,0,0,3299,745,1,7,28,95,2,10,0,0,9,22,59,45,61,184,129,169,57,650,4321,179,115,165,338,283,153,55,47,27,11,1,0,0,0,37,172.0,163.0,153.0,160.0,142.0,159.0,135.0,156.0,164.0,141.0,144.0,159.0,125.0,118.0,125.0,111.0,123.0,102.0,121.0,114.0,116.0,109.0,114.0,119.0,102.0,98.0,92.0,100.0,108.0,93.0,76.0,102.0,101.0,66.0,88.0,66.0,86.0,76.0,65.0,57.0,56.0,50.0,59.0,60.0,46.0,48.0,51.0,41.0,44.0,50.0,37.0,44.0,40.0,32.0,34.0,22.0,28.0,33.0,25.0,24.0,25.0,20.0,17.0,26.0,17.0,10.0,15.0,17.0,12.0,9.0,11.0,5.0,9.0,14.0,12.0,11.0,2.0,6.0,11.0,12.0,7.0,2.0,2.0,3.0,4.0,1.0,3.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2216,3334,182,0,790,755,671,571,560,491,433,350,271,234,187,132,105,63,51,42,18,7,1,0,0,0,5504,61,34,133,0,5506,61,32,133,0,1597,15,479,298,63,8,1056,2216,0,3122,2442,168,0,6,4591,16,70,20,2,0,0,4,136,887,0,134,57,125,54,0,12,340,5010,0,699,1568,120,14,2,3329,0,2.625813449023861,0.0,3.8623005877413936,0.0,5.63764829030007,23,6,20,9,0,0,83,860,0,69,44,42,74,149,227,115,79,110,46,23,11,3,6,0,2,959,42,492,509,470,531,167,834,504,497,33,968,365,636,32,969,786,215,545,456,235,310,155,846,524,477,85,916,368,633,386,615,6,995,100,506,370,25,15,602,399,0,2,743,5,14,4,2,0,0,1,33,197,0,3.104330708661417,2.537401574803149,1.0,1.0,1.0,45.28671328671329 +10405,Bocas del Toro,Almirante,Valle de Agua Arriba,1129,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,519,105,586,23,31,39,4,29,2,16,0,25,445,5,43,165,0,15,9,0,662,12,30,1,0,372,333,0,0,0,9,714,0,258,76,0,46,48,0,0,1,677,36,0,0,20,689,0,3,2,0,0,670,1,3,0,0,40,0,6,89,0,107,511,1,0,152,226,14,28,195,64,23,0,4,7,1,0,1142,5.896825396825397,19.09523809523809,6.529100529100529,20.94973544973545,1.0084033613445378,3.4705882352941178,2.316526610644258,720,434,1763,77,766,13,16,23,3,109,6,2,7,0,41,20,0,6,13,11,11,1006,2454,0,67,3393,0,354,3106,0,2756,704,0,1251,2209,0,1246,5,1582,627,0,634,19,84,2,155,187,204,181,175,611,1,1,0,144,145,262,85,140,368,0,1,4,6,8,10,23,7,0,0,3,0,0,0,0,0,830,107,1775,0,0,3,102,41,762,883,48,41,165,38,19,8,24,0,571,8,0,1936,2003,53,117,8,549,17,2,87,0,56,75,17,1581,235,0,0,2282,382,0,1,9,35,0,3,0,0,0,13,20,10,9,68,586,59,12,160,3232,171,38,54,56,68,29,25,20,5,2,1,0,0,3,235,120.0,129.0,109.0,121.0,137.0,115.0,138.0,122.0,119.0,117.0,139.0,105.0,112.0,104.0,102.0,102.0,87.0,98.0,83.0,69.0,80.0,65.0,69.0,61.0,44.0,58.0,47.0,61.0,47.0,38.0,48.0,34.0,42.0,22.0,40.0,35.0,42.0,35.0,37.0,27.0,41.0,37.0,28.0,35.0,35.0,27.0,21.0,27.0,26.0,23.0,30.0,28.0,31.0,19.0,19.0,19.0,25.0,17.0,20.0,16.0,21.0,17.0,9.0,14.0,11.0,16.0,9.0,14.0,7.0,7.0,6.0,12.0,9.0,21.0,12.0,6.0,8.0,7.0,6.0,4.0,5.0,5.0,7.0,6.0,1.0,2.0,6.0,3.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1789,1967,183,0,616,611,562,439,319,251,186,176,176,124,127,97,72,53,60,31,24,11,2,2,0,0,3708,13,3,215,0,3708,13,3,215,0,1061,16,81,236,38,0,718,1789,0,2914,1008,17,0,2,3775,5,0,0,0,0,0,0,1,156,0,23,28,54,11,0,0,45,3778,0,128,339,37,3,1,3431,0,3.252155172413793,0.0,4.75,0.0,4.762630109164762,9,11,17,1,0,0,7,675,0,170,78,102,110,79,76,37,20,24,11,5,4,0,0,3,1,498,222,36,684,45,675,100,620,28,692,6,714,184,536,17,703,359,361,89,631,19,70,29,691,40,680,15,705,548,172,470,250,13,707,84,337,293,6,0,415,305,0,1,670,0,0,0,0,0,0,0,0,49,0,2.688888888888889,2.781944444444445,1.0,1.03125,1.03125,47.543055555555554 +40201,Chiriquí,Barú,Puerto Armuelles,4832,55,133,15,1,0,0,1,0,0,0,0,1,0,0,2287,1309,370,46,3901,65,7,4,0,31,4,3896,4,3,41,2,17,41,0,8,2153,777,778,61,219,11,13,3875,66,12,0,0,59,4012,17,365,64,122,289,166,0,30,451,3289,226,13,3,3393,575,1,30,10,3,0,3984,7,3,0,9,9,0,1289,2450,0,152,117,4,2787,59,11,175,8,6,0,42,31,859,30,4,4054,984,6.0203010150507525,15.975498774938748,6.07910395519776,16.207210360518026,1.0109670987038883,3.713110667996012,2.3477068793619145,4057,1944,3719,289,1235,136,219,161,50,193,39,34,168,5,270,154,38,101,115,139,127,9963,1646,0,3299,8310,0,8801,2808,0,10845,764,0,3264,8345,0,2696,568,7873,472,0,497,98,134,36,271,299,404,309,316,1665,5,4,27,360,511,818,417,486,2204,7,52,244,360,363,267,592,522,95,10,208,2,6,3,17,0,3786,530,6361,0,20,223,147,1322,2187,2351,361,140,2399,302,590,102,436,10,216,132,19,6062,6187,1159,1423,126,1351,73,1,41,32,8,444,120,3602,185,0,0,5687,3116,31,81,231,1240,82,188,21,0,29,172,593,349,201,896,243,647,280,906,5720,1018,568,749,1010,845,718,444,459,296,94,48,51,20,24,185,145.0,158.0,164.0,173.0,161.0,138.0,152.0,161.0,165.0,155.0,194.0,194.0,166.0,181.0,184.0,172.0,218.0,189.0,196.0,211.0,201.0,153.0,205.0,175.0,157.0,191.0,160.0,132.0,129.0,131.0,130.0,130.0,134.0,142.0,127.0,114.0,116.0,124.0,122.0,124.0,110.0,114.0,137.0,135.0,123.0,136.0,147.0,146.0,137.0,124.0,157.0,143.0,177.0,166.0,160.0,166.0,165.0,187.0,170.0,156.0,171.0,185.0,168.0,163.0,166.0,139.0,151.0,149.0,145.0,106.0,115.0,99.0,99.0,110.0,94.0,96.0,74.0,65.0,56.0,60.0,46.0,47.0,44.0,59.0,38.0,44.0,37.0,35.0,24.0,19.0,25.0,22.0,21.0,13.0,9.0,6.0,7.0,5.0,1.0,1.0,1.0,1.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2491,7692,2066,0,801,771,919,986,891,743,663,600,619,690,803,844,853,690,517,351,234,159,90,20,5,0,12001,99,128,21,0,12003,115,110,21,0,2681,153,1142,2113,572,123,2974,2491,0,6100,5978,171,0,32,576,7,1,3,1,9,1,3,0,11616,0,517,373,675,88,20,24,1186,9366,0,1936,3431,1291,144,27,5420,0,2.316394658753709,0.0,3.093888166449935,0.0,8.987590823740714,213,144,275,50,5,14,461,2895,0,293,202,144,321,514,552,410,332,454,284,187,93,106,58,52,54,3950,107,3681,376,3583,474,670,3387,3701,356,933,3124,2883,1174,696,3361,3703,354,3654,403,1727,1927,1330,2727,2855,1202,1353,2704,788,3269,704,3353,29,4028,910,1818,1204,125,2,2530,1527,0,9,208,3,1,1,0,2,0,0,0,3833,0,1.4934712983493472,1.5242670608524267,1.1428571428571428,1.069672131147541,1.069672131147541,57.18831649001726 +40207,Chiriquí,Barú,Manaca,2740,84,0,9,0,0,0,0,0,0,0,0,3,0,0,454,1605,308,55,2304,63,5,0,0,48,2,2335,1,5,21,2,21,28,0,9,199,1007,788,109,312,0,7,2326,63,7,0,0,26,2422,0,204,30,6,95,76,0,177,78,1888,275,1,3,1948,406,2,11,49,5,1,2400,1,1,1,5,13,1,274,2012,1,127,8,0,2288,6,16,49,11,4,1,0,0,15,29,3,0,2836,6.067099567099567,18.29264069264069,6.2536796536796535,19.107792207792208,1.0082576383154418,3.330305532617672,2.234516928158546,2445,1262,3006,244,735,72,89,67,21,143,13,11,95,0,241,98,26,60,54,89,58,5687,1878,0,1124,6441,0,4133,3432,0,6758,807,0,2461,5104,0,2301,160,4574,530,0,539,87,164,11,250,285,321,264,288,1459,3,1,2,284,393,612,247,293,1308,24,32,66,79,112,99,156,128,18,4,36,0,0,0,0,0,2264,337,4007,0,23,141,103,637,1543,1598,124,105,1369,195,206,55,202,6,479,4,8,4160,4043,348,1345,60,597,68,2,96,8,21,170,62,3151,15,0,0,4544,1575,2,29,64,343,18,33,0,0,9,61,150,105,79,489,175,223,151,1159,4850,531,327,587,649,588,303,143,153,42,10,1,4,0,0,15,165.0,155.0,189.0,129.0,143.0,188.0,158.0,164.0,153.0,151.0,191.0,179.0,153.0,153.0,152.0,141.0,163.0,154.0,159.0,132.0,140.0,129.0,142.0,116.0,112.0,95.0,112.0,129.0,113.0,87.0,115.0,108.0,117.0,98.0,123.0,91.0,90.0,82.0,101.0,91.0,82.0,81.0,88.0,79.0,81.0,61.0,85.0,62.0,75.0,62.0,88.0,87.0,63.0,88.0,98.0,85.0,97.0,89.0,89.0,88.0,102.0,67.0,78.0,80.0,89.0,61.0,70.0,72.0,67.0,43.0,43.0,38.0,45.0,35.0,36.0,29.0,28.0,17.0,22.0,19.0,25.0,13.0,13.0,15.0,11.0,16.0,10.0,11.0,7.0,10.0,11.0,4.0,6.0,6.0,2.0,6.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2423,4984,796,0,781,814,828,749,639,536,561,455,411,345,424,448,416,313,197,115,77,54,29,9,2,0,8116,29,36,22,0,8119,31,31,22,0,1954,70,318,1173,217,28,2022,2421,0,3565,4598,40,0,10,2294,17,0,1,0,3,0,1,0,5877,0,251,228,705,43,0,12,1620,5344,0,1050,2256,570,124,1,4202,0,2.3893832463945994,0.0,3.4512867647058822,0.0,6.971961477508229,75,72,276,18,0,2,510,1492,0,215,137,138,249,436,437,273,157,243,87,38,13,15,2,0,2,2388,57,2057,388,2015,430,381,2064,2143,302,280,2165,1645,800,46,2399,2289,156,2080,365,973,1107,449,1996,1602,843,569,1876,925,1520,510,1935,22,2423,554,1248,580,63,0,1661,784,0,4,554,6,0,0,0,0,0,0,0,1881,0,1.7014314928425358,1.6535787321063395,1.1,1.0545454545454545,1.0545454545454545,51.40081799591002 +20614,Coclé,Penonomé,Las Minas,1015,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,233,470,28,631,74,0,0,0,28,0,409,0,8,229,0,1,86,0,0,83,5,608,8,29,0,0,520,211,0,0,0,2,733,0,182,63,1,20,17,0,0,2,718,13,0,0,523,52,77,15,9,57,0,719,4,1,0,0,9,0,58,592,0,80,3,0,0,539,157,8,1,14,0,4,0,1,8,1,0,1016,5.775862068965517,15.369252873563218,6.048850574712644,18.80603448275862,1.0081855388813097,3.319236016371078,2.130968622100955,739,461,1110,43,179,16,28,28,6,39,2,3,8,0,40,24,8,7,11,11,9,1603,914,0,189,2328,0,842,1675,0,2326,191,0,653,1864,0,637,16,1778,86,0,91,27,38,6,58,71,141,107,97,841,3,2,2,85,97,244,62,96,359,0,0,3,21,22,15,17,10,0,0,2,0,0,0,0,0,1651,35,587,0,0,23,5,18,224,247,78,20,214,801,107,59,41,2,445,0,0,1435,1227,61,298,121,943,5,0,241,0,99,239,15,230,4,0,0,1821,391,2,2,20,35,0,2,0,0,1,6,11,13,15,108,367,726,26,413,1457,222,296,248,179,110,98,26,17,3,1,0,1,0,0,4,42.0,28.0,36.0,39.0,46.0,43.0,40.0,34.0,46.0,35.0,57.0,45.0,53.0,51.0,59.0,49.0,51.0,59.0,45.0,49.0,57.0,50.0,55.0,41.0,47.0,35.0,52.0,34.0,38.0,38.0,37.0,31.0,29.0,34.0,21.0,25.0,24.0,34.0,30.0,30.0,36.0,42.0,23.0,30.0,28.0,27.0,32.0,24.0,24.0,39.0,35.0,23.0,25.0,40.0,27.0,19.0,21.0,26.0,27.0,35.0,24.0,18.0,16.0,18.0,22.0,22.0,13.0,17.0,23.0,12.0,17.0,17.0,17.0,15.0,11.0,18.0,13.0,17.0,10.0,18.0,7.0,11.0,7.0,12.0,9.0,8.0,6.0,6.0,6.0,5.0,4.0,1.0,3.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,654,1676,332,0,191,198,265,253,250,197,152,143,159,146,150,128,98,87,77,76,46,31,12,3,0,0,2653,0,4,5,0,2653,1,3,5,0,790,9,62,291,94,4,758,654,0,1799,860,3,0,1,15,0,0,0,0,0,0,0,128,2518,0,10,165,526,9,35,2,1560,355,0,184,394,30,2,1,2051,0,2.6193236714975847,0.0,3.737226277372263,0.0,6.6115702479338845,4,36,162,3,2,1,450,81,0,32,30,67,84,144,129,87,72,62,22,9,0,1,0,0,0,670,69,341,398,323,416,62,677,222,517,7,732,372,367,3,736,533,206,402,337,274,128,58,681,190,549,56,683,542,197,479,260,8,731,115,446,172,6,0,593,146,0,0,2,0,0,0,0,0,0,0,32,705,0,1.9418132611637349,1.6603518267929636,1.0,1.0526315789473684,1.0526315789473684,54.27740189445196 +20611,Coclé,Penonomé,Boca de Tucué,773,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,419,18,459,41,0,0,0,18,0,9,0,9,353,3,5,138,0,1,1,1,453,7,55,0,1,241,275,0,0,0,2,518,0,161,13,2,58,22,0,0,1,495,22,0,0,170,328,2,1,3,14,0,482,0,0,0,1,35,0,8,290,3,197,20,0,0,365,51,17,3,67,0,9,0,0,6,0,0,774,6.127403846153846,20.596153846153847,6.908653846153846,23.641826923076923,1.001930501930502,3.063706563706564,1.9092664092664091,519,361,932,58,146,6,13,10,3,33,1,1,6,1,18,13,8,3,9,7,9,896,1055,0,41,1910,0,324,1627,0,1761,190,0,602,1349,0,593,9,1251,98,0,99,37,35,5,56,74,121,93,82,658,0,0,0,67,90,209,44,62,189,0,1,7,3,6,7,3,2,1,0,0,0,0,0,0,0,923,13,757,0,0,3,3,13,346,335,30,33,80,106,27,19,10,1,684,1,0,1131,959,26,162,18,505,2,0,215,0,85,104,11,547,16,0,0,1474,206,0,0,3,9,1,0,0,0,0,1,6,6,6,44,604,92,8,169,1639,169,68,96,46,26,18,7,3,2,0,0,0,0,0,16,32.0,25.0,48.0,34.0,41.0,42.0,42.0,37.0,53.0,43.0,46.0,49.0,47.0,43.0,58.0,49.0,58.0,46.0,28.0,35.0,30.0,34.0,33.0,44.0,23.0,34.0,21.0,23.0,32.0,24.0,20.0,22.0,18.0,21.0,27.0,27.0,20.0,25.0,26.0,24.0,28.0,21.0,25.0,22.0,14.0,28.0,21.0,25.0,26.0,27.0,22.0,24.0,11.0,21.0,21.0,18.0,15.0,16.0,29.0,17.0,16.0,15.0,13.0,18.0,17.0,8.0,11.0,9.0,12.0,12.0,11.0,15.0,6.0,11.0,9.0,11.0,12.0,4.0,8.0,9.0,6.0,8.0,3.0,4.0,4.0,4.0,2.0,8.0,4.0,0.0,1.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,640,1254,196,0,180,217,243,216,164,134,108,122,110,127,99,95,79,52,52,44,25,18,5,0,0,0,2078,0,0,12,0,2078,0,0,12,0,593,4,61,230,54,2,506,640,0,1323,767,0,0,10,5,0,0,0,0,0,1,0,10,2064,0,6,37,104,3,1,0,264,1675,0,52,167,14,1,0,1856,0,3.0249343832021,0.0,4.5711340206185564,0.0,5.843062200956938,0,8,43,0,1,0,85,382,0,73,45,88,107,109,46,25,8,14,2,2,0,0,0,0,0,401,118,24,495,63,456,62,457,14,505,3,516,171,348,2,517,279,240,124,395,69,55,7,512,7,512,10,509,418,101,352,167,9,510,78,326,111,4,0,452,67,0,1,0,0,0,0,0,0,0,0,3,515,0,2.179190751445087,1.8477842003853564,1.0,1.125,1.125,53.70327552986512 +20615,Coclé,Penonomé,Riecito,367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,270,6,255,20,0,0,0,6,0,0,0,5,192,2,4,74,0,4,0,0,239,16,23,3,0,30,250,1,0,0,0,281,0,59,6,0,18,3,0,0,0,275,6,0,0,4,277,0,0,0,0,0,245,0,0,0,1,35,0,3,42,0,151,85,0,0,110,94,3,23,36,1,9,0,0,5,0,0,367,6.480392156862745,19.70098039215686,6.96078431372549,23.485294117647054,1.00711743772242,3.580071174377224,2.3558718861209966,283,200,638,24,90,15,13,19,3,14,6,4,6,0,6,8,2,5,5,0,5,555,649,0,18,1186,0,227,977,0,1077,127,0,379,825,0,378,1,742,83,0,83,14,21,2,43,49,71,60,44,418,0,0,1,44,44,206,23,26,50,0,0,1,1,0,2,0,1,0,0,0,0,0,0,0,0,633,4,384,0,0,0,0,0,158,184,10,32,27,10,6,4,6,2,582,0,0,693,622,14,110,6,289,2,0,216,0,83,49,6,380,36,0,0,965,53,1,0,0,2,0,0,0,0,0,2,3,4,3,12,490,5,3,115,1090,77,41,29,16,13,6,5,2,0,0,0,0,0,0,36,29.0,28.0,28.0,26.0,32.0,30.0,27.0,28.0,29.0,37.0,44.0,28.0,40.0,35.0,38.0,28.0,37.0,32.0,36.0,25.0,23.0,19.0,19.0,23.0,11.0,14.0,17.0,19.0,16.0,12.0,9.0,18.0,14.0,12.0,12.0,15.0,14.0,16.0,16.0,18.0,18.0,9.0,15.0,6.0,11.0,11.0,9.0,13.0,11.0,10.0,13.0,13.0,11.0,11.0,7.0,10.0,12.0,10.0,6.0,9.0,8.0,6.0,12.0,7.0,12.0,7.0,7.0,12.0,4.0,7.0,7.0,10.0,4.0,4.0,3.0,1.0,4.0,4.0,4.0,3.0,4.0,4.0,2.0,0.0,2.0,2.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,479,735,101,0,143,151,185,158,95,78,65,79,59,54,55,47,45,37,28,16,12,7,1,0,0,0,1302,0,0,13,0,1302,0,0,13,0,370,4,39,89,39,1,297,476,0,911,404,0,0,1,0,0,0,0,0,0,0,0,12,1302,0,5,34,25,2,0,0,389,860,0,5,29,1,0,0,1280,0,2.896265560165975,0.0,4.8088235294117645,0.0,5.352091254752851,0,9,6,1,0,0,88,179,0,58,24,42,47,62,29,8,4,7,0,1,0,0,0,0,1,83,200,9,274,5,278,29,254,2,281,1,282,123,160,1,282,138,145,45,238,10,35,2,281,5,278,2,281,257,26,235,48,3,280,34,155,89,5,0,247,36,0,0,0,0,0,0,0,0,0,0,3,280,0,2.4487632508833923,2.197879858657244,0.0,1.0,1.0,50.3356890459364 +20616,Coclé,Penonomé,San Miguel,650,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,63,395,14,445,16,0,1,0,13,0,0,0,4,374,1,0,94,0,2,0,1,398,19,57,0,0,186,288,0,1,0,0,475,0,99,8,2,39,29,0,0,2,463,10,0,0,215,246,4,2,2,6,0,431,0,2,0,0,42,0,10,291,0,170,4,0,0,281,68,3,0,117,0,5,0,0,1,0,0,652,6.527220630372493,22.011461318051577,7.0,24.0,1.0063157894736845,3.4021052631578947,2.0610526315789475,478,336,979,18,144,4,19,14,5,32,4,1,4,0,39,43,12,3,20,2,1,751,1125,0,41,1835,0,173,1703,0,1681,195,0,533,1343,0,530,3,1244,99,0,102,28,42,4,67,83,149,81,89,619,0,0,0,58,57,243,40,54,137,1,0,3,3,4,5,2,3,0,0,2,0,0,0,0,0,1166,2,454,0,0,0,1,6,104,222,27,95,56,20,14,28,6,1,1040,2,1,1129,909,15,135,26,418,0,0,573,1,115,119,20,550,8,0,0,1462,146,0,0,2,10,0,2,0,0,1,4,7,6,4,31,965,12,7,131,1479,199,94,149,58,26,13,5,3,2,1,0,1,0,0,8,36.0,46.0,45.0,35.0,49.0,45.0,30.0,58.0,41.0,31.0,44.0,49.0,49.0,42.0,52.0,32.0,53.0,46.0,42.0,34.0,41.0,37.0,34.0,30.0,26.0,31.0,23.0,34.0,22.0,30.0,20.0,30.0,20.0,21.0,24.0,22.0,18.0,13.0,15.0,14.0,17.0,21.0,16.0,21.0,23.0,20.0,18.0,14.0,22.0,24.0,18.0,14.0,17.0,22.0,13.0,17.0,14.0,23.0,21.0,15.0,14.0,16.0,16.0,13.0,16.0,12.0,15.0,10.0,14.0,14.0,10.0,7.0,12.0,12.0,7.0,11.0,8.0,9.0,9.0,7.0,8.0,7.0,5.0,5.0,6.0,9.0,8.0,5.0,8.0,1.0,1.0,2.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,652,1157,229,0,211,205,236,207,168,140,115,82,98,98,84,90,75,65,48,44,31,31,7,3,0,0,2031,0,0,7,0,2031,0,0,7,0,532,4,56,237,61,2,494,652,0,1391,647,0,0,0,0,0,0,0,0,0,0,0,8,2030,0,7,158,38,0,2,0,273,1560,0,32,85,7,2,0,1912,0,3.1410437235543016,0.0,4.741150442477876,0.0,5.5014720314033365,1,47,13,0,0,0,79,338,0,63,37,51,87,122,63,18,15,15,3,2,1,1,0,0,0,325,153,9,469,33,445,84,394,6,472,1,477,178,300,8,470,259,219,97,381,24,73,10,468,24,454,9,469,409,69,337,141,21,457,60,298,117,3,0,428,50,0,0,0,0,0,0,0,0,0,0,1,477,0,2.3619246861924688,1.901673640167364,0.0,1.0416666666666667,1.0416666666666667,54.94769874476987 +20612,Coclé,Penonomé,Candelario Ovalle,936,2,0,0,0,0,0,0,2,0,0,0,1,0,0,0,84,629,45,625,88,0,1,0,44,0,6,0,46,531,19,15,135,0,6,51,0,607,15,77,0,8,332,403,0,1,0,22,758,1,122,21,1,27,8,0,1,1,738,16,2,0,238,497,5,0,1,17,0,731,0,0,0,0,26,1,16,444,1,288,9,0,0,257,319,30,3,132,0,5,0,0,10,2,0,941,6.873263888888889,23.40798611111111,6.994791666666667,23.93402777777778,1.0065963060686016,3.558047493403694,2.4683377308707124,764,547,1791,28,299,20,31,16,8,81,8,4,18,0,22,22,5,8,21,6,17,1628,1737,0,133,3232,0,755,2610,0,3094,271,0,1115,2250,0,1108,7,2156,94,0,95,55,81,9,90,99,182,144,164,1175,1,0,0,89,130,477,94,86,330,4,3,8,8,11,13,9,7,0,1,0,0,0,0,0,0,1453,27,1422,0,0,10,10,3,597,699,61,62,105,99,42,98,42,2,1076,4,1,1925,1690,30,231,92,501,10,1,603,1,154,161,12,1361,74,0,0,2508,369,0,1,4,20,0,0,0,0,1,9,11,5,22,68,912,78,22,352,2804,208,142,106,128,80,48,12,6,2,2,2,1,0,0,74,69.0,56.0,68.0,57.0,70.0,80.0,73.0,82.0,79.0,79.0,81.0,87.0,87.0,81.0,100.0,94.0,86.0,103.0,91.0,87.0,82.0,96.0,60.0,59.0,66.0,41.0,45.0,62.0,40.0,44.0,42.0,38.0,37.0,36.0,31.0,32.0,35.0,34.0,45.0,38.0,39.0,37.0,38.0,41.0,24.0,36.0,29.0,40.0,33.0,40.0,39.0,35.0,28.0,22.0,25.0,30.0,25.0,33.0,27.0,23.0,24.0,24.0,22.0,21.0,18.0,24.0,20.0,23.0,17.0,19.0,10.0,13.0,14.0,13.0,14.0,9.0,9.0,7.0,8.0,6.0,11.0,13.0,5.0,6.0,3.0,10.0,8.0,5.0,7.0,5.0,1.0,2.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1149,2177,289,0,320,393,436,461,363,232,184,184,179,178,149,138,109,103,64,39,38,35,5,4,1,0,3585,4,2,24,0,3585,4,2,24,0,1063,6,74,315,81,6,921,1149,0,2499,1113,3,0,4,10,0,0,0,0,0,0,1,78,3522,0,3,89,146,1,0,0,721,2655,0,61,200,5,2,0,3347,0,2.865727002967359,0.0,4.563432835820896,0.0,6.105117565698478,1,18,32,1,0,0,182,530,0,179,56,86,93,138,86,50,29,31,11,1,0,2,0,1,0,581,183,25,739,50,714,160,604,16,748,2,762,445,319,4,760,508,256,208,556,147,61,34,730,168,596,23,741,598,166,520,244,6,758,91,440,226,7,2,640,124,0,1,3,0,0,0,0,0,0,1,18,741,0,2.5130548302872064,2.206266318537859,1.0,1.0196078431372548,1.0196078431372548,52.04319371727749 +20606,Coclé,Penonomé,Pajonal,2456,7,2,0,0,0,0,0,0,0,0,3,0,0,0,1,815,1032,87,1757,91,1,0,0,86,0,1276,0,37,288,17,23,293,0,1,190,10,1411,14,301,1,8,1396,481,1,2,0,55,1935,1,404,65,4,29,27,0,2,11,1857,52,13,0,1684,35,82,60,30,44,0,1902,1,11,0,2,19,0,229,1505,0,201,0,0,0,1666,128,37,3,65,0,4,0,8,18,6,0,2468,6.59866220735786,20.911371237458194,6.8595317725752505,23.023411371237454,1.013953488372093,3.2196382428940566,2.096124031007752,1965,1131,3122,110,881,34,99,90,13,185,14,13,21,0,116,90,33,48,46,224,70,4905,2307,0,670,6542,0,2879,4333,0,6762,450,0,1976,5236,0,1918,58,4993,243,0,246,66,136,17,161,198,261,247,247,2422,0,1,3,206,260,721,147,247,1164,2,8,58,59,72,115,89,30,11,5,13,0,0,0,0,0,2884,375,3156,0,5,228,31,140,1208,1487,198,123,860,511,585,284,182,11,646,23,4,3975,3703,171,1036,287,1311,6,3,288,4,112,455,37,2312,6,0,0,4785,1336,3,9,48,211,10,13,0,0,4,22,94,65,72,462,720,514,116,1190,4989,689,356,384,424,313,334,82,61,25,12,1,2,0,0,6,134.0,114.0,106.0,112.0,135.0,136.0,124.0,130.0,137.0,135.0,129.0,158.0,126.0,155.0,151.0,134.0,148.0,125.0,160.0,125.0,121.0,126.0,138.0,133.0,129.0,135.0,126.0,120.0,132.0,118.0,136.0,124.0,111.0,87.0,115.0,106.0,100.0,99.0,113.0,114.0,105.0,104.0,63.0,87.0,55.0,94.0,76.0,91.0,66.0,75.0,67.0,72.0,89.0,74.0,78.0,67.0,82.0,62.0,68.0,61.0,77.0,60.0,59.0,53.0,54.0,50.0,51.0,41.0,46.0,44.0,40.0,32.0,34.0,29.0,43.0,31.0,30.0,36.0,38.0,20.0,23.0,24.0,28.0,17.0,17.0,18.0,9.0,20.0,15.0,9.0,9.0,6.0,5.0,4.0,3.0,3.0,3.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1982,4914,782,0,601,662,719,692,647,631,573,532,414,402,380,340,303,232,178,155,109,71,27,6,4,0,7650,7,5,16,0,7650,9,3,16,0,2241,22,433,757,255,7,1981,1982,0,5729,1942,7,0,9,14,1,0,1,9,2,6,2,30,7604,0,50,136,232,3,1,6,1872,5378,0,657,1254,170,21,1,5575,0,2.4705501618122976,0.0,3.63560157790927,0.0,6.974602761135713,9,39,67,1,1,3,521,1324,0,220,135,159,214,327,294,213,131,155,57,30,10,11,3,2,1,1788,177,1044,921,844,1121,166,1799,639,1326,22,1943,917,1048,19,1946,1693,272,1116,849,540,576,253,1712,837,1128,188,1777,1094,871,868,1097,34,1931,278,1050,622,15,0,1293,672,0,2,1,0,0,0,2,0,1,0,8,1951,0,2.0229007633587788,1.8844783715012725,1.0,1.0526315789473684,1.0526315789473684,53.15368956743003 +130106,Panamá Oeste,Arraiján,Vista Alegre,7387,158,608,148,0,0,0,7,0,0,0,0,8,0,0,3314,2775,426,79,6126,389,0,2,0,59,18,6418,138,3,13,0,10,11,0,1,5459,476,576,34,13,7,29,6400,34,77,0,0,83,6594,23,493,285,332,497,77,0,1020,1058,4210,167,22,117,6432,22,1,132,0,7,0,5741,271,561,21,0,0,0,4652,1819,7,113,1,2,6398,148,4,0,0,0,0,0,0,21,16,7,8060,256,6.610381679389313,19.317099236641223,6.650687022900764,19.42580152671756,1.0203215043979377,3.778283287837428,2.3742796481649986,6736,3530,6879,390,1832,368,349,311,107,411,116,105,262,21,346,133,81,118,115,63,99,18240,2148,0,8980,11408,0,17384,3004,0,19291,1097,0,5724,14664,0,3911,1813,14038,626,0,659,154,278,64,402,388,449,402,434,1650,4,9,266,629,775,1735,642,1053,4687,28,118,404,563,788,990,1192,884,140,47,528,0,1,1,24,0,8447,1147,8930,0,26,356,267,2239,3383,2840,226,242,6945,478,987,232,601,60,18,26,19,10468,10949,1875,4865,259,2208,98,3,26,32,50,277,54,5833,367,0,0,7792,6589,283,128,379,2712,121,499,21,0,39,656,1452,1138,805,1841,75,1495,683,1410,8845,1102,480,703,1221,1500,2418,1564,1500,773,413,187,194,69,81,367,230.0,272.0,252.0,275.0,309.0,305.0,303.0,339.0,305.0,303.0,317.0,323.0,299.0,314.0,293.0,275.0,310.0,275.0,330.0,280.0,320.0,347.0,365.0,351.0,341.0,398.0,367.0,352.0,341.0,314.0,322.0,292.0,315.0,311.0,322.0,273.0,307.0,306.0,266.0,288.0,260.0,242.0,256.0,264.0,239.0,259.0,227.0,232.0,227.0,234.0,261.0,268.0,242.0,246.0,269.0,269.0,257.0,241.0,278.0,268.0,310.0,278.0,312.0,282.0,241.0,230.0,232.0,189.0,205.0,183.0,177.0,128.0,126.0,125.0,108.0,120.0,73.0,71.0,61.0,64.0,54.0,60.0,35.0,46.0,32.0,44.0,28.0,21.0,29.0,18.0,16.0,15.0,14.0,8.0,12.0,5.0,5.0,2.0,2.0,5.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4439,14430,2548,0,1338,1555,1546,1470,1724,1772,1562,1440,1261,1179,1286,1313,1423,1039,664,389,227,140,65,19,5,0,19993,917,462,45,0,20001,1005,366,45,0,4455,305,1602,4290,735,300,5292,4438,0,6903,13973,541,0,1923,452,24,1,0,0,81,3,1,310,18622,0,1651,816,985,252,93,70,4240,13310,0,5351,4668,2352,106,64,8876,0,1.815742208135235,0.0,2.6128625472887768,0.0,9.937432880422094,567,315,357,123,42,36,1394,3902,0,300,141,103,203,369,529,710,644,1074,752,538,389,446,184,258,88,6615,121,6313,423,5840,896,1149,5587,6261,475,2700,4036,3525,3211,2018,4718,6477,259,6203,533,4640,1563,3211,3525,5786,950,3398,3338,702,6034,241,6495,73,6663,1242,3286,2004,204,7,3806,2930,0,285,151,12,0,0,0,25,0,1,124,6138,0,1.5524247367640516,1.623757971229423,1.2644628099173554,1.0610328638497653,1.0610328638497653,51.976840855106886 +50317,Darién,Santa Fe,Zapallal,1708,7,74,1,0,0,0,0,1,0,0,0,0,0,0,1,381,711,73,1053,40,9,3,0,59,2,768,297,4,37,1,10,41,0,8,289,43,805,16,12,1,0,1123,27,1,0,0,15,1166,0,309,135,24,104,52,0,5,45,1042,74,0,0,520,602,0,27,1,15,1,1120,1,7,1,0,37,0,141,646,0,236,142,1,624,385,20,16,2,0,19,31,4,21,17,27,0,1791,4.4917395529640425,14.289601554907676,5.521865889212828,17.118561710398446,1.0111492281303602,2.978559176672384,1.7950257289879932,1179,679,1632,129,237,29,45,33,10,51,15,13,62,1,29,9,7,22,27,3,13,2810,929,0,550,3189,0,1299,2440,0,3210,529,0,1379,2360,0,1309,70,2000,360,0,365,79,72,9,162,195,197,170,176,524,0,0,3,157,194,246,119,172,508,12,18,42,48,70,42,61,59,5,6,26,0,1,0,1,0,1414,94,1661,0,10,36,23,14,754,704,86,103,551,97,128,21,103,7,561,21,0,2104,2011,219,419,21,724,68,1,36,1,102,155,29,1407,8,0,0,2267,696,3,7,32,134,6,23,1,0,1,45,73,76,74,164,490,183,97,305,2675,334,102,163,206,248,154,61,91,34,16,7,6,2,8,8,91.0,117.0,91.0,77.0,96.0,95.0,87.0,110.0,97.0,85.0,100.0,92.0,68.0,88.0,71.0,67.0,78.0,86.0,96.0,75.0,83.0,75.0,65.0,76.0,57.0,70.0,66.0,60.0,68.0,58.0,61.0,69.0,66.0,59.0,55.0,65.0,54.0,56.0,54.0,49.0,42.0,41.0,46.0,41.0,40.0,45.0,37.0,37.0,28.0,36.0,43.0,25.0,32.0,31.0,29.0,34.0,26.0,32.0,19.0,24.0,30.0,21.0,17.0,32.0,20.0,14.0,16.0,17.0,21.0,19.0,8.0,10.0,20.0,21.0,16.0,13.0,8.0,12.0,6.0,8.0,14.0,7.0,6.0,5.0,11.0,5.0,4.0,4.0,5.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1365,2476,274,0,472,474,419,402,356,322,310,278,210,183,160,135,120,87,75,47,43,18,3,1,0,0,3991,35,44,45,0,3992,41,37,45,0,1223,40,159,389,47,8,884,1365,0,1758,2293,64,0,5,141,2,0,0,0,295,459,0,100,3113,0,90,96,234,49,38,5,703,2900,0,368,436,19,2,0,3290,0,2.5497076023391814,0.0,3.6728155339805824,0.0,6.351154313487242,27,30,72,30,11,3,215,791,0,169,82,69,115,163,165,117,67,120,45,20,16,13,4,12,2,1148,31,809,370,879,300,127,1052,913,266,100,1079,485,694,14,1165,1049,130,671,508,522,149,193,986,694,485,252,927,448,731,360,819,22,1157,245,673,230,31,1,865,314,0,1,36,1,0,0,0,65,98,0,13,965,0,1.7830508474576272,1.7042372881355932,2.0,1.0,1.0,46.20101781170484 +50208,Darién,Pinogana,Metetí,4057,25,453,103,0,0,0,0,4,0,0,3,0,1,0,0,2007,942,115,2789,160,46,1,0,66,2,2744,0,9,169,15,13,107,0,7,1992,54,924,37,41,3,13,2925,55,13,0,0,71,3064,3,849,222,167,223,110,0,11,328,2453,267,4,1,1884,1115,2,15,3,44,1,2982,4,11,12,0,53,2,756,1709,1,212,386,0,1489,1167,14,6,7,6,70,93,1,157,50,4,1222,3424,5.489513108614232,21.60749063670412,6.1243445692883896,22.58576779026217,1.0068537859007831,3.140013054830287,1.9761749347258488,3088,1720,3482,396,446,56,94,67,20,142,24,20,135,1,101,47,16,65,31,15,23,7649,1329,1,2081,6897,1,6823,2155,1,7998,980,1,3041,5937,1,2692,349,5365,572,0,589,130,187,14,274,322,396,282,345,1387,1,1,4,368,477,631,309,342,1479,4,25,209,225,199,280,216,153,29,10,87,0,0,0,3,1,4184,196,3482,1,20,70,48,63,1651,1475,184,109,2106,215,331,56,376,5,1232,25,0,5075,4616,901,1488,50,1640,119,1,143,4,123,331,58,2337,26,1,1,4936,2110,4,36,123,558,22,70,3,1,4,211,353,239,193,798,848,429,348,957,4900,695,429,558,652,780,561,279,442,167,94,30,32,16,30,26,180.0,185.0,167.0,180.0,172.0,193.0,190.0,193.0,198.0,170.0,174.0,188.0,164.0,165.0,165.0,201.0,195.0,195.0,179.0,164.0,163.0,165.0,168.0,162.0,171.0,176.0,185.0,177.0,148.0,158.0,161.0,125.0,169.0,131.0,140.0,119.0,150.0,129.0,138.0,130.0,129.0,106.0,134.0,103.0,103.0,119.0,108.0,96.0,96.0,88.0,125.0,103.0,92.0,85.0,102.0,87.0,94.0,75.0,88.0,78.0,76.0,71.0,62.0,70.0,47.0,53.0,52.0,52.0,41.0,44.0,37.0,32.0,30.0,33.0,28.0,36.0,34.0,25.0,30.0,17.0,11.0,15.0,19.0,9.0,11.0,16.0,7.0,7.0,6.0,2.0,7.0,4.0,4.0,2.0,1.0,1.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2684,6336,671,0,884,944,856,934,829,844,726,666,575,507,507,422,326,242,160,142,65,38,18,6,0,0,9419,117,109,45,1,9429,121,95,45,1,2918,74,844,1128,148,35,1860,2683,1,3586,5989,115,1,17,317,6,0,1,1,881,161,0,64,8242,1,230,123,401,98,11,7,1558,7262,1,1280,1383,67,3,8,6949,1,2.2685683530678147,0.0002691065662002,3.2757382282521945,0.0003990422984836,7.5028376844494895,88,41,151,46,4,3,542,2212,1,115,159,127,241,394,443,369,245,416,208,130,67,84,44,41,2,3010,78,2450,638,2452,636,471,2617,2489,599,432,2656,1335,1753,122,2966,2798,290,1955,1133,1789,166,904,2184,2074,1014,1038,2050,1323,1765,1516,1572,57,3031,734,1718,548,88,5,2275,813,0,5,82,3,0,0,0,174,31,0,18,2774,1,1.640801810539929,1.492402198512771,1.3636363636363635,1.0138888888888888,1.0138888888888888,47.24773316062176 +50101,Darién,Chepigana,La Palma,1566,1,2,0,0,0,1,0,0,0,0,0,1,0,0,315,153,267,347,691,44,57,4,251,31,4,793,0,90,110,9,27,43,0,10,627,3,396,42,8,6,0,1021,42,0,0,1,18,1082,0,214,65,12,138,58,0,0,121,894,65,1,1,549,511,0,8,6,1,7,1008,1,0,3,0,70,0,213,558,0,29,281,1,745,87,10,15,73,16,11,58,0,60,6,1,625,946,3.9168646080760094,9.34916864608076,4.364608076009501,10.11520190023753,1.0083179297597042,3.234750462107209,2.074861367837338,1092,598,1376,162,297,23,46,48,12,48,19,13,59,0,38,33,6,15,24,4,21,2586,899,0,659,2826,0,2228,1257,0,3049,436,0,1144,2341,0,1091,53,2074,267,0,278,50,78,10,122,146,146,164,190,408,0,0,2,157,222,229,115,152,697,5,12,31,34,35,43,59,70,6,0,23,0,0,0,1,0,1525,73,1397,0,1,47,17,91,678,497,76,55,689,91,94,9,98,3,282,294,0,2002,1791,462,227,9,790,28,1,43,0,101,118,32,945,2,0,0,1976,821,2,3,13,157,4,18,1,0,0,51,103,91,103,288,520,110,79,253,2091,228,199,241,271,148,257,119,114,68,17,7,16,3,12,2,87.0,74.0,74.0,73.0,87.0,82.0,82.0,94.0,71.0,74.0,93.0,75.0,74.0,75.0,65.0,76.0,71.0,98.0,82.0,81.0,62.0,65.0,76.0,53.0,52.0,57.0,47.0,44.0,48.0,41.0,60.0,36.0,44.0,45.0,44.0,36.0,40.0,47.0,44.0,47.0,41.0,53.0,45.0,41.0,45.0,39.0,43.0,35.0,26.0,49.0,53.0,40.0,47.0,26.0,34.0,30.0,43.0,22.0,29.0,26.0,38.0,33.0,19.0,32.0,22.0,22.0,22.0,21.0,24.0,20.0,15.0,16.0,18.0,17.0,22.0,6.0,7.0,7.0,17.0,9.0,2.0,11.0,10.0,7.0,7.0,3.0,2.0,5.0,2.0,2.0,5.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1180,2307,306,0,395,403,382,408,308,237,229,214,225,192,200,150,144,109,88,46,37,14,9,1,2,0,3670,41,54,28,0,3673,43,49,28,0,1081,13,126,362,66,15,950,1180,0,1965,1766,62,0,1,11,0,0,0,0,1037,146,0,14,2584,0,269,191,666,355,11,4,1062,1235,0,467,586,102,3,1,2634,0,2.613540197461213,0.0,3.6505652620760536,0.0,6.915370419193251,107,62,208,170,6,1,268,270,0,47,38,49,94,179,135,120,99,118,91,43,29,24,7,18,0,1041,51,735,357,768,324,106,986,763,329,120,972,455,637,90,1002,891,201,678,414,635,43,193,899,663,429,98,994,298,794,231,861,7,1085,248,557,257,30,1,753,339,0,1,5,0,0,0,0,199,37,0,2,848,0,1.8316559926806952,1.6386093321134492,1.0,1.1,1.1,49.80128205128205 +50104,Darién,Chepigana,Garachiné,761,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,268,213,82,463,18,39,0,4,36,3,499,0,3,32,7,4,17,0,1,0,202,351,6,3,1,0,506,46,0,0,0,11,563,0,108,28,3,50,11,0,0,42,494,27,0,0,268,274,0,1,19,0,1,550,0,3,0,0,10,0,62,373,0,16,112,0,453,80,0,3,0,1,0,19,0,2,4,1,0,763,6.643527204502814,22.75234521575985,6.846153846153846,23.463414634146343,1.0035523978685612,3.3410301953818826,2.177619893428064,565,337,678,81,193,10,14,13,4,24,2,1,31,0,35,12,5,11,10,0,4,1129,654,0,210,1573,0,613,1170,0,1547,236,0,577,1206,0,562,15,1053,153,0,153,33,38,1,61,85,91,94,106,324,0,0,0,111,95,122,55,55,263,0,0,4,4,14,19,10,39,0,0,6,0,0,0,0,0,771,29,729,0,4,9,9,18,332,297,45,37,127,85,30,2,64,4,278,202,3,1039,914,98,45,0,569,31,1,48,3,81,74,16,540,34,0,0,1168,278,0,0,12,65,0,6,0,0,4,19,36,18,16,80,448,79,9,91,1295,219,87,88,66,35,41,14,27,20,13,1,8,1,4,34,50.0,45.0,39.0,36.0,55.0,42.0,36.0,44.0,46.0,31.0,41.0,48.0,47.0,41.0,52.0,49.0,32.0,39.0,25.0,31.0,23.0,28.0,22.0,27.0,29.0,22.0,17.0,26.0,23.0,25.0,27.0,19.0,17.0,18.0,28.0,36.0,18.0,22.0,17.0,16.0,19.0,18.0,15.0,22.0,22.0,23.0,16.0,21.0,19.0,20.0,31.0,19.0,18.0,17.0,22.0,21.0,14.0,14.0,22.0,13.0,12.0,11.0,15.0,14.0,20.0,18.0,13.0,12.0,17.0,12.0,18.0,6.0,12.0,13.0,11.0,7.0,6.0,9.0,5.0,3.0,7.0,2.0,5.0,6.0,4.0,6.0,1.0,3.0,1.0,1.0,1.0,1.0,3.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,653,1094,206,0,225,199,229,176,129,113,109,109,96,99,107,84,72,72,60,30,24,12,5,1,2,0,1890,31,23,9,0,1890,33,21,9,0,589,11,189,201,37,5,270,651,0,1006,910,37,0,1,23,2,0,0,0,795,9,2,5,1116,0,175,161,252,97,56,3,419,790,0,98,229,27,2,0,1597,0,3.0943396226415096,0.0,4.015968063872256,0.0,6.100358422939068,48,54,80,53,21,2,123,184,0,108,46,58,62,108,43,37,20,34,12,12,4,13,4,4,0,526,39,394,171,398,167,65,500,421,144,38,527,225,340,7,558,447,118,344,221,330,14,58,507,122,443,46,519,261,304,237,328,3,562,131,274,138,22,0,458,107,0,1,6,2,0,0,0,161,1,0,2,392,0,1.8389380530973447,1.6176991150442477,1.0,1.0526315789473684,1.0526315789473684,51.4141592920354 +30401,Colón,Portobelo,Portobelo,2026,3,0,0,0,0,0,1,0,0,0,0,20,0,0,0,1292,84,31,1321,55,2,0,0,28,1,1358,0,2,17,4,5,20,0,1,986,0,404,1,13,1,2,1358,18,8,1,0,22,1407,1,405,74,46,42,54,0,0,126,1135,145,1,0,1341,42,0,19,0,5,0,1065,3,324,10,3,2,0,663,697,3,31,13,0,6,1179,148,13,0,19,0,11,0,28,1,2,0,2050,5.975993998499625,21.054013503375845,5.840210052513128,20.859714928732185,1.0142146410803128,3.434968017057569,2.181236673773987,1447,805,1765,198,344,35,54,48,15,92,15,11,79,2,47,23,6,22,16,19,5,3746,833,0,957,3622,0,3355,1224,0,4127,452,0,1417,3162,0,1311,106,2969,193,0,198,85,97,5,150,141,157,136,176,646,1,1,4,167,201,341,164,226,1112,1,2,53,69,84,118,59,148,9,5,20,0,0,0,3,0,2009,187,1796,0,2,122,20,157,794,708,50,87,1250,111,267,76,193,4,108,109,6,2499,2411,436,900,75,660,38,0,9,6,4,122,12,1379,6,0,0,2304,1318,4,6,53,277,8,19,3,0,6,86,104,132,141,405,101,338,242,641,2479,283,174,263,332,355,577,187,157,48,24,5,11,3,6,6,80.0,81.0,87.0,83.0,95.0,103.0,107.0,112.0,87.0,83.0,98.0,120.0,71.0,92.0,85.0,71.0,81.0,78.0,71.0,88.0,69.0,78.0,79.0,95.0,75.0,99.0,103.0,78.0,64.0,71.0,72.0,69.0,68.0,61.0,73.0,63.0,53.0,66.0,67.0,73.0,61.0,69.0,62.0,71.0,48.0,53.0,71.0,48.0,71.0,58.0,45.0,40.0,45.0,49.0,39.0,41.0,51.0,37.0,44.0,42.0,45.0,40.0,35.0,41.0,47.0,27.0,40.0,22.0,22.0,23.0,23.0,23.0,25.0,20.0,20.0,18.0,13.0,21.0,13.0,14.0,8.0,9.0,8.0,11.0,10.0,6.0,3.0,3.0,8.0,2.0,1.0,3.0,1.0,2.0,1.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,1384,3118,407,1,426,492,466,389,396,415,343,322,311,301,218,215,208,134,111,79,46,22,8,6,1,1,4720,102,76,12,0,4724,116,58,12,0,1414,37,424,567,134,13,937,1384,0,2399,2394,117,0,52,132,10,1,1,0,102,5,0,68,4539,0,540,413,274,168,15,6,1536,1958,0,829,933,161,9,21,2957,0,2.1611909650924024,0.0,3.0966514459665144,0.0,7.904887983706721,177,114,82,69,5,4,427,569,0,45,35,37,92,154,196,211,151,244,126,62,27,31,6,7,3,1403,44,1271,176,1194,253,167,1280,1292,155,331,1116,502,945,143,1304,1328,119,1137,310,997,140,356,1091,982,465,455,992,315,1132,270,1177,7,1440,290,761,343,53,1,970,477,1,10,26,4,1,0,0,25,2,0,27,1352,0,1.725828729281768,1.6650552486187846,1.0,1.0377358490566038,1.0377358490566038,49.479944674965424 +10210,Bocas del Toro,Changuinola,Las Delicias,549,5,0,0,0,0,0,0,5,0,0,0,0,0,0,1,81,233,38,291,24,3,10,0,17,8,72,0,1,96,18,48,118,0,0,0,0,275,18,60,0,0,178,172,0,0,0,3,353,0,119,27,0,22,33,0,1,5,297,50,0,0,25,290,0,3,22,13,0,282,0,0,0,0,70,1,7,53,0,11,259,23,0,119,58,6,2,33,5,127,0,0,3,0,0,559,6.548022598870056,20.610169491525426,6.88135593220339,22.44632768361582,1.0056657223796035,3.3342776203966005,2.1643059490084986,355,220,838,20,206,10,13,20,2,46,7,1,35,0,13,15,1,1,2,1,9,552,1010,0,43,1519,0,271,1291,0,1191,371,0,420,1142,0,415,5,792,350,0,354,9,22,2,84,79,84,87,88,369,2,1,0,60,70,91,49,42,56,0,3,0,0,0,1,0,9,0,0,0,0,0,0,0,0,462,21,780,0,0,10,6,4,238,510,10,18,29,21,4,0,4,0,414,1,1,937,836,12,165,0,191,48,0,55,3,32,31,5,959,39,0,0,1194,59,0,2,1,7,0,0,0,0,3,17,1,6,5,12,292,14,7,126,1406,75,59,58,72,29,10,6,10,3,1,0,0,1,4,39,37.0,69.0,52.0,53.0,48.0,54.0,56.0,56.0,57.0,28.0,43.0,48.0,43.0,33.0,37.0,47.0,39.0,37.0,40.0,33.0,36.0,31.0,37.0,32.0,33.0,30.0,18.0,33.0,31.0,23.0,16.0,20.0,26.0,21.0,23.0,12.0,18.0,17.0,21.0,17.0,12.0,12.0,12.0,19.0,17.0,12.0,17.0,11.0,12.0,14.0,18.0,12.0,14.0,15.0,7.0,12.0,10.0,11.0,11.0,12.0,3.0,6.0,12.0,10.0,9.0,4.0,0.0,8.0,2.0,3.0,3.0,2.0,5.0,9.0,6.0,2.0,1.0,0.0,4.0,4.0,3.0,2.0,3.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,714,991,68,0,259,251,204,196,169,135,106,85,72,66,66,56,40,17,25,11,9,5,1,0,0,0,1478,163,2,130,0,1478,164,1,130,0,523,6,16,141,18,0,355,714,0,1230,456,87,0,1,1291,5,1,0,0,0,1,216,5,253,0,4,72,40,1,0,0,31,1625,0,28,74,4,0,0,1667,0,2.960616438356164,0.0,4.363395225464191,0.0,4.038917089678511,1,29,12,0,0,0,12,301,0,90,29,39,48,57,40,15,11,8,8,1,1,1,1,2,4,198,157,65,290,55,300,34,321,62,293,2,353,108,247,1,354,158,197,57,298,47,10,15,340,35,320,30,325,177,178,168,187,3,352,64,163,116,12,5,287,68,0,0,213,1,0,0,0,0,1,58,3,79,0,2.602777777777778,2.3222222222222224,1.5,1.0666666666666669,1.0666666666666669,46.44225352112676 +40802,Chiriquí,Gualaca,Hornito,617,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,322,57,16,376,3,6,0,0,10,0,329,0,2,24,1,0,37,0,2,109,23,191,9,58,0,5,342,45,1,0,0,7,395,0,156,18,2,20,30,0,1,5,348,41,0,0,278,85,0,7,0,25,0,389,1,0,0,5,0,0,63,268,0,24,40,0,0,215,157,0,0,18,0,3,0,0,2,0,0,621,6.779569892473118,23.77956989247312,6.806451612903226,23.80913978494624,1.0025316455696205,3.356962025316456,1.9949367088607597,396,185,393,37,94,13,12,5,3,11,1,4,21,0,25,36,6,4,6,4,9,832,273,0,197,908,0,628,477,0,960,145,0,285,820,0,271,14,715,105,0,106,8,15,1,45,42,66,44,40,266,0,2,0,22,54,67,26,44,158,4,5,13,12,16,15,15,12,4,0,3,0,0,0,0,0,475,42,486,0,4,21,6,20,179,206,28,53,164,99,41,15,66,1,126,0,1,656,519,30,208,17,216,11,0,28,3,7,82,10,274,3,0,0,746,190,0,11,9,40,4,3,0,0,3,9,19,14,10,77,139,74,21,151,648,131,58,74,77,71,52,25,27,3,4,0,2,0,0,3,14.0,18.0,22.0,16.0,20.0,15.0,13.0,21.0,18.0,15.0,27.0,19.0,21.0,17.0,23.0,14.0,27.0,21.0,18.0,15.0,17.0,18.0,18.0,11.0,21.0,13.0,14.0,11.0,11.0,25.0,14.0,13.0,11.0,14.0,14.0,12.0,16.0,12.0,14.0,10.0,21.0,16.0,16.0,19.0,13.0,15.0,9.0,12.0,10.0,11.0,17.0,12.0,19.0,13.0,17.0,18.0,15.0,10.0,15.0,14.0,14.0,12.0,12.0,14.0,8.0,8.0,9.0,6.0,7.0,6.0,8.0,9.0,9.0,16.0,5.0,10.0,10.0,8.0,7.0,3.0,5.0,1.0,4.0,2.0,6.0,1.0,5.0,3.0,0.0,1.0,2.0,4.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,279,736,160,0,90,82,107,95,85,74,66,64,85,57,78,72,60,36,47,38,18,10,7,4,0,0,1143,7,4,21,0,1145,8,1,21,0,249,17,91,208,38,16,277,279,0,580,587,8,0,1,89,14,3,0,0,0,0,0,0,1068,0,21,14,60,1,17,0,26,1036,0,123,207,20,4,3,818,0,2.596846846846846,0.0,3.652317880794702,0.0,6.54468085106383,6,4,21,1,9,0,11,344,0,37,55,32,41,62,52,32,22,35,8,12,3,3,0,2,0,372,24,273,123,271,125,78,318,116,280,5,391,207,189,15,381,323,73,289,107,138,151,76,320,207,189,91,305,247,149,210,186,15,381,129,175,75,17,0,317,79,0,1,15,4,1,0,0,0,0,0,0,375,0,1.6565656565656566,1.3106060606060606,1.0,1.0555555555555556,1.0555555555555556,55.26262626262626 +50209,Darién,Pinogana,Comarca Kuna de Wargandi,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,382,16,2,12,370,0,0,0,0,0,4,349,2,3,42,0,0,0,0,134,233,12,21,0,149,249,0,0,0,2,400,0,23,9,8,9,2,0,0,0,397,3,0,0,7,372,0,4,16,1,0,314,0,0,0,0,86,0,2,28,1,260,109,0,0,52,1,1,0,1,2,343,0,0,0,0,0,451,7.0,24.0,7.0,24.0,1.0025,1.9275,0.9125,401,324,1214,13,482,13,24,63,37,145,29,10,26,0,4,4,1,1,0,0,0,416,1989,0,24,2381,0,134,2271,0,1593,812,0,1015,1390,0,1002,13,699,691,0,695,43,62,1,94,134,165,151,167,226,0,0,0,112,112,196,80,61,70,3,0,11,14,2,1,5,0,0,0,0,0,0,0,0,0,1152,1,736,0,0,0,1,0,402,293,2,39,23,94,4,2,3,0,1023,3,0,1385,1396,19,25,0,709,8,0,391,0,241,35,4,1059,2,0,0,1783,102,0,0,0,4,0,0,0,0,0,4,3,7,3,26,998,78,3,31,2143,129,119,134,128,61,19,15,14,5,9,0,3,0,0,2,87.0,99.0,93.0,97.0,81.0,95.0,78.0,94.0,84.0,84.0,60.0,82.0,79.0,67.0,64.0,76.0,62.0,58.0,48.0,70.0,56.0,50.0,45.0,52.0,50.0,23.0,41.0,35.0,31.0,39.0,27.0,36.0,38.0,38.0,30.0,20.0,26.0,27.0,23.0,12.0,16.0,19.0,39.0,36.0,18.0,20.0,18.0,13.0,27.0,24.0,23.0,17.0,25.0,16.0,15.0,8.0,8.0,5.0,16.0,7.0,12.0,25.0,20.0,12.0,13.0,10.0,7.0,2.0,5.0,5.0,3.0,5.0,9.0,0.0,4.0,2.0,2.0,3.0,0.0,1.0,3.0,0.0,3.0,1.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1244,1465,72,0,457,435,352,314,253,169,169,108,128,102,96,44,82,29,21,8,9,3,1,1,0,0,2664,3,0,114,0,2664,3,0,114,0,954,6,178,59,32,0,310,1242,0,2690,88,3,0,2684,1,0,0,0,0,26,0,0,0,70,0,3,0,2,0,0,0,1,2775,0,10,2,2,0,0,2767,0,2.7048832271762207,0.0,3.7185534591194966,0.0,3.565623876303488,0,0,1,0,0,0,0,400,0,14,8,33,49,90,78,31,42,25,15,9,1,5,0,1,0,228,173,49,352,5,396,17,384,16,385,2,399,84,317,0,401,94,307,27,374,13,14,10,391,22,379,7,394,386,15,32,369,2,399,13,154,212,22,0,349,52,0,369,1,0,0,0,0,4,0,0,0,27,0,3.453865336658354,3.481296758104738,0.0,1.0,1.0,46.20199501246883 +50313,Darién,Santa Fe,Agua Fría,1228,0,8,7,0,0,0,0,5,0,0,0,1,0,0,0,249,649,51,813,85,16,1,0,34,0,671,1,18,148,7,4,95,0,5,325,22,578,8,16,0,0,907,29,0,0,0,13,949,0,120,48,33,28,65,0,0,38,831,80,0,0,366,572,2,2,1,2,4,906,0,9,0,0,34,0,91,528,1,199,130,0,1,545,11,16,1,3,140,23,42,85,81,1,0,1249,3.1149012567324954,18.405745062836623,3.8043087971274687,18.926391382405747,1.0010537407797682,3.005268703898841,1.9146469968387776,951,594,1132,120,134,20,31,20,9,33,16,8,91,1,27,15,5,26,19,6,11,2245,706,0,424,2527,0,1674,1277,0,2580,371,0,924,2027,0,864,60,1800,227,0,229,43,62,0,106,129,169,127,146,605,1,0,3,120,132,216,71,112,401,1,2,46,47,49,46,52,13,7,3,12,0,1,0,0,0,1428,33,1123,0,0,8,14,15,501,521,30,56,440,88,53,20,176,4,675,2,1,1751,1409,128,545,13,644,42,4,81,2,42,123,12,965,2,0,0,1898,549,3,6,27,83,5,12,1,0,5,37,62,47,30,159,463,118,125,415,1759,255,102,180,228,262,165,77,66,27,20,1,6,2,8,2,47.0,57.0,52.0,53.0,62.0,64.0,64.0,49.0,56.0,72.0,59.0,74.0,50.0,52.0,65.0,51.0,60.0,60.0,68.0,62.0,45.0,52.0,49.0,51.0,52.0,53.0,43.0,61.0,45.0,57.0,46.0,44.0,44.0,53.0,45.0,58.0,47.0,47.0,47.0,40.0,45.0,41.0,30.0,43.0,48.0,27.0,32.0,37.0,25.0,25.0,37.0,24.0,34.0,29.0,32.0,22.0,32.0,34.0,28.0,25.0,32.0,20.0,25.0,27.0,15.0,11.0,9.0,19.0,21.0,8.0,13.0,17.0,17.0,16.0,16.0,11.0,8.0,10.0,10.0,4.0,12.0,4.0,7.0,3.0,3.0,1.0,3.0,3.0,2.0,2.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,876,2049,235,0,271,305,300,301,249,259,232,239,207,146,156,141,119,68,79,43,29,11,5,0,0,0,3101,15,19,25,0,3101,15,19,25,0,1093,18,237,289,59,10,578,876,0,1326,1811,23,0,18,129,7,0,0,1,386,23,1,25,2570,0,14,32,85,20,2,0,254,2753,0,335,346,15,3,0,2461,0,2.535650623885918,0.0,3.4687100893997447,0.0,6.551582278481012,8,7,22,8,1,0,72,833,0,44,69,44,90,158,156,110,87,88,42,28,8,14,1,10,1,928,23,595,356,669,282,99,852,594,357,51,900,320,631,28,923,816,135,511,440,388,123,183,768,550,401,304,647,552,399,471,480,8,943,205,550,174,22,5,762,189,0,2,21,3,0,0,0,68,4,0,9,844,0,1.831589958158996,1.4738493723849373,0.0,1.096774193548387,1.096774193548387,48.05573080967402 +80508,Panamá,Chepo,Tortí,4519,3,69,31,0,0,0,0,8,0,0,1,12,0,0,5,1938,1149,179,2940,152,98,4,0,70,7,2570,13,19,369,23,31,241,1,4,1328,116,1673,77,28,4,45,3022,224,3,0,0,22,3271,16,628,163,89,309,146,0,7,193,2828,240,2,1,1801,1444,3,8,3,5,7,3149,9,21,2,12,77,1,498,2087,2,398,286,0,61,2535,170,49,11,109,31,167,3,85,42,8,0,4643,5.600144613159798,20.49819233550253,5.7588575560376,21.183297180043382,1.0122286762457964,3.114949556710486,1.9672882910424947,3324,2011,3621,355,564,78,76,70,27,107,34,20,99,1,169,67,22,55,43,26,23,7208,2455,0,1193,8470,0,4982,4681,0,8408,1255,0,2903,6760,0,2658,245,5922,838,0,856,113,177,15,332,429,516,442,427,2078,1,1,6,378,439,621,259,374,1266,16,33,150,146,135,142,141,101,22,7,40,0,0,0,0,0,4130,195,4149,0,12,100,32,47,1590,2087,208,217,1300,358,290,61,340,7,1861,56,3,5509,4878,322,1321,57,2146,142,2,280,6,93,595,63,2670,100,0,0,6266,1776,6,31,48,297,14,36,0,0,6,138,127,141,118,575,1487,467,336,930,5975,1105,461,585,621,652,382,189,176,65,28,7,20,6,15,100,173.0,196.0,184.0,171.0,186.0,204.0,184.0,216.0,221.0,178.0,210.0,183.0,166.0,197.0,179.0,171.0,171.0,206.0,151.0,190.0,183.0,161.0,182.0,165.0,165.0,174.0,183.0,145.0,164.0,138.0,138.0,126.0,160.0,145.0,127.0,123.0,115.0,135.0,125.0,152.0,135.0,128.0,132.0,139.0,138.0,128.0,117.0,111.0,143.0,113.0,112.0,109.0,106.0,110.0,91.0,94.0,89.0,98.0,108.0,91.0,94.0,69.0,71.0,66.0,71.0,72.0,70.0,65.0,61.0,46.0,67.0,53.0,43.0,50.0,52.0,40.0,34.0,44.0,40.0,25.0,32.0,35.0,29.0,14.0,22.0,18.0,12.0,10.0,11.0,3.0,7.0,9.0,4.0,6.0,3.0,1.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2848,6558,981,0,910,1003,935,889,856,804,696,650,672,612,528,480,371,314,265,183,132,54,29,4,0,0,10177,93,36,81,0,10177,104,25,81,0,3182,97,560,1314,248,32,2109,2845,0,4351,5956,80,0,66,188,7,2,0,0,1975,18,0,89,8042,0,58,175,450,31,17,3,892,8761,0,651,1172,54,6,4,8500,0,2.5061821852132224,0.0,3.4100358422939068,0.0,6.483874073360932,20,67,189,16,8,2,333,2689,0,298,324,243,407,536,487,313,201,254,118,50,18,25,10,21,6,3186,138,2235,1089,2337,987,470,2854,2235,1089,291,3033,1031,2293,39,3285,2820,504,1880,1444,1614,266,555,2769,2104,1220,866,2458,1637,1687,1744,1580,44,3280,732,1939,584,69,8,2556,768,0,13,50,2,2,0,0,458,4,0,30,2765,0,1.653361344537815,1.4639855942376951,1.0,1.024390243902439,1.024390243902439,49.22653429602888 +100101,Comarca Kuna Yala,Comarca Kuna Yala,Narganá,2867,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,55,1941,52,3,8,65,1849,10,9,246,74,61,1286,10,5,308,1,5,0,48,174,351,54,1366,3,998,991,0,0,0,7,1996,36,129,130,19,531,26,0,0,24,1910,62,0,0,286,125,0,19,1559,6,1,862,10,95,0,39,963,27,30,386,14,1518,46,2,0,899,0,9,4,0,4,1047,3,3,27,0,0,2871,6.480533926585094,21.050055617352616,6.389321468298109,21.95884315906563,1.0075150300601203,1.654308617234469,0.6217434869739479,2014,1406,4437,193,2419,159,261,651,266,480,340,201,127,0,37,32,21,19,18,2,21,7254,4423,0,733,10944,0,6241,5436,0,8313,3364,0,3762,7915,0,3749,13,5183,2732,0,2746,150,295,9,450,485,752,625,618,1914,3,2,2,524,544,1113,233,334,570,1,5,58,64,71,20,20,54,5,1,9,0,0,0,0,0,5372,19,4276,0,1,7,6,127,2077,1806,68,198,1047,1999,177,36,119,7,1318,687,0,6191,6763,246,799,33,4029,89,2,192,0,352,489,25,2883,49,0,0,8786,765,2,1,22,80,5,6,0,0,0,108,125,125,151,605,1849,1806,238,384,9686,951,708,564,421,194,153,79,67,38,24,6,9,1,4,49,316.0,330.0,294.0,337.0,308.0,364.0,319.0,352.0,335.0,332.0,359.0,362.0,316.0,323.0,285.0,250.0,259.0,237.0,214.0,187.0,200.0,178.0,195.0,150.0,144.0,178.0,148.0,155.0,160.0,131.0,165.0,162.0,154.0,171.0,122.0,125.0,134.0,144.0,163.0,118.0,131.0,117.0,112.0,150.0,126.0,128.0,95.0,119.0,113.0,109.0,103.0,109.0,107.0,89.0,97.0,100.0,99.0,102.0,97.0,90.0,89.0,85.0,95.0,106.0,86.0,90.0,67.0,72.0,57.0,59.0,56.0,47.0,63.0,72.0,70.0,62.0,55.0,49.0,45.0,30.0,43.0,28.0,32.0,12.0,21.0,18.0,11.0,13.0,17.0,7.0,2.0,4.0,7.0,4.0,0.0,3.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,4932,6898,1124,0,1585,1702,1645,1147,867,772,774,684,636,564,505,488,461,345,308,241,136,66,17,8,3,0,12661,4,2,287,0,12661,6,0,287,0,4103,24,724,530,679,5,1972,4917,0,10596,2354,4,0,12893,0,0,0,0,0,1,0,0,1,59,0,15,8,7,1,1,0,47,12875,0,169,369,188,6,5,12217,0,2.503307392996109,0.0,3.586404833836858,0.0,4.354639493592713,3,4,0,1,1,0,6,1999,0,97,59,139,240,446,389,210,134,141,56,40,25,15,11,8,1,1428,586,518,1496,130,1884,202,1812,371,1643,18,1996,488,1526,30,1984,1268,746,405,1609,216,189,125,1889,746,1268,11,2003,1342,672,256,1758,59,1955,104,521,1309,80,1,1534,480,0,2002,0,0,0,0,0,0,0,0,0,12,0,3.072456575682382,3.356327543424318,1.0,1.140096618357488,1.140096618357488,52.78103277060576 +130104,Panamá Oeste,Arraiján,Santa Clara,954,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,664,139,8,753,53,0,0,0,8,0,794,0,1,2,2,5,10,0,0,182,0,608,0,20,0,4,780,28,0,0,0,6,814,3,25,24,8,71,10,0,0,16,777,20,1,0,798,3,0,8,0,5,0,810,2,2,0,0,0,0,276,528,0,10,0,0,635,169,4,3,0,1,0,1,0,1,0,0,0,955,6.711633663366337,20.564356435643564,6.792079207920792,21.532178217821784,1.022113022113022,3.37960687960688,2.151105651105651,832,490,980,63,136,22,22,10,5,41,10,8,11,0,29,15,5,21,6,3,14,2039,443,0,571,1911,0,1295,1187,0,2287,195,0,690,1792,0,575,115,1702,90,0,91,38,41,0,61,55,82,56,62,562,0,2,20,85,106,247,75,97,509,4,13,33,46,58,64,34,24,2,2,10,0,0,1,2,0,799,234,1170,0,19,74,36,169,404,528,23,46,620,26,199,47,81,3,3,1,1,1315,1315,151,470,52,288,7,6,5,2,3,68,12,835,7,0,0,1378,649,22,13,31,97,2,9,2,0,2,24,54,71,60,172,73,226,79,272,1311,372,57,116,134,148,248,118,87,13,9,4,5,0,1,7,33.0,28.0,44.0,43.0,45.0,51.0,43.0,53.0,40.0,47.0,30.0,48.0,43.0,40.0,33.0,42.0,40.0,32.0,42.0,39.0,44.0,44.0,43.0,39.0,47.0,43.0,53.0,45.0,52.0,40.0,52.0,24.0,46.0,31.0,46.0,44.0,25.0,26.0,38.0,29.0,35.0,38.0,37.0,27.0,40.0,31.0,31.0,36.0,37.0,21.0,28.0,36.0,27.0,31.0,23.0,28.0,24.0,33.0,31.0,28.0,28.0,23.0,26.0,22.0,20.0,15.0,19.0,10.0,19.0,14.0,15.0,15.0,13.0,15.0,18.0,13.0,6.0,13.0,12.0,7.0,8.0,6.0,9.0,2.0,5.0,6.0,0.0,1.0,4.0,0.0,1.0,4.0,2.0,0.0,2.0,2.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,621,1747,262,0,193,234,194,195,217,233,199,162,177,156,145,144,119,77,76,51,30,11,9,7,1,0,2589,18,16,7,0,2589,23,11,7,0,768,18,153,353,68,11,638,621,0,1720,879,31,0,3,35,3,0,0,0,4,0,1,2,2582,0,67,114,99,9,2,2,566,1771,0,475,527,162,10,2,1454,0,2.013550135501355,0.0,2.9196787148594376,0.0,7.856273764258555,28,44,41,5,2,0,193,519,0,50,69,28,63,97,93,114,100,110,58,18,13,12,3,2,2,814,18,743,89,678,154,118,714,719,113,100,732,390,442,98,734,770,62,737,95,391,346,208,624,458,374,234,598,172,660,104,728,11,821,135,518,169,10,0,533,299,0,2,6,2,0,0,0,2,0,1,1,818,0,1.5805288461538465,1.5805288461538465,1.0,1.0,1.0,50.21033653846154 +40203,Chiriquí,Barú,Progreso,3966,14,345,10,0,0,0,0,0,0,0,0,4,0,0,97,2992,285,98,3323,51,6,0,0,83,9,3380,34,3,4,1,16,14,0,20,1040,929,1146,42,301,0,14,3356,44,19,0,0,53,3472,1,137,134,202,259,130,0,5,376,2945,141,4,1,3228,152,0,20,60,12,0,3450,7,2,1,9,3,0,1055,2278,2,130,7,0,2346,1026,4,27,12,42,1,2,0,5,5,2,1329,3010,6.000888625592417,20.42120853080569,6.029028436018957,20.801836492890995,1.0244815668202765,3.357430875576037,2.190092165898617,3561,1858,4294,330,983,89,128,104,35,172,39,24,71,2,184,109,30,57,68,39,78,8775,2209,0,1591,9393,0,6457,4527,0,10134,850,0,3207,7777,0,2862,345,7247,530,0,550,125,204,16,295,373,466,423,373,1734,2,3,4,401,602,985,394,592,2353,15,30,118,181,156,200,134,182,23,3,42,0,0,3,2,0,3292,543,5986,0,22,299,119,731,2056,2740,302,157,2105,284,365,63,539,16,235,3,76,5768,5922,522,1735,82,1099,129,1,31,87,13,311,60,5084,108,0,0,6373,2797,5,42,103,441,19,39,2,0,85,123,199,184,149,1243,236,476,265,875,6907,781,417,703,854,802,557,237,183,90,27,11,6,2,5,108,167.0,189.0,166.0,184.0,158.0,222.0,187.0,192.0,203.0,201.0,225.0,226.0,204.0,177.0,216.0,204.0,206.0,230.0,187.0,210.0,216.0,201.0,218.0,205.0,177.0,182.0,156.0,199.0,163.0,156.0,142.0,157.0,173.0,155.0,143.0,132.0,124.0,153.0,161.0,126.0,146.0,152.0,144.0,137.0,112.0,162.0,111.0,130.0,133.0,139.0,136.0,132.0,137.0,135.0,140.0,122.0,130.0,143.0,130.0,124.0,108.0,101.0,104.0,117.0,82.0,77.0,72.0,61.0,66.0,64.0,68.0,53.0,71.0,43.0,55.0,54.0,50.0,51.0,42.0,49.0,36.0,27.0,24.0,32.0,23.0,29.0,18.0,18.0,18.0,14.0,16.0,17.0,10.0,3.0,10.0,7.0,4.0,5.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2917,7583,1190,0,864,1005,1048,1037,1017,856,770,696,691,675,680,649,512,340,290,246,142,97,56,17,2,0,11234,315,96,45,0,11239,325,81,45,0,2772,69,84,1701,321,52,3775,2916,0,6188,5149,353,0,5,914,59,2,1,0,10,0,7,0,10692,0,336,164,677,41,4,1,679,9788,0,1603,2781,649,108,4,6545,0,2.3016446048937023,0.0,3.261989342806394,0.0,7.602053036783576,107,56,269,15,3,1,246,2864,0,454,226,157,354,543,544,422,251,325,124,73,34,19,8,10,13,3481,80,3207,354,3138,423,490,3071,3245,316,496,3065,2084,1477,183,3378,3222,339,3141,420,1364,1777,803,2758,2000,1561,968,2593,635,2926,607,2954,36,3525,643,1973,892,53,0,2142,1419,0,1,258,12,0,0,0,0,0,1,0,3289,0,1.6197697276046057,1.66301600673968,1.0869565217391304,1.031055900621118,1.031055900621118,51.6694748666105 +41001,Chiriquí,Renacimiento,Río Sereno,1961,53,55,1,0,0,0,0,77,0,0,146,6,0,0,6,1115,255,57,1273,103,9,5,0,42,1,1218,0,4,86,1,27,85,0,12,703,13,544,12,155,2,4,1309,94,7,0,0,23,1433,0,208,78,67,192,92,0,14,108,1061,250,0,0,1005,355,1,31,27,14,0,1420,0,0,1,6,1,5,365,841,0,123,103,1,8,1223,68,77,12,16,0,12,0,2,9,6,0,2299,6.21401077752117,20.1401077752117,6.413394919168591,21.29176289453426,1.0146545708304258,3.3405443126308443,2.05582693649686,1631,881,2122,223,380,33,52,56,12,65,27,12,615,0,83,47,12,20,27,5,18,3771,1768,0,834,4705,0,3036,2503,0,4555,984,0,1780,3759,0,1718,62,3032,727,0,741,56,115,11,207,242,299,253,259,858,1,2,2,190,271,420,166,231,662,1,12,57,52,82,83,112,98,20,2,31,1,0,0,2,0,2219,133,2436,0,30,59,14,73,1034,1120,114,95,1020,122,122,34,180,6,858,1,4,3170,2939,216,1318,43,561,86,4,108,11,21,218,30,2302,45,0,0,3567,856,2,28,46,239,15,33,2,0,11,59,112,53,69,254,419,175,98,1102,3562,402,240,389,657,305,199,97,106,60,17,9,8,7,6,45,148.0,154.0,150.0,118.0,132.0,144.0,127.0,124.0,113.0,111.0,146.0,128.0,124.0,103.0,119.0,117.0,140.0,140.0,126.0,122.0,111.0,126.0,108.0,124.0,98.0,94.0,79.0,92.0,84.0,89.0,82.0,78.0,73.0,58.0,71.0,77.0,60.0,65.0,70.0,75.0,49.0,65.0,81.0,66.0,64.0,64.0,43.0,61.0,46.0,58.0,76.0,44.0,61.0,55.0,55.0,50.0,52.0,56.0,54.0,48.0,48.0,42.0,41.0,38.0,27.0,34.0,30.0,36.0,23.0,27.0,23.0,28.0,22.0,28.0,25.0,32.0,15.0,18.0,15.0,11.0,11.0,11.0,8.0,8.0,14.0,10.0,5.0,4.0,5.0,5.0,1.0,0.0,6.0,2.0,0.0,1.0,0.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1941,3703,465,0,702,619,620,645,567,438,362,347,325,272,291,260,196,150,126,91,52,29,9,5,3,0,5484,185,145,295,0,5495,187,132,295,0,1708,52,335,655,128,27,1265,1939,0,2533,3366,210,0,8,2368,57,0,0,0,2,3,1,0,3670,0,82,82,373,19,8,4,360,5181,0,495,767,82,10,5,4750,0,2.639351446099913,0.0,3.728047182175623,0.0,6.135865117040432,36,30,141,9,2,2,139,1272,0,128,111,75,131,253,223,163,103,114,55,27,23,17,10,11,10,1489,142,1057,574,1077,554,366,1265,409,1222,23,1608,920,711,54,1577,1439,192,1093,538,393,700,369,1262,837,794,451,1180,594,1037,576,1055,21,1610,368,903,328,32,52,1189,442,0,1,379,13,0,0,0,0,2,0,0,1236,0,1.883541295306001,1.7462863933452168,1.5238095238095235,1.0694444444444444,1.0694444444444444,49.589209074187615 +41002,Chiriquí,Renacimiento,Breñón,315,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,44,4,206,0,3,0,0,1,0,191,0,0,5,0,9,4,0,1,1,6,168,3,32,0,0,199,10,0,0,0,1,210,2,48,9,5,27,16,0,0,8,182,19,0,1,186,15,0,0,1,8,0,209,0,0,0,0,0,1,65,135,0,6,4,0,0,158,37,4,1,4,0,2,0,0,3,1,0,317,6.230769230769231,20.53846153846154,6.917948717948718,23.8,1.0047619047619047,3.3380952380952382,2.223809523809524,211,126,235,16,18,8,11,1,2,4,0,3,9,1,19,11,3,0,6,1,4,476,141,0,108,509,0,371,246,0,558,59,0,150,467,0,141,9,418,49,0,49,5,2,1,19,18,26,21,34,174,0,0,0,23,31,44,17,22,90,1,0,4,3,6,9,8,4,3,1,2,0,0,0,0,0,230,14,320,0,3,3,3,14,101,154,37,14,99,15,8,5,14,0,100,0,1,347,298,46,118,5,53,5,1,12,2,3,40,4,234,2,0,0,432,102,0,3,3,20,2,2,0,0,2,3,9,10,4,30,48,20,12,106,367,57,27,33,50,47,25,19,12,3,0,0,2,1,0,2,8.0,9.0,7.0,4.0,8.0,6.0,10.0,7.0,13.0,9.0,10.0,16.0,15.0,11.0,11.0,15.0,11.0,13.0,11.0,10.0,17.0,8.0,10.0,10.0,12.0,9.0,6.0,8.0,9.0,6.0,7.0,5.0,11.0,3.0,4.0,9.0,6.0,5.0,8.0,10.0,11.0,4.0,11.0,9.0,6.0,6.0,5.0,7.0,11.0,9.0,6.0,11.0,8.0,9.0,7.0,9.0,6.0,8.0,10.0,8.0,5.0,6.0,7.0,7.0,8.0,5.0,3.0,9.0,2.0,5.0,6.0,3.0,3.0,3.0,7.0,4.0,3.0,1.0,1.0,2.0,1.0,4.0,7.0,2.0,2.0,0.0,2.0,3.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,144,417,84,0,36,45,63,60,57,38,30,38,41,38,41,41,33,24,22,11,16,7,2,2,0,0,608,14,17,6,0,610,14,15,6,0,162,12,30,114,14,4,165,144,0,322,277,46,0,0,37,13,0,0,0,0,0,0,0,595,0,3,4,14,2,0,0,45,577,0,77,140,18,1,0,409,0,2.556420233463035,0.0,3.744047619047619,0.0,6.810852713178295,3,3,8,1,0,0,21,175,0,30,16,5,22,29,30,28,18,20,7,2,0,0,1,2,1,203,8,171,40,175,36,45,166,95,116,8,203,147,64,2,209,195,16,162,49,34,128,45,166,159,52,67,144,112,99,139,72,3,208,51,113,42,5,0,176,35,0,0,7,3,0,0,0,0,0,0,0,201,0,1.6445497630331751,1.4123222748815163,1.5,1.0,1.0,52.99526066350711 +10218,Bocas del Toro,Changuinola,Barranco Adentro,942,17,0,0,0,0,0,0,0,0,0,3,0,0,0,79,202,70,407,349,2,5,381,0,20,1,463,0,3,45,1,85,158,0,3,0,17,663,10,52,16,0,635,118,0,0,0,5,758,0,63,63,0,62,13,0,0,7,714,36,1,0,70,576,1,81,24,3,3,724,1,3,0,0,29,1,7,291,0,266,193,1,0,632,0,10,2,3,6,37,0,5,62,1,0,962,4.2515822784810124,10.212025316455696,5.5395569620253164,15.63132911392405,1.0131926121372032,3.2519788918205803,2.187335092348285,771,515,2241,115,814,15,57,101,7,186,29,10,10,0,46,41,18,31,33,32,16,1692,2505,0,126,4071,0,1133,3064,0,3321,876,0,1557,2640,0,1526,31,1881,759,0,759,43,62,0,182,222,245,248,232,627,0,1,0,255,251,260,158,129,446,4,5,7,9,14,3,2,32,1,0,0,0,0,0,0,0,976,144,2208,0,4,80,24,94,983,1003,18,110,554,68,26,8,19,0,361,0,6,2471,2400,63,613,10,242,61,0,47,6,193,27,16,2278,1,0,0,2805,488,0,2,2,30,1,0,0,0,6,8,17,9,29,56,337,78,7,573,3913,119,90,139,166,305,102,16,14,5,1,0,0,0,0,1,173.0,167.0,165.0,169.0,163.0,149.0,132.0,148.0,155.0,122.0,145.0,138.0,138.0,123.0,128.0,109.0,122.0,106.0,121.0,96.0,117.0,85.0,89.0,98.0,88.0,78.0,85.0,67.0,59.0,65.0,66.0,56.0,49.0,53.0,54.0,47.0,52.0,67.0,55.0,37.0,46.0,46.0,41.0,40.0,31.0,25.0,39.0,28.0,28.0,32.0,34.0,19.0,34.0,29.0,20.0,12.0,17.0,12.0,11.0,12.0,14.0,1.0,12.0,6.0,6.0,4.0,9.0,7.0,8.0,10.0,2.0,4.0,6.0,9.0,20.0,6.0,7.0,6.0,11.0,17.0,0.0,2.0,3.0,1.0,3.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,2215,2516,140,0,837,706,672,554,477,354,278,258,204,152,136,64,39,38,41,47,9,4,1,0,0,0,4640,15,3,213,0,4641,15,2,213,0,1531,5,213,156,50,4,701,2211,0,3372,1453,46,0,2,4740,12,5,0,0,0,0,0,6,106,0,5,70,32,11,1,1,39,4712,0,476,1286,94,4,0,3011,0,2.784550392275196,0.0,4.203471552555448,0.0,4.720385957708889,1,13,6,4,1,1,10,735,0,65,35,34,71,103,180,133,55,57,23,8,4,0,0,0,0,694,77,244,527,201,570,91,680,134,637,8,763,177,594,6,765,316,455,236,535,181,55,32,739,127,644,22,749,250,521,164,607,20,751,41,363,358,9,0,501,270,0,0,739,1,2,0,0,0,0,0,3,26,0,3.204928664072633,3.11284046692607,1.0,1.0476190476190477,1.0476190476190477,44.509727626459146 +50206,Darién,Pinogana,Yape,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,9,34,8,5,1,0,3,0,45,0,1,3,2,0,0,0,0,0,0,33,15,0,3,0,42,7,0,0,0,2,51,0,6,6,0,1,2,0,0,0,51,0,0,0,3,45,0,0,2,0,1,49,0,0,0,0,2,0,0,15,0,3,33,0,0,1,0,0,0,0,39,11,0,0,0,0,0,66,7.0,24.0,7.0,24.0,1.0,2.823529411764706,1.4901960784313726,51,38,126,10,25,2,2,1,2,6,1,0,2,0,0,0,0,0,1,0,0,143,88,0,11,220,0,9,222,0,186,45,0,103,128,0,98,5,98,30,0,31,4,10,0,10,13,11,13,12,37,0,0,0,10,6,13,13,6,32,0,0,4,2,3,1,0,0,0,0,0,0,0,0,0,0,97,3,92,0,0,1,2,0,54,32,0,6,7,3,1,0,1,0,86,0,0,141,125,5,3,0,68,0,0,22,0,31,18,0,74,1,0,0,150,40,0,0,1,1,0,0,0,0,0,0,1,1,0,4,86,4,1,3,230,12,12,4,1,0,2,1,2,1,0,0,0,0,0,1,10.0,9.0,6.0,10.0,7.0,5.0,10.0,6.0,8.0,3.0,10.0,8.0,9.0,8.0,0.0,5.0,9.0,6.0,6.0,4.0,8.0,3.0,4.0,5.0,4.0,3.0,4.0,2.0,3.0,2.0,2.0,3.0,5.0,1.0,1.0,4.0,3.0,2.0,1.0,3.0,2.0,3.0,2.0,4.0,4.0,1.0,4.0,3.0,2.0,1.0,3.0,1.0,0.0,3.0,1.0,2.0,2.0,2.0,0.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,3.0,2.0,1.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,109,138,19,0,42,32,35,30,24,14,12,13,15,11,8,7,4,4,4,6,4,1,0,0,0,0,258,0,1,7,0,258,0,1,7,0,92,0,5,6,6,0,48,109,0,203,61,2,0,0,1,0,0,0,0,56,205,0,0,4,0,1,1,0,1,0,0,1,262,0,7,10,0,0,0,249,0,3.2688172043010755,0.0,4.7,0.0,5.109022556390977,1,1,0,1,0,0,1,47,0,11,3,7,11,9,4,2,0,3,0,1,0,0,0,0,0,48,3,28,23,16,35,4,47,14,37,0,51,2,49,0,51,45,6,12,39,7,5,3,48,8,43,0,51,46,5,26,25,0,51,6,24,20,1,0,44,7,0,0,1,0,0,0,0,14,33,0,0,3,0,2.764705882352941,2.450980392156863,0.0,1.0,1.0,49.07843137254902 +30106,Colón,Colón,Cristóbal,2788,55,321,5,0,0,61,0,1,0,0,0,13,0,150,1302,463,617,49,2170,212,0,0,0,44,5,2260,0,16,99,9,7,33,2,5,2022,0,395,0,13,1,0,2344,35,16,0,0,36,2431,3,324,212,53,91,55,0,164,367,1815,74,4,7,2091,278,0,48,7,6,1,2326,1,81,0,0,22,1,1404,771,0,106,150,0,1861,141,2,160,0,6,5,129,5,82,39,1,1874,1520,5.817864271457085,17.87375249500998,5.849301397205589,17.843812375249502,1.0086384204031262,3.082270670505965,1.958041958041958,2615,1291,2894,206,581,78,103,83,23,97,18,31,2442,4,181,71,28,42,44,20,43,6883,3087,0,2189,7781,0,6192,3778,0,9324,646,0,3161,6809,0,2816,345,6500,309,0,328,109,144,33,206,209,257,231,283,988,14,84,42,501,587,1001,378,585,2333,6,10,212,211,256,235,182,350,53,19,92,1,2,2,26,0,2927,455,5689,0,2,330,40,558,2086,1125,105,1815,2138,276,330,61,210,8,197,37,1,6251,4215,601,1610,67,947,22,0,10,1,18,164,22,3226,60,0,0,5028,3079,45,22,111,616,50,92,28,0,1,170,284,221,260,653,186,442,281,884,5639,1077,361,423,449,651,787,336,338,148,72,27,51,21,26,60,101.0,107.0,130.0,158.0,153.0,156.0,142.0,144.0,147.0,157.0,145.0,169.0,148.0,144.0,128.0,132.0,124.0,121.0,140.0,158.0,155.0,212.0,258.0,241.0,251.0,271.0,270.0,220.0,215.0,190.0,198.0,184.0,233.0,230.0,185.0,196.0,152.0,191.0,180.0,162.0,148.0,145.0,150.0,134.0,124.0,124.0,107.0,120.0,107.0,99.0,109.0,114.0,102.0,92.0,75.0,92.0,90.0,95.0,86.0,78.0,83.0,79.0,72.0,71.0,73.0,64.0,72.0,51.0,69.0,52.0,55.0,38.0,49.0,50.0,39.0,33.0,35.0,33.0,35.0,31.0,26.0,23.0,23.0,11.0,11.0,10.0,16.0,16.0,15.0,7.0,8.0,7.0,8.0,0.0,2.0,1.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,2129,7438,897,2,649,746,734,675,1117,1166,1030,881,701,557,492,441,378,308,231,167,94,64,25,6,2,2,9747,484,215,20,0,9755,504,187,20,0,2650,110,985,1486,284,79,2744,2128,0,3376,6688,402,0,249,61,7,3,0,0,127,88,0,67,9864,0,1422,1223,1157,734,46,77,2625,3182,0,1534,1593,500,37,56,6746,0,2.1311706629055007,0.0,2.9788907284768213,0.0,8.88935600993694,426,325,253,180,21,31,615,764,0,117,110,95,152,262,236,352,241,356,198,111,65,58,40,53,6,2551,64,2239,376,1945,670,305,2310,2222,393,876,1739,1463,1152,434,2181,2387,228,2201,414,1174,1027,750,1865,1782,833,828,1787,486,2129,360,2255,24,2591,579,1372,611,53,62,1556,1059,0,13,11,3,0,0,0,31,24,0,19,2514,0,2.3350765782592453,1.5745237205827418,1.0555555555555556,1.0333333333333334,1.0333333333333334,50.41759082217973 +40206,Chiriquí,Barú,El Palmar,2371,14,3,0,0,0,0,0,0,0,0,0,0,0,0,63,1472,362,62,1866,31,8,0,0,48,6,1824,5,1,54,2,14,58,0,1,324,153,1052,64,359,2,5,1825,102,5,0,0,27,1959,8,114,25,26,156,100,0,7,65,1740,134,2,11,1630,262,0,11,54,1,1,1925,2,0,3,4,25,0,402,1350,1,179,27,0,1575,0,2,166,46,65,1,6,0,88,9,1,1758,630,4.657577679137603,10.188966391883325,4.746987951807229,10.61128725428028,1.0178662582950484,3.4150076569678407,2.196528841245533,1994,1055,2082,166,511,51,68,67,23,74,14,7,34,1,159,34,23,53,60,60,33,4411,1382,0,954,4839,0,3320,2473,0,5323,470,0,1753,4040,0,1659,94,3724,316,0,324,76,98,12,197,216,287,196,215,1058,0,0,0,246,306,405,200,246,914,6,12,76,109,97,74,191,156,20,3,47,0,1,1,4,0,1621,222,3318,0,17,76,51,505,1132,1377,128,176,1006,134,309,51,102,4,161,47,9,3076,3071,301,831,61,562,27,0,30,11,16,183,76,1748,58,0,0,3450,1146,0,26,90,381,18,46,4,0,13,45,154,89,51,386,126,274,122,583,3481,465,262,373,497,356,237,150,167,62,24,5,5,3,2,58,90.0,85.0,96.0,83.0,100.0,101.0,114.0,114.0,99.0,104.0,104.0,113.0,116.0,114.0,97.0,108.0,114.0,110.0,114.0,105.0,85.0,103.0,92.0,76.0,75.0,77.0,95.0,78.0,85.0,67.0,71.0,64.0,73.0,68.0,66.0,79.0,73.0,74.0,79.0,65.0,57.0,72.0,54.0,64.0,63.0,58.0,76.0,52.0,74.0,57.0,75.0,68.0,77.0,78.0,82.0,65.0,91.0,77.0,77.0,81.0,83.0,67.0,74.0,78.0,57.0,72.0,58.0,53.0,58.0,44.0,43.0,26.0,46.0,54.0,27.0,28.0,24.0,33.0,23.0,20.0,12.0,23.0,11.0,11.0,9.0,15.0,15.0,10.0,3.0,11.0,11.0,5.0,7.0,2.0,3.0,1.0,1.0,0.0,1.0,0.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1530,3853,764,0,454,532,544,551,431,402,342,370,310,317,380,391,359,285,196,128,66,54,28,3,4,0,6038,25,67,17,0,6038,26,66,17,0,1409,73,531,1002,203,42,1357,1530,0,3421,2634,92,0,6,387,5,1,0,0,0,8,0,0,5740,0,176,192,530,38,6,7,904,4294,0,723,1609,464,69,8,3274,0,2.403942790877464,0.0,3.348552338530067,0.0,7.507076622742801,67,70,196,18,3,4,298,1338,0,204,110,115,204,338,308,218,115,190,80,53,17,20,11,6,5,1909,85,1656,338,1628,366,260,1734,1709,285,277,1717,1333,661,57,1937,1744,250,1624,370,440,1184,464,1530,1166,828,586,1408,419,1575,391,1603,11,1983,444,1036,488,26,0,1346,648,0,3,115,2,0,0,0,0,4,0,0,1870,0,1.5426278836509528,1.5401203610832497,1.2857142857142858,1.0416666666666667,1.0416666666666667,53.81243731193581 +20101,Coclé,Aguadulce,Aguadulce,3664,6,180,20,0,0,0,0,0,0,0,4,7,0,0,1984,1097,40,4,3069,52,0,0,0,4,0,3114,0,2,7,0,0,2,0,0,2829,219,67,2,4,0,4,3065,4,22,0,0,34,3125,10,237,86,145,183,84,0,938,531,1544,98,13,1,3108,2,2,9,0,4,0,2851,21,239,1,13,0,0,2413,706,0,3,1,2,2582,472,22,9,1,0,0,0,1,38,0,0,3783,98,6.855981794538361,20.111183355006503,6.90442132639792,20.91644993498049,1.0112,3.9856,2.63744,3171,1772,3090,204,651,130,99,86,47,141,32,49,73,31,146,41,24,47,63,35,57,8337,860,1,4751,4446,1,7254,1943,1,8812,385,1,2611,6587,0,1747,864,6415,171,1,176,99,135,41,150,170,221,177,176,723,2,6,68,200,304,616,237,339,1998,10,84,197,303,416,556,711,610,134,18,293,0,5,1,21,1,4147,348,3938,1,4,127,78,1055,1614,1032,121,116,3241,365,314,99,312,3,61,17,2,4609,4967,1323,1844,121,980,111,1,32,2,3,145,27,2463,117,0,0,3001,2822,69,99,310,1728,113,265,26,1,12,496,867,564,334,710,87,473,375,577,3820,371,270,337,574,762,1074,543,733,418,242,95,101,45,74,117,85.0,79.0,110.0,104.0,109.0,124.0,135.0,123.0,140.0,133.0,149.0,140.0,136.0,109.0,143.0,146.0,154.0,136.0,143.0,127.0,125.0,115.0,126.0,147.0,120.0,143.0,129.0,141.0,110.0,116.0,149.0,98.0,123.0,138.0,128.0,146.0,167.0,131.0,148.0,119.0,119.0,134.0,128.0,117.0,124.0,135.0,123.0,125.0,122.0,124.0,147.0,136.0,151.0,121.0,129.0,127.0,122.0,115.0,135.0,101.0,113.0,115.0,98.0,104.0,112.0,90.0,103.0,78.0,77.0,66.0,64.0,79.0,61.0,55.0,60.0,61.0,56.0,51.0,55.0,47.0,45.0,46.0,35.0,23.0,27.0,30.0,26.0,25.0,20.0,13.0,16.0,9.0,7.0,6.0,4.0,2.0,6.0,2.0,4.0,2.0,3.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,1819,6402,1355,0,487,655,677,706,633,639,636,711,622,629,684,600,542,414,319,270,176,114,42,16,4,0,9027,239,303,6,1,9039,260,270,6,1,1932,111,272,2211,380,156,2694,1819,1,3186,6164,225,1,9,91,17,2,2,0,3,0,0,71,9380,1,308,362,471,38,22,17,938,7419,1,2832,2834,1138,94,21,2656,1,1.718303470174643,0.0,2.439469320066335,0.0,10.740079365079366,119,131,209,19,10,9,384,2289,1,112,42,47,83,177,261,344,252,539,378,260,163,213,108,155,26,3133,38,3072,99,2984,187,622,2549,3024,147,1804,1367,2119,1052,1063,2108,3026,145,3015,156,2422,593,1725,1446,2503,668,2036,1135,279,2892,242,2929,55,3116,562,1755,773,81,0,1962,1209,0,2,27,5,1,1,0,2,0,0,19,3113,1,1.4534847051403343,1.56638284452854,1.2352941176470589,1.059880239520958,1.059880239520958,53.97950173446862 +20401,Coclé,Natá,Natá,2247,46,66,0,0,0,0,0,25,0,0,0,1,0,0,1493,303,104,17,1871,29,4,0,0,13,0,1843,0,1,27,0,7,39,0,0,1661,54,172,12,3,2,13,1872,24,4,0,0,17,1917,0,222,41,94,53,32,0,157,229,1453,75,2,1,1862,3,0,47,0,5,0,1914,0,1,2,0,0,0,1207,671,2,37,0,0,1847,0,1,7,0,1,1,22,0,4,32,2,2107,278,6.8273809523809526,22.842532467532468,6.737554112554113,22.879329004329005,1.0172143974960877,3.846113719353156,2.605112154407929,1951,1038,1992,121,623,62,107,105,20,135,26,18,114,5,105,35,17,25,42,27,23,4959,1072,0,1828,4203,0,3998,2033,0,5655,376,0,1559,4472,0,1330,229,4266,206,0,208,73,88,22,115,147,168,170,150,758,0,4,27,175,237,466,179,274,1368,1,43,80,149,248,307,327,137,33,5,65,0,0,0,7,0,2437,229,2861,0,11,94,50,642,1006,1079,75,59,1775,132,224,62,142,5,260,8,9,3101,3216,618,1202,75,642,44,4,20,12,5,215,42,1654,231,0,0,2728,1726,27,55,189,707,26,62,7,0,12,122,274,233,185,495,178,349,309,509,2786,413,168,336,447,475,638,335,277,111,62,14,13,3,8,231,52.0,70.0,78.0,86.0,77.0,82.0,84.0,85.0,81.0,95.0,95.0,94.0,87.0,93.0,74.0,86.0,96.0,105.0,84.0,94.0,86.0,81.0,88.0,120.0,97.0,116.0,85.0,83.0,89.0,93.0,100.0,77.0,85.0,80.0,85.0,70.0,69.0,80.0,73.0,76.0,70.0,62.0,70.0,66.0,72.0,69.0,59.0,76.0,70.0,86.0,93.0,103.0,105.0,92.0,85.0,83.0,83.0,90.0,83.0,72.0,79.0,58.0,70.0,51.0,70.0,70.0,46.0,57.0,53.0,47.0,60.0,49.0,59.0,32.0,36.0,49.0,45.0,43.0,35.0,38.0,36.0,24.0,28.0,15.0,26.0,22.0,19.0,9.0,20.0,9.0,2.0,9.0,5.0,5.0,3.0,2.0,7.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0,1233,4115,969,0,363,427,443,465,472,466,427,368,340,360,478,411,328,273,236,210,129,79,24,13,5,0,6238,36,43,0,0,6241,44,32,0,0,1453,41,55,1178,251,44,2064,1231,0,3362,2913,42,0,5,107,10,0,1,0,10,0,0,56,6128,0,302,420,839,65,77,10,1162,3442,0,1548,2035,667,42,3,2022,0,1.9488636363636365,0.0,2.7507739938080493,0.0,9.22510685451955,108,158,286,32,20,3,373,971,0,72,70,40,104,169,224,264,210,304,190,105,55,57,19,20,47,1917,34,1788,163,1773,178,355,1596,1778,173,699,1252,1285,666,502,1449,1762,189,1795,156,1071,724,775,1176,1330,621,882,1069,203,1748,195,1756,22,1929,351,957,601,42,25,1222,729,0,1,24,1,0,1,0,3,0,0,14,1907,0,1.569331983805668,1.6275303643724697,1.0,1.0403225806451613,1.0403225806451613,55.82880574064582 +20402,Coclé,Natá,Capellanía,1126,10,0,0,0,0,0,0,22,0,0,0,2,0,0,6,722,129,24,841,16,0,0,0,24,0,859,0,1,9,1,0,8,0,3,607,19,226,4,10,0,15,839,10,0,0,0,32,881,0,139,60,7,31,18,0,38,37,780,26,0,0,869,0,0,9,0,3,0,877,2,2,0,0,0,0,204,673,0,4,0,0,841,3,6,3,0,1,0,0,0,0,26,1,0,1160,6.938823529411764,23.62,6.923529411764706,23.67058823529412,1.0102156640181612,3.4767309875141885,2.3677639046538026,892,467,971,40,294,22,30,32,10,72,5,9,119,4,47,17,14,18,21,7,13,2215,605,0,604,2216,0,1950,870,0,2615,205,0,760,2060,0,658,102,1972,88,0,89,51,44,1,64,93,122,111,90,460,0,2,5,96,175,232,83,106,511,4,11,51,84,86,110,82,33,6,0,18,0,0,0,0,0,1106,87,1344,0,0,29,24,225,444,601,44,30,789,73,118,40,80,0,78,0,3,1467,1500,176,652,49,285,11,0,5,3,1,97,18,696,3,0,0,1535,707,5,18,59,192,4,17,0,0,2,47,96,84,53,222,35,179,149,326,1286,235,166,144,244,244,309,127,119,48,27,5,3,2,5,3,37.0,34.0,34.0,42.0,40.0,51.0,44.0,45.0,47.0,56.0,57.0,46.0,31.0,43.0,40.0,51.0,44.0,36.0,36.0,43.0,46.0,48.0,43.0,45.0,53.0,60.0,60.0,47.0,36.0,41.0,46.0,49.0,45.0,39.0,36.0,34.0,42.0,43.0,33.0,26.0,34.0,28.0,39.0,36.0,30.0,37.0,31.0,24.0,34.0,41.0,36.0,44.0,35.0,44.0,47.0,41.0,40.0,45.0,29.0,34.0,26.0,28.0,28.0,36.0,29.0,21.0,21.0,15.0,22.0,23.0,18.0,16.0,17.0,16.0,18.0,18.0,11.0,13.0,15.0,15.0,14.0,13.0,9.0,7.0,7.0,11.0,10.0,4.0,6.0,9.0,0.0,4.0,0.0,4.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,647,1958,362,0,187,243,217,210,235,244,215,178,167,167,206,189,147,102,85,72,50,40,10,3,0,0,2944,12,6,5,0,2944,12,6,5,0,825,28,156,359,145,14,793,647,0,2142,813,12,0,8,63,0,0,0,0,6,0,0,30,2860,0,61,22,182,8,7,7,506,2174,0,701,903,198,38,1,1126,0,2.068376068376069,0.0,2.9016759776536314,0.0,8.14829794405123,17,7,69,0,2,2,164,631,0,30,33,26,58,87,103,137,86,133,76,53,20,26,12,9,1,857,35,789,103,785,107,107,785,812,80,211,681,486,406,54,838,755,137,789,103,426,363,218,674,489,403,364,528,94,798,118,774,9,883,175,453,236,28,22,467,425,0,3,10,0,0,0,0,0,0,0,8,871,0,1.6050328227571116,1.6411378555798688,1.0,1.064516129032258,1.064516129032258,54.37780269058296 diff --git a/backend/data/global/airports/panama_airports.geojson b/backend/data/global/airports/panama_airports.geojson new file mode 100644 index 0000000000000000000000000000000000000000..4fc96a05908a012eca3b0598e684eaa652d568f8 --- /dev/null +++ b/backend/data/global/airports/panama_airports.geojson @@ -0,0 +1,98 @@ +{ +"type": "FeatureCollection", +"name": "panama_airports", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": 308731, "ident": "CZJ", "type": "small_airport", "name": "Corazón de Jesús Airport", "latitude_deg": 9.44686, "longitude_deg": -78.575678, "elevation_ft": 8.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Tupile", "scheduled_service": "no", "icao_code": null, "iata_code": "CZJ", "gps_code": "MPCJ", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Coraz%C3%B3n_de_Jes%C3%BAs_Airport", "keywords": "Narganá, Usdup" }, "geometry": { "type": "Point", "coordinates": [ -78.575678, 9.44686 ] } }, +{ "type": "Feature", "properties": { "id": 309162, "ident": "GHE", "type": "small_airport", "name": "Garachiné Airport", "latitude_deg": 8.0644, "longitude_deg": -78.3673, "elevation_ft": 42.0, "continent": "SA", "iso_country": "PA", "iso_region": "PA-5", "municipality": "Garachiné", "scheduled_service": "no", "icao_code": null, "iata_code": "GHE", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Garachin%C3%A9_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.3673, 8.0644 ] } }, +{ "type": "Feature", "properties": { "id": 316549, "ident": "IVI", "type": "small_airport", "name": "Viveros Island Airport", "latitude_deg": 8.4693, "longitude_deg": -79.0016, "elevation_ft": 100.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Isla Viveros", "scheduled_service": "no", "icao_code": null, "iata_code": "IVI", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.0016, 8.4693 ] } }, +{ "type": "Feature", "properties": { "id": 5323, "ident": "MP01", "type": "small_airport", "name": "Finca Ceiba Airport", "latitude_deg": 8.3549995422363281, "longitude_deg": -82.836402893066406, "elevation_ft": 52.0, "continent": null, "iso_country": "PA", "iso_region": "PA-4", "municipality": "Finca Jaguá", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MP01", "local_code": "MP01", "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.836402893066406, 8.354999542236328 ] } }, +{ "type": "Feature", "properties": { "id": 5324, "ident": "MP02", "type": "small_airport", "name": "Finca 45 Airport", "latitude_deg": 9.543330192565918, "longitude_deg": -82.733802795410156, "elevation_ft": 56.0, "continent": null, "iso_country": "PA", "iso_region": "PA-1", "municipality": "Dos Caños", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MP02", "local_code": "MP02", "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.733802795410156, 9.543330192565918 ] } }, +{ "type": "Feature", "properties": { "id": 5325, "ident": "MP03", "type": "small_airport", "name": "La Cabezona Airport", "latitude_deg": 8.3457, "longitude_deg": -82.5042, "elevation_ft": 31.0, "continent": null, "iso_country": "PA", "iso_region": "PA-4", "municipality": "Guarumal", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPCB", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "MP03" }, "geometry": { "type": "Point", "coordinates": [ -82.5042, 8.3457 ] } }, +{ "type": "Feature", "properties": { "id": 5326, "ident": "MP17", "type": "small_airport", "name": "Finca 67 Airport", "latitude_deg": 9.4344100952148438, "longitude_deg": -82.499099731445312, "elevation_ft": 30.0, "continent": null, "iso_country": "PA", "iso_region": "PA-1", "municipality": "Changuinola", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MP17", "local_code": "MP17", "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.499099731445312, 9.434410095214844 ] } }, +{ "type": "Feature", "properties": { "id": 5327, "ident": "MP18", "type": "small_airport", "name": "Guillermo Palm Jaén Airport", "latitude_deg": 8.50383, "longitude_deg": -80.360298, "elevation_ft": 282.0, "continent": null, "iso_country": "PA", "iso_region": "PA-2", "municipality": "Penonomé", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPPN", "local_code": null, "home_link": "https://aerodromo-guillermo-palm-jaen.negocio.site/", "wikipedia_link": null, "keywords": "MP18" }, "geometry": { "type": "Point", "coordinates": [ -80.360298, 8.50383 ] } }, +{ "type": "Feature", "properties": { "id": 5330, "ident": "MP21", "type": "small_airport", "name": "Alvaro Berroa Airport", "latitude_deg": 8.7703895568847656, "longitude_deg": -82.664398193359375, "elevation_ft": 5000.0, "continent": null, "iso_country": "PA", "iso_region": "PA-4", "municipality": "Nueva California", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MP21", "local_code": "MP21", "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.664398193359375, 8.770389556884766 ] } }, +{ "type": "Feature", "properties": { "id": 5331, "ident": "MP22", "type": "small_airport", "name": "Ingenio Santa Rosa Airport", "latitude_deg": 8.1952199935913086, "longitude_deg": -80.658699035644531, "elevation_ft": 109.0, "continent": null, "iso_country": "PA", "iso_region": "PA-2", "municipality": "Ingenio Santa Rosa", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MP22", "local_code": "MP22", "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.658699035644531, 8.195219993591309 ] } }, +{ "type": "Feature", "properties": { "id": 5332, "ident": "MP23", "type": "small_airport", "name": "Capt. Alex H. Bosquez Airport", "latitude_deg": 9.16628, "longitude_deg": -79.545205, "elevation_ft": 394.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Calzada Larga", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPCL", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Calzada_Larga_Airport", "keywords": "MP23" }, "geometry": { "type": "Point", "coordinates": [ -79.545205, 9.16628 ] } }, +{ "type": "Feature", "properties": { "id": 5333, "ident": "MP24", "type": "small_airport", "name": "Captain Krish E. Persaud Airport", "latitude_deg": 8.58846, "longitude_deg": -79.889702, "elevation_ft": 141.0, "continent": null, "iso_country": "PA", "iso_region": "PA-10", "municipality": "Chame", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPCM", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Chame_Airport", "keywords": "Chame Airfield #1, MP24" }, "geometry": { "type": "Point", "coordinates": [ -79.889702, 8.58846 ] } }, +{ "type": "Feature", "properties": { "id": 5334, "ident": "MP26", "type": "small_airport", "name": "Punta Cocos Airport", "latitude_deg": 8.22485, "longitude_deg": -78.904404, "elevation_ft": 66.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Punta Cocos", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPPU", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "MP26" }, "geometry": { "type": "Point", "coordinates": [ -78.904404, 8.22485 ] } }, +{ "type": "Feature", "properties": { "id": 5335, "ident": "MP27", "type": "small_airport", "name": "Deborah Airport", "latitude_deg": 9.51614, "longitude_deg": -82.595497, "elevation_ft": 20.0, "continent": null, "iso_country": "PA", "iso_region": "PA-1", "municipality": "Guabito", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MP27", "local_code": "MP27", "home_link": null, "wikipedia_link": null, "keywords": "Guabito California" }, "geometry": { "type": "Point", "coordinates": [ -82.595497, 9.51614 ] } }, +{ "type": "Feature", "properties": { "id": 515607, "ident": "MPAG", "type": "small_airport", "name": "El Aguila Airstrip", "latitude_deg": 8.37168, "longitude_deg": -80.351676, "elevation_ft": 75.0, "continent": null, "iso_country": "PA", "iso_region": "PA-2", "municipality": "El Aguila", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPAG", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.351676, 8.37168 ] } }, +{ "type": "Feature", "properties": { "id": 4786, "ident": "MPBO", "type": "medium_airport", "name": "Bocas del Toro International Airport", "latitude_deg": 9.34085, "longitude_deg": -82.250801, "elevation_ft": 10.0, "continent": null, "iso_country": "PA", "iso_region": "PA-1", "municipality": "Isla Colón", "scheduled_service": "yes", "icao_code": "MPBO", "iata_code": "BOC", "gps_code": "MPBO", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Bocas_del_Toro_%22Isla_Colón%22_International_Airport", "keywords": "Jose Ezequiel Hall" }, "geometry": { "type": "Point", "coordinates": [ -82.250801, 9.34085 ] } }, +{ "type": "Feature", "properties": { "id": 4787, "ident": "MPCE", "type": "medium_airport", "name": "Alonso Valderrama Airport", "latitude_deg": 7.98784, "longitude_deg": -80.409837, "elevation_ft": 33.0, "continent": null, "iso_country": "PA", "iso_region": "PA-6", "municipality": "Chitré", "scheduled_service": "yes", "icao_code": "MPCE", "iata_code": "CTD", "gps_code": "MPCE", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Chitré_Alonso_Valderrama_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.409837, 7.98784 ] } }, +{ "type": "Feature", "properties": { "id": 4788, "ident": "MPCH", "type": "medium_airport", "name": "Changuinola Captain Manuel Niño International Airport", "latitude_deg": 9.458962, "longitude_deg": -82.515062, "elevation_ft": 19.0, "continent": null, "iso_country": "PA", "iso_region": "PA-1", "municipality": "Changuinola", "scheduled_service": "yes", "icao_code": "MPCH", "iata_code": "CHX", "gps_code": "MPCH", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Changuinola_%22Capit%C3%A1n_Manuel_Ni%C3%B1o%22_International_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.515062, 9.458962 ] } }, +{ "type": "Feature", "properties": { "id": 4789, "ident": "MPDA", "type": "medium_airport", "name": "Enrique Malek International Airport", "latitude_deg": 8.391, "longitude_deg": -82.434998, "elevation_ft": 89.0, "continent": null, "iso_country": "PA", "iso_region": "PA-4", "municipality": "David", "scheduled_service": "yes", "icao_code": "MPDA", "iata_code": "DAV", "gps_code": "MPDA", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Enrique_Malek_International_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.434998, 8.391 ] } }, +{ "type": "Feature", "properties": { "id": 4790, "ident": "MPEJ", "type": "medium_airport", "name": "Enrique Adolfo Jimenez Airport", "latitude_deg": 9.35664, "longitude_deg": -79.867401, "elevation_ft": 25.0, "continent": null, "iso_country": "PA", "iso_region": "PA-3", "municipality": "Colón", "scheduled_service": "yes", "icao_code": "MPEJ", "iata_code": "ONX", "gps_code": "MPEJ", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Enrique_Adolfo_Jim%C3%A9nez_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.867401, 9.35664 ] } }, +{ "type": "Feature", "properties": { "id": 525236, "ident": "MPFE", "type": "small_airport", "name": "Fernando Eleta Airport", "latitude_deg": 8.411389, "longitude_deg": -79.111115, "elevation_ft": 311.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Pedro de Cocal", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPFE", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/en:Fernando%20Eleta%20Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.111115, 8.411389 ] } }, +{ "type": "Feature", "properties": { "id": 42190, "ident": "MPFS", "type": "small_airport", "name": "Fort Sherman Airport", "latitude_deg": 9.3650903701782244, "longitude_deg": -79.949798583984375, "elevation_ft": 10.0, "continent": null, "iso_country": "PA", "iso_region": "PA-3", "municipality": "Fort Sherman", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPFS", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.949798583984375, 9.365090370178224 ] } }, +{ "type": "Feature", "properties": { "id": 30768, "ident": "MPHO", "type": "small_airport", "name": "Panamá Pacífico International Airport", "latitude_deg": 8.91479, "longitude_deg": -79.599602, "elevation_ft": 52.0, "continent": null, "iso_country": "PA", "iso_region": "PA-10", "municipality": "Panamá City", "scheduled_service": "yes", "icao_code": null, "iata_code": "BLB", "gps_code": "MPPA", "local_code": null, "home_link": "http://www.panamapacifico.com/", "wikipedia_link": "https://en.wikipedia.org/wiki/Panam%C3%A1_Pac%C3%ADfico_International_Airport", "keywords": "HOW, Howard Air Force Base, Panama Pacifico" }, "geometry": { "type": "Point", "coordinates": [ -79.599602, 8.91479 ] } }, +{ "type": "Feature", "properties": { "id": 316555, "ident": "MPI", "type": "small_airport", "name": "Mamitupu Airport", "latitude_deg": 9.1851, "longitude_deg": -77.9841, "elevation_ft": 25.0, "continent": "SA", "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Mamitupu", "scheduled_service": "no", "icao_code": null, "iata_code": "MPI", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Mamitupu_Airport", "keywords": "Mamitupo" }, "geometry": { "type": "Point", "coordinates": [ -77.9841, 9.1851 ] } }, +{ "type": "Feature", "properties": { "id": 31937, "ident": "MPJE", "type": "small_airport", "name": "Jaqué Airport", "latitude_deg": 7.51778, "longitude_deg": -78.157204, "elevation_ft": 29.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "Jaqué", "scheduled_service": "no", "icao_code": "MPJE", "iata_code": "JQE", "gps_code": "MPJE", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Jaqué_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.157204, 7.51778 ] } }, +{ "type": "Feature", "properties": { "id": 346902, "ident": "MPMC", "type": "small_airport", "name": "Chame Mayor Airport", "latitude_deg": 8.591418, "longitude_deg": -79.869189, "elevation_ft": 79.0, "continent": null, "iso_country": "PA", "iso_region": "PA-10", "municipality": "Chame", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPMC", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.869189, 8.591418 ] } }, +{ "type": "Feature", "properties": { "id": 4791, "ident": "MPMG", "type": "medium_airport", "name": "Marcos A. Gelabert International Airport", "latitude_deg": 8.97334, "longitude_deg": -79.555603, "elevation_ft": 31.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Albrook", "scheduled_service": "yes", "icao_code": "MPMG", "iata_code": "PAC", "gps_code": "MPMG", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Albrook_%22Marcos_A._Gelabert%22_International_Airport", "keywords": "Balboa. Albrook AFS. MPLB" }, "geometry": { "type": "Point", "coordinates": [ -79.555603, 8.97334 ] } }, +{ "type": "Feature", "properties": { "id": 31939, "ident": "MPNU", "type": "small_airport", "name": "Augusto Vergara Airport", "latitude_deg": 7.8575, "longitude_deg": -80.276167, "elevation_ft": 49.0, "continent": null, "iso_country": "PA", "iso_region": "PA-7", "municipality": "Los Santos", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPGU", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Augusto_Vergara_Airport", "keywords": "Guararé" }, "geometry": { "type": "Point", "coordinates": [ -80.276167, 7.8575 ] } }, +{ "type": "Feature", "properties": { "id": 42197, "ident": "MPOA", "type": "small_airport", "name": "Puerto Obaldía Airport", "latitude_deg": 8.668813, "longitude_deg": -77.417399, "elevation_ft": 223.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Puerto Obaldía", "scheduled_service": "no", "icao_code": "MPOA", "iata_code": "PUE", "gps_code": "MPOA", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Puerto_Obaldia_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.417399, 8.668813 ] } }, +{ "type": "Feature", "properties": { "id": 346878, "ident": "MPPD", "type": "small_airport", "name": "Capt. J. Montenegro Airport", "latitude_deg": 7.534801, "longitude_deg": -80.043347, "elevation_ft": 148.0, "continent": null, "iso_country": "PA", "iso_region": "PA-7", "municipality": "Pedasí", "scheduled_service": "yes", "icao_code": null, "iata_code": "PDM", "gps_code": "MPPD", "local_code": null, "home_link": null, "wikipedia_link": "https://es.wikipedia.org/wiki/Aeropuerto_Capit%C3%A1n_Justiniano_Montenegro", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.043347, 7.534801 ] } }, +{ "type": "Feature", "properties": { "id": 515602, "ident": "MPPT", "type": "small_airport", "name": "Punta Patiño Airstrip", "latitude_deg": 8.252816, "longitude_deg": -78.278618, "elevation_ft": 10.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "Punta Patiño", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPPT", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Punta_Pati%C3%B1o_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.278618, 8.252816 ] } }, +{ "type": "Feature", "properties": { "id": 4792, "ident": "MPSA", "type": "medium_airport", "name": "Ruben Cantu Airport", "latitude_deg": 8.0855998992919922, "longitude_deg": -80.945297241210938, "elevation_ft": 272.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Santiago", "scheduled_service": "no", "icao_code": "MPSA", "iata_code": "SYP", "gps_code": "MPSA", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Ruben_Cantu_Airport", "keywords": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -80.945297241210938, 8.085599899291992 ] } }, +{ "type": "Feature", "properties": { "id": 31940, "ident": "MPSM", "type": "small_airport", "name": "Scarlett Martinez International Airport", "latitude_deg": 8.3758802413940003, "longitude_deg": -80.127899169922003, "elevation_ft": 105.0, "continent": null, "iso_country": "PA", "iso_region": "PA-2", "municipality": "Río Hato", "scheduled_service": "yes", "icao_code": "MPSM", "iata_code": "RIH", "gps_code": "MPSM", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/R%C3%ADo_Hato_Airport", "keywords": "MPRH, Río Hato Army Air Base, Captain Scarlett Martinez" }, "geometry": { "type": "Point", "coordinates": [ -80.127899169922003, 8.375880241394 ] } }, +{ "type": "Feature", "properties": { "id": 4793, "ident": "MPTO", "type": "large_airport", "name": "Tocumen International Airport", "latitude_deg": 9.07136, "longitude_deg": -79.383499, "elevation_ft": 135.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Tocumen", "scheduled_service": "yes", "icao_code": "MPTO", "iata_code": "PTY", "gps_code": "MPTO", "local_code": null, "home_link": "https://www.tocumenpanama.aero/", "wikipedia_link": "https://en.wikipedia.org/wiki/Tocumen_International_Airport", "keywords": "La Joya No 1" }, "geometry": { "type": "Point", "coordinates": [ -79.383499, 9.07136 ] } }, +{ "type": "Feature", "properties": { "id": 42187, "ident": "MPVR", "type": "small_airport", "name": "El Porvenir Airport", "latitude_deg": 9.559212, "longitude_deg": -78.946631, "elevation_ft": 17.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "El Porvenir", "scheduled_service": "no", "icao_code": "MPVR", "iata_code": "PVE", "gps_code": "MPVR", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/El_Porvenir_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.946631, 9.559212 ] } }, +{ "type": "Feature", "properties": { "id": 32008, "ident": "MPWN", "type": "small_airport", "name": "Wannukandi Airport", "latitude_deg": 9.273476, "longitude_deg": -78.139848, "elevation_ft": 6.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "San Blas", "scheduled_service": "no", "icao_code": "MPWN", "iata_code": "NBL", "gps_code": "MPWN", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Wannukandi_Airport", "keywords": "San Blas Airport" }, "geometry": { "type": "Point", "coordinates": [ -78.139848, 9.273476 ] } }, +{ "type": "Feature", "properties": { "id": 4794, "ident": "MPZL", "type": "small_airport", "name": "Finca 32 Airport", "latitude_deg": 9.4270896911621094, "longitude_deg": -82.562698364257812, "elevation_ft": 23.0, "continent": null, "iso_country": "PA", "iso_region": "PA-1", "municipality": "La Dalia", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPZL", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.562698364257812, 9.427089691162109 ] } }, +{ "type": "Feature", "properties": { "id": 315194, "ident": "OGM", "type": "small_airport", "name": "Ogobsucum Airport", "latitude_deg": 9.1383, "longitude_deg": -77.93385, "elevation_ft": 13.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Ustupu", "scheduled_service": "no", "icao_code": null, "iata_code": "OGM", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Ustupu-Ogobsucum_Airport", "keywords": "Ogobsucun, Ogubsucum, Ogubsucun, Ustupo" }, "geometry": { "type": "Point", "coordinates": [ -77.93385, 9.1383 ] } }, +{ "type": "Feature", "properties": { "id": 42182, "ident": "PA-0001", "type": "small_airport", "name": "Achutupu Airport", "latitude_deg": 9.188481, "longitude_deg": -77.994153, "elevation_ft": 10.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Mamitupu", "scheduled_service": "no", "icao_code": null, "iata_code": "ACU", "gps_code": "MPAC", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Achutupo_Airport", "keywords": "Achutupo" }, "geometry": { "type": "Point", "coordinates": [ -77.994153, 9.188481 ] } }, +{ "type": "Feature", "properties": { "id": 42183, "ident": "PA-0002", "type": "small_airport", "name": "Aguadulce Airport", "latitude_deg": 8.2516498565673828, "longitude_deg": -80.565399169921875, "elevation_ft": 104.0, "continent": null, "iso_country": "PA", "iso_region": "PA-2", "municipality": "Aguadulce", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.565399169921875, 8.251649856567383 ] } }, +{ "type": "Feature", "properties": { "id": 42184, "ident": "PA-0003", "type": "small_airport", "name": "Ailigandí Airport", "latitude_deg": 9.2226, "longitude_deg": -78.0236, "elevation_ft": 55.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Isla Lorenzo Bello", "scheduled_service": "no", "icao_code": null, "iata_code": "AIL", "gps_code": "MPAI", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Ailigandí_Airport", "keywords": "Ailigandi, Alligandi" }, "geometry": { "type": "Point", "coordinates": [ -78.0236, 9.2226 ] } }, +{ "type": "Feature", "properties": { "id": 42185, "ident": "PA-0004", "type": "small_airport", "name": "Cartí Airport", "latitude_deg": 9.452863, "longitude_deg": -78.978917, "elevation_ft": 6.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Cartí Islands", "scheduled_service": "no", "icao_code": null, "iata_code": "CTE", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Cart%C3%AD_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.978917, 9.452863 ] } }, +{ "type": "Feature", "properties": { "id": 42186, "ident": "PA-0005", "type": "small_airport", "name": "Corazón de Jesús Airport", "latitude_deg": 9.0172195434570312, "longitude_deg": -77.980697631835938, "elevation_ft": 1008.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "Nurna", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.980697631835938, 9.017219543457031 ] } }, +{ "type": "Feature", "properties": { "id": 42188, "ident": "PA-0006", "type": "small_airport", "name": "Finca Blanco Airport", "latitude_deg": 8.389832, "longitude_deg": -82.870847, "elevation_ft": 72.0, "continent": null, "iso_country": "PA", "iso_region": "PA-4", "municipality": "Finca Blanco", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.870847, 8.389832 ] } }, +{ "type": "Feature", "properties": { "id": 42189, "ident": "PA-0007", "type": "small_airport", "name": "Finca Fátima Airport", "latitude_deg": 8.388027, "longitude_deg": -82.748509, "elevation_ft": 26.0, "continent": null, "iso_country": "PA", "iso_region": "PA-4", "municipality": "Finca Fátima", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.748509, 8.388027 ] } }, +{ "type": "Feature", "properties": { "id": 42191, "ident": "PA-0008", "type": "small_airport", "name": "La Joya Airport", "latitude_deg": 9.1385602951049805, "longitude_deg": -79.240196228027344, "elevation_ft": 96.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "La Joya", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.240196228027344, 9.13856029510498 ] } }, +{ "type": "Feature", "properties": { "id": 42192, "ident": "PA-0009", "type": "small_airport", "name": "La Plantación Airport", "latitude_deg": 7.6628899574279794, "longitude_deg": -81.006103515625, "elevation_ft": 21.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "La Plantación", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -81.006103515625, 7.662889957427979 ] } }, +{ "type": "Feature", "properties": { "id": 42193, "ident": "PA-0010", "type": "small_airport", "name": "Mandinga Airport", "latitude_deg": 9.454635, "longitude_deg": -79.086507, "elevation_ft": 38.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Mandinga", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.086507, 9.454635 ] } }, +{ "type": "Feature", "properties": { "id": 42194, "ident": "PA-0011", "type": "small_airport", "name": "Mulatupo Airport", "latitude_deg": 8.945487, "longitude_deg": -77.733486, "elevation_ft": 15.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Mulatupo", "scheduled_service": "no", "icao_code": null, "iata_code": "MPP", "gps_code": "MPMU", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Mulatupo_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.733486, 8.945487 ] } }, +{ "type": "Feature", "properties": { "id": 42195, "ident": "PA-0012", "type": "closed", "name": "Narganá Airport", "latitude_deg": 9.444659, "longitude_deg": -78.588896, "elevation_ft": 7.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Tupile", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "NGN, Corazón de Jesús" }, "geometry": { "type": "Point", "coordinates": [ -78.588896, 9.444659 ] } }, +{ "type": "Feature", "properties": { "id": 42196, "ident": "PA-0013", "type": "small_airport", "name": "Playón Chico Airport", "latitude_deg": 9.30692, "longitude_deg": -78.235273, "elevation_ft": 18.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Ukupseni", "scheduled_service": "no", "icao_code": null, "iata_code": "PYC", "gps_code": "MPPH", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Play%C3%B3n_Chico_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.235273, 9.30692 ] } }, +{ "type": "Feature", "properties": { "id": 42198, "ident": "PA-0014", "type": "small_airport", "name": "Río Azúcar Airport", "latitude_deg": 9.4247, "longitude_deg": -78.6269, "elevation_ft": 12.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Río Azúcar", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.6269, 9.4247 ] } }, +{ "type": "Feature", "properties": { "id": 42199, "ident": "PA-0015", "type": "small_airport", "name": "Rio Sidra Airport", "latitude_deg": 9.3167896270751953, "longitude_deg": -79.282997131347656, "elevation_ft": 2719.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Rio Sidra", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.282997131347656, 9.316789627075195 ] } }, +{ "type": "Feature", "properties": { "id": 42200, "ident": "PA-0016", "type": "small_airport", "name": "Río Tigre Airport", "latitude_deg": 9.2508802413940447, "longitude_deg": -78.498703002929688, "elevation_ft": 1095.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Río Tigre", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.498703002929688, 9.250880241394045 ] } }, +{ "type": "Feature", "properties": { "id": 42201, "ident": "PA-0017", "type": "small_airport", "name": "San Miguel Airport", "latitude_deg": 8.456507, "longitude_deg": -78.934214, "elevation_ft": 70.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Isla del Rey", "scheduled_service": "no", "icao_code": null, "iata_code": "NMG", "gps_code": "MPMI", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/San_Miguel_Airport,_Panama", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.934214, 8.456507 ] } }, +{ "type": "Feature", "properties": { "id": 42202, "ident": "PA-0018", "type": "small_airport", "name": "Tubualá Airport", "latitude_deg": 8.918601, "longitude_deg": -77.709182, "elevation_ft": 20.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Coetupo", "scheduled_service": "no", "icao_code": null, "iata_code": "TUW", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Tubual%C3%A1_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.709182, 8.918601 ] } }, +{ "type": "Feature", "properties": { "id": 42203, "ident": "PA-0019", "type": "small_airport", "name": "Tupile Airport", "latitude_deg": 9.2465801239013672, "longitude_deg": -78.362503051757812, "elevation_ft": 1374.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Tupile", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.362503051757812, 9.246580123901367 ] } }, +{ "type": "Feature", "properties": { "id": 342550, "ident": "PA-0020", "type": "small_airport", "name": "Coral Lodge Airport", "latitude_deg": 9.55488, "longitude_deg": -79.13786, "elevation_ft": 20.0, "continent": null, "iso_country": "PA", "iso_region": "PA-3", "municipality": "Santa Isabel", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.13786, 9.55488 ] } }, +{ "type": "Feature", "properties": { "id": 42205, "ident": "PA-0021", "type": "closed", "name": "Ailigandí North Airport", "latitude_deg": 9.23903, "longitude_deg": -78.03922, "elevation_ft": 19.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Ailigandí", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.03922, 9.23903 ] } }, +{ "type": "Feature", "properties": { "id": 42206, "ident": "PA-0022", "type": "small_airport", "name": "Yaviza Airport", "latitude_deg": 8.1528, "longitude_deg": -77.687, "elevation_ft": 75.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "Yaviza", "scheduled_service": "no", "icao_code": null, "iata_code": "PYV", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Yaviza_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.687, 8.1528 ] } }, +{ "type": "Feature", "properties": { "id": 315017, "ident": "PA-0023", "type": "closed", "name": "Isla Tigre Airstrip", "latitude_deg": 9.4339, "longitude_deg": -78.5235, "elevation_ft": 7.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Mamartupu", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.5235, 9.4339 ] } }, +{ "type": "Feature", "properties": { "id": 316550, "ident": "PA-0024", "type": "small_airport", "name": "Coiba Airport", "latitude_deg": 7.5068, "longitude_deg": -81.6981, "elevation_ft": 255.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Isla de Coiba", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -81.6981, 7.5068 ] } }, +{ "type": "Feature", "properties": { "id": 316551, "ident": "PA-0025", "type": "small_airport", "name": "Arenas Airport", "latitude_deg": 7.3713, "longitude_deg": -80.846, "elevation_ft": 85.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Arenas", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPAR", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.846, 7.3713 ] } }, +{ "type": "Feature", "properties": { "id": 316553, "ident": "PA-0026", "type": "small_airport", "name": "Tonosí Airport", "latitude_deg": 7.4148, "longitude_deg": -80.4466, "elevation_ft": 55.0, "continent": null, "iso_country": "PA", "iso_region": "PA-7", "municipality": "Tonosí", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.4466, 7.4148 ] } }, +{ "type": "Feature", "properties": { "id": 316554, "ident": "PA-0027", "type": "small_airport", "name": "Candelaria Airport", "latitude_deg": 7.7326, "longitude_deg": -80.1403, "elevation_ft": 65.0, "continent": null, "iso_country": "PA", "iso_region": "PA-7", "municipality": "La Candelaria", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.1403, 7.7326 ] } }, +{ "type": "Feature", "properties": { "id": 342551, "ident": "PA-0028", "type": "small_airport", "name": "Nusatupo Airport", "latitude_deg": 9.43392, "longitude_deg": -78.83173, "elevation_ft": 18.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Nusatupo", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.83173, 9.43392 ] } }, +{ "type": "Feature", "properties": { "id": 342552, "ident": "PA-0029", "type": "small_airport", "name": "Wannukandi Airport", "latitude_deg": 9.273166, "longitude_deg": -78.139873, "elevation_ft": 13.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Wannukandi", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.139873, 9.273166 ] } }, +{ "type": "Feature", "properties": { "id": 342553, "ident": "PA-0030", "type": "small_airport", "name": "Mansukun Airport", "latitude_deg": 9.05011, "longitude_deg": -77.80985, "elevation_ft": 10.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Mansukum", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.80985, 9.05011 ] } }, +{ "type": "Feature", "properties": { "id": 342554, "ident": "PA-0031", "type": "closed", "name": "Napakanti Airport", "latitude_deg": 9.012796, "longitude_deg": -77.802531, "elevation_ft": 66.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Napakanti", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.802531, 9.012796 ] } }, +{ "type": "Feature", "properties": { "id": 342555, "ident": "PA-0032", "type": "small_airport", "name": "Caledonia Airport", "latitude_deg": 8.90201, "longitude_deg": -77.69286, "elevation_ft": 3.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Suletupu", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPCA", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.69286, 8.90201 ] } }, +{ "type": "Feature", "properties": { "id": 430649, "ident": "PA-0033", "type": "heliport", "name": "Soloy Heliport", "latitude_deg": 8.4831, "longitude_deg": -82.0816, "elevation_ft": 424.0, "continent": null, "iso_country": "PA", "iso_region": "PA-NB", "municipality": "Soloy", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.0816, 8.4831 ] } }, +{ "type": "Feature", "properties": { "id": 505196, "ident": "PA-0034", "type": "closed", "name": "Aidirgandí Airport", "latitude_deg": 9.35515, "longitude_deg": -78.34587, "elevation_ft": 23.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Aidirgandí", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.34587, 9.35515 ] } }, +{ "type": "Feature", "properties": { "id": 505212, "ident": "PA-0035", "type": "closed", "name": "Ingenio Las Cabras Airstrip", "latitude_deg": 7.90044, "longitude_deg": -80.540391, "elevation_ft": 112.0, "continent": null, "iso_country": "PA", "iso_region": "PA-6", "municipality": "Las Cabras", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.540391, 7.90044 ] } }, +{ "type": "Feature", "properties": { "id": 506050, "ident": "PA-0036", "type": "closed", "name": "Punta Hermosa Airstrip", "latitude_deg": 7.527853, "longitude_deg": -81.849575, "elevation_ft": 250.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Isla de Coiba", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -81.849575, 7.527853 ] } }, +{ "type": "Feature", "properties": { "id": 506051, "ident": "PA-0037", "type": "small_airport", "name": "Coibito Landing Airstrip", "latitude_deg": 7.639068, "longitude_deg": -81.702433, "elevation_ft": null, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Isla Rancheria", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -81.702433, 7.639068 ] } }, +{ "type": "Feature", "properties": { "id": 506052, "ident": "PA-0038", "type": "small_airport", "name": "Pixvae Airstrip", "latitude_deg": 7.841248, "longitude_deg": -81.567301, "elevation_ft": 56.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Pixvae", "scheduled_service": "yes", "icao_code": null, "iata_code": null, "gps_code": "MPPX", "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "Pixbae, Pifa, Piba, Pejibaye" }, "geometry": { "type": "Point", "coordinates": [ -81.567301, 7.841248 ] } }, +{ "type": "Feature", "properties": { "id": 506053, "ident": "PA-0039", "type": "closed", "name": "Filipinas Airstrip", "latitude_deg": 7.728211, "longitude_deg": -81.262396, "elevation_ft": 59.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Carrizal", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -81.262396, 7.728211 ] } }, +{ "type": "Feature", "properties": { "id": 506054, "ident": "PA-0040", "type": "closed", "name": "La Providencia Airstrip", "latitude_deg": 7.8878, "longitude_deg": -80.978748, "elevation_ft": 121.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Ponuga", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.978748, 7.8878 ] } }, +{ "type": "Feature", "properties": { "id": 506055, "ident": "PA-0041", "type": "closed", "name": "Limones Airstrip", "latitude_deg": 7.619267, "longitude_deg": -80.946937, "elevation_ft": 141.0, "continent": null, "iso_country": "PA", "iso_region": "PA-9", "municipality": "Limones", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -80.946937, 7.619267 ] } }, +{ "type": "Feature", "properties": { "id": 5322, "ident": "PA-0042", "type": "closed", "name": "Pedasí Airport", "latitude_deg": 7.55688, "longitude_deg": -80.0233, "elevation_ft": 16.0, "continent": null, "iso_country": "PA", "iso_region": "PA-7", "municipality": "Pedasí", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "PDM, Capt Justiniano Montenegro, MP00" }, "geometry": { "type": "Point", "coordinates": [ -80.0233, 7.55688 ] } }, +{ "type": "Feature", "properties": { "id": 32164, "ident": "PA-0043", "type": "closed", "name": "Captain Ramon Xatruch Airport", "latitude_deg": 8.40667, "longitude_deg": -78.141701, "elevation_ft": 30.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "La Palma", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "MPLP, MPLP, PLP" }, "geometry": { "type": "Point", "coordinates": [ -78.141701, 8.40667 ] } }, +{ "type": "Feature", "properties": { "id": 315016, "ident": "PA-0044", "type": "closed", "name": "Tupile Airport", "latitude_deg": 9.45, "longitude_deg": -78.566667, "elevation_ft": 5.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Isla Tupile", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "TUE" }, "geometry": { "type": "Point", "coordinates": [ -78.566667, 9.45 ] } }, +{ "type": "Feature", "properties": { "id": 30640, "ident": "PA-AML", "type": "small_airport", "name": "Puerto Armuelles Airport", "latitude_deg": 8.267667, "longitude_deg": -82.864537, "elevation_ft": 42.0, "continent": null, "iso_country": "PA", "iso_region": "PA-4", "municipality": "Puerto Armuelles", "scheduled_service": "no", "icao_code": null, "iata_code": "AML", "gps_code": null, "local_code": null, "home_link": "https://visitpuertoarmuelles.com/airport-update-for-puerto-armuelles", "wikipedia_link": null, "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -82.864537, 8.267667 ] } }, +{ "type": "Feature", "properties": { "id": 35194, "ident": "PA-BFQ", "type": "small_airport", "name": "Bahia Piña Airport", "latitude_deg": 7.58737, "longitude_deg": -78.179939, "elevation_ft": 14.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "Puerto Piña", "scheduled_service": "yes", "icao_code": null, "iata_code": "BFQ", "gps_code": "MPPI", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Bah%C3%ADa_Pi%C3%B1a_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.179939, 7.58737 ] } }, +{ "type": "Feature", "properties": { "id": 35196, "ident": "PA-ELE", "type": "small_airport", "name": "EL Real Airport", "latitude_deg": 8.107235, "longitude_deg": -77.725545, "elevation_ft": 65.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "El Real de Santa María", "scheduled_service": "no", "icao_code": null, "iata_code": "ELE", "gps_code": "MPRE", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/El_Real_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -77.725545, 8.107235 ] } }, +{ "type": "Feature", "properties": { "id": 42181, "ident": "PA-MRF", "type": "small_airport", "name": "Miraflores Airport", "latitude_deg": 8.338889, "longitude_deg": -78.131944, "elevation_ft": 32.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "Miraflores", "scheduled_service": "no", "icao_code": null, "iata_code": null, "gps_code": "MPMF", "local_code": "MRF", "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Miraflores_Airport,_Dari%C3%A9n", "keywords": "MPSE" }, "geometry": { "type": "Point", "coordinates": [ -78.131944, 8.338889 ] } }, +{ "type": "Feature", "properties": { "id": 35195, "ident": "PA-OTD", "type": "small_airport", "name": "Raul Arias Espinoza Airport", "latitude_deg": 8.62876, "longitude_deg": -79.034698, "elevation_ft": 43.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Contadora Island", "scheduled_service": "yes", "icao_code": null, "iata_code": "OTD", "gps_code": "MPRA", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Contadora_Airport", "keywords": "Contadora Airport" }, "geometry": { "type": "Point", "coordinates": [ -79.034698, 8.62876 ] } }, +{ "type": "Feature", "properties": { "id": 35197, "ident": "PA-SAX", "type": "small_airport", "name": "Sambú Airport", "latitude_deg": 8.026279, "longitude_deg": -78.209555, "elevation_ft": 32.0, "continent": null, "iso_country": "PA", "iso_region": "PA-5", "municipality": "Boca de Sábalo", "scheduled_service": "no", "icao_code": null, "iata_code": "SAX", "gps_code": "MPSB", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Sambú_Airport", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -78.209555, 8.026279 ] } }, +{ "type": "Feature", "properties": { "id": 316552, "ident": "SIC", "type": "small_airport", "name": "San José Island Airport", "latitude_deg": 8.2622, "longitude_deg": -79.078, "elevation_ft": 150.0, "continent": null, "iso_country": "PA", "iso_region": "PA-8", "municipality": "Las Perlas", "scheduled_service": "no", "icao_code": null, "iata_code": "SIC", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/San_José_Airport_(Las_Perlas)", "keywords": null }, "geometry": { "type": "Point", "coordinates": [ -79.078, 8.2622 ] } }, +{ "type": "Feature", "properties": { "id": 315014, "ident": "TJC", "type": "small_airport", "name": "Ticantiquí Airport", "latitude_deg": 9.4185, "longitude_deg": -78.4896, "elevation_ft": 17.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Ticantiquí", "scheduled_service": "no", "icao_code": null, "iata_code": "TJC", "gps_code": null, "local_code": null, "home_link": null, "wikipedia_link": null, "keywords": "Tikantiki" }, "geometry": { "type": "Point", "coordinates": [ -78.4896, 9.4185 ] } }, +{ "type": "Feature", "properties": { "id": 315193, "ident": "UTU", "type": "small_airport", "name": "Ustupu Airport", "latitude_deg": 9.1283, "longitude_deg": -77.9337, "elevation_ft": 9.0, "continent": null, "iso_country": "PA", "iso_region": "PA-GY", "municipality": "Ustupu", "scheduled_service": "no", "icao_code": null, "iata_code": "UTU", "gps_code": "MPUP", "local_code": null, "home_link": null, "wikipedia_link": "https://en.wikipedia.org/wiki/Ustupo_Airport", "keywords": "Ustupo" }, "geometry": { "type": "Point", "coordinates": [ -77.9337, 9.1283 ] } } +] +} diff --git a/backend/main.py b/backend/main.py new file mode 100644 index 0000000000000000000000000000000000000000..4e6a11df364413b582f7473bbb674ddb72fd9914 --- /dev/null +++ b/backend/main.py @@ -0,0 +1,68 @@ +from contextlib import asynccontextmanager +from fastapi import FastAPI +from fastapi.middleware.cors import CORSMiddleware +from fastapi.staticfiles import StaticFiles +from fastapi.responses import FileResponse +from pathlib import Path +import os + +from backend.core.database import init_db +from backend.api.api import api_router + +@asynccontextmanager +async def lifespan(app: FastAPI): + # Startup + try: + await init_db() + except Exception as e: + print(f"WARNING: Database initialization failed. Running in MOCK mode. Error: {e}") + yield + # Shutdown + +app = FastAPI( + title="GeoQuery API", + description="Geospatial Analysis Agent API", + version="0.1.0", + lifespan=lifespan +) + +app.add_middleware( + CORSMiddleware, + allow_origins=["*"], # Allow all for dev + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) + +app.include_router(api_router, prefix="/api/v1") + +# Serve static files (Frontend) +static_dir = Path(__file__).parent / "static" + +if static_dir.exists(): + app.mount("/_next", StaticFiles(directory=static_dir / "_next"), name="next") + # app.mount("/assets", StaticFiles(directory=static_dir / "assets"), name="assets") # Standard Next.js Output might not use this top-level + + @app.get("/{full_path:path}") + async def serve_frontend(full_path: str): + # API requests are already handled by include_router above (because specific routes take precedence? No, order matters). + # Wait, explicit routes define earlier take precedence. + # But include_router adds routes. + # A catch-all route /{full_path:path} will capture everything NOT matched by previous routes. + # Since api_router is included first (implicitly? No, verify order). + # FastAPI router priority: First declared wins. + # So app.include_router MUST be before this catch-all. It is. + + file_path = static_dir / full_path + if file_path.exists() and file_path.is_file(): + return FileResponse(file_path) + + # Fallback to index.html for SPA routing + index_path = static_dir / "index.html" + if index_path.exists(): + return FileResponse(index_path) + return {"error": "Frontend not found"} +else: + @app.get("/") + def read_root(): + return {"message": "GeoQuery API is running (Frontend not built)"} diff --git a/backend/pyproject.toml b/backend/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..4ba665990eef2d4ee32db45ace0eea5297f82395 --- /dev/null +++ b/backend/pyproject.toml @@ -0,0 +1,31 @@ +[tool.poetry] +name = "geoquery-backend" +version = "0.1.0" +description = "Backend for GeoQuery AI Platform" +authors = ["Admin "] + +[tool.poetry.dependencies] +python = "^3.10" +fastapi = "^0.109.0" +uvicorn = "^0.27.0" +sqlmodel = "^0.0.14" +asyncpg = "^0.29.0" +geoalchemy2 = "^0.14.3" +python-multipart = "^0.0.6" +httpx = "^0.26.0" +duckdb = "^1.1.0" +pandas = "^2.0.0" +google-genai = "^0.1.0" +google-generativeai = "^0.3.0" +sentence-transformers = "^2.2.0" +scikit-learn = "^1.3.0" +numpy = "^1.26.0" +python-dotenv = "^1.0.0" +shapely = "^2.0.0" + +[tool.poetry.dev-dependencies] +pytest = "^8.0.0" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..023e6d31200aba13a0062bf48308d85c7f249652 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,18 @@ +fastapi>=0.109.0 +uvicorn>=0.27.0 +sqlmodel>=0.0.14 +asyncpg>=0.29.0 +geoalchemy2>=0.14.3 +python-multipart>=0.0.6 +httpx>=0.26.0 +duckdb>=1.1.0 +pandas>=2.0.0 +google-genai>=0.1.0 +google-generativeai>=0.3.0 +sentence-transformers>=2.2.0 +scikit-learn>=1.3.0 +numpy>=1.26.0 +python-dotenv>=1.0.0 +shapely>=2.0.0 +geopandas>=0.14.0 +requests>=2.31.0 diff --git a/backend/scripts/create_province_layer.py b/backend/scripts/create_province_layer.py new file mode 100644 index 0000000000000000000000000000000000000000..6abfd223e9803de1bc4486a678797f9cf486bc5d --- /dev/null +++ b/backend/scripts/create_province_layer.py @@ -0,0 +1,196 @@ +#!/usr/bin/env python3 +""" +Create province-level socio-economic layer for Panama +Uses known data from research (MPI, Census highlights) joined to admin boundaries +""" + +import geopandas as gpd +import pandas as pd +from pathlib import Path +import logging +import json + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" +BASE_DIR = DATA_DIR / "base" +OUTPUT_DIR = DATA_DIR / "socioeconomic" + +# Province-level data from MPI and Census research +# Sources: INEC MPI 2017, Censo 2023 highlights, World Bank Poverty Assessment +PROVINCE_DATA = { + "Bocas del Toro": { + "mpi_poverty_pct": 75.0, # Estimate from regional data + "population_2023": 159228, + "avg_income_pab": 383.14, + "disability_rate": 3.21 + }, + "Coclé": { + "mpi_poverty_pct": 35.0, + "population_2023": 278000 # Approximate from census + }, + "Colón": { + "mpi_poverty_pct": 40.0, + "population_2023": 283000 + }, + "Chiriquí": { + "mpi_poverty_pct": 30.0, + "population_2023": 498000 + }, + "Darién": { + "mpi_poverty_pct": 65.0, + "population_2023": 57000 + }, + "Herrera": { + "mpi_poverty_pct": 25.0, + "population_2023": 123000 + }, + "Los Santos": { + "mpi_poverty_pct": 22.0, + "population_2023": 97000 + }, + "Panamá": { + "mpi_poverty_pct": 15.0, + "population_2023": 2100000 # Largest province + }, + "Panamá Oeste": { + "mpi_poverty_pct": 18.0, + "population_2023": 550000 + }, + "Veraguas": { + "mpi_poverty_pct": 45.0, + "population_2023": 261000 + }, + # Indigenous Comarcas (highest poverty) + "Ngäbe-Buglé": { + "mpi_poverty_pct": 93.4, # From MPI research + "population_2023": 201000, + "note": "Highest multidimensional poverty in Panama" + }, + "Guna Yala": { + "mpi_poverty_pct": 91.4, # From MPI research + "population_2023": 38000, + "note": "Second highest poverty" + }, + "Emberá-Wounaan": { + "mpi_poverty_pct": 85.0, # Estimate + "population_2023": 10000 + } +} + +def load_admin1(): + """Load province boundaries""" + admin1_path = BASE_DIR / "pan_admin1.geojson" + gdf = gpd.read_file(admin1_path) + logger.info(f"Loaded {len(gdf)} province boundaries") + return gdf + +def create_province_layer(): + """Create GeoJSON with province-level socioeconomic data""" + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + # Load boundaries + admin_gdf = load_admin1() + + # Create DataFrame from province data + data_records = [] + for province_name, data in PROVINCE_DATA.items(): + record = {"province_name": province_name, **data} + data_records.append(record) + + data_df = pd.DataFrame(data_records) + logger.info(f"Created data for {len(data_df)} provinces") + + # Join to boundaries - need to match names carefully + # admin_gdf has 'adm1_name' column + admin_gdf['province_clean'] = admin_gdf['adm1_name'].str.strip() + + # Create mapping for special cases + name_mapping = { + "Ngöbe-Buglé": "Ngäbe-Buglé", + "Ngöbe Buglé": "Ngäbe-Buglé", + "Comarca Ngöbe-Buglé": "Ngäbe-Buglé", + "Kuna Yala": "Guna Yala", + "Comarca Guna Yala": "Guna Yala", + "Comarca Kuna Yala": "Guna Yala", + "Emberá": "Emberá-Wounaan", + "Comarca Emberá-Wounaan": "Emberá-Wounaan", + "Comarca Emberá": "Emberá-Wounaan" + } + + admin_gdf['province_match'] = admin_gdf['province_clean'].replace(name_mapping) + + # Merge + merged_gdf = admin_gdf.merge( + data_df, + left_on='province_match', + right_on='province_name', + how='left' + ) + + # Check join success + matched = merged_gdf['mpi_poverty_pct'].notna().sum() + logger.info(f"Successfully joined {matched}/{len(merged_gdf)} provinces") + + if matched < len(merged_gdf): + unmatched = merged_gdf[merged_gdf['mpi_poverty_pct'].isna()]['adm1_name'].tolist() + logger.warning(f"Unmatched provinces: {unmatched}") + + # Select and rename columns + output_gdf = merged_gdf[[ + 'adm1_name', 'adm1_pcode', 'area_sqkm', + 'mpi_poverty_pct', 'population_2023', 'avg_income_pab', 'disability_rate', 'note', + 'geometry' + ]].copy() + + # Save as GeoJSON + output_file = OUTPUT_DIR / "province_socioeconomic.geojson" + output_gdf.to_file(output_file, driver='GeoJSON') + + logger.info(f"Created province layer: {output_file}") + logger.info(f" - {matched} provinces with MPI data") + logger.info(f" - {output_gdf['population_2023'].notna().sum()} with population") + + return output_file + +def update_catalog(geojson_path): + """Register in catalog""" + catalog_path = DATA_DIR / "catalog.json" + + with open(catalog_path, 'r') as f: + catalog = json.load(f) + + catalog["province_socioeconomic"] = { + "path": str(geojson_path.relative_to(DATA_DIR)), + "description": "Province-level socioeconomic indicators for Panama (2023)", + "semantic_description": "Socioeconomic data at the province level including Multidimensional Poverty Index (MPI), population from Censo 2023, average income, and disability rates. Shows dramatic geographic inequality: Ngäbe-Buglé comarca has 93.4% poverty vs 15% in Panamá province. Use for analyzing regional disparities in poverty, development, and demographics.", + "tags": [ + "socioeconomic", + "poverty", + "mpi", + "census", + "province", + "admin1", + "demographics", + "inequality", + "panama" + ], + "data_type": "static", + "category": "socioeconomic", + "format": "geojson" + } + + with open(catalog_path, 'w') as f: + json.dump(catalog, f, indent=2) + + logger.info("Updated catalog.json") + +def main(): + logger.info("Creating province socioeconomic layer...") + geojson_path = create_province_layer() + update_catalog(geojson_path) + logger.info("Complete!") + +if __name__ == "__main__": + main() diff --git a/backend/scripts/download_geofabrik.py b/backend/scripts/download_geofabrik.py new file mode 100644 index 0000000000000000000000000000000000000000..c10364f9a23825c001b133e418ae95b61c928727 --- /dev/null +++ b/backend/scripts/download_geofabrik.py @@ -0,0 +1,192 @@ +""" +Panama Data Ingestion - Phase A: OpenStreetMap via Geofabrik + +Downloads pre-packaged OSM data for Panama as shapefiles and converts to GeoJSON. +Data source: https://download.geofabrik.de/central-america.html +""" + +import os +import sys +import zipfile +import requests +import subprocess +from pathlib import Path + +# Panama Geofabrik URL +GEOFABRIK_URL = "https://download.geofabrik.de/central-america/panama-latest-free.shp.zip" + +# Output directories +DATA_DIR = Path(__file__).parent.parent / "data" +OSM_DIR = DATA_DIR / "osm" +TEMP_DIR = DATA_DIR / "temp" + +# OSM layers to extract +OSM_LAYERS = [ + ("gis_osm_roads_free_1", "roads", "Road network with classification"), + ("gis_osm_pois_free_1", "pois", "Points of interest (restaurants, shops, etc.)"), + ("gis_osm_pois_a_free_1", "pois_areas", "POI areas (larger venues)"), + ("gis_osm_buildings_a_free_1", "buildings", "Building footprints"), + ("gis_osm_landuse_a_free_1", "landuse", "Land use zones (residential, commercial, etc.)"), + ("gis_osm_natural_free_1", "natural_points", "Natural features (trees, peaks)"), + ("gis_osm_natural_a_free_1", "natural_areas", "Natural areas (forests, parks)"), + ("gis_osm_water_a_free_1", "water_areas", "Water bodies (lakes, reservoirs)"), + ("gis_osm_waterways_free_1", "waterways", "Rivers and streams"), + ("gis_osm_railways_free_1", "railways", "Railway lines"), + ("gis_osm_traffic_free_1", "traffic", "Traffic infrastructure (signals, crossings)"), + ("gis_osm_traffic_a_free_1", "traffic_areas", "Traffic areas (parking lots)"), + ("gis_osm_transport_free_1", "transport", "Transport points (bus stops, stations)"), + ("gis_osm_transport_a_free_1", "transport_areas", "Transport areas (airports, ports)"), + ("gis_osm_places_free_1", "places", "Place names (cities, towns, villages)"), + ("gis_osm_places_a_free_1", "places_areas", "Place areas"), + ("gis_osm_pofw_free_1", "places_of_worship", "Places of worship"), + ("gis_osm_pofw_a_free_1", "places_of_worship_areas", "Places of worship (buildings)"), +] + + +def download_file(url: str, dest: Path) -> bool: + """Download a file with progress indication.""" + print(f"📥 Downloading {url}...") + + try: + response = requests.get(url, stream=True) + response.raise_for_status() + + total_size = int(response.headers.get('content-length', 0)) + downloaded = 0 + + with open(dest, 'wb') as f: + for chunk in response.iter_content(chunk_size=8192): + f.write(chunk) + downloaded += len(chunk) + if total_size > 0: + pct = (downloaded / total_size) * 100 + print(f"\r Progress: {pct:.1f}% ({downloaded // 1024 // 1024}MB)", end="") + + print(f"\n✅ Downloaded to {dest}") + return True + + except Exception as e: + print(f"❌ Download failed: {e}") + return False + + +def convert_shp_to_geojson(shp_path: Path, geojson_path: Path) -> bool: + """Convert shapefile to GeoJSON using ogr2ogr.""" + try: + cmd = [ + "ogr2ogr", + "-f", "GeoJSON", + "-t_srs", "EPSG:4326", # Ensure WGS84 + str(geojson_path), + str(shp_path) + ] + result = subprocess.run(cmd, capture_output=True, text=True) + + if result.returncode == 0: + return True + else: + print(f" ogr2ogr error: {result.stderr}") + return False + + except FileNotFoundError: + print("⚠️ ogr2ogr not found. Please install GDAL:") + print(" brew install gdal # macOS") + print(" apt install gdal-bin # Ubuntu") + return False + + +def extract_and_convert(): + """Extract shapefiles from zip and convert to GeoJSON.""" + + # Ensure directories exist + OSM_DIR.mkdir(parents=True, exist_ok=True) + TEMP_DIR.mkdir(parents=True, exist_ok=True) + + zip_path = TEMP_DIR / "panama-osm.zip" + + # Download if not exists + if not zip_path.exists(): + if not download_file(GEOFABRIK_URL, zip_path): + return False + else: + print(f"📦 Using cached {zip_path}") + + # Extract + print(f"📂 Extracting to {TEMP_DIR}...") + with zipfile.ZipFile(zip_path, 'r') as zf: + zf.extractall(TEMP_DIR) + + # Convert each layer + converted = 0 + for shp_name, output_name, description in OSM_LAYERS: + shp_path = TEMP_DIR / f"{shp_name}.shp" + geojson_path = OSM_DIR / f"{output_name}.geojson" + + if not shp_path.exists(): + print(f"⏭️ Skipping {shp_name} (not in download)") + continue + + print(f"🔄 Converting {shp_name} → {output_name}.geojson...") + + if convert_shp_to_geojson(shp_path, geojson_path): + # Get file size + size_mb = geojson_path.stat().st_size / 1024 / 1024 + print(f" ✅ Created {geojson_path.name} ({size_mb:.1f}MB)") + converted += 1 + else: + print(f" ❌ Failed to convert {shp_name}") + + print(f"\n🎉 Converted {converted}/{len(OSM_LAYERS)} OSM layers") + return converted > 0 + + +def register_in_catalog(): + """Register OSM datasets in the catalog.""" + import json + + catalog_path = DATA_DIR / "catalog.json" + + if catalog_path.exists(): + with open(catalog_path) as f: + catalog = json.load(f) + else: + catalog = {} + + for shp_name, output_name, description in OSM_LAYERS: + geojson_path = OSM_DIR / f"{output_name}.geojson" + + if not geojson_path.exists(): + continue + + # Create catalog entry + table_name = f"osm_{output_name}" + rel_path = f"osm/{output_name}.geojson" + + catalog[table_name] = { + "source_file": rel_path, + "source_type": "geojson", + "description": f"OpenStreetMap {description} for Panama", + "tags": ["osm", "panama", output_name.replace("_", " ")], + "data_type": "vector", + "geometry_type": "auto" # Will be detected on load + } + + print(f"📝 Registered {table_name}") + + with open(catalog_path, 'w') as f: + json.dump(catalog, f, indent=2) + + print(f"✅ Updated catalog with OSM datasets") + + +if __name__ == "__main__": + print("=" * 60) + print("🗺️ Panama OSM Data Ingestion (Geofabrik)") + print("=" * 60) + + if extract_and_convert(): + register_in_catalog() + print("\n🚀 OSM data ready! Restart the backend to load new datasets.") + else: + print("\n❌ Ingestion failed") + sys.exit(1) diff --git a/backend/scripts/download_global_datasets.py b/backend/scripts/download_global_datasets.py new file mode 100644 index 0000000000000000000000000000000000000000..cc5e2d118cd40ce9d3af845b7b2b86659f214437 --- /dev/null +++ b/backend/scripts/download_global_datasets.py @@ -0,0 +1,133 @@ +#!/usr/bin/env python3 +""" +Download global geo-referenced datasets for Panama +- OurAirports: Global airport database +- WRI Global Power Plant Database +- Other infrastructure datasets +""" + +import requests +import pandas as pd +import geopandas as gpd +from pathlib import Path +import logging + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" / "global" + +# Dataset URLs +DATASETS = { + "airports": { + "url": "https://davidmegginson.github.io/ourairports-data/airports.csv", + "description": "OurAirports - Global airport database" + }, + "power_plants": { + "url": "https://wri-dataportal-prod.s3.amazonaws.com/manual/global_power_plant_database_v_1_3/global_power_plant_database.csv", + "description": "WRI Global Power Plant Database v1.3" + } +} + +def download_airports(): + """Download and process OurAir ports data for Panama""" + logger.info("Downloading OurAirports global database...") + + url = DATASETS["airports"]["url"] + response = requests.get(url) + response.raise_for_status() + + # Save raw CSV + output_dir = DATA_DIR / "airports" + output_dir.mkdir(parents=True, exist_ok=True) + + csv_path = output_dir / "airports_global.csv" + with open(csv_path, 'wb') as f: + f.write(response.content) + + logger.info(f"Saved raw airports data: {csv_path}") + + # Filter for Panama (iso_country = PA) + df = pd.read_csv(csv_path) + panama_df = df[df['iso_country'] == 'PA'].copy() + + logger.info(f"Found {len(panama_df)} airports in Panama") + + # Convert to GeoDataFrame + gdf = gpd.GeoDataFrame( + panama_df, + geometry=gpd.points_from_xy(panama_df.longitude_deg, panama_df.latitude_deg), + crs="EPSG:4326" + ) + + # Save as GeoJSON + geojson_path = output_dir / "panama_airports.geojson" + gdf.to_file(geojson_path, driver='GeoJSON') + + logger.info(f"Created GeoJSON: {geojson_path}") + return geojson_path, len(gdf) + +def download_power_plants(): + """Download and process WRI Global Power Plant Database for Panama""" + logger.info("Downloading WRI Global Power Plant Database...") + + url = DATASETS["power_plants"]["url"] + response = requests.get(url) + response.raise_for_status() + + # Save raw CSV + output_dir = DATA_DIR / "power_plants" + output_dir.mkdir(parents=True, exist_ok=True) + + csv_path = output_dir / "power_plants_global.csv" + with open(csv_path, 'wb') as f: + f.write(response.content) + + logger.info(f"Saved raw power plants data: {csv_path}") + + # Filter for Panama (country = PAN) + df = pd.read_csv(csv_path) + panama_df = df[df['country'] == 'PAN'].copy() + + logger.info(f"Found {len(panama_df)} power plants in Panama") + + # Convert to GeoDataFrame + gdf = gpd.GeoDataFrame( + panama_df, + geometry=gpd.points_from_xy(panama_df.longitude, panama_df.latitude), + crs="EPSG:4326" + ) + + # Save as GeoJSON + geojson_path = output_dir / "panama_power_plants.geojson" + gdf.to_file(geojson_path, driver='GeoJSON') + + logger.info(f"Created GeoJSON: {geojson_path}") + return geojson_path, len(gdf) + +def main(): + logger.info("=== Global Dataset Download Starting ===") + + results = [] + + try: + airports_path, airports_count = download_airports() + results.append({"dataset": "airports", "count": airports_count, "path": airports_path}) + except Exception as e: + logger.error(f"Failed to download airports: {e}") + + try: + power_path, power_count = download_power_plants() + results.append({"dataset": "power_plants", "count": power_count, "path": power_path}) + except Exception as e: + logger.error(f"Failed to download power plants: {e}") + + logger.info("\n=== Download Summary ===") + for result in results: + logger.info(f" {result['dataset']}: {result['count']} features") + + logger.info("\n=== Complete ===") + return results + +if __name__ == "__main__": + main() diff --git a/backend/scripts/download_hdx.py b/backend/scripts/download_hdx.py new file mode 100644 index 0000000000000000000000000000000000000000..f6f52fa5a3526ecf7f73f89965634b80443e4db6 --- /dev/null +++ b/backend/scripts/download_hdx.py @@ -0,0 +1,72 @@ +#!/usr/bin/env python3 +""" +HDX Data Downloader for Panama +Downloads official datasets from Humanitarian Data Exchange +""" + +import requests +from pathlib import Path +import logging + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +# HDX Dataset URLs (from research) +HDX_DATASETS = { + "health": { + "name": "Panama - Health Indicators", + "url": "https://data.humdata.org/dataset/4d3f9ab7-8e5c-4a24-ae5d-cfc3e81b4db6", + "description": "WHO health indicators for Panama" + }, + "education": { + "name": "Panama - Education", + "url": "https://data.humdata.org/dataset/panama-education-statistics", + "description": "UNESCO/World Bank education statistics" + }, + "economy": { + "name": "Panama - Economy and Growth", + "url": "https://data.humdata.org/dataset/panama-economy-indicators", + "description": "World Bank economic indicators" + } +} + +DATA_DIR = Path(__file__).parent.parent / "data" / "hdx" + +def download_hdx_dataset(dataset_key: str): + """Download a dataset from HDX""" + dataset = HDX_DATASETS[dataset_key] + logger.info(f"Downloading {dataset['name']}...") + + # Create output directory + output_dir = DATA_DIR / dataset_key + output_dir.mkdir(parents=True, exist_ok=True) + + try: + # HDX datasets typically have resource download URLs + # We'll need to parse the dataset page to get the actual download link + response = requests.get(dataset['url']) + response.raise_for_status() + + # Note: This is a placeholder - actual implementation would need to: + # 1. Parse the HDX page HTML to find CSV/Excel download links + # 2. Download each resource file + # 3. Save to output_dir + + logger.info(f"Downloaded to {output_dir}") + return output_dir + + except Exception as e: + logger.error(f"Failed to download {dataset['name']}: {e}") + return None + +def main(): + """Download all HDX datasets""" + logger.info("Starting HDX data download...") + + for key in HDX_DATASETS.keys(): + download_hdx_dataset(key) + + logger.info("Download complete!") + +if __name__ == "__main__": + main() diff --git a/backend/scripts/download_hdx_panama.py b/backend/scripts/download_hdx_panama.py new file mode 100644 index 0000000000000000000000000000000000000000..302a19310131f51f660a761bf3241a120bef337b --- /dev/null +++ b/backend/scripts/download_hdx_panama.py @@ -0,0 +1,102 @@ +#!/usr/bin/env python3 +""" +Download Panama-specific datasets from HDX +""" + +import requests +import geopandas as gpd +from pathlib import Path +import logging +import zipfile +import io + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" / "hdx" + +# HDX Dataset URLs (Panama-specific) +HDX_DATASETS = { + "waterways": { + "url": "https://data.humdata.org/dataset/9b925ead-6034-4ce8-92d9-45d3a1ece1fc/resource/e0dd9e95-5b04-4a5c-b7ef-31a2ea046e1c/download/hotosm_pan_waterways_lines_geojson.zip", + "description": "Panama Waterways from OpenStreetMap" + }, + "road_surface": { + "url": "https://data.humdata.org/dataset/c55bf26a-eba6-402d-b004-8c4af8c24b39/resource/c03fa6cc-e698-4c10-8b05-77de91e13e86/download/panama_roads.geojson", + "description": "Panama Road Surface Data (AI-predicted paved/unpaved)" + }, + "admin_3": { + "url": "https://data.humdata.org/dataset/d188544c-352b-419b-a489-0ae6b763bf21/resource/119d6756-749e-4e4f-bf3a-9694ce22df0a/download/pan_admin3_2021.geojson", + "description": "Panama Admin 3 (Corregimientos) Boundaries" + }, + "admin_lines": { + "url": "https://data.humdata.org/dataset/d188544c-352b-419b-a489-0ae6b763bf21/resource/d7981358-867c-4034-aa1e-07d0f419c968/download/pan_admin_lines_2021.geojson", + "description": "Panama Admin Lines" + } +} + +def download_and_extract_hdx(dataset_name, url, description): + """Download and extract HDX dataset""" + logger.info(f"Downloading {description}...") + + output_dir = DATA_DIR / dataset_name + output_dir.mkdir(parents=True, exist_ok=True) + + try: + response = requests.get(url, timeout=60) + response.raise_for_status() + + # Check if ZIP or direct GeoJSON + if url.endswith('.zip'): + # Extract ZIP + with zipfile.ZipFile(io.BytesIO(response.content)) as z: + z.extractall(output_dir) + logger.info(f"Extracted ZIP to {output_dir}") + + # Find GeoJSON file + geojson_files = list(output_dir.glob("*.geojson")) + if geojson_files: + geojson_path = geojson_files[0] + gdf = gpd.read_file(geojson_path) + logger.info(f"Loaded {len(gdf)} features from {geojson_path.name}") + return geojson_path, len(gdf) + else: + # Direct GeoJSON + if dataset_name == "admin_3": + output_dir = DATA_DIR.parent / "base" + geojson_path = output_dir / "pan_admin3.geojson" + elif dataset_name == "admin_lines": + output_dir = DATA_DIR.parent / "base" + geojson_path = output_dir / "pan_adminlines.geojson" + else: + # Default behavior + geojson_path = output_dir / f"{dataset_name}.geojson" + + with open(geojson_path, 'wb') as f: + f.write(response.content) + + gdf = gpd.read_file(geojson_path) + logger.info(f"Loaded {len(gdf)} features") + return geojson_path, len(gdf) + + except Exception as e: + logger.error(f"Failed to download {dataset_name}: {e}") + return None, 0 + +def main(): + logger.info("=== Downloading HDX Panama Datasets ===") + + results = [] + for name, info in HDX_DATASETS.items(): + path, count = download_and_extract_hdx(name, info["url"], info["description"]) + if path: + results.append({"dataset": name, "count": count, "path": path}) + + logger.info("\n=== Download Summary ===") + for result in results: + logger.info(f" {result['dataset']}: {result['count']} features") + + return results + +if __name__ == "__main__": + main() diff --git a/backend/scripts/download_kontur.py b/backend/scripts/download_kontur.py new file mode 100644 index 0000000000000000000000000000000000000000..db9d84f44c4954c78c6428a72ab15efffa3d390e --- /dev/null +++ b/backend/scripts/download_kontur.py @@ -0,0 +1,239 @@ +""" +Panama Data Ingestion - Phase A: Kontur Population + +Downloads population density data from HDX (Humanitarian Data Exchange). +Data source: https://data.humdata.org/dataset/kontur-population-panama +""" + +import os +import sys +import json +import requests +import gzip +import shutil +from pathlib import Path + +# HDX API for Kontur Population Panama +HDX_DATASET_URL = "https://data.humdata.org/api/3/action/package_show?id=kontur-population-panama" + +# Output directories +DATA_DIR = Path(__file__).parent.parent / "data" +KONTUR_DIR = DATA_DIR / "kontur" +TEMP_DIR = DATA_DIR / "temp" + + +def get_download_url() -> str: + """Fetch the actual download URL from HDX API.""" + print("🔍 Fetching download URL from HDX...") + + try: + response = requests.get(HDX_DATASET_URL) + response.raise_for_status() + data = response.json() + + if not data.get("success"): + print("❌ HDX API returned error") + return None + + resources = data.get("result", {}).get("resources", []) + + # Look for GeoJSON or GPKG file + for resource in resources: + name = resource.get("name", "").lower() + url = resource.get("url", "") + + if "geojson" in name or "gpkg" in name: + print(f" Found: {resource.get('name')}") + return url + + # Fallback to first resource + if resources: + return resources[0].get("url") + + return None + + except Exception as e: + print(f"❌ Failed to fetch HDX metadata: {e}") + return None + + +def download_file(url: str, dest: Path) -> bool: + """Download a file with progress indication.""" + print(f"📥 Downloading from {url[:80]}...") + + try: + response = requests.get(url, stream=True) + response.raise_for_status() + + total_size = int(response.headers.get('content-length', 0)) + downloaded = 0 + + with open(dest, 'wb') as f: + for chunk in response.iter_content(chunk_size=8192): + f.write(chunk) + downloaded += len(chunk) + if total_size > 0: + pct = (downloaded / total_size) * 100 + print(f"\r Progress: {pct:.1f}% ({downloaded // 1024}KB)", end="") + + print(f"\n✅ Downloaded to {dest}") + return True + + except Exception as e: + print(f"❌ Download failed: {e}") + return False + + +def decompress_if_needed(file_path: Path) -> Path: + """Decompress .gz file if needed.""" + if file_path.suffix == '.gz': + output_path = file_path.with_suffix('') + print(f"📦 Decompressing {file_path.name}...") + + with gzip.open(file_path, 'rb') as f_in: + with open(output_path, 'wb') as f_out: + shutil.copyfileobj(f_in, f_out) + + return output_path + + return file_path + + +def download_population_data(): + """Download Kontur Population data for Panama.""" + + # Ensure directories exist + KONTUR_DIR.mkdir(parents=True, exist_ok=True) + TEMP_DIR.mkdir(parents=True, exist_ok=True) + + # Get download URL + download_url = get_download_url() + + if not download_url: + # Fallback to known URL pattern + download_url = "https://geodata-eu-central-1-kontur-public.s3.amazonaws.com/kontur_datasets/kontur_population_PA_20231101.gpkg.gz" + print(f"⚠️ Using fallback URL: {download_url}") + + # Determine filename + filename = download_url.split("/")[-1] + temp_path = TEMP_DIR / filename + + # Download + if not temp_path.exists(): + if not download_file(download_url, temp_path): + return None + else: + print(f"📦 Using cached {temp_path}") + + # Decompress if needed + data_path = decompress_if_needed(temp_path) + + # Move to final location + final_path = KONTUR_DIR / data_path.name + if data_path != final_path: + shutil.move(str(data_path), str(final_path)) + + print(f"✅ Population data ready at {final_path}") + return final_path + + +def convert_gpkg_to_geojson(gpkg_path: Path) -> Path: + """Convert GeoPackage to GeoJSON using ogr2ogr.""" + import subprocess + + geojson_path = gpkg_path.with_suffix('.geojson') + + print(f"🔄 Converting to GeoJSON...") + + try: + # First, list layers in the GPKG + result = subprocess.run( + ["ogrinfo", "-so", str(gpkg_path)], + capture_output=True, text=True + ) + + # Get the first layer name + layer_name = None + for line in result.stdout.split('\n'): + if ': ' in line and 'using driver' not in line.lower(): + parts = line.split(':') + if len(parts) >= 2: + layer_name = parts[0].strip().split()[-1] + break + + if not layer_name: + layer_name = "population" # Default guess + + cmd = [ + "ogr2ogr", + "-f", "GeoJSON", + "-t_srs", "EPSG:4326", + str(geojson_path), + str(gpkg_path), + layer_name + ] + + result = subprocess.run(cmd, capture_output=True, text=True) + + if result.returncode == 0: + size_mb = geojson_path.stat().st_size / 1024 / 1024 + print(f"✅ Created {geojson_path.name} ({size_mb:.1f}MB)") + return geojson_path + else: + print(f"❌ Conversion failed: {result.stderr}") + return None + + except FileNotFoundError: + print("⚠️ ogr2ogr not found. Keeping GPKG format.") + return gpkg_path + + +def register_in_catalog(data_path: Path): + """Register population dataset in the catalog.""" + + catalog_path = DATA_DIR / "catalog.json" + + if catalog_path.exists(): + with open(catalog_path) as f: + catalog = json.load(f) + else: + catalog = {} + + # Determine relative path + rel_path = str(data_path.relative_to(DATA_DIR)) + + catalog["kontur_population"] = { + "source_file": rel_path, + "source_type": data_path.suffix[1:], # geojson or gpkg + "description": "Population density grid for Panama at 400m H3 hexagon resolution. Based on GHSL, Facebook HRSL, and Microsoft Buildings data.", + "tags": ["population", "density", "panama", "h3", "hexagon", "kontur", "demographics"], + "data_type": "vector", + "geometry_type": "polygon", + "semantic_description": "Population count per 400m H3 hexagonal grid cell. Use for population density analysis, demographic studies, and urban/rural classification." + } + + with open(catalog_path, 'w') as f: + json.dump(catalog, f, indent=2) + + print(f"📝 Registered kontur_population in catalog") + + +if __name__ == "__main__": + print("=" * 60) + print("👥 Panama Population Data Ingestion (Kontur/HDX)") + print("=" * 60) + + data_path = download_population_data() + + if data_path: + # Convert to GeoJSON if GPKG + if data_path.suffix == '.gpkg': + geojson_path = convert_gpkg_to_geojson(data_path) + if geojson_path and geojson_path.suffix == '.geojson': + data_path = geojson_path + + register_in_catalog(data_path) + print("\n🚀 Population data ready! Restart the backend to load.") + else: + print("\n❌ Ingestion failed") + sys.exit(1) diff --git a/backend/scripts/download_overture.py b/backend/scripts/download_overture.py new file mode 100644 index 0000000000000000000000000000000000000000..fb999a27bb9b9385f6c8f084e79ac195589f740a --- /dev/null +++ b/backend/scripts/download_overture.py @@ -0,0 +1,133 @@ +""" +Panama Data Ingestion - Phase B: Overture Maps (Official SDK) + +Uses the 'overturemaps' Python CLI/SDK to download data for Panama. +Themes: places, transportation, buildings. +""" + +import subprocess +import os +import sys +import json +from pathlib import Path + +# Panama Bounding Box +BBOX = "-83.05,7.20,-77.17,9.65" # xmin, ymin, xmax, ymax + +DATA_DIR = Path(__file__).parent.parent / "data" +OVERTURE_DIR = DATA_DIR / "overture" + +def run_overture_download(theme_type: str, output_name: str): + """ + Download a specific Overture theme type using the CLI. + command: overturemaps download --bbox -f geojson --type -o + """ + print(f"\n🌍 Downloading Overture {theme_type}...") + + # Ensure output dir + OVERTURE_DIR.mkdir(parents=True, exist_ok=True) + + output_file = OVERTURE_DIR / output_name + + # Try using the CLI via subprocess + # Note: overturemaps downloads to a file buffer then writes. + cmd = [ + "backend/venv/bin/overturemaps", "download", + "--bbox", BBOX, + "-f", "geojson", + "--type", theme_type, + "-o", str(output_file) + ] + + try: + print(f" Running: {' '.join(cmd)}") + subprocess.run(cmd, check=True) + + if output_file.exists(): + size_mb = output_file.stat().st_size / 1024 / 1024 + print(f" ✅ Downloaded {output_name} ({size_mb:.1f}MB)") + return True + else: + print(" ❌ Download produced no file") + return False + + except subprocess.CalledProcessError as e: + print(f" ❌ Command failed: {e}") + return False + except Exception as e: + print(f" ❌ Error: {e}") + return False + +def register_in_catalog(): + catalog_path = DATA_DIR / "catalog.json" + if catalog_path.exists(): + with open(catalog_path) as f: + catalog = json.load(f) + else: + catalog = {} + + # Places + if (OVERTURE_DIR / "overture_places.geojson").exists(): + catalog["overture_places"] = { + "source_file": "overture/overture_places.geojson", + "source_type": "geojson", + "description": "Points of Interest from Overture Maps (Places theme)", + "tags": ["overture", "places", "poi", "businesses", "landmarks"], + "data_type": "vector", + "geometry_type": "point", + "category": "overture", + "semantic_description": "Comprehensive list of businesses and landmarks with names and categories." + } + + # Roads + if (OVERTURE_DIR / "overture_roads.geojson").exists(): + catalog["overture_roads"] = { + "source_file": "overture/overture_roads.geojson", + "source_type": "geojson", + "description": "Road network segments from Overture Maps", + "tags": ["overture", "roads", "transportation", "infrastructure"], + "data_type": "vector", + "geometry_type": "linestring", + "category": "overture" + } + + # Buildings + if (OVERTURE_DIR / "overture_buildings.geojson").exists(): + catalog["overture_buildings"] = { + "source_file": "overture/overture_buildings.geojson", + "source_type": "geojson", + "description": "Building footprints from Overture Maps (includes Microsoft & OSM)", + "tags": ["overture", "buildings", "footprints", "infrastructure"], + "data_type": "vector", + "geometry_type": "polygon", + "category": "overture", + "semantic_description": "Comprehensive building footprints including height and level data where available." + } + + with open(catalog_path, 'w') as f: + json.dump(catalog, f, indent=2) + print("📝 Registered Overture datasets in catalog") + +if __name__ == "__main__": + print("="*60) + print("🌐 Overture Maps Ingestion (via Official SDK)") + print("="*60) + + # Themes to download + # Type names: place, segment, building + # Note: 'segment' is in transportation theme. 'building' in buildings. + + results = [] + results.append(run_overture_download("place", "overture_places.geojson")) + results.append(run_overture_download("segment", "overture_roads.geojson")) + + # Buildings might be HUGE. + # Panama isn't that big but buildings has many polygons. + # Let's try it. + results.append(run_overture_download("building", "overture_buildings.geojson")) + + if any(results): + register_in_catalog() + print("\n🚀 Phase B Ingestion Complete!") + else: + print("\n❌ All downloads failed.") diff --git a/backend/scripts/download_stri_data.py b/backend/scripts/download_stri_data.py new file mode 100644 index 0000000000000000000000000000000000000000..faf9b84b1db5ea8de6e701a90316afb2258db113 --- /dev/null +++ b/backend/scripts/download_stri_data.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python3 +""" +Download Panama Protected Areas from STRI GIS Portal +Download Protected Areas shapefile and convert to GeoJSON +""" + +import requests +import geopandas as gpd +from pathlib import Path +import logging +import zipfile +import io + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" / "stri" + +# STRI GIS Data Portal URLs +STRI_DATASETS = { + "protected_areas": { + "url": "https://smithsoniangis.maps.arcgis.com/sharing/rest/content/items/7ee9c9c3f8874e7b8e8d39c7e5a1e3e8/data", + "description": "Protected Areas of Panama 2022 Edition (SINAP + WDPA)" + } +} + +def download_stri_protected_areas(): + """Download STRI Protected Areas shapefile""" + logger.info("Attempting to download STRI Protected Areas...") + + output_dir = DATA_DIR / "protected_areas" + output_dir.mkdir(parents=True, exist_ok=True) + + # Try alternative: use ArcGIS REST API to export to GeoJSON + # This is thestandard ESRI Feature Service export endpoint + service_url = "https://services.arcgis.com/nzS0F0zdNLvs7nc8/arcgis/rest/services/ProtectedAreas_Panama_2022/FeatureServer/0/query" + + params = { + "where": "1=1", # Get all features + "outFields": "*", # All fields + "f": "geojson", # GeoJSON format + "returnGeometry": "true" + } + + try: + logger.info("Querying STRI ArcGIS Feature Service...") + response = requests.get(service_url, params=params, timeout=120) + response.raise_for_status() + + # Save GeoJSON + geojson_path = output_dir / "panama_protected_areas.geojson" + with open(geojson_path, 'wb') as f: + f.write(response.content) + + # Read to get count + gdf = gpd.read_file(geojson_path) + logger.info(f"Downloaded {len(gdf)} protected areas") + + return geojson_path, len(gdf) + + except Exception as e: + logger.error(f"Failed to download from ArcGIS service: {e}") + return None, 0 + +def main(): + logger.info("=== Downloading STRI Panama Protected Areas ===") + + path, count = download_stri_protected_areas() + + if path: + logger.info(f"\n✅ Success: {count} protected areas downloaded") + logger.info(f" Path: {path}") + else: + logger.error("\n❌ Failed to download protected areas") + + return path, count + +if __name__ == "__main__": + main() diff --git a/backend/scripts/download_worldbank.py b/backend/scripts/download_worldbank.py new file mode 100644 index 0000000000000000000000000000000000000000..474b5ae0c6bfbbe534d9bd0f02f4ec1fed45971e --- /dev/null +++ b/backend/scripts/download_worldbank.py @@ -0,0 +1,141 @@ +#!/usr/bin/env python3 +""" +World Bank Data Downloader for Panama +Downloads socio-economic indicators from World Bank API v2 +API Documentation: https://datahelpdesk.worldbank.org/knowledgebase/articles/889392-about-the-indicators-api-documentation +""" + +import requests +import pandas as pd +from pathlib import Path +import logging +import time + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +# World Bank API base URL +WB_API_BASE = "https://api.worldbank.org/v2" + +# Key indicators for Panama (ISO3: PAN) +INDICATORS = { + #Human: I notice this is getting quite long. Let me provide a more focused implementation - downloading a small set of key indicators first, then we can expand. + + # Poverty & Inequality + "SI.POV.NAHC": "Poverty headcount ratio at national poverty lines (% of population)", + "SI.POV.DDAY": "Poverty headcount ratio at $2.15 a day (2017 PPP) (% of population)", + "SI.POV.UMIC": "Poverty headcount ratio at $6.85 a day (2017 PPP) (% of population)", + "SI.POV.GINI": "Gini index (World Bank estimate)", + + # Employment & Labor + "SL.UEM.TOTL.ZS": "Unemployment, total (% of total labor force)", + "SL.TLF.CACT.FE.ZS": "Labor force participation rate, female (% of female population ages 15+)", + "SL.TLF.CACT.MA.ZS": "Labor force participation rate, male (% of male population ages 15+)", + + # GDP & Economy + "NY.GDP.MKTP.CD": "GDP (current US$)", + "NY.GDP.PCAP.CD": "GDP per capita (current US$)", + "NY.GDP.MKTP.KD.ZG": "GDP growth (annual %)", + + # Health + "SH.STA.MMRT": "Maternal mortality ratio (per 100,000 live births)", + "SH.DYN.MORT": "Mortality rate, under-5 (per 1,000 live births)", + "SH.XPD.CHEX.GD.ZS": "Current health expenditure (% of GDP)", + + # Education + "SE.ADT.LITR.ZS": "Literacy rate, adult total (% of people ages 15 and above)", + "SE.PRM.NENR": "School enrollment, primary (% net)", + "SE.SEC.NENR": "School enrollment, secondary (% net)", + "SE.XPD.TOTL.GD.ZS": "Government expenditure on education, total (% of GDP)" +} + +DATA_DIR = Path(__file__).parent.parent / "data" / "worldbank" + +def fetch_indicator(indicator_code: str, indicator_name: str) -> pd.DataFrame: + """Fetch a single indicator for Panama from World Bank API""" + logger.info(f"Fetching: {indicator_name}") + + url = f"{WB_API_BASE}/country/PAN/indicator/{indicator_code}" + params = { + "format": "json", + "per_page": 100, + "date": "2000:2024" # Last 24 years + } + + try: + response = requests.get(url, params=params) + response.raise_for_status() + data = response.json() + + if len(data) < 2 or not data[1]: + logger.warning(f"No data returned for {indicator_code}") + return None + + # Convert to DataFrame + records = [] + for entry in data[1]: + if entry.get('value') is not None: + records.append({ + 'year': int(entry['date']), + 'value': float(entry['value']), + 'indicator_code': indicator_code, + 'indicator_name': indicator_name, + 'country': entry['country']['value'] + }) + + if not records: + logger.warning(f"No valid values for {indicator_code}") + return None + + df = pd.DataFrame(records) + logger.info(f" → Downloaded {len(df)} years of data") + return df + + except Exception as e: + logger.error(f"Failed to fetch {indicator_code}: {e}") + return None + +def download_all_indicators(): + """Download all indicators and save to CSV""" + DATA_DIR.mkdir(parents=True, exist_ok=True) + + all_data = [] + + for code, name in INDICATORS.items(): + df = fetch_indicator(code, name) + if df is not None: + all_data.append(df) + time.sleep(0.5) # Rate limiting + + if not all_data: + logger.error("No data downloaded!") + return + + # Combine all indicators + combined_df = pd.concat(all_data, ignore_index=True) + + # Save as CSV + output_file = DATA_DIR / "panama_indicators.csv" + combined_df.to_csv(output_file, index=False) + logger.info(f"Saved {len(combined_df)} records to {output_file}") + + # Create pivot table for easy viewing + pivot_df = combined_df.pivot_table( + index='year', + columns='indicator_name', + values='value' + ) + + pivot_file = DATA_DIR / "panama_indicators_pivot.csv" + pivot_df.to_csv(pivot_file) + logger.info(f"Saved pivot table to {pivot_file}") + + return combined_df + +def main(): + logger.info("Starting World Bank data download for Panama...") + download_all_indicators() + logger.info("Download complete!") + +if __name__ == "__main__": + main() diff --git a/backend/scripts/enrich_censo.py b/backend/scripts/enrich_censo.py new file mode 100644 index 0000000000000000000000000000000000000000..a01bda92b164e28ff649eee5b20baad3055e4c09 --- /dev/null +++ b/backend/scripts/enrich_censo.py @@ -0,0 +1,115 @@ +import csv +import json +import os +import unicodedata + +# Define paths +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +CSV_PATH = os.path.join(BASE_DIR, "data/censo/censo_panama_2023_unificado.csv") +OUTPUT_PATH = os.path.join(BASE_DIR, "data/censo/censo_2023_enriched.csv") +GEOJSON_PATH = os.path.join(BASE_DIR, "data/base/pan_admin3.geojson") + +def normalize_text(text): + if not text: + return "" + text = unicodedata.normalize('NFKD', text).encode('ASCII', 'ignore').decode('ASCII') + return text.lower().strip() + +def process_censo_data(): + print(f"Loading CSV from {CSV_PATH}...") + csv_data = [] + headers = [] + try: + with open(CSV_PATH, mode='r', encoding='utf-8') as f: + reader = csv.DictReader(f) + headers = reader.fieldnames + for row in reader: + csv_data.append(row) + except Exception as e: + print(f"Error loading CSV: {e}") + return + + print(f"Loading GeoJSON from {GEOJSON_PATH}...") + try: + with open(GEOJSON_PATH, 'r') as f: + geojson = json.load(f) + except Exception as e: + print(f"Error loading GeoJSON: {e}") + return + + # Build GeoJSON Lookup Map + geojson_lookup = {} + + def clean_name(name): + return normalize_text(name) + + print("Building GeoJSON lookup table...") + for feature in geojson['features']: + props = feature.get('properties', {}) + p_name = clean_name(props.get('adm1_name')) + d_name = clean_name(props.get('adm2_name')) + c_name = clean_name(props.get('adm3_name')) + + # Store properties keyed by (Prov, Dist, Corr) + geojson_lookup[(p_name, d_name, c_name)] = props + + # Province Mapping Heuristics + PROV_MAPPING = { + "panama oeste": "panama", + "comarca naso tjer di": "bocas del toro" + } + + print("Enriching CSV data...") + matches = 0 + + for row in csv_data: + p_name = clean_name(row.get('nomb_prov')) + d_name = clean_name(row.get('nomb_dist')) + c_name = clean_name(row.get('nomb_corr')) + + search_p_name = PROV_MAPPING.get(p_name, p_name) + + # Strategy 1: Exact Match + key = (search_p_name, d_name, c_name) + found_code = None + + if key in geojson_lookup: + found_code = geojson_lookup[key].get('adm3_pcode') + else: + # Strategy 2: Relaxed District Search + candidates = [k for k in geojson_lookup.keys() if k[0] == search_p_name and k[2] == c_name] + if len(candidates) == 1: + found_code = geojson_lookup[candidates[0]].get('adm3_pcode') + else: + # Strategy 3: Fuzzy startsWith check + prov_keys = [k for k in geojson_lookup.keys() if k[0] == search_p_name] + for k in prov_keys: + geo_c = k[2] + # Check if names are "close enough" (contains or starts with) + if (c_name in geo_c or geo_c in c_name) and len(c_name) > 4: + found_code = geojson_lookup[k].get('adm3_pcode') + break + + # Assign found code or empty string + if found_code: + row['adm3_pcode'] = found_code + matches += 1 + else: + row['adm3_pcode'] = "" + + print(f"Enrichment Complete. Matches: {matches}/{len(csv_data)} ({matches/len(csv_data)*100:.1f}%)") + + # Save Enriched CSV + new_headers = ['adm3_pcode'] + headers + print(f"Saving to {OUTPUT_PATH}...") + try: + with open(OUTPUT_PATH, mode='w', encoding='utf-8', newline='') as f: + writer = csv.DictWriter(f, fieldnames=new_headers) + writer.writeheader() + writer.writerows(csv_data) + print("File saved successfully.") + except Exception as e: + print(f"Error saving CSV: {e}") + +if __name__ == "__main__": + process_censo_data() diff --git a/backend/scripts/extract_overture_features.py b/backend/scripts/extract_overture_features.py new file mode 100644 index 0000000000000000000000000000000000000000..547a651af818be0870d4c503356a7e40ee71e266 --- /dev/null +++ b/backend/scripts/extract_overture_features.py @@ -0,0 +1,134 @@ +#!/usr/bin/env python3 +""" +Extract additional features from existing Overture Maps data +- Hospitals, clinics, pharmacies +- Government offices +- Tourist attractions +- Restaurants, hotels +""" + +import geopandas as gpd +from pathlib import Path +import logging + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" +OVERTURE_DIR = DATA_DIR / "overture" +OUTPUT_DIR = DATA_DIR / "enriched" + +def extract_healthcare(): + """Extract healthcare facilities from Overture places""" + logger.info("Extracting healthcare facilities...") + + places_path = OVERTURE_DIR / "places.geojson" + gdf = gpd.read_file(places_path) + + # Filter for healthcare + healthcare_categories = ['hospital', 'clinic', 'pharmacy', 'doctor', 'dentist', 'health'] + healthcare_gdf = gdf[gdf['category'].str.contains('|'.join(healthcare_categories), case=False, na=False)] + + logger.info(f"Found {len(healthcare_gdf)} healthcare facilities") + + # Save + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + output_path = OUTPUT_DIR / "healthcare_facilities.geojson" + healthcare_gdf.to_file(output_path, driver='GeoJSON') + + return output_path, len(healthcare_gdf) + +def extract_tourism(): + """Extract tourist attractions""" + logger.info("Extracting tourist attractions...") + + places_path = OVERTURE_DIR / "places.geojson" + gdf = gpd.read_file(places_path) + + # Filter for tourism + tourism_categories = ['museum', 'monument', 'attraction', 'park', 'beach', 'viewpoint', 'zoo', 'aquarium'] + tourism_gdf = gdf[gdf['category'].str.contains('|'.join(tourism_categories), case=False, na=False)] + + logger.info(f"Found {len(tourism_gdf)} tourist attractions") + + # Save + output_path = OUTPUT_DIR / "tourist_attractions.geojson" + tourism_gdf.to_file(output_path, driver='GeoJSON') + + return output_path, len(tourism_gdf) + +def extract_accommodation(): + """Extract hotels and accommodation""" + logger.info("Extracting accommodation...") + + places_path = OVERTURE_DIR / "places.geojson" + gdf = gpd.read_file(places_path) + + # Filter for accommodation + accommodation_categories = ['hotel', 'hostel', 'motel', 'resort', 'lodge', 'guest_house'] + accommodation_gdf = gdf[gdf['category'].str.contains('|'.join(accommodation_categories), case=False, na=False)] + + logger.info(f"Found {len(accommodation_gdf)} accommodation facilities") + + # Save + output_path = OUTPUT_DIR / "accommodation.geojson" + accommodation_gdf.to_file(output_path, driver='GeoJSON') + + return output_path, len(accommodation_gdf) + +def extract_restaurants(): + """Extract restaurants and food services""" + logger.info("Extracting restaurants...") + + places_path = OVERTURE_DIR / "places.geojson" + gdf = gpd.read_file(places_path) + + # Filter for restaurants + restaurant_categories = ['restaurant', 'cafe', 'bar', 'fast_food', 'food_court'] + restaurant_gdf = gdf[gdf['category'].str.contains('|'.join(restaurant_categories), case=False, na=False)] + + logger.info(f"Found {len(restaurant_gdf)} restaurants/cafes") + + # Save + output_path = OUTPUT_DIR / "restaurants.geojson" + restaurant_gdf.to_file(output_path, driver='GeoJSON') + + return output_path, len(restaurant_gdf) + +def main(): + logger.info("=== Extracting features from Overture data ===") + + results = [] + + try: + path, count = extract_healthcare() + results.append({"dataset": "healthcare_facilities", "count": count}) + except Exception as e: + logger.error(f"Failed healthcare extraction: {e}") + + try: + path, count = extract_tourism() + results.append({"dataset": "tourist_attractions", "count": count}) + except Exception as e: + logger.error(f"Failed tourism extraction: {e}") + + try: + path, count = extract_accommodation() + results.append({"dataset": "accommodation", "count": count}) + except Exception as e: + logger.error(f"Failed accommodation extraction: {e}") + + try: + path, count = extract_restaurants() + results.append({"dataset": "restaurants", "count": count}) + except Exception as e: + logger.error(f"Failed restaurant extraction: {e}") + + logger.info("\n=== Extraction Summary ===") + for result in results: + logger.info(f" {result['dataset']}: {result['count']} features") + + return results + +if __name__ == "__main__": + main() diff --git a/backend/scripts/ingest_hdx.py b/backend/scripts/ingest_hdx.py new file mode 100644 index 0000000000000000000000000000000000000000..73017a1d7b84ebe36ad27cba749e130170ba88c3 --- /dev/null +++ b/backend/scripts/ingest_hdx.py @@ -0,0 +1,110 @@ +""" +HDX Data Ingestion Script + +Downloads and processes humanitarian datasets from the Humanitarian Data Exchange (HDX) +for Panama, including population, health facilities, and other indicators. +""" + +import httpx +import json +import os +import asyncio +from pathlib import Path + +# HDX API Base URL +HDX_API = "https://data.humdata.org/api/3" + +# Datasets to download (name -> HDX dataset ID) +DATASETS = { + "population_worldpop": "worldpop-population-counts-for-panama", + "admin_boundaries": "cod-ab-pan", + "health_facilities": "panama-healthsites", +} + +DATA_DIR = Path(__file__).parent.parent.parent / "data" +RAW_DIR = DATA_DIR / "raw" / "hdx" +PROCESSED_DIR = DATA_DIR / "processed" + +def ensure_dirs(): + """Create data directories if they don't exist.""" + RAW_DIR.mkdir(parents=True, exist_ok=True) + PROCESSED_DIR.mkdir(parents=True, exist_ok=True) + (PROCESSED_DIR / "demographics").mkdir(exist_ok=True) + (PROCESSED_DIR / "health").mkdir(exist_ok=True) + (PROCESSED_DIR / "infrastructure").mkdir(exist_ok=True) + +async def get_dataset_resources(client: httpx.AsyncClient, dataset_id: str) -> list: + """Get list of downloadable resources for a dataset.""" + try: + response = await client.get(f"{HDX_API}/action/package_show", params={"id": dataset_id}) + response.raise_for_status() + data = response.json() + + if data.get("success"): + return data["result"].get("resources", []) + return [] + except Exception as e: + print(f"Error fetching dataset {dataset_id}: {e}") + return [] + +async def download_resource(client: httpx.AsyncClient, resource: dict, output_dir: Path) -> str: + """Download a single resource file.""" + url = resource.get("url") + name = resource.get("name", "unknown") + format = resource.get("format", "").lower() + + # Skip non-data formats + if format not in ["csv", "json", "geojson", "xlsx", "xls", "zip"]: + return None + + filename = f"{name}.{format}" + filepath = output_dir / filename + + # Skip if already downloaded + if filepath.exists(): + print(f" Skipping (exists): {filename}") + return str(filepath) + + print(f" Downloading: {filename}") + try: + response = await client.get(url, follow_redirects=True) + response.raise_for_status() + + with open(filepath, "wb") as f: + f.write(response.content) + + return str(filepath) + except Exception as e: + print(f" Error downloading {name}: {e}") + return None + +async def ingest_hdx_datasets(): + """Main ingestion function.""" + ensure_dirs() + + print("=" * 60) + print("HDX Data Ingestion for Panama") + print("=" * 60) + + async with httpx.AsyncClient(timeout=60.0) as client: + for name, dataset_id in DATASETS.items(): + print(f"\n📦 Dataset: {name} ({dataset_id})") + + # Create dataset-specific directory + dataset_dir = RAW_DIR / name + dataset_dir.mkdir(exist_ok=True) + + # Get resources + resources = await get_dataset_resources(client, dataset_id) + print(f" Found {len(resources)} resources") + + # Download each resource + for resource in resources: + await download_resource(client, resource, dataset_dir) + + print("\n" + "=" * 60) + print("Ingestion complete!") + print("=" * 60) + +if __name__ == "__main__": + asyncio.run(ingest_hdx_datasets()) diff --git a/backend/scripts/process_worldbank.py b/backend/scripts/process_worldbank.py new file mode 100644 index 0000000000000000000000000000000000000000..fc2270e60cb9e1a2f217a627600e3bf656a79e45 --- /dev/null +++ b/backend/scripts/process_worldbank.py @@ -0,0 +1,150 @@ +#!/usr/bin/env python3 +""" +Process World Bank indicators and create GeoJSON layers +Joins most recent indicator data to Panama administrative boundaries +""" + +import pandas as pd +import geopandas as gpd +from pathlib import Path +import logging +import json + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" +WB_DIR = DATA_DIR / "worldbank" +BASE_DIR = DATA_DIR / "base" +OUTPUT_DIR = DATA_DIR / "socioeconomic" + +def load_admin_boundaries(): + """Load Panama administrative boundaries as GeoDataFrame""" + admin1_path = BASE_DIR / "pan_admin1.geojson" + + if not admin1_path.exists(): + logger.error(f"Admin boundaries not found: {admin1_path}") + return None + + gdf = gpd.read_file(admin1_path) + logger.info(f"Loaded {len(gdf)} provinces") + return gdf + +def process_indicators(): + """Load and process World Bank indicators""" + csv_path = WB_DIR / "panama_indicators.csv" + + if not csv_path.exists(): + logger.error(f"Indicators file not found: {csv_path}") + return None + + df = pd.read_csv(csv_path) + logger.info(f"Loaded {len(df)} indicator records") + + # Get most recent year for each indicator + latest_df = df.loc[df.groupby('indicator_code')['year'].idxmax()] + logger.info(f"Selected most recent data for {len(latest_df)} indicators") + + return latest_df + +def create_national_geojson(indicators_df, admin_gdf): + """Create GeoJSON for national-level indicators""" + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + # Since WB data is national-level, we'll attach it to the country boundary (admin0) + # For now, create a simple point feature at Panama's center with the indicators + + features = [] + + # Create one feature with all latest indicators + properties = { + 'country': 'Panama', + 'data_year': int(indicators_df['year'].max()) + } + + # Add each indicator as a property + for _, row in indicators_df.iterrows(): + # Create clean column name (remove special chars) + col_name = row['indicator_code'].lower().replace('.', '_') + properties[col_name] = row['value'] + properties[f"{col_name}_name"] = row['indicator_name'] + + # Use Panama's approximate center + feature = { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-80.0, 8.5] # Approximate center of Panama + }, + "properties": properties + } + + geojson = { + "type": "FeatureCollection", + "features": [feature] + } + + # Save GeoJSON + output_file = OUTPUT_DIR / "panama_national_indicators.geojson" + with open(output_file, 'w') as f: + json.dump(geojson, f, indent=2) + + logger.info(f"Created national indicators GeoJSON: {output_file}") + logger.info(f" Indicators included: {len(indicators_df)}") + + return output_file + +def update_catalog(geojson_path): + """Add the new dataset to catalog.json""" + catalog_path = DATA_DIR / "catalog.json" + + with open(catalog_path, 'r') as f: + catalog = json.load(f) + + # Add new entry + catalog["panama_national_indicators"] = { + "path": str(geojson_path.relative_to(DATA_DIR)), + "description": "National socio-economic indicators from World Bank (2000-2024)", + "semantic_description": "Comprehensive national-level statistics for Panama including poverty rates, GDP, unemployment, health expenditure, maternal/child mortality, literacy rates, and school enrollment. Data sourced from World Bank Open Data API. Use this dataset for analyzing Panama's socio-economic development trends over time.", + "tags": [ + "socioeconomic", + "worldbank", + "poverty", + "gdp", + "employment", + "health", + "education", + "national", + "panama" + ], + "data_type": "static", + "category": "socioeconomic", + "format": "geojson" + } + + with open(catalog_path, 'w') as f: + json.dump(catalog, f, indent=2) + + logger.info("Updated catalog.json") + +def main(): + logger.info("Processing World Bank indicators...") + + # Load data + admin_gdf = load_admin_boundaries() + indicators_df = process_indicators() + + if admin_gdf is None or indicators_df is None: + logger.error("Failed to load required data") + return + + # Create GeoJSON + geojson_path = create_national_geojson(indicators_df, admin_gdf) + + # Update catalog + update_catalog(geojson_path) + + logger.info("Processing complete!") + +if __name__ == "__main__": + main() diff --git a/backend/scripts/register_global_datasets.py b/backend/scripts/register_global_datasets.py new file mode 100644 index 0000000000000000000000000000000000000000..a6c609e772555baf2dca7845714fe645d8dd1628 --- /dev/null +++ b/backend/scripts/register_global_datasets.py @@ -0,0 +1,51 @@ +#!/usr/bin/env python3 +""" +Register global datasets in catalog +""" + +import json +from pathlib import Path +import logging + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" +CATALOG_PATH = DATA_DIR / "catalog.json" + +def register_airports(): + """Register Panama airports dataset""" + with open(CATALOG_PATH, 'r') as f: + catalog = json.load(f) + + catalog["panama_airports"] = { + "path": "global/airports/panama_airports.geojson", + "description": "Panama airports from OurAirports global database (91 airports)", + "semantic_description": "Comprehensive dataset of all airports in Panama including international, domestic, regional, and small airfields. Contains location, elevation, type (large/medium/small/heliport), runway information, and identifiers (ICAO, IATA codes). Updated daily from OurAirports open database. Use for aviation infrastructure analysis, accessibility studies, and transportation planning.", + "tags": [ + "infrastructure", + "transportation", + "airports", + "aviation", + "panama", + "ourairports" + ], + "data_type": "static", + "category": "infrastructure", + "format": "geojson", + "source": "OurAirports (davidmegginson/ourairports-data)", + "license": "Public Domain" + } + + with open(CATALOG_PATH, 'w') as f: + json.dump(catalog, f, indent=2) + + logger.info("Registered panama_airports in catalog") + +def main(): + logger.info("Registering datasets in catalog...") + register_airports() + logger.info("Complete!") + +if __name__ == "__main__": + main() diff --git a/backend/scripts/stri_catalog_scraper.py b/backend/scripts/stri_catalog_scraper.py new file mode 100644 index 0000000000000000000000000000000000000000..dec1f20b87c8db7f2f113837e9505beca5fc9e64 --- /dev/null +++ b/backend/scripts/stri_catalog_scraper.py @@ -0,0 +1,348 @@ +#!/usr/bin/env python3 +""" +STRI GIS Portal Catalog Scraper + +Discovers and catalogs datasets from the Smithsonian Tropical Research Institute +GIS Portal using the ArcGIS Online API. +""" + +import requests +import json +from pathlib import Path +import logging +from datetime import datetime +from typing import Dict, List, Optional +import re + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +DATA_DIR = Path(__file__).parent.parent / "data" / "stri" +METADATA_DIR = DATA_DIR / "metadata" + +# STRI GIS Portal ArcGIS Online Organization ID +STRI_ORG_ID = "nzS0F0zdNLvs7nc8" +ARCGIS_BASE_URL = "https://www.arcgis.com/sharing/rest" + +# Priority keywords for dataset selection +HIGH_PRIORITY_KEYWORDS = [ + "panama", "national", "country", "forest", "cover", "protected", "areas", + "land use", "biodiversity", "climate", "water", "infrastructure", + "administrative", "boundaries", "poverty", "population" +] + +# Keywords to deprioritize (site-specific, not national) +LOW_PRIORITY_KEYWORDS = [ + "bci", "barro colorado", "island", "pena blanca", "site-specific", + "trail", "sensor", "camera", "plot" +] + +# Temporal dataset patterns (to identify multi-year series) +TEMPORAL_PATTERNS = [ + r"\b(19\d{2}|20\d{2})\b", # Years like 1992, 2021 + r"edition\s+(19\d{2}|20\d{2})", + r"version\s+(19\d{2}|20\d{2})" +] + + +def search_stri_portal(query: str = "panama", num: int = 100, start: int = 1) -> Dict: + """ + Search the STRI GIS Portal using ArcGIS REST API + + Args: + query: Search query string (default: "panama" for Panama-specific datasets) + num: Number of results per page (max 100) + start: Starting position + + Returns: + JSON response with search results + """ + search_url = f"{ARCGIS_BASE_URL}/search" + + # Search for Panama-related datasets within STRI organization + params = { + "q": f'orgid:{STRI_ORG_ID} AND (panama OR panamá)', + "f": "json", + "num": num, + "start": start, + "sortField": "modified", + "sortOrder": "desc" + } + + try: + response = requests.get(search_url, params=params, timeout=30) + response.raise_for_status() + return response.json() + except Exception as e: + logger.error(f"Failed to search portal: {e}") + return {} + + +def get_item_details(item_id: str) -> Optional[Dict]: + """Get detailed metadata for a specific item""" + details_url = f"{ARCGIS_BASE_URL}/content/items/{item_id}" + + params = {"f": "json"} + + try: + response = requests.get(details_url, params=params, timeout=30) + response.raise_for_status() + return response.json() + except Exception as e: + logger.error(f"Failed to get item {item_id}: {e}") + return None + + +def extract_year_from_title(title: str) -> Optional[int]: + """Extract year from dataset title""" + for pattern in TEMPORAL_PATTERNS: + match = re.search(pattern, title, re.IGNORECASE) + if match: + year_str = match.group(1) if match.lastindex else match.group(0) + try: + return int(year_str) + except ValueError: + continue + return None + + +def calculate_priority_score(item: Dict) -> float: + """ + Calculate priority score for a dataset based on: + - National vs site-specific coverage + - Relevance keywords + - Data type (prefer Feature Services) + - Recency + """ + score = 50.0 # Baseline + + title = item.get("title", "").lower() if item.get("title") else "" + description = item.get("description", "").lower() if item.get("description") else "" + tags = " ".join(item.get("tags", [])).lower() if item.get("tags") else "" + item_type = item.get("type", "") + + combined_text = f"{title} {description} {tags}" + + # Boost for high-priority keywords + for keyword in HIGH_PRIORITY_KEYWORDS: + if keyword in combined_text: + score += 5 + + # Penalty for low-priority (site-specific) keywords + for keyword in LOW_PRIORITY_KEYWORDS: + if keyword in combined_text: + score -= 15 + + # Prefer Feature Services (queryable GIS data) + if "Feature Service" in item_type: + score += 20 + elif "Map Service" in item_type: + score += 10 + + # Boost for temporal datasets + if extract_year_from_title(title): + score += 10 + + # Boost for recent updates + modified = item.get("modified", 0) + if modified: + # Convert milliseconds to years since 2020 + years_since_2020 = (modified - 1577836800000) / (365.25 * 24 * 60 * 60 * 1000) + score += min(years_since_2020 * 2, 10) # Max +10 for very recent + + return score + + +def build_rest_endpoint(item: Dict) -> Optional[str]: + """Construct the REST endpoint URL for a Feature Service""" + item_type = item.get("type", "") + + if "Feature Service" not in item_type: + return None + + # Standard ArcGIS REST endpoint pattern + url = item.get("url") + if url and "/FeatureServer" in url: + # Assume layer 0 if not specified + if not url.endswith(("FeatureServer", "FeatureServer/")): + return url + return f"{url.rstrip('/')}/0" + + # Fallback: construct from item ID + item_id = item.get("id") + if item_id: + return f"https://services.arcgis.com/{STRI_ORG_ID}/arcgis/rest/services/{item_id}/FeatureServer/0" + + return None + + +def catalog_datasets(max_datasets: int = 100) -> List[Dict]: + """ + Scrape the STRI portal and build a prioritized catalog + + Args: + max_datasets: Maximum number of datasets to retrieve + + Returns: + List of dataset metadata dictionaries + """ + datasets = [] + start = 1 + batch_size = 100 + + logger.info("Scraping STRI GIS Portal...") + + while len(datasets) < max_datasets: + logger.info(f"Fetching items {start} to {start + batch_size - 1}...") + + results = search_stri_portal(num=batch_size, start=start) + + if not results or "results" not in results: + break + + items = results["results"] + + if not items: + break + + for item in items: + # Focus on Feature Services (queryable geospatial data) + if "Feature Service" not in item.get("type", ""): + continue + + # Calculate priority + priority = calculate_priority_score(item) + + # Extract year if temporal + year = extract_year_from_title(item.get("title", "")) + + # Build REST endpoint + rest_endpoint = build_rest_endpoint(item) + + dataset = { + "id": item.get("id"), + "title": item.get("title"), + "description": item.get("description", ""), + "type": item.get("type"), + "tags": item.get("tags", []), + "modified": item.get("modified"), + "modified_date": datetime.fromtimestamp( + item.get("modified", 0) / 1000 + ).isoformat() if item.get("modified") else None, + "url": item.get("url"), + "rest_endpoint": rest_endpoint, + "year": year, + "priority_score": round(priority, 2) + } + + datasets.append(dataset) + + # Check if there are more results + if start + batch_size > results.get("total", 0): + break + + start += batch_size + + # Sort by priority score + datasets.sort(key=lambda x: x["priority_score"], reverse=True) + + logger.info(f"Found {len(datasets)} Feature Service datasets") + + return datasets[:max_datasets] + + +def identify_temporal_groups(datasets: List[Dict]) -> Dict[str, List[Dict]]: + """ + Group datasets by base name to identify temporal series + + Returns: + Dictionary mapping base name to list of datasets with years + """ + temporal_groups = {} + + for dataset in datasets: + if dataset["year"] is None: + continue + + # Remove year from title to get base name + title = dataset["title"] + base_name = re.sub(r'\b(19\d{2}|20\d{2})\b', '', title) + base_name = re.sub(r'\s+', ' ', base_name).strip() + base_name = re.sub(r'edition|version', '', base_name, flags=re.IGNORECASE).strip() + + if base_name not in temporal_groups: + temporal_groups[base_name] = [] + + temporal_groups[base_name].append(dataset) + + # Filter to groups with multiple years + temporal_groups = { + k: sorted(v, key=lambda x: x["year"]) + for k, v in temporal_groups.items() + if len(v) > 1 + } + + return temporal_groups + + +def save_catalog(datasets: List[Dict], temporal_groups: Dict[str, List[Dict]]): + """Save catalog and temporal groups to JSON files""" + METADATA_DIR.mkdir(parents=True, exist_ok=True) + + # Save main catalog + catalog_path = METADATA_DIR / "stri_catalog.json" + with open(catalog_path, 'w') as f: + json.dump({ + "generated_at": datetime.now().isoformat(), + "total_datasets": len(datasets), + "datasets": datasets + }, f, indent=2) + + logger.info(f"Saved catalog to {catalog_path}") + + # Save temporal groups + if temporal_groups: + temporal_path = METADATA_DIR / "stri_temporal_groups.json" + with open(temporal_path, 'w') as f: + json.dump({ + "generated_at": datetime.now().isoformat(), + "num_groups": len(temporal_groups), + "groups": temporal_groups + }, f, indent=2) + + logger.info(f"Saved {len(temporal_groups)} temporal groups to {temporal_path}") + + +def main(): + """Main execution""" + logger.info("=== STRI GIS Portal Catalog Scraper ===") + + # Catalog datasets + datasets = catalog_datasets(max_datasets=100) + + # Identify temporal groups + temporal_groups = identify_temporal_groups(datasets) + + # Save results + save_catalog(datasets, temporal_groups) + + # Print summary + logger.info("\n" + "="*60) + logger.info(f"✅ Cataloged {len(datasets)} datasets") + logger.info(f"📊 Found {len(temporal_groups)} temporal dataset groups") + + if temporal_groups: + logger.info("\nTemporal Groups:") + for base_name, group in list(temporal_groups.items())[:5]: + years = [d["year"] for d in group] + logger.info(f" - {base_name}: {years}") + + logger.info("\nTop 10 Priority Datasets:") + for i, dataset in enumerate(datasets[:10], 1): + logger.info(f" {i}. [{dataset['priority_score']:.1f}] {dataset['title']}") + + logger.info("="*60) + + +if __name__ == "__main__": + main() diff --git a/backend/scripts/update_embeddings.py b/backend/scripts/update_embeddings.py new file mode 100644 index 0000000000000000000000000000000000000000..595ec3d298c82f9e03657f5d1df4d53f599132d0 --- /dev/null +++ b/backend/scripts/update_embeddings.py @@ -0,0 +1,37 @@ +""" +Update Embeddings for Semantic Search + +Refreshes the embeddings.json index with any new tables in the catalog. +""" + +import sys +import asyncio +import logging +from pathlib import Path + +# Add project root to path +sys.path.append(str(Path(__file__).parent.parent.parent)) + +from backend.core.data_catalog import get_data_catalog +from backend.core.semantic_search import get_semantic_search + +def update_embeddings(): + print("="*60) + # Reload catalog to ensure latest + catalog = get_data_catalog() + catalog.load_catalog() + + search_service = get_semantic_search() + + print(f"Catalog size: {len(catalog.catalog)} tables") + print(f"Existing embeddings: {len(search_service.embeddings)}") + + print("\nGenerating embeddings for new tables...") + new_count = search_service.embed_all_tables(catalog.catalog) + + print(f"\n✅ Embedded {new_count} new tables.") + print(f"Total embedded: {len(search_service.embeddings)}") + +if __name__ == "__main__": + update_embeddings() + diff --git a/backend/scripts/validate_censo.py b/backend/scripts/validate_censo.py new file mode 100644 index 0000000000000000000000000000000000000000..eba6677fc419b3cef51f357d75f5e3a7dec05cf8 --- /dev/null +++ b/backend/scripts/validate_censo.py @@ -0,0 +1,155 @@ +import csv +import json +import os +import unicodedata + +# Define paths +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +CSV_PATH = os.path.join(BASE_DIR, "data/censo/censo_panama_2023_unificado.csv") +GEOJSON_PATH = os.path.join(BASE_DIR, "data/base/pan_admin3.geojson") + +def normalize_text(text): + if not text: + return "" + # Normalize unicode characters to ASCII (remove accents) + text = unicodedata.normalize('NFKD', text).encode('ASCII', 'ignore').decode('ASCII') + return text.lower().strip() + +def validate_censo_integration(): + print(f"Loading CSV from {CSV_PATH}...") + csv_data = [] + try: + with open(CSV_PATH, mode='r', encoding='utf-8') as f: + reader = csv.DictReader(f) + for row in reader: + csv_data.append(row) + except Exception as e: + print(f"Error loading CSV: {e}") + return + + print(f"Loading GeoJSON from {GEOJSON_PATH}...") + try: + with open(GEOJSON_PATH, 'r') as f: + geojson = json.load(f) + except Exception as e: + print(f"Error loading GeoJSON: {e}") + return + + # Build GeoJSON Lookup Map: (norm_prov, norm_dist, norm_corr) -> properties + geojson_lookup = {} + + # Helper to handle common name variations found in Panama data + # (can add more rules as we discover mismatches) + def clean_name(name): + n = normalize_text(name) + # remove "distrito de", "comarca", etc if needed + return n + + print("Building GeoJSON lookup table...") + for feature in geojson['features']: + props = feature.get('properties', {}) + p_name = clean_name(props.get('adm1_name')) + d_name = clean_name(props.get('adm2_name')) + c_name = clean_name(props.get('adm3_name')) + + key = (p_name, d_name, c_name) + if key in geojson_lookup: + print(f"Duplicate key in GeoJSON: {key}") + geojson_lookup[key] = props + + print(f"GeoJSON lookup size: {len(geojson_lookup)}") + + # Heuristics for Province Mapping (New -> Old) + PROV_MAPPING = { + "panama oeste": "panama", + "comarca naso tjer di": "bocas del toro" # Naso was part of Bocas + } + + print("\nValidating CSV via Name Matching with Heuristics...") + + matches = [] + mismatches = [] + + for row in csv_data: + # CSV headers: nomb_prov, nomb_dist, nomb_corr + p_name = clean_name(row.get('nomb_prov')) + d_name = clean_name(row.get('nomb_dist')) + c_name = clean_name(row.get('nomb_corr')) + + # Apply Province Mapping + search_p_name = PROV_MAPPING.get(p_name, p_name) + + # 1. Try Exact Match (with mapped province) + key = (search_p_name, d_name, c_name) + if key in geojson_lookup: + matches.append(row) + row['geo_match_id'] = geojson_lookup[key].get('adm3_pcode') + continue + + # 2. Relaxed District Match: Search in Province + # Find any entry in this province with the same corregimiento name + candidates = [k for k in geojson_lookup.keys() if k[0] == search_p_name and k[2] == c_name] + + if len(candidates) == 1: + # Single match found in another district! + match_key = candidates[0] + matches.append(row) + row['geo_match_id'] = geojson_lookup[match_key].get('adm3_pcode') + # print(f"Relaxed Match: {c_name} (CSV Dist: {d_name}) -> (Geo Dist: {match_key[1]})") + continue + elif len(candidates) > 1: + # Ambiguous (same corregimiento name in multiple districts of same province - rare but possible) + # print(f"Ambiguous: {c_name} found in districts {[k[1] for k in candidates]}") + pass + + # 3. Fuzzy/Typo Fixes (Specific hardcodes for common mismatch types if needed) + # E.g. "El Hato de San Juan de Dios" vs "El Hato de San Juan" + # We can perform a primitive "contains" check + + best_candidate = None + # Get all corregimientos in this province + prov_corrs = [k for k in geojson_lookup.keys() if k[0] == search_p_name] + + for k in prov_corrs: + geo_c = k[2] + # Check if one contains the other + if (c_name in geo_c or geo_c in c_name) and len(c_name) > 4 and len(geo_c) > 4: + # Check if starts matching + if c_name.startswith(geo_c) or geo_c.startswith(c_name): + best_candidate = k + break + + if best_candidate: + matches.append(row) + row['geo_match_id'] = geojson_lookup[best_candidate].get('adm3_pcode') + # print(f"Fuzzy Match: '{c_name}' ~= '{best_candidate[2]}'") + continue + + # No match + mismatches.append(row) + row['lookup_key'] = (search_p_name, d_name, c_name) + + print(f"Total rows in CSV: {len(csv_data)}") + print(f"Matches found: {len(matches)}") + print(f"Mismatches found: {len(mismatches)}") + print(f"Match Rate: {len(matches)/len(csv_data)*100:.1f}%") + + if mismatches: + print("\nMismatch Details (First 20):") + print(f"{'CSV Key (Prov, Dist, Corr)':<60} {'Closest Match?':<20}") + print("-" * 85) + for row in mismatches[:20]: + key = row['lookup_key'] + print(f"{str(key):<60}") + + # Analyze mismatches by Province + print("\nAnalyzing remaining mismatches by Province:") + prov_mismatches = {} + for row in mismatches: + p = row['nomb_prov'] + prov_mismatches[p] = prov_mismatches.get(p, 0) + 1 + for p, count in prov_mismatches.items(): + print(f"{p}: {count}") + +if __name__ == "__main__": + validate_censo_integration() diff --git a/backend/services/data_loader.py b/backend/services/data_loader.py new file mode 100644 index 0000000000000000000000000000000000000000..576d3f263b01fc046ae015e258dfbb5f9182f155 --- /dev/null +++ b/backend/services/data_loader.py @@ -0,0 +1,271 @@ +""" +Data Loader Service for Panama Geographic Data + +Loads GeoJSON files from the data/raw directory and provides +query capabilities for the LLM to search and filter features. +""" + +import os +import json +from typing import List, Dict, Any, Optional +from functools import lru_cache + + +class PanamaDataLoader: + """ + Singleton service to load and query Panama geographic data. + Loads data once on first access and caches in memory. + """ + + _instance = None + _data_loaded = False + + # Data storage + admin0: List[Dict[str, Any]] = [] # Country + admin1: List[Dict[str, Any]] = [] # Provinces (13) + admin2: List[Dict[str, Any]] = [] # Districts (76) + admin3: List[Dict[str, Any]] = [] # Corregimientos (594) + + def __new__(cls): + if cls._instance is None: + cls._instance = super().__new__(cls) + return cls._instance + + def __init__(self): + if not PanamaDataLoader._data_loaded: + self._load_data() + PanamaDataLoader._data_loaded = True + + def _get_data_path(self) -> str: + """Get the path to the data/raw directory.""" + # Navigate from backend/services to project root + current_dir = os.path.dirname(os.path.abspath(__file__)) + project_root = os.path.dirname(os.path.dirname(current_dir)) + return os.path.join(project_root, "data", "raw") + + def _load_geojson(self, filename: str) -> List[Dict[str, Any]]: + """Load a GeoJSON file and return its features.""" + filepath = os.path.join(self._get_data_path(), filename) + + if not os.path.exists(filepath): + print(f"Warning: {filepath} not found") + return [] + + try: + with open(filepath, 'r', encoding='utf-8') as f: + data = json.load(f) + features = data.get('features', []) + print(f" Loaded {len(features)} features from {filename}") + return features + except Exception as e: + print(f"Error loading {filename}: {e}") + return [] + + def _load_data(self): + """Load all GeoJSON data files.""" + print("=" * 50) + print("Loading Panama Geographic Data...") + print("=" * 50) + + self.admin0 = self._load_geojson("pan_admin0.geojson") + self.admin1 = self._load_geojson("pan_admin1.geojson") + self.admin2 = self._load_geojson("pan_admin2.geojson") + self.admin3 = self._load_geojson("pan_admin3.geojson") + + total = len(self.admin0) + len(self.admin1) + len(self.admin2) + len(self.admin3) + print(f"Total features loaded: {total}") + print("=" * 50) + + def get_schema_context(self) -> str: + """Return schema description for LLM context.""" + return """ +Panama Geographic Data (HDX Administrative Boundaries): + +1. admin0 (Country Level) + - adm0_name: "Panamá" + - adm0_pcode: "PA" + - area_sqkm: country area in square kilometers + - geometry: MultiPolygon + +2. admin1 (Provinces - 13 total) + - adm1_name: Province name (e.g., "Bocas del Toro", "Panamá", "Colón") + - adm1_pcode: Province code (e.g., "PA01", "PA08") + - adm0_name: "Panamá" + - area_sqkm: province area + - center_lat, center_lon: centroid coordinates + - geometry: MultiPolygon + +3. admin2 (Districts - 76 total) + - adm2_name: District name + - adm2_pcode: District code (e.g., "PA0101") + - adm1_name: Parent province name + - adm1_pcode: Parent province code + - area_sqkm: district area + - center_lat, center_lon: centroid coordinates + - geometry: MultiPolygon + +4. admin3 (Corregimientos - 594 total) + - adm3_name: Corregimiento name + - adm3_pcode: Corregimiento code (e.g., "PA010101") + - adm2_name: Parent district name + - adm2_pcode: Parent district code + - adm1_name: Parent province name + - area_sqkm: corregimiento area + - center_lat, center_lon: centroid coordinates + - geometry: MultiPolygon + +Notes: +- All geometries use WGS84 (EPSG:4326) coordinate system +- P-codes follow ISO 3166-2 format +- Valid as of 2021-10-20 +""" + + def get_data_citations(self, admin_levels: List[str]) -> List[str]: + """Return citations for the queried data.""" + citations = [] + level_names = { + "admin0": "Panama Country Boundary", + "admin1": "Panama Provinces", + "admin2": "Panama Districts", + "admin3": "Panama Corregimientos" + } + + for level in admin_levels: + if level in level_names: + citations.append(f"{level_names[level]} (HDX COD-AB, 2021)") + + return citations if citations else ["Panama Administrative Boundaries (HDX COD-AB, 2021)"] + + def search_by_name( + self, + name: str, + admin_level: Optional[str] = None, + limit: int = 50 + ) -> List[Dict[str, Any]]: + """ + Search for features by name (case-insensitive partial match). + + Args: + name: Search term + admin_level: Optional filter ("admin1", "admin2", "admin3") + limit: Maximum results to return + """ + name_lower = name.lower() + results = [] + + levels_to_search = [] + if admin_level: + levels_to_search = [(admin_level, getattr(self, admin_level, []))] + else: + levels_to_search = [ + ("admin1", self.admin1), + ("admin2", self.admin2), + ("admin3", self.admin3) + ] + + for level_name, features in levels_to_search: + for feature in features: + props = feature.get("properties", {}) + + # Check various name fields + for key in ["adm1_name", "adm2_name", "adm3_name", "adm0_name"]: + value = props.get(key, "") + if value and name_lower in value.lower(): + results.append({ + "level": level_name, + "feature": feature + }) + break + + if len(results) >= limit: + break + + if len(results) >= limit: + break + + return results + + def get_all_provinces(self) -> List[Dict[str, Any]]: + """Get all provinces (admin1).""" + return self.admin1 + + def get_all_districts(self, province_pcode: Optional[str] = None) -> List[Dict[str, Any]]: + """Get all districts, optionally filtered by province.""" + if province_pcode: + return [ + f for f in self.admin2 + if f.get("properties", {}).get("adm1_pcode") == province_pcode + ] + return self.admin2 + + def get_all_corregimientos( + self, + district_pcode: Optional[str] = None, + province_pcode: Optional[str] = None + ) -> List[Dict[str, Any]]: + """Get all corregimientos, optionally filtered.""" + results = self.admin3 + + if district_pcode: + results = [ + f for f in results + if f.get("properties", {}).get("adm2_pcode") == district_pcode + ] + elif province_pcode: + results = [ + f for f in results + if f.get("properties", {}).get("adm1_pcode") == province_pcode + ] + + return results + + def get_by_pcode(self, pcode: str) -> Optional[Dict[str, Any]]: + """Get a feature by its P-code.""" + pcode_upper = pcode.upper() + + # Determine level by P-code length + if len(pcode_upper) == 2: # Country + for f in self.admin0: + if f.get("properties", {}).get("adm0_pcode") == pcode_upper: + return f + elif len(pcode_upper) == 4: # Province + for f in self.admin1: + if f.get("properties", {}).get("adm1_pcode") == pcode_upper: + return f + elif len(pcode_upper) == 6: # District + for f in self.admin2: + if f.get("properties", {}).get("adm2_pcode") == pcode_upper: + return f + elif len(pcode_upper) == 8: # Corregimiento + for f in self.admin3: + if f.get("properties", {}).get("adm3_pcode") == pcode_upper: + return f + + return None + + def to_geojson(self, features: List[Dict[str, Any]]) -> Dict[str, Any]: + """Convert a list of features to a GeoJSON FeatureCollection.""" + # Handle both raw features and wrapped results from search + clean_features = [] + for f in features: + if "feature" in f: + clean_features.append(f["feature"]) + else: + clean_features.append(f) + + return { + "type": "FeatureCollection", + "features": clean_features + } + + +# Singleton instance +_data_loader: Optional[PanamaDataLoader] = None + + +def get_data_loader() -> PanamaDataLoader: + """Get the singleton data loader instance.""" + global _data_loader + if _data_loader is None: + _data_loader = PanamaDataLoader() + return _data_loader diff --git a/backend/services/executor.py b/backend/services/executor.py new file mode 100644 index 0000000000000000000000000000000000000000..aa30b65fe4de0e04c17a20d2438e3a59d661a95c --- /dev/null +++ b/backend/services/executor.py @@ -0,0 +1,860 @@ +""" +Query Executor Service + +Handles query processing with intent detection, data querying, and response generation. +Uses semantic search for scalable dataset discovery and session-scoped layer storage. +""" + +from backend.core.llm_gateway import LLMGateway +from backend.services.data_loader import get_data_loader +from backend.core.geo_engine import get_geo_engine +from backend.services.response_formatter import ResponseFormatter +from backend.core.session_store import get_session_store +from backend.core.semantic_search import get_semantic_search +from backend.core.data_catalog import get_data_catalog +from backend.core.query_planner import get_query_planner +from typing import List, Dict, Any, Optional +import json +import datetime +import uuid +import logging + +logger = logging.getLogger(__name__) + +# Default session ID for backward compatibility +DEFAULT_SESSION_ID = "default-session" + + +class QueryExecutor: + def __init__(self): + self.llm = LLMGateway() + self.data_loader = get_data_loader() + self.geo_engine = get_geo_engine() + self.session_store = get_session_store() + self.semantic_search = get_semantic_search() + self.catalog = get_data_catalog() + self.query_planner = get_query_planner() + + def _get_schema_context(self) -> str: + """Returns the database schema for the LLM context.""" + return self.data_loader.get_schema_context() + + async def process_query_with_context(self, query: str, history: List[Dict[str, str]]) -> Dict[str, Any]: + """ + Orchestrates the full query processing flow with conversation context. + """ + # 1. Detect intent + intent = await self.llm.detect_intent(query, history) + print(f"[GeoQuery] Detected intent: {intent}") + + # 2. Route based on intent + if intent == "GENERAL_CHAT": + return await self._handle_general_chat(query, history) + elif intent in ["DATA_QUERY", "MAP_REQUEST"]: + # Always include map for data queries - the visual is helpful + return await self._handle_data_query(query, history, include_map=True) + elif intent == "SPATIAL_OP": + return await self._handle_spatial_op(query, history) + elif intent == "STAT_QUERY": + return await self._handle_stat_query(query, history) + else: + return await self._handle_general_chat(query, history) + + async def process_query_stream(self, query: str, history: List[Dict[str, str]]): + """ + Streamable version of process_query_with_context. + Yields: {"event": "status"|"thought"|"chunk"|"result", "data": ...} + """ + + # 1. Intent Detection with Thoughts + yield {"event": "status", "data": json.dumps({"status": "🧠 Understanding intent..."})} + + intent = "GENERAL_CHAT" + intent_buffer = "" + + try: + async for chunk in self.llm.stream_intent(query, history): + if chunk["type"] == "thought": + yield {"event": "chunk", "data": json.dumps({"type": "thought", "content": chunk["text"]})} + elif chunk["type"] == "content": + intent_buffer += chunk["text"] + except Exception as e: + print(f"Intent stream error: {e}") + + intent = intent_buffer.strip().upper() + if not intent: + intent = "GENERAL_CHAT" + + # Clean up intent string + for valid in ["GENERAL_CHAT", "DATA_QUERY", "MAP_REQUEST", "SPATIAL_OP", "STAT_QUERY"]: + if valid in intent: + intent = valid + break + + yield {"event": "intent", "data": json.dumps({"intent": intent})} + print(f"[GeoQuery] Detected intent: {intent}") + + if intent == "GENERAL_CHAT": + async for chunk in self.llm.generate_response_stream(query, history): + # Transform to frontend protocol + if chunk.get("type") == "content": + yield {"event": "chunk", "data": json.dumps({"type": "text", "content": chunk.get("text")})} + elif chunk.get("type") == "thought": + yield {"event": "chunk", "data": json.dumps({"type": "thought", "content": chunk.get("content")})} + + # Send final result to clear loading status + yield {"event": "result", "data": json.dumps({"response": ""})} + return + + # Handle Data/Map/Stat Queries together via a unified stream handler + + if intent in ["DATA_QUERY", "MAP_REQUEST", "STAT_QUERY"]: + include_map = intent != "STAT_QUERY" + session_id = DEFAULT_SESSION_ID # TODO: Get from request context + + # 0. Check query complexity + complexity = self.query_planner.detect_complexity(query) + + if complexity["is_complex"]: + yield {"event": "status", "data": json.dumps({"status": "🔄 Complex query detected, planning steps..."})} + logger.info(f"Complex query detected: {complexity['reason']}") + + # Use multi-step executor + async for event in self._execute_multi_step_query(query, history, include_map, session_id): + yield event + return + + # Simple query - continue with existing flow + # 0. Semantic Discovery (scalable pre-filter) + yield {"event": "status", "data": json.dumps({"status": "📚 Searching data catalog..."})} + + # Use semantic search to find top candidates + candidate_tables = self.semantic_search.search_table_names(query, top_k=15) + + if candidate_tables: + # Get focused summaries for LLM refinement + candidate_summaries = self.catalog.get_summaries_for_tables(candidate_tables) + else: + # Fallback to all summaries (legacy behavior for small catalogs) + candidate_summaries = self.catalog.get_all_table_summaries() + + # 1. LLM refines from candidates + yield {"event": "status", "data": json.dumps({"status": "🔍 Identifying relevant tables..."})} + relevant_tables = await self.llm.identify_relevant_tables(query, candidate_summaries) + + # 2. Lazy Load + if relevant_tables: + yield {"event": "status", "data": json.dumps({"status": f"💾 Loading tables: {', '.join(relevant_tables)}..."})} + + feature_tables = [] + for table in relevant_tables: + if self.geo_engine.ensure_table_loaded(table): + feature_tables.append(table) + + # 3. Schema + table_schema = self.geo_engine.get_table_schemas() + + # 4. Generate SQL (Streaming Thoughts!) + yield {"event": "status", "data": json.dumps({"status": "✍️ Writing SQL query..."})} + + sql_buffer = "" + async for chunk in self.llm.stream_analytical_sql(query, table_schema, history): + if chunk["type"] == "thought": + yield {"event": "chunk", "data": json.dumps({"type": "thought", "content": chunk["text"]})} + elif chunk["type"] == "content": + sql_buffer += chunk["text"] + + sql = sql_buffer.replace("```sql", "").replace("```", "").strip() + + # 5. Check for DATA_UNAVAILABLE error from LLM + if "DATA_UNAVAILABLE" in sql or sql.startswith("-- ERROR"): + yield {"event": "status", "data": json.dumps({"status": "ℹ️ Data not available"})} + + requested = "the requested data" + available = "administrative boundaries (provinces, districts, corregimientos)" + + for line in sql.split("\n"): + if "Requested:" in line: + requested = line.split("Requested:")[-1].strip() + elif "Available:" in line: + available = line.split("Available:")[-1].strip() + + error_response = f"""I couldn't find data for **{requested}** in the current database. + +**Available datasets include:** +- {available} + +If you need additional data, please let me know and I can help you understand what's currently available or suggest alternative queries.""" + + yield { + "event": "result", + "data": json.dumps({ + "response": error_response, + "sql_query": sql, + "geojson": None, + "data_citations": [], + "chart_data": None, + "raw_data": [] + }) + } + return + + # 6. Execute query + yield {"event": "status", "data": json.dumps({"status": "⚡ Executing query..."})} + + geojson = None + features = [] + error_message = None + + try: + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + yield {"event": "status", "data": json.dumps({"status": f"✅ Found {len(features)} results"})} + except Exception as e: + error_message = str(e) + yield {"event": "status", "data": json.dumps({"status": "⚠️ Query error, attempting repair..."})} + try: + sql = await self.llm.correct_sql(query, sql, error_message, str(table_schema)) + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + error_message = None + except Exception as e2: + print(f"Repair failed: {e2}") + + if error_message: + yield { + "event": "result", + "data": json.dumps({ + "response": f"I was unable to process your request because the data query failed. \n\nError details: {error_message}", + "sql_query": sql, + "geojson": None, + "data_citations": [], + "chart_data": None, + "raw_data": [] + }) + } + return + + # 7. Post-process using ResponseFormatter + citations = ResponseFormatter.generate_citations(relevant_tables, features) + + # Chart + chart_data = ResponseFormatter.generate_chart_data(sql, features) + if intent == "STAT_QUERY" and not chart_data and features: + chart_data = ResponseFormatter.generate_chart_data("GROUP BY forced", features) + + # Raw Data + raw_data = ResponseFormatter.prepare_raw_data(features) + + # Map Config + if include_map and features and geojson: + # Generate AI layer name + layer_info = await self.llm.generate_layer_name(query, sql) + layer_name_ai = layer_info.get("name", "Map Layer") + layer_emoji = layer_info.get("emoji", "📍") + point_style = layer_info.get("pointStyle", None) + geojson, layer_id, layer_name = ResponseFormatter.format_geojson_layer(query, geojson, features, layer_name_ai, layer_emoji, point_style) + + try: + table_name = self.geo_engine.register_layer(layer_id, geojson) + self.session_store.add_layer(session_id, { + "id": layer_id, + "name": layer_name, + "table_name": table_name, + "timestamp": datetime.datetime.now().isoformat() + }) + except Exception as e: + logger.warning(f"Failed to register layer: {e}") + + # 8. Explanation (Streaming!) + yield {"event": "status", "data": json.dumps({"status": "💬 Generating explanation..."})} + + data_summary = ResponseFormatter.generate_data_summary(features) + + explanation_buffer = "" + + async for chunk in self.llm.stream_explanation(query, sql, data_summary, history): + if chunk["type"] == "thought": + yield {"event": "chunk", "data": json.dumps({"type": "thought", "content": chunk["text"]})} + elif chunk["type"] == "content": + explanation_buffer += chunk["text"] + yield {"event": "chunk", "data": json.dumps({"type": "text", "content": chunk["text"]})} + + # 9. Final Result Event + yield {"event": "result", "data": json.dumps({ + "response": explanation_buffer, + "sql_query": sql, + "geojson": geojson if include_map and features else None, + "chart_data": chart_data, + "raw_data": raw_data, + "data_citations": citations + })} + + elif intent == "SPATIAL_OP": + yield {"event": "status", "data": json.dumps({"status": "📐 Preparing spatial operation..."})} + session_id = DEFAULT_SESSION_ID # TODO: Get from request context + + # 0. Semantic Discovery for base tables + candidate_tables = self.semantic_search.search_table_names(query, top_k=15) + if candidate_tables: + candidate_summaries = self.catalog.get_summaries_for_tables(candidate_tables) + else: + candidate_summaries = self.catalog.get_all_table_summaries() + + # 1. Identify relevant base tables from query + relevant_tables = await self.llm.identify_relevant_tables(query, candidate_summaries) + + # 2. Lazy load those tables + for table in relevant_tables: + self.geo_engine.ensure_table_loaded(table) + + # 3. Get schema of loaded base tables + base_table_schema = self.geo_engine.get_table_schemas() + + # 4. Prepare Layer Context (user-created layers from session) + session_layers = self.session_store.get_layers(session_id) + layer_context = "User-Created Layers:\n" + if not session_layers: + layer_context += "(No user layers created yet.)\n" + else: + for i, layer in enumerate(session_layers): + layer_context += f"Layer {i+1}: {layer['name']} (Table: {layer['table_name']})\n" + + # 5. Combine both contexts for LLM + full_context = f"{base_table_schema}\n\n{layer_context}" + + # 6. Generate Spatial SQL + yield {"event": "status", "data": json.dumps({"status": "✍️ Writing spatial SQL..."})} + sql = await self.llm.generate_spatial_sql(query, full_context, history) + + # 7. Execute + yield {"event": "status", "data": json.dumps({"status": "⚙️ Processing geometry..."})} + error_message = None + geojson = None + features = [] + + try: + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + yield {"event": "status", "data": json.dumps({"status": f"✅ Result contains {len(features)} features"})} + except Exception as e: + error_message = str(e) + yield {"event": "status", "data": json.dumps({"status": "⚠️ Spatial error, attempting repair..."})} + try: + sql = await self.llm.correct_sql(query, sql, error_message, full_context) + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + error_message = None + except Exception as e2: + yield { + "event": "result", + "data": json.dumps({ + "response": f"I tried to perform the spatial operation but encountered an error: {str(e)}\n\nQuery: {sql}", + "sql_query": sql, + "geojson": None, + "data_citations": [], + "chart_data": None, + "raw_data": [] + }) + } + return + + # 4. Result Processing + if features: + # Generate AI layer name + layer_info = await self.llm.generate_layer_name(query, sql) + layer_name_ai = layer_info.get("name", "Map Layer") + layer_emoji = layer_info.get("emoji", "📍") + point_style = layer_info.get("pointStyle", None) + geojson, layer_id, layer_name = ResponseFormatter.format_geojson_layer(query, geojson, features, layer_name_ai, layer_emoji, point_style) + + try: + table_name = self.geo_engine.register_layer(layer_id, geojson) + self.session_store.add_layer(session_id, { + "id": layer_id, + "name": layer_name, + "table_name": table_name, + "timestamp": datetime.datetime.now().isoformat() + }) + except Exception as e: + logger.warning(f"Failed to register layer: {e}") + + # 5. Explanation + yield {"event": "status", "data": json.dumps({"status": "💬 Explaining results..."})} + data_summary = f"Spatial operation resulted in {len(features)} features." + + explanation_buffer = "" + async for chunk in self.llm.stream_explanation(query, sql, data_summary, history): + if chunk["type"] == "thought": + yield {"event": "chunk", "data": json.dumps({"type": "thought", "content": chunk["text"]})} + elif chunk["type"] == "content": + explanation_buffer += chunk["text"] + yield {"event": "chunk", "data": json.dumps({"type": "text", "content": chunk["text"]})} + + # 6. Final Result + yield {"event": "result", "data": json.dumps({ + "response": explanation_buffer, + "sql_query": sql, + "geojson": geojson, + "chart_data": None, + "raw_data": [], # Spatial ops usually visual + "data_citations": [] + })} + return + + else: + # Fallback + yield {"event": "chunk", "data": json.dumps({"type": "text", "content": "I'm not sure how to handle this query yet."})} + + async def _handle_general_chat(self, query: str, history: List[Dict[str, str]]) -> Dict[str, Any]: + """Handles general conversational queries.""" + # Add schema context to help the LLM answer questions about the data + enhanced_query = f"""The user is asking about Panama geographic data. + +Available data: {len(self.data_loader.admin1)} provinces, {len(self.data_loader.admin2)} districts, {len(self.data_loader.admin3)} corregimientos. + +User question: {query} + +Respond helpfully as GeoQuery, the territorial intelligence assistant.""" + + response = await self.llm.generate_response(enhanced_query, history) + + return { + "response": response, + "sql_query": None, + "geojson": None, + "data_citations": [], + "intent": "GENERAL_CHAT" + } + + async def _handle_data_query(self, query: str, history: List[Dict[str, str]], include_map: bool = True) -> Dict[str, Any]: + """ + Handles data queries using text-to-SQL with SOTA Smart Discovery. + """ + print(f"[GeoQuery] Starting Data Query: {query}") + + # 0. Get Catalog + from backend.core.data_catalog import get_data_catalog + catalog = get_data_catalog() + + # 1. Smart Discovery: Identify relevant tables + summaries = catalog.get_all_table_summaries() + + # Ask LLM which tables are relevant + relevant_tables = await self.llm.identify_relevant_tables(query, summaries) + + # 2. Lazy Loading + feature_tables = [] + for table in relevant_tables: + if self.geo_engine.ensure_table_loaded(table): + feature_tables.append(table) + else: + print(f"[GeoQuery] Warning: Could not load relevant table '{table}'") + + # 3. Get schema context (now includes the newly loaded tables) + table_schema = self.geo_engine.get_table_schemas() + + # Fallback for empty schema + if len(table_schema) < 50: + print("[GeoQuery] GeoEngine schema empty. Fetching from Catalog Metadata.") + fallback_tables = list(set(feature_tables + ["pan_admin1", "pan_admin2", "pan_admin3"])) + table_schema = catalog.get_specific_table_schemas(fallback_tables) + + # 4. Generate real SQL using LLM + print(f"[GeoQuery] Generating SQL with context size: {len(table_schema)} chars") + sql = await self.llm.generate_analytical_sql(query, table_schema, history) + + # Check for SQL generation errors + if sql.startswith("-- Error"): + available_data = ", ".join(feature_tables) if feature_tables else "Administrative Boundaries" + return { + "response": f"I couldn't find the specific data you asked for. I have access to: {available_data}. \n\nOriginal request: {query}", + "sql_query": sql, + "intent": "DATA_QUERY" + } + + # 5. Execute SQL in DuckDB + error_message = None + try: + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + print(f"[GeoQuery] Query returned {len(features)} features") + except Exception as e: + error_message = str(e) + print(f"[GeoQuery] SQL execution error: {error_message}") + + # Self-Correction Loop + try: + sql = await self.llm.correct_sql(query, sql, error_message, str(table_schema)) + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + error_message = None + except Exception as e2: + return { + "response": f"The SQL query failed to execute even after an automatic repair attempt.\nOriginal Error: {error_message}\nRepair Error: {str(e2)}", + "sql_query": sql, + "intent": "DATA_QUERY" + } + + # 6. Post-Process via ResponseFormatter + citations = ResponseFormatter.generate_citations(relevant_tables, features) + data_summary = ResponseFormatter.generate_data_summary(features) + + # 7. Generate explanation + explanation = await self.llm.generate_explanation(query, sql, data_summary, history) + + # 8. Add Layer Metadata to GeoJSON and REGISTER in GeoEngine + if include_map and features: + # Generate AI layer name + layer_info = await self.llm.generate_layer_name(query, sql) + layer_name_ai = layer_info.get("name", "Map Layer") + layer_emoji = layer_info.get("emoji", "📍") + point_style = layer_info.get("pointStyle", None) + geojson, layer_id, layer_name = ResponseFormatter.format_geojson_layer(query, geojson, features, layer_name_ai, layer_emoji, point_style) + + try: + table_name = self.geo_engine.register_layer(layer_id, geojson) + self.session_store.add_layer(DEFAULT_SESSION_ID, { + "id": layer_id, + "name": layer_name, + "table_name": table_name, + "timestamp": datetime.datetime.now().isoformat() + }) + except Exception as e: + logger.warning(f"Failed to register layer in GeoEngine: {e}") + + # 9. Auto-generate Chart + chart_data = ResponseFormatter.generate_chart_data(sql, features) + + # 10. Prepare Raw Data + raw_data = ResponseFormatter.prepare_raw_data(features) + + return { + "response": explanation, + "sql_query": sql, + "geojson": geojson if include_map and features else None, + "data_citations": citations, + "chart_data": chart_data, + "raw_data": raw_data, + "intent": "DATA_QUERY" if not include_map else "MAP_REQUEST" + } + + async def _handle_spatial_op(self, query: str, history: List[Dict[str, str]]) -> Dict[str, Any]: + """Handles spatial operations (Difference, Intersection, etc) using GeoEngine.""" + # 0. Get data catalog for relevant tables + from backend.core.data_catalog import get_data_catalog + catalog = get_data_catalog() + summaries = catalog.get_all_table_summaries() + + # 1. Identify relevant base tables from query + relevant_tables = await self.llm.identify_relevant_tables(query, summaries) + + # 2. Lazy load those tables + for table in relevant_tables: + self.geo_engine.ensure_table_loaded(table) + + # 3. Get schema of loaded base tables + base_table_schema = self.geo_engine.get_table_schemas() + + # 4. Prepare Layer Context (user-created layers from session) + session_layers = self.session_store.get_layers(DEFAULT_SESSION_ID) + layer_context = "User-Created Layers:\n" + if not session_layers: + layer_context += "(No user layers created yet.)\n" + else: + for i, layer in enumerate(session_layers): + layer_context += f"Layer {i+1}: {layer['name']} (Table: {layer['table_name']})\n" + + # 5. Combine both contexts for LLM + full_context = f"{base_table_schema}\n\n{layer_context}" + + # 6. Generate Spatial SQL + sql = await self.llm.generate_spatial_sql(query, full_context, history) + + # 7. Execute + error_message = None + geojson = None + features = [] + + try: + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + except Exception as e: + error_message = str(e) + try: + sql = await self.llm.correct_sql(query, sql, error_message, full_context) + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + error_message = None + except Exception as e2: + return { + "response": f"I tried to perform the spatial operation but encountered an error: {str(e)}\n\nQuery: {sql}", + "sql_query": sql, + "intent": "SPATIAL_OP" + } + + # 4. Result Processing + if features: + # Generate AI layer name + layer_info = await self.llm.generate_layer_name(query, sql) + layer_name_ai = layer_info.get("name", "Map Layer") + layer_emoji = layer_info.get("emoji", "📍") + point_style = layer_info.get("pointStyle", None) + geojson, layer_id, layer_name = ResponseFormatter.format_geojson_layer(query, geojson, features, layer_name_ai, layer_emoji, point_style) + table_name = self.geo_engine.register_layer(layer_id, geojson) + self.session_store.add_layer(DEFAULT_SESSION_ID, { + "id": layer_id, + "name": layer_name, + "table_name": table_name, + "timestamp": datetime.datetime.now().isoformat() + }) + + data_summary = f"Spatial operation resulted in {len(features)} features." + explanation = await self.llm.generate_explanation(query, sql, data_summary, history) + + return { + "response": explanation, + "sql_query": sql, + "geojson": geojson, + "data_citations": [], + "intent": "SPATIAL_OP" + } + + async def _handle_stat_query(self, query: str, history: List[Dict[str, str]]) -> Dict[str, Any]: + """ + Handles statistical queries where charts/tables are more important than maps. + """ + # Reuse data query logic but without map emphasis + result = await self._handle_data_query(query, history, include_map=False) + result["intent"] = "STAT_QUERY" + + # Ensure chart data is present if possible + if not result.get("chart_data") and result.get("raw_data"): + # Force chart attempt + features_mock = [{"properties": d} for d in result["raw_data"]] + result["chart_data"] = ResponseFormatter.generate_chart_data(result.get("sql_query", ""), features_mock) + + return result + + async def _execute_multi_step_query( + self, + query: str, + history: List[Dict[str, str]], + include_map: bool, + session_id: str + ): + """ + Execute a complex query by breaking it into multiple steps. + + Yields streaming events throughout the multi-step process. + """ + import asyncio + + # 1. Get candidate tables for planning + yield {"event": "status", "data": json.dumps({"status": "📚 Discovering relevant datasets..."})} + + candidate_tables = self.semantic_search.search_table_names(query, top_k=20) + if not candidate_tables: + candidate_tables = list(self.catalog.catalog.keys()) + + # 2. Plan the query + yield {"event": "status", "data": json.dumps({"status": "📋 Creating execution plan..."})} + + plan = await self.query_planner.plan_query(query, candidate_tables, self.llm) + + if not plan.is_complex or not plan.steps: + # Fallback to simple execution + yield {"event": "status", "data": json.dumps({"status": "📚 Executing as simple query..."})} + # Re-route to simple path by manually calling the logic + candidate_summaries = self.catalog.get_summaries_for_tables(candidate_tables) + relevant_tables = await self.llm.identify_relevant_tables(query, candidate_summaries) + + for table in relevant_tables: + self.geo_engine.ensure_table_loaded(table) + + table_schema = self.geo_engine.get_table_schemas() + + yield {"event": "status", "data": json.dumps({"status": "✍️ Writing SQL query..."})} + sql = await self.llm.generate_analytical_sql(query, table_schema, history) + sql = sql.replace("```sql", "").replace("```", "").strip() + + try: + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + except Exception as e: + yield {"event": "result", "data": json.dumps({ + "response": f"Query execution failed: {str(e)}", + "sql_query": sql + })} + return + + data_summary = ResponseFormatter.generate_data_summary(features) + explanation = await self.llm.generate_explanation(query, sql, data_summary, history) + + yield {"event": "result", "data": json.dumps({ + "response": explanation, + "sql_query": sql, + "geojson": geojson if include_map and features else None, + "chart_data": ResponseFormatter.generate_chart_data(sql, features), + "raw_data": ResponseFormatter.prepare_raw_data(features), + "data_citations": [] + })} + return + + # 3. Show plan to user + step_descriptions = [f"Step {i+1}: {s.description}" for i, s in enumerate(plan.steps)] + yield {"event": "chunk", "data": json.dumps({ + "type": "thought", + "content": f"Planning multi-step execution:\n" + "\n".join(step_descriptions) + })} + + # 4. Load all needed tables + all_tables = set() + for step in plan.steps: + all_tables.update(step.tables_needed) + + if all_tables: + yield {"event": "status", "data": json.dumps({"status": f"💾 Loading {len(all_tables)} datasets..."})} + for table in all_tables: + self.geo_engine.ensure_table_loaded(table) + + # 5. Execute steps by parallel groups + intermediate_results = {} + all_features = [] + all_sql = [] + + for group_idx, group in enumerate(plan.parallel_groups): + group_steps = [s for s in plan.steps if s.step_id in group] + + yield {"event": "status", "data": json.dumps({ + "status": f"⚡ Executing step group {group_idx + 1}/{len(plan.parallel_groups)}..." + })} + + # Execute steps in this group (could be parallel, but sequential for simplicity) + for step in group_steps: + yield {"event": "status", "data": json.dumps({ + "status": f"🔄 {step.description}..." + })} + + # Generate SQL for this step + table_schema = self.geo_engine.get_table_schemas() + + # Build step-specific prompt + step_query = f"""Execute this step: {step.description} + +Original user request: {query} + +SQL Hint: {step.sql_template or 'None'} + +Previous step results available: {list(intermediate_results.keys())}""" + + sql = await self.llm.generate_analytical_sql(step_query, table_schema, history) + sql = sql.replace("```sql", "").replace("```", "").strip() + + # Skip if LLM returned an error + if "DATA_UNAVAILABLE" in sql or sql.startswith("-- ERROR"): + logger.warning(f"Step {step.step_id} indicated data unavailable") + intermediate_results[step.result_name] = {"features": [], "sql": sql} + continue + + try: + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + + intermediate_results[step.result_name] = { + "features": features, + "sql": sql, + "geojson": geojson + } + all_features.extend(features) + all_sql.append(f"-- {step.description}\n{sql}") + + yield {"event": "status", "data": json.dumps({ + "status": f"✅ Step got {len(features)} results" + })} + + except Exception as e: + logger.error(f"Step {step.step_id} failed: {e}") + # Try to repair + try: + sql = await self.llm.correct_sql(step_query, sql, str(e), table_schema) + geojson = self.geo_engine.execute_spatial_query(sql) + features = geojson.get("features", []) + intermediate_results[step.result_name] = { + "features": features, + "sql": sql, + "geojson": geojson + } + all_features.extend(features) + all_sql.append(f"-- {step.description} (repaired)\n{sql}") + except Exception as e2: + logger.error(f"Step repair also failed: {e2}") + intermediate_results[step.result_name] = {"features": [], "sql": sql, "error": str(e2)} + + # 6. Generate final combined result + yield {"event": "status", "data": json.dumps({"status": "💬 Generating combined analysis..."})} + + # Summarize intermediate results for explanation + result_summary = [] + for name, result in intermediate_results.items(): + features = result.get("features", []) + result_summary.append(f"{name}: {len(features)} records") + + combined_summary = f"""Multi-step query completed with {len(plan.steps)} steps. + +Results: +{chr(10).join(result_summary)} + +Combination logic: {plan.final_combination_logic}""" + + # Get combined explanation + explanation_buffer = "" + async for chunk in self.llm.stream_explanation(query, "\n\n".join(all_sql), combined_summary, history): + if chunk["type"] == "content": + explanation_buffer += chunk["text"] + yield {"event": "chunk", "data": json.dumps({"type": "text", "content": chunk["text"]})} + + # Find the best geojson to display (use the one with most features) + best_geojson = None + best_features = [] + for name, result in intermediate_results.items(): + features = result.get("features", []) + if len(features) > len(best_features): + best_features = features + best_geojson = result.get("geojson") + + # Generate layer if we have features + if include_map and best_features and best_geojson: + layer_info = await self.llm.generate_layer_name(query, all_sql[0] if all_sql else "") + layer_name_ai = layer_info.get("name", "Multi-Step Result") + layer_emoji = layer_info.get("emoji", "📊") + best_geojson, layer_id, layer_name = ResponseFormatter.format_geojson_layer( + query, best_geojson, best_features, layer_name_ai, layer_emoji + ) + + try: + table_name = self.geo_engine.register_layer(layer_id, best_geojson) + self.session_store.add_layer(session_id, { + "id": layer_id, + "name": layer_name, + "table_name": table_name, + "timestamp": datetime.datetime.now().isoformat() + }) + except Exception as e: + logger.warning(f"Failed to register multi-step layer: {e}") + + # Generate chart from combined results + chart_data = ResponseFormatter.generate_chart_data("\n".join(all_sql), best_features) + raw_data = ResponseFormatter.prepare_raw_data(best_features) + + # Final result + yield {"event": "result", "data": json.dumps({ + "response": explanation_buffer, + "sql_query": "\n\n".join(all_sql), + "geojson": best_geojson if include_map and best_features else None, + "chart_data": chart_data, + "raw_data": raw_data, + "data_citations": [], + "multi_step": True, + "steps_executed": len(plan.steps) + })} diff --git a/backend/services/orchestrator.py b/backend/services/orchestrator.py new file mode 100644 index 0000000000000000000000000000000000000000..c85c9cc30f288238d2ccf1eb203523467912294e --- /dev/null +++ b/backend/services/orchestrator.py @@ -0,0 +1,13 @@ +from typing import Dict, Any +from backend.services.executor import QueryExecutor + +class OrchestratorAgent: + def __init__(self): + self.executor = QueryExecutor() + + async def process_query(self, query: str, history: list[Dict[str, str]] = None, model: str = None) -> Dict[str, Any]: + """ + Delegates to QueryExecutor. Model param can be used to configure LLM if needed. + """ + # For now, we rely on the default configured in LLMGateway + return await self.executor.process_query_with_context(query, history or []) diff --git a/backend/services/response_formatter.py b/backend/services/response_formatter.py new file mode 100644 index 0000000000000000000000000000000000000000..2d4f046f37830dd5136073a8b644cd8b270b7f42 --- /dev/null +++ b/backend/services/response_formatter.py @@ -0,0 +1,287 @@ +""" +Response Formatter Service + +Handles formatting of query results into citations, charts, GeoJSON layers, and raw data for the frontend. +Separates presentation logic from execution logic. +""" + +from typing import List, Dict, Any, Optional +import uuid + +class ResponseFormatter: + @staticmethod + def generate_citations(tables: List[str], features: Optional[List[Dict]] = None) -> List[str]: + """Generates readable citations based on table names and returned features.""" + citations = [] + processed = set() + + # Check explicit table list + for table in tables: + table = table.lower() + if table in processed: continue + + if "universit" in table: + citations.append("Universities Data (OpenStreetMap, 2024)") + elif "school" in table or "education" in table: + citations.append("Education Facilities (OpenStreetMap, 2024)") + elif "hospital" in table or "health" in table: + citations.append("Health Facilities (OpenStreetMap, 2024)") + elif "airport" in table: + citations.append("Airports Data (OpenStreetMap, 2024)") + elif "road" in table: + citations.append("Road Network (OpenStreetMap, 2024)") + elif "population" in table or "census" in table: + citations.append("Panama Census Data (INEC, 2023)") + elif "admin" in table or "boundar" in table: + if "Admin Boundaries" not in processed: + citations.append("Panama Administrative Boundaries (HDX COD-AB, 2021)") + processed.add("Admin Boundaries") + continue + + processed.add(table) + + # Fallback check on features if no specific tables cited but admin data returned + if not citations and features: + if any(k.startswith("adm") for k in features[0].get("properties", {}).keys()): + citations.append("Panama Administrative Boundaries (HDX COD-AB, 2021)") + + return list(set(citations)) + + @staticmethod + def generate_chart_data(sql: str, features: List[Dict]) -> Optional[Dict[str, Any]]: + """ + Generates Chart.js compatible data structure if the query looks aggregative. + """ + if not features: + return None + + # Heuristic: If GROUP BY or ORDER BY ... LIMIT is used, likely suitable for charting + # Or if explicitly requested via intent (logic handled in caller, but we check SQL signature here too) + + # Try to find string (label) and number (value) in properties + try: + chart_items = [] + x_key = "name" + y_key = "value" + x_label = "Feature" + y_label = "Value" + + # 1. Analyze properties to find X (Label) and Y (Value) + if features: + sample_props = features[0].get("properties", {}) + + # Exclude system keys + valid_keys = [k for k in sample_props.keys() if k not in ["geom", "geometry", "style", "layer_name", "layer_id", "choropleth", "fillColor", "color"]] + + # Find Y (Value) - First numeric column + for k in valid_keys: + if isinstance(sample_props[k], (int, float)) and not k.endswith("_id") and not k.endswith("_code"): + y_key = k + y_label = k.replace("_", " ").title() + if "sqkm" in k: y_label = "Area (km²)" + elif "pop" in k: y_label = "Population" + elif "count" in k: y_label = "Count" + break + + # Find X (Label) - First string column (excluding IDs if possible) + for k in valid_keys: + if isinstance(sample_props[k], str) and "name" in k: + x_key = k + x_label = k.replace("_", " ").title().replace("Name", "").strip() or "Region" + break + + # 2. Build Data + for f in features: + props = f.get("properties", {}) + label = props.get(x_key) + value = props.get(y_key) + + if label is not None and value is not None: + chart_items.append({"name": str(label), "value": value}) + + if chart_items: + # auto-sort descending + chart_items.sort(key=lambda x: x["value"], reverse=True) + + return { + "type": "bar", + "title": f"{y_label} by {x_label}", + "data": chart_items[:15], # Limit to top 15 for readability + "xKey": "name", + "yKey": "value", + "xAxisLabel": x_label, + "yAxisLabel": y_label + } + except Exception as e: + print(f"Error generating chart data: {e}") + return None + + return None + + @staticmethod + def prepare_raw_data(features: List[Dict]) -> List[Dict]: + """Cleans feature properties for display in the raw data table.""" + raw_data = [] + if not features: + return raw_data + + for f in features: + props = f.get("properties", {}).copy() + # Serialize + props = ResponseFormatter._serialize_properties(props) + + # Remove system/visual properties + for key in ["geom", "geometry", "style", "layer_name", "layer_id", "choropleth", "fillColor", "color"]: + props.pop(key, None) + raw_data.append(props) + + return raw_data + + @staticmethod + def format_geojson_layer(query: str, geojson: Dict[str, Any], features: List[Dict], layer_name: str, layer_emoji: str = "📍", point_style: Optional[str] = None, admin_levels: Optional[List[str]] = None) -> tuple[Dict[str, Any], str, str]: + """ + styles the GeoJSON layer and generates metadata (ID, Name, Choropleth). + + Args: + point_style: "icon" for emoji markers, "circle" for simple colored circles, None for auto-detect + """ + + # 0. Serialize properties to avoid datetime errors + if features: + for f in features: + if "properties" in f: + f["properties"] = ResponseFormatter._serialize_properties(f["properties"]) + + # 2. Random/Distinct Colors + # Palette of distinct colors (avoiding pure blue which is default) + palette = [ + "#E63946", # Red + "#F4A261", # Orange + "#2A9D8F", # Teal + "#E9C46A", # Yellow + "#9C6644", # Brown + "#D62828", # Dark Red + "#8338EC", # Purple + "#3A86FF", # Blue-ish (but distinct) + "#FB5607", # Orange-Red + "#FF006E", # Pink + ] + + # Deterministic color based on query hash to keep it stable for same query + color_idx = abs(hash(query)) % len(palette) + layer_color = palette[color_idx] + + # Choropleth Logic + # 1. Identify valid numeric column + choropleth_col = None + if features: + sample = features[0].get("properties", {}) + valid_numerics = [ + k for k, v in sample.items() + if isinstance(v, (int, float)) + and k not in ["layer_id", "style"] + and not k.endswith("_code") + and not k.endswith("_id") + ] + + # Prioritize 'population', 'area', 'count' + priority_cols = ["population", "pop", "count", "num", "density", "area_sqkm", "area"] + + for p in priority_cols: + matches = [c for c in valid_numerics if p in c] + if matches: + choropleth_col = matches[0] + break + + # Fallback to first numeric + if not choropleth_col and valid_numerics: + choropleth_col = valid_numerics[0] + + # 2. Enable if appropriate + if choropleth_col: + # Check if values actually vary + values = [f["properties"].get(choropleth_col, 0) for f in features] + if len(set(values)) > 1: + geojson["properties"]["choropleth"] = { + "enabled": True, + "palette": "viridis", + "column": choropleth_col, + "scale": "log" if "pop" in choropleth_col or "density" in choropleth_col else "linear" + } + else: + # Apply random color if NOT a choropleth + geojson["properties"]["style"] = { + "color": layer_color, + "fillColor": layer_color, + "opacity": 0.8, + "fillOpacity": 0.4 + } + + layer_id = str(uuid.uuid4())[:8] + geojson["properties"]["layer_name"] = layer_name + geojson["properties"]["layer_id"] = layer_id + + # Add Point Marker Configuration + # Use pointStyle to determine whether to show icon or circle + marker_icon = None + marker_style = "circle" # default + + if point_style == "icon": + # Use emoji icon for categorical POI + marker_icon = layer_emoji + marker_style = "icon" + elif point_style == "circle": + # Use simple circle for large datasets or density viz + marker_icon = None + marker_style = "circle" + else: + # Auto-detect: default to icon for now (backward compatibility) + marker_icon = layer_emoji + marker_style = "icon" + + geojson["properties"]["pointMarker"] = { + "icon": marker_icon, + "style": marker_style, + "color": layer_color, + "size": 32 + } + + return geojson, layer_id, layer_name + + @staticmethod + def generate_data_summary(features: List[Dict]) -> str: + """Generates a text summary of the features for the LLM explanation context.""" + if features: + sample_names = [] + for f in features[:5]: + props = f.get("properties", {}) + name = props.get("adm3_name") or props.get("adm2_name") or props.get("adm1_name") or props.get("name") or "Feature" + area = props.get("area_sqkm") + if area: + sample_names.append(f"{name} ({float(area):.1f} km²)") + else: + sample_names.append(name) + return f"Found {len(features)} features. Sample: {', '.join(sample_names)}" + return f"Found {len(features)} features. Sample: {', '.join(sample_names)}" + else: + return "No features found matching the query." + + @staticmethod + def _serialize_properties(properties: Dict[str, Any]) -> Dict[str, Any]: + """Recursively converts datetime/date objects to strings for JSON serialization.""" + from datetime import datetime, date + + serialized = {} + for k, v in properties.items(): + if isinstance(v, (datetime, date)): + serialized[k] = v.isoformat() + elif isinstance(v, dict): + serialized[k] = ResponseFormatter._serialize_properties(v) + elif isinstance(v, list): + serialized[k] = [ + x.isoformat() if isinstance(x, (datetime, date)) else x + for x in v + ] + else: + serialized[k] = v + return serialized diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000000000000000000000000000000000000..3d12cee70eb25fbcbcf4cb45900bcb89d19f5040 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +version: '3.8' + +services: + app: + build: . + image: geoquery:latest + ports: + - "8000:8000" + environment: + - GEMINI_API_KEY=${GEMINI_API_KEY} + volumes: + # Optional: Mount data directory if you want to persist changes or add data + # - ./backend/data:/app/backend/data + - ./backend/data/custom:/app/backend/data/custom diff --git a/docs/DATA_FLOW.md b/docs/DATA_FLOW.md new file mode 100644 index 0000000000000000000000000000000000000000..6cadfc46c7634c64b8d2ebb2d6f36f047d2759b0 --- /dev/null +++ b/docs/DATA_FLOW.md @@ -0,0 +1,559 @@ +# Data Flow: End-to-End Request Processing + +This document provides a detailed walkthrough of how a user query flows through the GeoQuery system from input to visualization. + +--- + +## Overview + +``` +User Query → Intent Detection → Semantic Search → SQL Generation → +Query Execution → Result Formatting → Explanation → Map Rendering +``` + +**Timeline**: 2-8 seconds for typical queries + +--- + +## Step-by-Step Walkthrough + +### Example Query + +**User Input**: *"Show me hospitals in Panama City"* + +--- + +### Step 1: Frontend - User Submits Query + +**Component**: `ChatPanel.tsx` + +```typescript +const handleSubmit = async (message: string) => { + // Add user message to chat + setMessages(prev => [...prev, { role: 'user', content: message }]); + + // Send to backend via SSE + const response = await fetch('http://localhost:8000/api/chat', { + method: 'POST', + headers: {'Content-Type': 'application/json'}, + body: JSON.stringify({ message, history }) + }); + + // Start streaming response + const reader = response.body.getReader(); + ... +}; +``` + +**Request Payload**: +```json +{ + "message": "Show me hospitals in Panama City", + "history": [] +} +``` + +--- + +### Step 2: Backend - API Endpoint Receives Request + +**File**: `backend/api/endpoints/chat.py` + +```python +@router.post("/chat") +async def chat(request: ChatRequest): + # Initialize executor + executor = QueryExecutor() + + # Process query with streaming + async for event in executor.process_query_stream( + request.message, + request.history + ): + yield sse_format(event) +``` + +**Action**: Routes to `QueryExecutor.process_query_stream()` + +--- + +### Step 3: Intent Detection + +**Service**: `LLMGateway.detect_intent()` +**File**: `backend/core/llm_gateway.py` + +**LLM Prompt**: +``` +Analyze this user query and determine the best output type. + +User Query: "Show me hospitals in Panama City" + +THINK STEP BY STEP: +1. What is the user asking for? +2. Does this require geographic visualization (map)? +... + +Respond with ONLY ONE of these exact words: +- GENERAL_CHAT +- DATA_QUERY +- MAP_REQUEST +- SPATIAL_OP +- STAT_QUERY +``` + +**Gemini Response**: +``` +Thinking: The user wants to SEE hospitals on a map, explicitly asks to "show" +Response: MAP_REQUEST +``` + +**Streaming to Frontend**: +```json +{ + "event": "intent", + "data": {"intent": "MAP_REQUEST"} +} +``` + +**Frontend**: Displays intent badge in chat + +--- + +### Step 4: Semantic Discovery + +**Service**: `SemanticSearch.search_table_names()` +**File**: `backend/core/semantic_search.py` + +**Process**: +1. Convert query to embedding vector (384 dimensions) + ```python + query_embedding = model.encode("Show me hospitals in Panama City") + ``` + +2. Calculate cosine similarity with all dataset embeddings + ```python + similarities = cosine_similarity(query_embedding, catalog_embeddings) + ``` + +3. Return top-k matches + ```python + top_k_indices = np.argsort(similarities)[-15:][::-1] + ``` + +**Result**: +```python +[ + "panama_healthsites_geojson", # similarity: 0.89 + "osm_amenities", # similarity: 0.76 + "panama_hospitals", # similarity: 0.74 + "osm_healthcare", # similarity: 0.71 + ... +] +``` + +**Streaming to Frontend**: +```json +{ + "event": "status", + "data": {"status": "📚 Searching data catalog..."} +} +``` + +**Performance**: <10ms for 100+ datasets + +--- + +### Step 5: Table Schema Retrieval + +**Service**: `GeoEngine.ensure_table_loaded()` +**File**: `backend/core/geo_engine.py` + +**Process**: +1. Check if table already loaded in DuckDB + ```python + if "panama_healthsites_geojson" not in self.loaded_tables: + ``` + +2. Load GeoJSON file + ```python + gdf = gpd.read_file("backend/data/osm/healthsites.geojson") + ``` + +3. Register in DuckDB + ```python + conn.register("panama_healthsites_geojson", gdf) + self.loaded_tables["panama_healthsites_geojson"] = gdf + ``` + +**Schema Retrieved**: +``` +Table: panama_healthsites_geojson +Columns: osm_id, name, amenity, operator, addr:city, geom +Row count: 986 +Geometry type: Point +``` + +**Streaming to Frontend**: +```json +{ + "event": "status", + "data": {"status": "💾 Loading tables: panama_healthsites_geojson..."} +} +``` + +--- + +### Step 6: SQL Generation + +**Service**: `LLMGateway.generate_analytical_sql()` +**File**: `backend/core/llm_gateway.py` + +**Prompt to Gemini**: +``` +You are a DuckDB SQL expert. Generate a valid DuckDB SQL query. + +Table: panama_healthsites_geojson +Columns: osm_id, name, amenity, operator, addr:city, geom +Row count: 986 + +User Request: "Show me hospitals in Panama City" + +Rules: +1. Return ONLY the SQL query +2. ALWAYS include 'geom' for map visualization +3. Use ILIKE for case-insensitive matching +4. Use ST_Intersects for spatial filtering +... + +Generate SQL: +``` + +**Gemini Thinking** (streamed): +``` +"I need to: +1. Filter for amenity='hospital' +2. Filter for Panama City (district name is 'Panamá') +3. Use spatial intersection with admin boundaries +4. Include geometry for map rendering" +``` + +**Gemini Response**: +```sql +SELECT + name, + amenity, + operator, + geom +FROM panama_healthsites_geojson +WHERE amenity = 'hospital' + AND ST_Intersects( + geom, + (SELECT geom FROM pan_admin2 WHERE adm2_name = 'Panamá') + ) +``` + +**Streaming to Frontend**: +```json +{ + "event": "chunk", + "data": {"type": "thought", "content": "I need to filter for hospitals..."} +} +``` + +**Performance**: ~1 second for SQL generation + +--- + +### Step 7: Query Execution + +**Service**: `GeoEngine.execute_spatial_query()` +**File**: `backend/core/geo_engine.py` + +**Execution**: +```python +try: + result = conn.execute(sql).fetchdf() + geojson = json.loads(result.to_json()) +except Exception as e: + # Try SQL correction + corrected_sql = await llm.correct_sql(query, sql, str(e), schema) + result = conn.execute(corrected_sql).fetchdf() +``` + +**Result**: +```python +# GeoDataFrame with 45 rows + name amenity operator geom +0 Hospital Santo Tomás hospital MINSA POINT(...) +1 Hospital del Niño hospital CSS POINT(...) +... +``` + +**Convert to GeoJSON**: +```json +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-79.5, 8.98]}, + "properties": {"name": "Hospital Santo Tomás", "amenity": "hospital"} + }, + ... + ] +} +``` + +**Streaming to Frontend**: +```json +{ + "event": "status", + "data": {"status": "✅ Found 45 results"} +} +``` + +**Performance**: 100ms - 2s depending on data size + +--- + +### Step 8: Result Formatting + +**Service**: `ResponseFormatter.format_geojson_layer()` +**File**: `backend/services/response_formatter.py` + +**Layer Name Generation**: +```python +layer_info = await llm.generate_layer_name(query, sql) +# Returns: {"name": "Hospitals in Panama City", "emoji": "🏥", "pointStyle": "icon"} +``` + +**GeoJSON Enhancement**: +```python +geojson["properties"] = { + "layer_id": "abc123", + "layer_name": "Hospitals in Panama City", + "style": { + "color": "#E63946", + "fillColor": "#E63946", + "opacity": 0.8, + "fillOpacity": 0.4 + }, + "pointMarker": { + "icon": "🏥", + "style": "icon", + "color": "#E63946", + "size": 32 + }, + "choropleth": {"enabled": false} +} +``` + +**Auto-Detection**: +- Detects geometry type (Point) +- Checks for numeric columns (none meaningful) +- Configures point marker style based on `pointStyle: "icon"` + +--- + +### Step 9: Explanation Generation + +**Service**: `LLMGateway.stream_explanation()` +**File**: `backend/core/llm_gateway.py` + +**Prompt to Gemini**: +``` +Explain the results of this data query to the user. + +User Question: "Show me hospitals in Panama City" +SQL Query: SELECT name, amenity, geom FROM ... WHERE amenity='hospital'... +Data Result Summary: Found 45 features (Points) + +Instructions: +1. Keep response concise +2. Only describe ACTUAL data returned +3. Cite data source +4. Speak as GeoQuery +``` + +**Gemini Response** (streamed): +``` +"I have located 45 hospitals within Panama City district. + +The map displays each hospital as a 🏥 icon. You can click on any +marker to see details including the hospital name and operator. + +**Key facilities include**: +- Hospital Santo Tomás (MINSA) +- Hospital del Niño (CSS) +- Hospital Punta Pacifica (Private) + +Source: Healthcare facility data from OpenStreetMap via Healthsites.io" +``` + +**Streaming to Frontend**: +```json +{ + "event": "chunk", + "data": {"type": "text", "content": "I have located 45 hospitals..."} +} +``` + +**Performance**: ~1-2 seconds for explanation + +--- + +### Step 10: Final Result Event + +**Event Sent**: +```json +{ + "event": "result", + "data": { + "response": "I have located 45 hospitals within Panama City...", + "sql_query": "SELECT name, amenity, geom FROM ...", + "geojson": { /* GeoJSON with 45 features */ }, + "chart_data": null, + "raw_data": [ /* 45 rows of data */ ], + "data_citations": [ + "Healthcare facility data from OpenStreetMap via Healthsites.io" + ] + } +} +``` + +--- + +### Step 11: Frontend - Map Rendering + +**Component**: `MapViewer.tsx` + +**Process**: +1. Receive GeoJSON from result event +2. Create new MapLayer + ```typescript + const newLayer: MapLayer = { + id: geojson.properties.layer_id, + name: geojson.properties.layer_name, + data: geojson, + visible: true, + style: geojson.properties.style, + pointMarker: geojson.properties.pointMarker + }; + ``` + +3. Render with Leaflet + ```typescript + { + if (layer.pointMarker?.style === "icon") { + return L.marker(latlng, { + icon: L.divIcon({ + html: `
${layer.pointMarker.icon}
` + }) + }); + } + }} + /> + ``` + +4. Auto-fit bounds to show all hospitals +5. Display layer in legend panel + +**Result**: Interactive map with 45 hospital markers (🏥 icons) + +--- + +## Performance Breakdown + +| Step | Service | Time | Async | +|------|---------|------|-------| +| 1. Frontend Submit | - | <10ms | - | +| 2. API Routing | FastAPI | <5ms | - | +| 3. Intent Detection | Gemini | ~500ms | ✓ | +| 4. Semantic Search | SentenceTransformer | <10ms | ✓ | +| 5. Schema Loading | DuckDB | 50-200ms | - | +| 6. SQL Generation | Gemini | ~1s | ✓ Streamed | +| 7. Query Execution | DuckDB | 100ms-2s | - | +| 8. Formatting | Python | 10-50ms | - | +| 9. Explanation | Gemini | ~1s | ✓ Streamed | +| 10. Frontend Render | Leaflet | 50-200ms | - | + +**Total**: 2-5 seconds (perception: faster due to streaming) + +--- + +## Error Handling Flow + +### SQL Execution Failure + +``` +SQL Error → Extract Error Message → Send to LLM → Generate Corrected SQL → +Retry Execution → If Still Fails → Return Error to User +``` + +**Example**: +```python +try: + result = execute_query(sql) +except Exception as e: + # Error: column "hospitals" does not exist + corrected_sql = await llm.correct_sql(query, sql, str(e), schema) + # LLM fixes: hospitals → panama_healthsites_geojson + result = execute_query(corrected_sql) +``` + +### Data Unavailable + +``` +LLM Realizes Data Missing → Returns Special Marker → +System Detects Marker → Returns Helpful Error Message +``` + +**Example**: +```sql +-- ERROR: DATA_UNAVAILABLE +-- Requested: crime statistics +-- Available: admin boundaries, hospitals, schools +``` + +--- + +## Streaming Architecture + +**Benefits of SSE (Server-Sent Events)**: +1. **Progressive Disclosure**: User sees thinking process +2. **Faster Perceived Performance**: Content streams in +3. **Transparency**: Shows "why" behind answers +4. **Simple Protocol**: HTTP-based, works everywhere + +**Event Types**: +- `status`: Processing updates ("🔍 Searching...", "⚡ Executing...") +- `intent`: Detected intent category +- `chunk`: Streamed content (thought or text) +- `result`: Final payload with all data + +--- + +## Complex Query Flow + +For queries requiring multiple steps (e.g., "Compare hospital density with school density by province"): + +1. **Complexity Detection**: QueryPlanner identifies multi-dataset query +2. **Step Decomposition**: Break into atomic steps + - Step 1: Count hospitals per province + - Step 2: Count schools per province + - Step 3: Calculate ratios +3. **Parallel Execution**: Execute independent steps concurrently +4. **Result Combination**: Merge results for final answer +5. **Unified Explanation**: LLM explains combined analysis + +See `backend/core/query_planner.py` for implementation. + +--- + +## Next Steps + +- **Backend Services**: [backend/CORE_SERVICES.md](backend/CORE_SERVICES.md) +- **API Reference**: [backend/API_ENDPOINTS.md](backend/API_ENDPOINTS.md) +- **Frontend Components**: [frontend/COMPONENTS.md](frontend/COMPONENTS.md) diff --git a/docs/INDEX.md b/docs/INDEX.md new file mode 100644 index 0000000000000000000000000000000000000000..e8590f6f6b9032915d698e8f2ee14ad65f211128 --- /dev/null +++ b/docs/INDEX.md @@ -0,0 +1,122 @@ +# GeoQuery Documentation Index + +Welcome to the GeoQuery technical documentation. + +--- + +## 🚀 Getting Started + +New to GeoQuery? Start here: + +1. **[README.md](../README.md)** - Project overview and quick start +2. **[SETUP.md](../SETUP.md)** - Development environment setup +3. **[ARCHITECTURE.md](../ARCHITECTURE.md)** - System architecture and design + +--- + +## 📚 Available Documentation + +### System Overview +- **[ARCHITECTURE.md](../ARCHITECTURE.md)** - High-level system design, components, and data flow +- **[DATA_FLOW.md](DATA_FLOW.md)** - End-to-end request processing walkthrough +- **[SETUP.md](../SETUP.md)** - Local development setup and troubleshooting + +### Backend +- **[Core Services](backend/CORE_SERVICES.md)** - LLMGateway, GeoEngine, DataCatalog, QueryExecutor, and all backend services +- **[API Endpoints](backend/API_ENDPOINTS.md)** - REST API reference with SSE streaming +- **[LLM Integration](backend/LLM_INTEGRATION.md)** - Prompt engineering and Gemini API integration +- **[Data Ingestion Scripts](backend/SCRIPTS.md)** - Scripts for downloading and processing datasets + +### Frontend +- **[Component Architecture](frontend/COMPONENTS.md)** - React components (ChatPanel, MapViewer, DataExplorer) + +### Data +- **[Dataset Sources](data/DATASET_SOURCES.md)** - Complete dataset catalog with sources and licenses + +--- + +## 🎯 Common Tasks + +### "I want to add a new dataset" +1. Download or create GeoJSON file +2. Place in `backend/data/` subdirectory +3. Add entry to `backend/data/catalog.json` +4. Regenerate embeddings: `rm backend/data/embeddings.npy && python -c "from backend.core.semantic_search import get_semantic_search; get_semantic_search()"` +5. See [backend/SCRIPTS.md](backend/SCRIPTS.md) for detailed guide + +### "I want to understand how queries work" +1. Read [DATA_FLOW.md](DATA_FLOW.md) - Step-by-step walkthrough from user query to map rendering +2. Read [backend/CORE_SERVICES.md](backend/CORE_SERVICES.md) - Service interactions and methods +3. Read [backend/LLM_INTEGRATION.md](backend/LLM_INTEGRATION.md) - Prompt system and LLM calls + +### "I want to modify the frontend" +1. Read [frontend/COMPONENTS.md](frontend/COMPONENTS.md) - Component structure and state management +2. Check component files in `frontend/src/components/` for implementation details +3. See [backend/API_ENDPOINTS.md](backend/API_ENDPOINTS.md) for backend integration + +### "I want to extend the LLM capabilities" +1. Read [backend/LLM_INTEGRATION.md](backend/LLM_INTEGRATION.md) - Prompt engineering guide +2. Edit prompts in `backend/core/prompts.py` +3. Add new methods to `backend/core/llm_gateway.py` if needed + +--- + +## 📋 Quick Reference + +### File Structure +``` +GeoQuery/ +├── README.md # Project overview +├── ARCHITECTURE.md # System design +├── SETUP.md # Dev setup +├── docs/ +│ ├── INDEX.md # This file +│ ├── DATA_FLOW.md # Request pipeline +│ ├── backend/ # Backend docs +│ │ ├── CORE_SERVICES.md +│ │ ├── API_ENDPOINTS.md +│ │ ├── LLM_INTEGRATION.md +│ │ └── SCRIPTS.md +│ ├── frontend/ # Frontend docs +│ │ └── COMPONENTS.md +│ └── data/ # Data docs +│ └── DATASET_SOURCES.md +├── backend/ # Python backend +│ ├── api/ # FastAPI endpoints +│ ├── core/ # Core services +│ ├── services/ # Business logic +│ ├── data/ # GeoJSON datasets + catalog.json +│ └── scripts/ # Data ingestion +└── frontend/ # Next.js frontend + └── src/ + ├── app/ # Next.js pages + └── components/ # React components +``` + +### Key Concepts + +- **Intent Detection**: Classifying user queries (MAP_REQUEST, SPATIAL_OP, etc.) +- **Semantic Search**: Finding relevant datasets via vector embeddings +- **Text-to-SQL**: Generating DuckDB queries from natural language +- **Lazy Loading**: Loading GeoJSON tables on-demand +- **SSE Streaming**: Real-time response streaming to frontend +- **Choropleth**: Auto-generated color gradients for polygons +- **Point Styles**: Icon markers (🏥) vs circle points (⭕) + +### External Links + +- **DuckDB Spatial**: https://duckdb.org/docs/extensions/spatial +- **Gemini API**: https://ai.google.dev/ +- **Leaflet Docs**: https://leafletjs.com/reference.html +- **Next.js Docs**: https://nextjs.org/docs +- **FastAPI Docs**: https://fastapi.tiangolo.com/ + +--- + +## 📄 License + +This project is licensed under the MIT License - see **[LICENSE](../LICENSE)** for details. + +--- + +**Last Updated**: 2026-01-10 diff --git a/docs/backend/API_ENDPOINTS.md b/docs/backend/API_ENDPOINTS.md new file mode 100644 index 0000000000000000000000000000000000000000..b77b0525f3a9cc739b34855052ae272da6fca223 --- /dev/null +++ b/docs/backend/API_ENDPOINTS.md @@ -0,0 +1,445 @@ +# API Endpoints Reference + +Complete reference for GeoQuery's FastAPI endpoints. + +--- + +## Base URL + +**Development**: `http://localhost:8000` +**Production**: Configure via environment + +--- + +## Endpoints + +### 1. Chat Query (SSE Streaming) + +Main endpoint for natural language queries with streaming responses. + +```http +POST /api/chat +Content-Type: application/json +``` + +**Request Body**: +```json +{ + "message": "Show me hospitals in Panama City", + "history": [ + {"role": "user", "content": "previous query"}, + {"role": "assistant", "content": "previous response"} + ] +} +``` + +**Response**: Server-Sent Events (SSE) stream + +**Event Types**: + +1. **`status`** - Processing status updates + ```json + {"status": "🔍 Identifying relevant tables..."} + ``` + +2. **`intent`** - Detected query intent + ```json + {"intent": "MAP_REQUEST"} + ``` + +3. **`chunk`** - Streaming content (text or thought) + ```json + {"type": "thought", "content": "Planning spatial query..."} + {"type": "text", "content": "I found 45 hospitals..."} + ``` + +4. **`result`** - Final result with data + ```json + { + "response": "Full explanation text", + "sql_query": "SELECT name, geom FROM ...", + "geojson": {...}, + "chart_data": {...}, + "raw_data": [...], + "data_citations": [...] + } + ``` + +**curl Example**: +```bash +curl -X POST http://localhost:8000/api/chat \ + -H "Content-Type: application/json" \ + -d '{"message": "Show me provinces", "history": []}' \ + --no-buffer +``` + +**JavaScript Example**: +```javascript +const response = await fetch('http://localhost:8000/api/chat', { + method: 'POST', + headers: {'Content-Type': 'application/json'}, + body: JSON.stringify({ + message: "Show me hospitals", + history: [] + }) +}); + +const reader = response.body.getReader(); +const decoder = new TextDecoder(); + +while (true) { + const {value, done} = await reader.read(); + if (done) break; + + const chunk = decoder.decode(value); + const lines = chunk.split('\n'); + + for (const line of lines) { + if (line.startsWith('data: ')) { + const data = JSON.parse(line.slice(6)); + console.log(data); + } + } +} +``` + +--- + +### 2. Get Data Catalog + +Returns metadata for all available datasets. + +```http +GET /api/catalog +``` + +**Response**: +```json +{ + "panama_healthsites_geojson": { + "description": "Healthcare facilities including hospitals...", + "categories": ["health", "infrastructure"], + "tags": ["hospitals", "clinics"], + "row_count": 986, + "has_geometry": true + }, + "pan_admin1": { + "description": "Panama provinces...", + "categories": ["administrative"], + "row_count": 10, + "has_geometry": true + } +} +``` + +**curl Example**: +```bash +curl http://localhost:8000/api/catalog +``` + +--- + +### 3. Get Database Schema + +Returns current database schema with loaded tables. + +```http +GET /api/schema +``` + +**Response**: +```json +{ + "tables": [ + { + "name": "panama_healthsites_geojson", + "columns": ["osm_id", "name", "amenity", "geom"], + "row_count": 986, + "geometry_type": "Point" + }, + { + "name": "pan_admin1", + "columns": ["adm1_name", "adm1_pcode", "area_sqkm", "geom"], + "row_count": 10, + "geometry_type": "Polygon" + } + ], + "loaded_count": 2, + "total_datasets": 108 +} +``` + +**curl Example**: +```bash +curl http://localhost:8000/api/schema +``` + +--- + +## Response Formats + +### GeoJSON Structure + +Map data returned in standard GeoJSON format with custom properties: + +```json +{ + "type": "FeatureCollection", + "properties": { + "layer_id": "abc123", + "layer_name": "Hospitals in David", + "style": { + "color": "#E63946", + "fillColor": "#E63946", + "opacity": 0.8, + "fillOpacity": 0.4 + }, + "pointMarker": { + "icon": "🏥", + "style": "icon", + "color": "#E63946", + "size": 32 + }, + "choropleth": { + "enabled": false + } + }, + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-79.5, 8.98] + }, + "properties": { + "name": "Hospital Santo Tomás", + "amenity": "hospital" + } + } + ] +} +``` + +**Properties Explanation**: +- `layer_id`: Unique identifier +- `layer_name`: Display name +- `style`: Default polygon/line styling +- `pointMarker`: Point rendering configuration + - `style: "icon"` → Use emoji icon + - `style: "circle"` → Use simple circle +- `choropleth`: Choropleth configuration (if enabled) + +### Chart Data Structure + +```json +{ + "type": "bar", + "title": "Districts by Province", + "data": { + "labels": ["Panamá", "Chiriquí", "Veraguas"], + "datasets": [{ + "label": "District Count", + "data": [8, 13, 12], + "backgroundColor": "#6366f1" + }] + } +} +``` + +**Chart Types**: +- `bar` - Bar chart +- `pie` - Pie chart +- `line` - Line chart + +### Data Citations + +```json +[ + "Administrative boundary data from HDX/INEC, 2021", + "Healthcare facilities from OpenStreetMap via Healthsites.io" +] +``` + +--- + +## Error Responses + +### Standard Error Format + +```json +{ + "detail": "Error message", + "error_type": "DataNotFound", + "timestamp": "2026-01-10T12:00:00Z" +} +``` + +**HTTP Status Codes**: +- `400 Bad Request` - Invalid query format +- `404 Not Found` - Endpoint not found +- `500 Internal Server Error` - Server error +- `503 Service Unavailable` - LLM API unavailable + +### Data Unavailable Response + +When requested data doesn't exist: + +```json +{ + "response": "I couldn't find data for crime statistics in the current database...", + "sql_query": "-- ERROR: DATA_UNAVAILABLE\\n-- Requested: crime statistics\\n-- Available: admin boundaries, hospitals", + "geojson": null, + "data_citations": [] +} +``` + +--- + +## CORS Configuration + +Current CORS settings (in `backend/main.py`): + +```python +app.add_middleware( + CORSMiddleware, + allow_origins=["http://localhost:3000"], + allow_credentials=True, + allow_methods=["*"], + allow_headers=["*"], +) +``` + +**For Production**: Update `allow_origins` to your frontend domain. + +--- + +## Rate Limiting + +**Current**: No rate limiting implemented + +**Recommended** (future): +```python +from slowapi import Limiter +from slowapi.util import get_remote_address + +limiter = Limiter(key_func=get_remote_address) + +@app.post("/api/chat") +@limiter.limit("10/minute") +async def chat(request: Request): + ... +``` + +--- + +## Authentication + +**Current**: No authentication required + +**For Production**: Add API key or JWT authentication: + +```python +from fastapi import Security, HTTPException +from fastapi.security import APIKeyHeader + +API_KEY = os.getenv("API_KEY") +api_key_header = APIKeyHeader(name="X-API-Key") + +def verify_api_key(api_key: str = Security(api_key_header)): + if api_key != API_KEY: + raise HTTPException(status_code=403, detail="Invalid API key") + return api_key +``` + +--- + +## WebSocket Support + +**Current**: Not implemented (using SSE instead) + +**Rationale**: SSE sufficient for one-way server → client streaming. WebSockets add complexity without benefit for this use case. + +--- + +## API Versioning + +**Current**: No versioning + +**Future Consideration**: +``` +/api/v1/chat +/api/v2/chat +``` + +--- + +## OpenAPI Documentation + +FastAPI auto-generates interactive API docs: + +- **Swagger UI**: http://localhost:8000/docs +- **ReDoc**: http://localhost:8000/redoc +- **OpenAPI JSON**: http://localhost:8000/openapi.json + +--- + +## Client Libraries + +### Python Client Example + +```python +import requests +import json + +def query_geoquery(message, history=[]): + response = requests.post( + "http://localhost:8000/api/chat", + json={"message": message, "history": history}, + stream=True + ) + + for line in response.iter_lines(): + if line.startswith(b'data: '): + data = json.loads(line[6:]) + if data.get("event") == "chunk": + print(data["data"]["content"], end="") + elif data.get("event") == "result": + return data["data"] + +result = query_geoquery("Show me hospitals") +print(result["sql_query"]) +``` + +### JavaScript/TypeScript Client + +See `frontend/src/lib/api.ts` for full implementation. + +--- + +## Performance Considerations + +### Response Times + +Typical query pipeline: +1. Intent detection: ~500ms +2. Semantic search: <10ms +3. SQL generation: ~1s +4. Query execution: 100ms - 5s (depends on data size) +5. Explanation: ~1s (streaming) + +**Total**: 2-8 seconds for most queries + +### Optimization Tips + +1. **Pre-load Common Tables**: Load frequently used datasets at startup +2. **Query Limits**: Add `LIMIT` clauses for large result sets +3. **Spatial Indexes**: DuckDB auto-indexes geometry columns +4. **Caching**: Consider Redis for repeated queries + +--- + +## Next Steps + +- **Core Services**: [CORE_SERVICES.md](CORE_SERVICES.md) +- **Data Flow**: [../DATA_FLOW.md](../DATA_FLOW.md) +- **Frontend Components**: [../frontend/COMPONENTS.md](../frontend/COMPONENTS.md) diff --git a/docs/backend/CORE_SERVICES.md b/docs/backend/CORE_SERVICES.md new file mode 100644 index 0000000000000000000000000000000000000000..0d24e9a440211f4afb8ccfb11e15662e7bf3f049 --- /dev/null +++ b/docs/backend/CORE_SERVICES.md @@ -0,0 +1,546 @@ +# Backend Core Services + +Detailed reference for GeoQuery's core backend services. + +--- + +## Service Overview + +| Service | File | Purpose | +|---------|------|---------| +| **LLMGateway** | `core/llm_gateway.py` | Gemini API integration | +| **GeoEngine** | `core/geo_engine.py` | DuckDB Spatial wrapper | +| **DataCatalog** | `core/data_catalog.py` | Dataset metadata management | +| **SemanticSearch** | `core/semantic_search.py` | Embedding-based discovery | +| **SessionStore** | `core/session_store.py` | User session and layer management | +| **QueryPlanner** | `core/query_planner.py` | Multi-step query orchestration | +| **QueryExecutor** | `services/executor.py` | Main query pipeline | + +--- + +## LLMGateway + +**File**: `backend/core/llm_gateway.py` + +Unified interface to Google Gemini API with streaming support. + +### Initialization + +```python +from backend.core.llm_gateway import LLMGateway + +llm = LLMGateway() +``` + +**Configuration**: +- Reads `GEMINI_API_KEY` from environment +- Uses `gemini-2.0-flash-exp` model +- Enables "thinking" mode for reasoning transparency + +### Key Methods + +#### `detect_intent(query, history) → str` + +Classifies user query into intent category. + +**Parameters**: +- `query` (str): User's natural language query +- `history` (List[Dict]): Conversation history + +**Returns**: One of: +- `"GENERAL_CHAT"` - Conversational question +- `"DATA_QUERY"` - Data request +- `"MAP_REQUEST"` - Explicitly wants visualization +- `"SPATIAL_OP"` - Geometric operation (intersection, buffer, etc.) +- `"STAT_QUERY"` - Requests chart/graph + +**Example**: +```python +intent = await llm.detect_intent("Show me hospitals in Panama", []) +# Returns: "MAP_REQUEST" +``` + +#### `generate_analytical_sql(query, schema, history) → str` + +Generates DuckDB SQL query from natural language. + +**Parameters**: +- `query` (str): User query +- `schema` (str): Available table schemas +- `history` (List[Dict]): Conversation context + +**Returns**: SQL query string + +**Special Cases**: +- Returns `"-- ERROR: DATA_UNAVAILABLE"` if data doesn't exist +- Includes `geom` column for map visualization +- Uses DuckDB spatial functions (ST_Intersects, etc.) + +**Example**: +```python +schema = "Table: panama_healthsites_geojson\\nColumns: name, amenity, geom..." +sql = await llm.generate_analytical_sql("hospitals in David", schema, []) +# Returns: "SELECT name, amenity, geom FROM panama_healthsites_geojson +# WHERE amenity = 'hospital' AND ST_Intersects(geom, ...)" +``` + +#### `generate_spatial_sql(query, context, history) → str` + +Generates spatial operation SQL (difference, intersection, etc.). + +**Parameters**: +- `query` (str): Spatial operation request +- `context` (str): Base tables + user layers +- `history` (List[Dict]): Conversation history + +**Returns**: SQL with spatial functions + +**Example**: +```python +context = "Base: pan_admin1\\nUser Layers: layer_abc123 (Protected Areas)" +sql = await llm.generate_spatial_sql("subtract protected areas from Chiriquí", context, []) +# Returns: "WITH protected_union AS (SELECT ST_Union(geom) FROM layer_abc123) +# SELECT a.*, ST_Difference(a.geom, p.geom) as geom +# FROM pan_admin1 a, protected_union p WHERE a.adm1_name = 'Chiriquí'" +``` + +#### `generate_layer_name(query, sql) → Dict` + +Generates descriptive name, emoji, and point style for map layer. + +**Returns**: +```python +{ + "name": "Hospitals in David", + "emoji": "🏥", + "pointStyle": "icon" # or "circle" or None +} +``` + +**Point Style Logic**: +- `"icon"`: Small to medium POI datasets (<500 points) +- `"circle"`: Large point datasets (>500 points) +- `None`: Polygon/line data (uses choropleth or line styling) + +#### `stream_explanation(query, sql, data_summary, history)` + +Streams natural language explanation of results. + +**Yields**: Dict with: +- `{"type": "thought", "text": "reasoning..."}` - LLM thinking +- `{"type": "content", "text": "response..."}` - Actual response + +**Example**: +```python +async for chunk in llm.stream_explanation("show hospitals", sql, summary, []): + if chunk["type"] == "content": + print(chunk["text"], end="", flush=True) +``` + +### Prompt System + +All prompts are centralized in `backend/core/prompts.py`: + +- `SYSTEM_INSTRUCTION` - Base system context +- `INTENT_DETECTION_PROMPT` - Intent classification +- `SQL_GENERATION_PROMPT` - Text-to-SQL +- `SPATIAL_SQL_PROMPT` - Spatial operations +- `LAYER_NAME_PROMPT` - Layer metadata generation +- `EXPLANATION_PROMPT` - Result interpretation + +--- + +## GeoEngine + +**File**: `backend/core/geo_engine.py` + +DuckDB Spatial database wrapper for geospatial queries. + +### Initialization + +```python +from backend.core.geo_engine import get_geo_engine + +engine = get_geo_engine() # Singleton pattern +``` + +**Creates**: +- In-memory DuckDB database +- Loads Spatial extension +- Configures JSON serialization + +### Key Methods + +#### `ensure_table_loaded(table_name) → bool` + +Lazily loads GeoJSON dataset into DuckDB. + +**Parameters**: +- `table_name` (str): Table identifier from catalog + +**Returns**: True if loaded successfully + +**Behavior**: +- Checks if already loaded (no-op if yes) +- Looks up path in DataCatalog +- Reads GeoJSON file with GeoPandas +- Creates DuckDB table with spatial index +- Caches in `loaded_tables` dict + +**Example**: +```python +success = engine.ensure_table_loaded("panama_healthsites_geojson") +if success: + print(f"Table has {len(engine.loaded_tables['panama_healthsites_geojson'])} rows") +``` + +#### `execute_spatial_query(sql) → Dict` + +Executes SQL and returns GeoJSON. + +**Parameters**: +- `sql` (str): DuckDB SQL query + +**Returns**: GeoJSON FeatureCollection + +**Example**: +```python +sql = "SELECT name, geom FROM panama_healthsites_geojson LIMIT 10" +geojson = engine.execute_spatial_query(sql) +# Returns: {"type": "FeatureCollection", "features": [...], "properties": {}} +``` + +**Error Handling**: +- Raises exception with detailed error message +- Logs SQL for debugging + +#### `register_layer(layer_id, geojson) → str` + +Registers user-created layer as temporary table. + +**Parameters**: +- `layer_id` (str): Unique layer identifier +- `geojson` (Dict): GeoJSON FeatureCollection + +**Returns**: Table name (`layer_{layer_id}`) + +**Purpose**: Enables spatial operations on user-created layers + +**Example**: +```python +# User creates layer by querying hospitals +hospitals_geojson = engine.execute_spatial_query("SELECT * FROM ... WHERE amenity='hospital'") + +# Register for later spatial ops +table_name = engine.register_layer("abc123", hospitals_geojson) +# Returns: "layer_abc123" + +# Now can use in spatial queries +sql = f"SELECT * FROM pan_admin1 WHERE ST_Intersects(geom, (SELECT ST_Union(geom) FROM {table_name}))" +``` + +#### `get_table_schemas() → str` + +Generates schema descriptions for LLM context. + +**Returns**: Formatted string with table/column info + +**Example Output**: +``` +Table: panama_healthsites_geojson +Columns: osm_id, name, amenity, operator, geom +Row count: 986 + +Table: pan_admin1 +Columns: adm0_name, adm1_name, adm1_pcode, area_sqkm, geom +Row count: 10 +``` + +### Supported Spatial Functions + +DuckDB Spatial provides PostGIS-compatible functions: + +| Function | Purpose | Example | +|----------|---------|---------| +| `ST_Intersects(a, b)` | Test intersection | `WHERE ST_Intersects(hospital.geom, province.geom)` | +| `ST_Within(a, b)` | Test containment | `WHERE ST_Within(point.geom, polygon.geom)` | +| `ST_Distance(a, b)` | Calculate distance | `SELECT ST_Distance(a.geom, b.geom) as dist` | +| `ST_Buffer(geom, dist)` | Create buffer | `SELECT ST_Buffer(geom, 0.1) FROM points` | +| `ST_Union(geom)` | Merge geometries | `SELECT ST_Union(geom) FROM provinces` | +| `ST_Difference(a, b)` | Subtract geometry | `SELECT ST_Difference(a.geom, b.geom)` | +| `ST_Intersection(a, b)` | Intersect geometries | `SELECT ST_Intersection(a.geom, b.geom)` | + +--- + +## DataCatalog + +**File**: `backend/core/data_catalog.py` + +Manages dataset metadata from `catalog.json`. + +### Initialization + +```python +from backend.core.data_catalog import get_data_catalog + +catalog = get_data_catalog() # Singleton +``` + +**Loads**: +- Reads `backend/data/catalog.json` +- Parses dataset metadata +- Builds searchable index + +### Catalog Structure + +```json +{ + "table_name": { + "path": "relative/path/to/file.geojson", + "description": "Short description for display", + "semantic_description": "Detailed description for AI discovery", + "categories": ["infrastructure", "health"], + "tags": ["hospitals", "clinics", "healthcare"], + "schema": { + "columns": ["name", "type", "beds", "geom"], + "geometry_type": "Point" + } + } +} +``` + +### Key Methods + +#### `get_all_table_summaries() → str` + +Returns formatted summaries of all datasets for LLM context. + +**Format**: +``` +Table: panama_healthsites_geojson +Description: Healthcare facilities including hospitals, clinics... +Categories: health, infrastructure +``` + +#### `get_summaries_for_tables(table_names) → str` + +Returns summaries for specific tables (used after semantic search). + +#### `get_table_metadata(table_name) → Dict` + +Returns full metadata for a single table. + +--- + +## SemanticSearch + +**File**: `backend/core/semantic_search.py` + +Vector-based dataset discovery using sentence embeddings. + +### How It Works + +1. **Embedding Generation**: Convert dataset descriptions to 384-dim vectors +2. **Indexing**: Store embeddings in `embeddings.npy` +3. **Query**: Convert user query to vector +4. **Search**: Find top-k most similar datasets via cosine similarity + +### Initialization + +```python +from backend.core.semantic_search import get_semantic_search + +search = get_semantic_search() # Singleton +``` + +**Loads**: +- Sentence transformer model (`all-MiniLM-L6-v2`) +- Pre-computed embeddings from file (or generates if missing) + +### Key Methods + +#### `search_table_names(query, top_k=15) → List[str]` + +Finds most relevant datasets for a query. + +**Example**: +```python +results = search.search_table_names("where are the doctors?", top_k=5) +# Returns: ["panama_healthsites_geojson", "osm_amenities", ...] +``` + +**Performance**: Sub-millisecond for 100+ datasets + +### Regenerating Embeddings + +When `catalog.json` changes: + +```bash +rm backend/data/embeddings.npy +python -c "from backend.core.semantic_search import get_semantic_search; get_semantic_search()" +``` + +--- + +## SessionStore + +**File**: `backend/core/session_store.py` + +Manages user sessions and created map layers. + +### Purpose + +- Track layers created by each user +- Enable spatial operations between user layers +- Maintain session state + +### Key Methods + +```python +from backend.core.session_store import get_session_store + +store = get_session_store() + +# Add layer to session +store.add_layer("session-123", { + "id": "layer_abc", + "name": "Hospitals in Panama", + "table_name": "layer_abc", + "timestamp": "2026-01-10T12:00:00" +}) + +# Get session layers +layers = store.get_layers("session-123") +``` + +--- + +## QueryPlanner + +**File**: `backend/core/query_planner.py` + +Decomposes complex queries into executable steps. + +### Complexity Detection + +```python +from backend.core.query_planner import get_query_planner + +planner = get_query_planner() + +complexity = planner.detect_complexity("compare hospital count vs school count by province") +# Returns: {"is_complex": True, "reason": "Multiple dataset comparison"} +``` + +**Complex Query Indicators**: +- Multiple datasets +- Aggregations across categories +- Comparisons or ratios +- Multi-condition filters + +### Query Planning + +```python +plan = await planner.plan_query(query, available_tables, llm) + +# Returns ExecutionPlan with: +# - steps: List of QueryStep objects +# - parallel_groups: Steps that can run concurrently +# - combination_logic: How to merge results +``` + +--- + +## QueryExecutor + +**File**: `backend/services/executor.py` + +Main orchestrator that coordinates all services. + +### Query Pipeline + +```python +from backend.services.executor import QueryExecutor + +executor = QueryExecutor() + +# Process query with streaming +async for event in executor.process_query_stream(query, history): + if event["event"] == "status": + print(f"Status: {event['data']}") + elif event["event"] == "chunk": + print(event["data"], end="") + elif event["event"] == "result": + geojson = event["data"]["geojson"] +``` + +### Execution Steps + +1. **Intent Detection** → LLMGateway +2. **Semantic Search** → SemanticSearch +3. **Schema Loading** → DataCatalog + GeoEngine +4. **SQL Generation** → LLMGateway +5. **Query Execution** → GeoEngine +6. **Result Formatting** → ResponseFormatter +7. **Explanation** → LLMGateway (streaming) +8. **Layer Registration** → SessionStore +- **Dataset Sources**: [../data/DATASET_SOURCES.md](../data/DATASET_SOURCES.md) for detailed walkthrough. + +--- + +## Singleton Pattern + +Most services use the singleton pattern for efficiency: + +```python +# Internal cache +_instance = None + +def get_service(): + global _instance + if _instance is None: + _instance = Service() + return _instance +``` + +**Benefits**: +- Single database connection +- Cached embeddings +- Shared catalog + +--- + +## Error Handling + +### SQL Correction Loop + +When generated SQL fails: + +```python +try: + result = geo_engine.execute_spatial_query(sql) +except Exception as e: + # Try to repair + corrected_sql = await llm.correct_sql(query, sql, str(e), schema) + result = geo_engine.execute_spatial_query(corrected_sql) +``` + +### Data Unavailability + +LLM returns special marker: + +```sql +-- ERROR: DATA_UNAVAILABLE +-- Requested: crime statistics +-- Available: admin boundaries, hospitals, schools +``` + +Executor detects and returns helpful message to user. + +--- + +## Next Steps + +- **API Reference**: [API_ENDPOINTS.md](API_ENDPOINTS.md) +- **Frontend Components**: [../frontend/COMPONENTS.md](../frontend/COMPONENTS.md) +- **API Reference**: [API_ENDPOINTS.md](API_ENDPOINTS.md) diff --git a/docs/backend/LLM_INTEGRATION.md b/docs/backend/LLM_INTEGRATION.md new file mode 100644 index 0000000000000000000000000000000000000000..b432e74bbacefd0c4411a6edf3381129e2ed4f23 --- /dev/null +++ b/docs/backend/LLM_INTEGRATION.md @@ -0,0 +1,489 @@ +# LLM Integration & Prompt Engineering + +Deep dive into GeoQuery's LLM integration, prompt system, and AI capabilities. + +--- + +## Overview + +GeoQuery uses **Google Gemini 2.0 Flash** for all AI capabilities: +- Intent detection +- Text-to-SQL generation +- Natural language explanations +- Layer naming and styling decisions + +**Key Feature**: Thinking mode for transparency into reasoning process. + +--- + +## LLMGateway Service + +**File**: `backend/core/llm_gateway.py` + +Central interface to Gemini API with streaming support. + +### Initialization + +```python +from google import genai +from google.genai import types + +class LLMGateway: + def __init__(self): + api_key = os.getenv("GEMINI_API_KEY") + self.client = genai.Client(api_key=api_key) + self.model = "gemini-2.0-flash-exp" +``` + +### Configuration + +**Model**: `gemini-2.0-flash-exp` +- **Speed**: Fast responses (~1s for SQL) +- **Quality**: High accuracy for structured output +- **Thinking Mode**: Shows reasoning process +- **JSON Output**: Structured responses + +**Parameters**: +```python +config = types.GenerateContentConfig( + temperature=1, # Creative but consistent + response_mime_type="application/json", # For structured outputs + thinking_config=types.ThinkingConfig( + mode=types.ThinkingMode.THINKING # Enable reasoning + ) +) +``` + +--- + +## Prompt System + +All prompts centralized in `backend/core/prompts.py`. + +### 1. System Instruction + +**Prompt**: `SYSTEM_INSTRUCTION` + +Sets overall context and capabilities: + +``` +You are GeoQuery, an advanced Territorial Intelligence Agent capable of +analyzing diverse geographic datasets. + +## Your Capabilities +- Dynamic Metadata Catalog (not fixed schema) +- Spatial Analysis with PostGIS/DuckDB functions +- Visual outputs (maps, charts) + +## Output Guidelines +1. Be Data-Driven: Base answers on SQL query results +2. Be Visual: Use choropleth maps, point maps, charts +3. Be Transparent: Explain reasoning, cite sources +... +``` + +**Purpose**: Establishes AI persona and core behavior + +--- + +### 2. Intent Detection + +**Prompt**: `INTENT_DETECTION_PROMPT` + +Classifies user queries into categories. + +``` +Analyze this user query and determine the best output type. + +User Query: "{user_query}" + +THINK STEP BY STEP: +1. What is the user asking for? +2. Does this require geographic visualization? +3. Does this require a chart/graph? +4. Is this a general question? + +Respond with ONLY ONE of these exact words: +- GENERAL_CHAT +- DATA_QUERY +- MAP_REQUEST +- SPATIAL_OP +- STAT_QUERY + +Key rules: +- "color by", "compare regions" → MAP_REQUEST +- "create a chart" → STAT_QUERY +- Questions about data availability → GENERAL_CHAT +``` + +**Examples**: + +| Query | Thinking | Intent | +|-------|----------|--------| +| "Show me hospitals" | User wants to SEE on map | `MAP_REQUEST` | +| "How many provinces?" | Numerical answer, no viz needed | `DATA_QUERY` | +| "Create bar chart of districts" | Explicitly requests chart | `STAT_QUERY` | +| "Subtract Chiriquí from Panama" | Geometric operation | `SPATIAL_OP` | +| "What data do you have?" | General question | `GENERAL_CHAT` | + +--- + +### 3. SQL Generation + +**Prompt**: `SQL_GENERATION_PROMPT` + +Converts natural language to DuckDB SQL. + +``` +You are a DuckDB SQL expert for geographic data analysis. + +{table_schema} + +### CRITICAL - Data Availability: +✅ You may ONLY query the tables listed above. +❌ Do NOT invent table names or columns. + +If requested data is NOT available, return: +-- ERROR: DATA_UNAVAILABLE +-- Requested: [what user asked for] +-- Available: [list tables you DO have] + +### User Request: "{user_query}" + +### Rules: +1. Return ONLY the SQL query +2. Use DuckDB syntax (ILIKE for case-insensitive) +3. ALWAYS include 'geom' for map visualization +4. For "top N", use ORDER BY ... DESC LIMIT N +5. Do NOT add LIMIT unless explicitly requested +6. NEVER invent columns that don't exist + +### Special Dataset - Population: +- Use `kontur_population` (H3 hexagons) +- Columns: population, geom +- Large dataset (33K hexagons) - use LIMIT 40000 +... + +Generate SQL: +``` + +**Key Features**: +- **Error Prevention**: Explicit instructions to avoid hallucinating tables +- **Spatial Functions**: Guides use of ST_Intersects, ST_Within, etc. +- **Data Unavailable Handling**: Returns special marker instead of invalid SQL + +**Examples**: + +Input: "Show hospitals in David" +```sql +SELECT name, amenity, geom +FROM panama_healthsites_geojson +WHERE amenity = 'hospital' + AND ST_Intersects(geom, (SELECT geom FROM pan_admin2 WHERE adm2_name = 'David')) +``` + +Input: "Population density in Veraguas" +```sql +SELECT population, geom +FROM kontur_population +WHERE ST_Intersects(geom, (SELECT geom FROM pan_admin1 WHERE adm1_name = 'Veraguas')) +LIMIT 5000 +``` + +--- + +### 4. Spatial SQL + +**Prompt**: `SPATIAL_SQL_PROMPT` + +For geometric operations (difference, intersection, buffer, etc.). + +``` +You are a GIS expert using DuckDB Spatial. + +Available Data: +{layer_context} + +User Request: "{user_query}" + +Rules: +1. Return ONLY SQL query +2. Use DuckDB Spatial functions: + - ST_Difference, ST_Intersection, ST_Union + - ST_Buffer, ST_Within, ST_Contains +3. The geometry column is named 'geom' +4. Use EXACT table names shown above +5. IMPORTANT: For aggregate geometries (ST_Union), use CTE pattern: + +CORRECT: +WITH layer_b_union AS (SELECT ST_Union(geom) as geom FROM layer_b) +SELECT a.*, ST_Difference(a.geom, b.geom) as geom +FROM layer_a a, layer_b_union b + +WRONG: +SELECT ST_Difference(geom, (SELECT ST_Union(geom) FROM layer_b)) +FROM layer_a +``` + +**Example**: + +Input: "Subtract protected areas from Chiriquí province" +```sql +WITH protected_union AS ( + SELECT ST_Union(geom) as geom FROM stri_protected_areas_2025 +) +SELECT + p.adm1_name, + ST_Difference(p.geom, pa.geom) as geom +FROM pan_admin1 p, protected_union pa +WHERE p.adm1_name = 'Chiriquí' +``` + +--- + +### 5. Layer Naming + +**Prompt**: `LAYER_NAME_PROMPT` + +Generates descriptive name, emoji, and point style for map layers. + +``` +User Request: "{user_query}" +SQL Query: "{sql_query}" + +Rules: +1. Return JSON with: name, emoji, pointStyle +2. "name": Short descriptive (1-4 words) +3. "emoji": Single emoji for data content +4. "pointStyle": How to render points + - "icon": Small/medium POI (<500 points) + - "circle": Large point datasets (>500 points) + - null: Polygon data (use choropleth) + +Examples: +{"name": "Hospitals in David", "emoji": "🏥", "pointStyle": "icon"} +{"name": "Population Density", "emoji": "👥", "pointStyle": null} +{"name": "Traffic Intersections", "emoji": "🚦", "pointStyle": "circle"} +``` + +**Decision Logic**: +- Hospitals, schools, parks → icon +- Intersections, sensors (large datasets) → circle +- H3 hexagons, admin boundaries → null (polygon rendering) + +--- + +### 6. Explanation + +**Prompt**: `EXPLANATION_PROMPT` + +Generates natural language explanation of results. + +``` +Explain the results of this data query to the user. + +User Question: "{user_query}" +SQL Query: {sql_query} +Data Result Summary: {data_summary} + +Instructions: +1. Keep response concise +2. Only describe ACTUAL data returned +3. Cite data source +4. Speak as GeoQuery + +Example citation: +"Source: Administrative boundary data from HDX/INEC, 2021" +``` + +**Features**: +- **Factual**: Only describes what was actually found +- **Contextual**: Relates results to user's question +- **Transparent**: Cites data sources + +--- + +### 7. SQL Correction + +**Prompt**: `SQL_CORRECTION_PROMPT` + +Repairs failed SQL queries. + +``` +Your previous query failed. Fix it. + +### Error Message: +{error_message} + +### Failed SQL: +{incorrect_sql} + +### User Request: +"{user_query}" + +### Database Schema: +{schema_context} + +Rules: +1. Fix the error described in the message +2. Return ONLY the valid SQL query +3. Keep query logic consistent with User Request +``` + +**Common Fixes**: +- Column ambiguity → Add table aliases +- Missing column → Use correct column name +- Syntax error → Fix DuckDB syntax + +--- + +## Streaming Implementation + +### Thinking + Content Streaming + +```python +async def stream_sql_generation(self, query: str, schema: str): + config = types.GenerateContentConfig( + thinking_config=types.ThinkingConfig( + mode=types.ThinkingMode.THINKING + ) + ) + + response = await asyncio.to_thread( + self.client.models.generate_content_stream, + model=self.model, + contents=query_prompt, + config=config + ) + + async for chunk in response: + if hasattr(chunk, 'thought'): + yield {"type": "thought", "text": chunk.thought.text} + if hasattr(chunk, 'text'): + yield {"type": "content", "text": chunk.text} +``` + +**Frontend receives**: +```json +{"type": "thought", "text": "I need to find hospitals in the David district..."} +{"type": "content", "text": "SELECT name, geom FROM ..."} +``` + +--- + +## Error Handling + +### 1. Data Unavailable +```sql +-- ERROR: DATA_UNAVAILABLE +-- Requested: crime statistics +-- Available: hospitals, schools, admin boundaries +``` + +→ System detects marker and returns helpful error + +### 2. SQL Execution Error +``` +Error: column "hospitals" does not exist +``` + +→ Send to `correct_sql()` → LLM fixes → Retry + +### 3. Rate Limiting +```python +try: + response = await self.client.models.generate_content(...) +except Exception as e: + if "rate limit" in str(e).lower(): + await asyncio.sleep(1) + # Retry +``` + +--- + +## Performance Optimizations + +### Caching + +**Not currently implemented**, but recommended: +```python +from functools import lru_cache + +@lru_cache(maxsize=100) +async def cached_sql_generation(query_hash: str): + ... +``` + +### Token Management + +- **Minimize Context**: Only send relevant table schemas +- **Semantic Search**: Pre-filter to top 15 tables +- **Batch Requests**: Combine multiple LLM calls where possible + +--- + +## Prompt Engineering Best Practices + +### 1. Be Explicit +❌ "Generate SQL for this query" +✅ "Generate DuckDB SQL with spatial functions. Include 'geom' column. Use ILIKE for text matching." + +### 2. Provide Examples +``` +Example: +Input: "hospitals in Panama" +Output: SELECT name, geom FROM panama_healthsites_geojson WHERE amenity='hospital' +``` + +### 3. Use Constraints +``` +Rules: +- Return ONLY SQL (no markdown, no explanation) +- Use EXACT table names from schema +- DO NOT invent columns +``` + +### 4. Handle Edge Cases +``` +If data not available, return: +-- ERROR: DATA_UNAVAILABLE +``` + +### 5. Structure Output +``` +Return valid JSON: +{"name": "...", "emoji": "..."} +``` + +--- + +## Testing + +### Manual Testing + +```python +llm = LLMGateway() + +# Test intent detection +intent = await llm.detect_intent("Show me hospitals", []) +print(intent) # Should be "MAP_REQUEST" + +# Test SQL generation +sql = await llm.generate_analytical_sql("hospitals in David", schema, []) +print(sql) # Should be valid SELECT query +``` + +### Prompt Iteration + +1. **Test with real queries** +2. **Analyze failures** +3. **Update prompt** +4. **Re-test** + +--- + +## Next Steps + +- **Core Services**: [CORE_SERVICES.md](CORE_SERVICES.md) +- **Data Flow**: [../DATA_FLOW.md](../DATA_FLOW.md) +- **API Reference**: [API_ENDPOINTS.md](API_ENDPOINTS.md) diff --git a/docs/backend/SCRIPTS.md b/docs/backend/SCRIPTS.md new file mode 100644 index 0000000000000000000000000000000000000000..c6b58a846f0b008815c337afe4b1a0b1a50cd5c3 --- /dev/null +++ b/docs/backend/SCRIPTS.md @@ -0,0 +1,397 @@ +# Data Ingestion Scripts + +Documentation for scripts that download and process geographic datasets. + +--- + +## Overview + +Data ingestion scripts in `backend/scripts/` automate downloading and processing of various data sources: + +- OpenStreetMap via Geofabrik +- Humanitarian Data Exchange (HDX) +- World Bank Open Data +- STRI GIS Portal +- Kontur Population +- Global datasets + +--- + +##Scripts Reference + +### 1. download_geofabrik.py + +Downloads OpenStreetMap data for Panama from Geofabrik. + +**Usage**: +```bash +cd backend +python scripts/download_geofabrik.py +``` + +**What it downloads**: +- Roads network +- Buildings +- POI (points of interest) +- Natural features + +**Output**: GeoJSON files in `backend/data/osm/` + +**Schedule**: Run monthly for updates + +--- + +### 2. download_hdx_panama.py + +Downloads administrative boundaries from Humanitarian Data Exchange. + +**Usage**: +```bash +python scripts/download_hdx_panama.py +``` + +**Downloads**: +- Level 1: Provinces (10 features) +- Level 2: Districts (81 features) +- Level 3: Corregimientos (679 features) + +**Output**: `backend/data/hdx/pan_admin{1,2,3}_2021.geojson` + +**Schedule**: Annual updates + +--- + +### 3. download_worldbank.py + +Downloads World Bank development indicators. + +**Usage**: +```bash +python scripts/download_worldbank.py +``` + +**Indicators**: +- GDP per capita +- Life expectancy +- Access to electricity +- Internet usage +- And more... + +**Output**: `backend/data/worldbank/indicators.geojson` + +**Processing**: Joins indicator data with country geometries + +--- + +### 4. download_stri_data.py + +Downloads datasets from STRI GIS Portal. + +**Usage**: +```bash +python scripts/download_stri_data.py +``` + +**Downloads**: +- Protected areas +- Forest cover +- Environmental datasets + +**Output**: `backend/data/stri/*.geojson` + +**Note**: Uses ArcGIS REST API + +--- + +### 5. stri_catalog_scraper.py + +Discovers and catalogs all available STRI datasets. + +**Usage**: +```bash +python scripts/stri_catalog_scraper.py +``` + +**Output**: JSON catalog of 100+ STRI datasets with metadata + +**Features**: +- Priority scoring +- Temporal dataset detection +- REST endpoint generation + +--- + +### 6. create_province_layer.py + +Creates province-level socioeconomic data layer. + +**Usage**: +```bash +python scripts/create_province_layer.py +``` + +**Combines**: +- INEC Census data +- MPI (poverty index) +- Administrative geometries + +**Output**: `backend/data/socioeconomic/province_socioeconomic.geojson` + +--- + +### 7. download_global_datasets.py + +Downloads global reference datasets. + +**Usage**: +```bash +python scripts/download_global_datasets.py +``` + +**Downloads**: +- Natural Earth country boundaries +- Global admin boundaries +- Reference layers + +**Output**: `backend/data/global/*.geojson` + +--- + +### 8. register_global_datasets.py + +Registers global datasets in catalog.json. + +**Usage**: +```bash +python scripts/register_global_datasets.py +``` + +**Action**: Adds dataset entries to `backend/data/catalog.json` + +--- + +## Adding New Data Sources + +### Step-by-Step Guide + +#### 1. Create Download Script + +Create `backend/scripts/download_mycustom_data.py`: + +```python +import geopandas as gpd +import requests +from pathlib import Path + +def download_custom_data(): + """Download custom dataset.""" + + # Define output path + output_dir = Path(__file__).parent.parent / "data" / "custom" + output_dir.mkdir(parents=True, exist_ok=True) + + # Download data + url = "https://example.com/data.geojson" + response = requests.get(url) + + # Save as GeoJSON + output_file = output_dir / "custom_data.geojson" + with open(output_file, 'w') as f: + f.write(response.text) + + print(f"Downloaded to {output_file}") + +if __name__ == "__main__": + download_custom_data() +``` + +#### 2. Update Catalog + +Add entry to `backend/data/catalog.json`: + +```json +{ + "custom_data": { + "path": "custom/custom_data.geojson", + "description": "Short description for display", + "semantic_description": "Detailed description mentioning key concepts that help AI discovery. Include what data represents, coverage area, and typical use cases.", + "categories": ["infrastructure"], + "tags": ["roads", "transport", "panama"], + "schema": { + "columns": ["name", "type", "length_km", "geom"], + "geometry_type": "LineString" + } + } +} +``` + +**Key Fields**: +- `path`: Relative path from `backend/data/` +- `description`: Human-readable short description +- `semantic_description`: Detailed description for AI semantic search +- `categories`: Classify dataset +- `tags`: Keywords for filtering +- `schema`: Optional column and geometry info + +#### 3. Regenerate Embeddings + +```bash +cd backend +rm data/embeddings.npy +python -c "from backend.core.semantic_search import get_semantic_search; get_semantic_search()" +``` + +This generates vector embeddings for the new dataset description. + +#### 4. Test Discovery + +```bash +# Start backend +uvicorn backend.main:app --reload + +# Test query +curl -X POST http://localhost:8000/api/chat \ + -H "Content-Type: application/json" \ + -d '{"message":"show me [your new data]","history":[]}' +``` + +Verify the AI can discover and query your dataset. + +--- + +## Script Templates + +### Basic Download Template + +```python +#!/usr/bin/env python3 +""" +Download script for [DATA SOURCE NAME] +""" + +import geopandas as gpd +import requests +from pathlib import Path +import logging + +logging.basicConfig(level=logging.INFO) +logger = logging.getLogger(__name__) + +# Constants +DATA_URL = "https://example.com/data.geojson" +OUTPUT_DIR = Path(__file__).parent.parent / "data" / "category" + +def download_data(): + """Download and process data.""" + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + logger.info(f"Downloading from {DATA_URL}") + + # Download + gdf = gpd.read_file(DATA_URL) + + # Process (example: project to WGS84) + if gdf.crs and gdf.crs != "EPSG:4326": + gdf = gdf.to_crs("EPSG:4326") + + # Save + output_file = OUTPUT_DIR / "data.geojson" + gdf.to_file(output_file, driver="GeoJSON") + + logger.info(f"Saved {len(gdf)} features to {output_file}") + +if __name__ == "__main__": + download_data() +``` + +### API Download Template + +```python +import requests +import json + +def download_from_api(): + """Download from REST API.""" + + # Query API + params = { + "where": "country='Panama'", + "outFields": "*", + "f": "geojson" + } + + response = requests.get(API_URL, params=params) + response.raise_for_status() + + # Parse and save + geojson = response.json() + + with open(output_file, 'w') as f: + json.dump(geojson, f) +``` + +--- + +## Data Processing Best Practices + +### 1. Coordinate System + +Always save in WGS84 (EPSG:4326): +```python +if gdf.crs != "EPSG:4326": + gdf = gdf.to_crs("EPSG:4326") +``` + +### 2. Column Naming + +Use lowercase with underscores: +```python +gdf.columns = gdf.columns.str.lower().str.replace(' ', '_') +``` + +### 3. Null Handling + +Remove or fill nulls: +```python +gdf['name'] = gdf['name'].fillna('Unknown') +gdf = gdf.dropna(subset=['geom']) +``` + +### 4. Simplify Geometry (if needed) + +For large datasets: +```python +gdf['geom'] = gdf['geom'].simplify(tolerance=0.001) +``` + +### 5. Validate GeoJSON + +```python +import json + +# Check valid JSON +with open(output_file) as f: + data = json.load(f) + +assert data['type'] == 'FeatureCollection' +assert 'features' in data +``` + +--- + +## Data Sources Reference + +| Source | Script | Frequency | Size | +|--------|--------|-----------|------| +| Geofabrik (OSM) | `download_geofabrik.py` | Monthly | ~100MB | +| HDX | `download_hdx_panama.py` | Annual | ~5MB | +| World Bank | `download_worldbank.py` | Annual | ~1MB | +| STRI | `download_stri_data.py` | As updated | ~50MB | +| Kontur | Manual | Quarterly | ~200MB | + +--- + +## Next Steps + +- **Dataset Sources**: [../data/DATASET_SOURCES.md](../data/DATASET_SOURCES.md) +- **Core Services**: [CORE_SERVICES.md](CORE_SERVICES.md) diff --git a/docs/data/DATASET_SOURCES.md b/docs/data/DATASET_SOURCES.md new file mode 100644 index 0000000000000000000000000000000000000000..d0bded1c1ae0f07fd4075fdbb86f1d3b6617bc75 --- /dev/null +++ b/docs/data/DATASET_SOURCES.md @@ -0,0 +1,240 @@ +# Dataset Sources + +Complete list of datasets available in GeoQuery with source attributions. + +--- + +## Administrative Boundaries + +### Panama Admin Levels (HDX) + +**Source**: Humanitarian Data Exchange +**Provider**: INEC (National Institute of Statistics and Census) +**Year**: 2021 +**URL**: https://data.humdata.org/dataset/panama-administrative-boundaries + +**Files**: +- `hdx/pan_admin1_2021.geojson` - 10 provinces + comarcas +- `hdx/pan_admin2_2021.geojson` - 81 districts +- `hdx/pan_admin3_2021.geojson` - 679 corregimientos + +**License**: Creative Commons Attribution + +--- + +## Infrastructure + +### Roads (OpenStreetMap via Geofabrik) + +**Source**: OpenStreetMap +**Provider**: Geofabrik +**URL**: https://download.geofabrik.de/central-america/panama.html + +**Files**: +- `osm/roads.geojson` - Highway network (motorways, primary, secondary roads) + +**License**: ODbL (Open Database License) + +### Healthcare (Healthsites.io) + +**Source**: Healthsites.io / OpenStreetMap +**URL**: https://healthsites.io/ + +**Files**: +- `osm/healthsites.geojson` - 986 healthcare facilities + +**License**: ODbL + +### Education (OpenStreetMap) + +**Source**: OpenStreetMap + +**Files**: +- `osm/universities.geojson` - 67 universities +- `osm/schools.geojson` - Schools and educational facilities + +**License**: ODbL + +### Other POI (OpenStreetMap) + +**Files**: +- `osm/traffic.geojson` - Traffic signals and intersections +- `osm/amenities.geojson` - Various amenities +- `osm/buildings.geojson` - Building footprints + +--- + +## Socioeconomic + +### World Bank Development Indicators + +**Source**: World Bank Open Data +**URL**: https://data.worldbank.org/ + +**Files**: +- `worldbank/indicators.geojson` - Country-level indicators joined with geometry + +**Indicators Available**: +- GDP per capita +- Life expectancy +- Access to electricity +- Internet users (% of population) +- And more... + +**License**: Creative Commons Attribution 4.0 + +### Multidimensional Poverty Index (MPI) + +**Source**: UNDP / Government of Panama + +**Files**: +- `socioeconomic/mpi_panama.geojson` - Poverty index by district + +**License**: Open Data + +### Province Socioeconomic Data + +**Source**: INEC Census 2023 (processed) + +**Files**: +- `socioeconomic/province_socioeconomic.geojson` - Province-level statistics + +**Metrics**: +- Population estimates +- Area +- Demographics + +--- + +## Population + +### Kontur Population Dataset + +**Source**: Kontur +**Provider**: Meta/Facebook population estimates +**URL**: https://data.humdata.org/organization/kontur + +**Files**: +- `kontur/kontur_population_PA_20220630.geojson` - 33,000+ H3 hexagons + +**Description**: High-resolution population density grid using H3 spatial index + +**License**: Creative Commons Attribution International + +--- + +## Environmental + +### STRI GIS Portal + +**Source**: Smithsonian Tropical Research Institute +**URL**: https://stridata-si.opendata.arcgis.com/ + +**Files**: +- `stri/protected_areas_2025.geojson` - Protected areas +- `stri/forest_cover_2021.geojson` - Forest cover classification + +**License**: CC BY 4.0 + +--- + +## Global Datasets + +### Natural Earth + +**Source**: Natural Earth Data +**URL**: https://www.naturalearthdata.com/ + +**Files**: +- `global/countries_110m.geojson` - Country boundaries (low resolution) + +**License**: Public Domain + +--- + +## Dataset Statistics + +| Category | Datasets | Total Features | +|----------|----------|----------------| +| Administrative | 3 | ~770 | +| Infrastructure | 8 | ~50,000 | +| Socioeconomic | 3 | ~100 | +| Population | 1 | 33,000 | +| Environmental | 2 | ~500 | +| Global | 1 | 177 | + +**Total**: ~100 datasets, ~85,000 features + +--- + +## Data Update Schedule + +| Dataset | Update Frequency | Last Updated | +|---------|-----------------|--------------| +| OSM Data | Monthly | 2026-01 | +| Admin Boundaries | Yearly | 2021 | +| Kontur Population | Quarterly | 2022-06 | +| STRI Environmental | As released | 2025 | +| World Bank | Annually | 2023 | + +--- + +## Adding New Datasets + +See [../backend/SCRIPTS.md](../backend/SCRIPTS.md) for data ingestion procedures. + +### Quick Steps + +1. Download GeoJSON file +2. Place in appropriate `backend/data/` subdirectory +3. Add entry to `backend/data/catalog.json`: + ```json + "my_dataset": { + "path": "category/my_dataset.geojson", + "description": "Short description", + "semantic_description": "Detailed description for AI", + "categories": ["category"], + "tags": ["tag1", "tag2"] + } + ``` +4. Regenerate embeddings: + ```bash + rm backend/data/embeddings.npy + python -c "from backend.core.semantic_search import get_semantic_search; get_semantic_search()" + ``` + +--- + +## Data Licenses Summary + +- **OpenStreetMap**: ODbL (share-alike, attribution required) +- **HDX/Government**: CC BY (attribution required) +- **World Bank**: CC BY 4.0 +- **Natural Earth**: Public Domain +- **STRI**: CC BY 4.0 +- **Kontur**: CC BY International + +**All datasets permit commercial use with proper attribution.** + +--- + +## Attribution in App + +GeoQuery automatically generates citations for query results: + +```json +{ + "data_citations": [ + "Administrative boundary data from HDX/INEC, 2021", + "Healthcare facilities from OpenStreetMap via Healthsites.io" + ] +} +``` + +These appear in the chat response for user transparency. + +--- + +## Next Steps + +- **Ingestion Scripts**: [../backend/SCRIPTS.md](../backend/SCRIPTS.md) diff --git a/docs/frontend/COMPONENTS.md b/docs/frontend/COMPONENTS.md new file mode 100644 index 0000000000000000000000000000000000000000..917d2dd36e48147fc0332fe8af0c8238ef6bf5eb --- /dev/null +++ b/docs/frontend/COMPONENTS.md @@ -0,0 +1,370 @@ +# Frontend Component Architecture + +Overview of GeoQuery's React components and their interactions. + +--- + +## Component Hierarchy + +``` +App (Next.js Layout) +└── Main Page + ├── ChatPanel + │ ├── MessageList + │ ├── InputForm + │ └── CitationLinks + ├── MapViewer + │ ├── LeafletMap + │ ├── LayerControl + │ │ ├── SortableLayerItem (draggable) + │ │ └── LayerSettings + │ └── EmptyState + └── DataExplorer + ├── ResultsTable + └── ExportButton +``` + +--- + +## Core Components + +### ChatPanel (`components/ChatPanel.tsx`) + +Main conversational interface with streaming support. + +**Props**: +```typescript +interface ChatPanelProps { + onLayerAdd: (layer: MapLayer) => void; +} +``` + +**State**: +```typescript +const [messages, setMessages] = useState([]); +const [isLoading, setIsLoading] = useState(false); +const [currentThought, setCurrentThought] = useState(''); +``` + +**Key Features**: +- SSE (Server-Sent Events) for streaming +- Real-time thought process display +- Markdown rendering +- Citation link generation +- Layer reference chips + +**SSE Implementation**: +```typescript +const response = await fetch('/api/chat', { + method: 'POST', + headers: {'Content-Type': 'application/json'}, + body: JSON.stringify({message, history}) +}); + +const reader = response.body.getReader(); +const decoder = new TextDecoder(); + +while (true) { + const {value, done} = await reader.read(); + if (done) break; + + const chunk = decoder.decode(value); + // Process SSE events... +} +``` + +**Event Handling**: +- `status`: Updates loading status +- `intent`: Shows detected intent +- `chunk`: Streams text incrementally +- `result`: Adds map layer and displays data + +--- + +### MapViewer (`components/MapViewer.tsx`) + +Interactive Leaflet map with layer management. + +**Props**: +```typescript +interface MapViewerProps { + layers: MapLayer[]; + onLayerUpdate: (id: string, updates: Partial) => void; + onLayerRemove: (id: string) => void; + onLayerReorder: (fromIndex: number, toIndex: number) => void; +} +``` + +**Layer Model**: +```typescript +interface MapLayer { + id: string; + name: string; + data: GeoJSON.FeatureCollection; + visible: boolean; + style: { + color: string; + fillColor: string; + fillOpacity: number; + weight: number; + }; + choropleth?: { + enabled: boolean; + column: string; + palette: string; + scale: 'linear' | 'log'; + min?: number; + max?: number; + }; + pointMarker?: { + icon: string; + style: 'icon' | 'circle'; + color: string; + size: number; + }; +} +``` + +**Key Features:** +- Layer visibility toggle +- Style customization (color, opacity, weight) +- Drag-and-drop layer reordering +- Auto-fit bounds to new layers +- Choropleth visualization +- Point rendering modes (icon vs circle) + +**Point Rendering Logic**: +```typescript +const pointToLayer = (feature: any, latlng: L.LatLng) => { + if (layer.pointMarker?.style === "circle") { + // Simple circle for large datasets + return L.circleMarker(latlng, { + radius: 5, + fillColor: layer.pointMarker.color, + color: '#ffffff', + weight: 2, + opacity: 1, + fillOpacity: 0.7 + }); + } + + // Emoji icon for POI + return L.marker(latlng, { + icon: L.divIcon({ + html: `
${layer.pointMarker.icon}
`, + className: 'custom-emoji-marker', + iconSize: [32, 32] + }) + }); +}; +``` + +**Choropleth Implementation**: +```typescript +// Calculate color based on value +const fillColor = getChoroplethColor( + feature.properties[choropleth.column], + choropleth.min, + choropleth.max, + choropleth.palette, + choropleth.scale +); +``` + +--- + +### DataExplorer (`components/DataExplorer.tsx`) + +Tabular data view with export capabilities. + +**Props**: +```typescript +interface DataExplorerProps { + data: any[]; + visible: boolean; +} +``` + +**Features**: +- Responsive table +- Column sorting +- CSV export +- Pagination for large datasets + +--- + +## Sub-Components + +### SortableLayerItem + +Draggable layer control item using `@dnd-kit`. + +**Features**: +- Drag handle with visual feedback +- Layer visibility toggle +- Settings expansion +- Style controls (color pickers, sliders) +- Remove layer button + +**Drag-and-Drop**: +```typescript +const { + attributes, + listeners, + setNodeRef, + transform, + transition +} = useSortable({ id: layer.id }); + +const style = { + transform: CSS.Transform.toString(transform), + transition +}; +``` + +### AutoFitBounds + +Utility component that auto-zooms map to new layers. + +```typescript +function AutoFitBounds({ layers }: { layers: MapLayer[] }) { + const map = useMap(); + + useEffect(() => { + if (layers.length > prevLayersLength.current) { + const latestLayer = layers[layers.length - 1]; + const bounds = L.geoJSON(latestLayer.data).getBounds(); + if (bounds.isValid()) { + map.fitBounds(bounds, { padding: [50, 50] }); + } + } + }, [layers]); + + return null; +} +``` + +--- + +## State Management + +### Global State (Main Page) + +```typescript +const [layers, setLayers] = useState([]); + +const handleLayerAdd = (geojson: GeoJSON.FeatureCollection) => { + const newLayer: MapLayer = { + id: geojson.properties.layer_id, + name: geojson.properties.layer_name, + data: geojson, + visible: true, + style: geojson.properties.style, + choropleth: geojson.properties.choropleth, + pointMarker: geojson.properties.pointMarker + }; + + setLayers(prev => [...prev, newLayer]); +}; +``` + +### Layer Updates + +```typescript +const handleLayerUpdate = (id: string, updates: Partial) => { + setLayers(prev => prev.map(layer => + layer.id === id ? { ...layer, ...updates } : layer + )); +}; +``` + +--- + +## Styling & Theming + +### Global Styles (`app/globals.css`) + +- Tailwind CSS for utility-first styling +- Custom CSS variables for theming +- Leaflet overrides for custom markers + +### Color Palettes + +```typescript +const COLOR_PALETTES = { + viridis: ['#440154', '#482878', ... '#fde725'], + blues: ['#f7fbff', ... '#08306b'], + reds: ['#fff5f0', ... '#67000d'] +}; +``` + +--- + +## Performance Optimizations + +### React Optimizations + +1. **Memoization**: + ```typescript + const MemoizedGeoJSON = React.memo(GeoJSON); + ``` + +2. **Key Management**: + ```typescript + key={layer.id + JSON.stringify(layer.style)} + ``` + +3. **Lazy Loading**: + - Components loaded on-demand + - Map tiles loaded progressively + +### Leaflet Optimizations + +1. **Circle Markers for Large Datasets**: + - Use `L.circleMarker` instead of `L.divIcon` for >500 points + - Significantly faster rendering + +2. **Layer Virtualization**: + - Only render visible layers + - Remove offscreen features + +--- + +## Responsive Design + +### Breakpoints + +- **Mobile** (<640px): Stacked layout +- **Tablet** (640-1024px): Sidebar collapses +- **Desktop** (>1024px): Full sidebar + +### Mobile Adaptations + +- Layer legend becomes bottom sheet +- Map controls repositioned +- Touch-friendly drag handles + +--- + +## Accessibility + +- **Keyboard Navigation**: Tab through controls +- **Screen Readers**: ARIA labels on interactive elements +- **Color Contrast**: WCAG AA compliant +- **Focus Indicators**: Visible focus states + +--- + +## Icons & Assets + +- **Lucide React**: Icon library for UI elements +- **Leaflet Markers**: Default and custom markers +- **Emoji Icons**: Unicode emojis for POI markers + +--- + +## Next Steps + +- **Backend Services**: [../backend/CORE_SERVICES.md](../backend/CORE_SERVICES.md) +- **API Reference**: [../backend/API_ENDPOINTS.md](../backend/API_ENDPOINTS.md) +- **Data Flow**: [../DATA_FLOW.md](../DATA_FLOW.md) diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..5ef6a520780202a1d6addd833d800ccb1ecac0bb --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,41 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files (can opt-in for committing if needed) +.env* + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000000000000000000000000000000000000..e215bc4ccf138bbc38ad58ad57e92135484b3c0f --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,36 @@ +This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs new file mode 100644 index 0000000000000000000000000000000000000000..05e726d1b4201bc8c7716d2b058279676582e8c0 --- /dev/null +++ b/frontend/eslint.config.mjs @@ -0,0 +1,18 @@ +import { defineConfig, globalIgnores } from "eslint/config"; +import nextVitals from "eslint-config-next/core-web-vitals"; +import nextTs from "eslint-config-next/typescript"; + +const eslintConfig = defineConfig([ + ...nextVitals, + ...nextTs, + // Override default ignores of eslint-config-next. + globalIgnores([ + // Default ignores of eslint-config-next: + ".next/**", + "out/**", + "build/**", + "next-env.d.ts", + ]), +]); + +export default eslintConfig; diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 0000000000000000000000000000000000000000..afcbe7e459ea2f294b80e42d5603d7c28236519e --- /dev/null +++ b/frontend/next.config.ts @@ -0,0 +1,10 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + output: 'export', + images: { + unoptimized: true, + }, +}; + +export default nextConfig; diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..2ded4d3e58a42b093622a64b3a81cf63b4f208fa --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,8573 @@ +{ + "name": "frontend", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "frontend", + "version": "0.1.0", + "dependencies": { + "@dnd-kit/core": "^6.3.1", + "@dnd-kit/sortable": "^10.0.0", + "@dnd-kit/utilities": "^3.2.2", + "clsx": "^2.1.1", + "framer-motion": "^12.24.11", + "leaflet": "^1.9.4", + "lucide-react": "^0.562.0", + "next": "16.1.1", + "react": "19.2.3", + "react-dom": "19.2.3", + "react-leaflet": "^5.0.0", + "react-markdown": "^10.1.0", + "recharts": "^3.6.0", + "remark-gfm": "^4.0.1", + "tailwind-merge": "^3.4.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@types/leaflet": "^1.9.21", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "eslint": "^9", + "eslint-config-next": "16.1.1", + "tailwindcss": "^4", + "typescript": "^5" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@dnd-kit/accessibility": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.1.1.tgz", + "integrity": "sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/core": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.3.1.tgz", + "integrity": "sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==", + "license": "MIT", + "dependencies": { + "@dnd-kit/accessibility": "^3.1.1", + "@dnd-kit/utilities": "^3.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/sortable": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-10.0.0.tgz", + "integrity": "sha512-+xqhmIIzvAYMGfBYYnbKuNicfSsk4RksY2XdmJhT+HAC01nix6fHCztU68jooFiMUB01Ky3F0FyOvhG/BZrWkg==", + "license": "MIT", + "dependencies": { + "@dnd-kit/utilities": "^3.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "@dnd-kit/core": "^6.3.0", + "react": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/utilities": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.2.tgz", + "integrity": "sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emnapi/core": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz", + "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.1.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz", + "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", + "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz", + "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.2", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz", + "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@img/colour": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz", + "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.10.0" + } + }, + "node_modules/@next/env": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.1.1.tgz", + "integrity": "sha512-3oxyM97Sr2PqiVyMyrZUtrtM3jqqFxOQJVuKclDsgj/L728iZt/GyslkN4NwarledZATCenbk4Offjk1hQmaAA==", + "license": "MIT" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.1.1.tgz", + "integrity": "sha512-Ovb/6TuLKbE1UiPcg0p39Ke3puyTCIKN9hGbNItmpQsp+WX3qrjO3WaMVSi6JHr9X1NrmthqIguVHodMJbh/dw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.1.1.tgz", + "integrity": "sha512-JS3m42ifsVSJjSTzh27nW+Igfha3NdBOFScr9C80hHGrWx55pTrVL23RJbqir7k7/15SKlrLHhh/MQzqBBYrQA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.1.1.tgz", + "integrity": "sha512-hbyKtrDGUkgkyQi1m1IyD3q4I/3m9ngr+V93z4oKHrPcmxwNL5iMWORvLSGAf2YujL+6HxgVvZuCYZfLfb4bGw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.1.1.tgz", + "integrity": "sha512-/fvHet+EYckFvRLQ0jPHJCUI5/B56+2DpI1xDSvi80r/3Ez+Eaa2Yq4tJcRTaB1kqj/HrYKn8Yplm9bNoMJpwQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.1.1.tgz", + "integrity": "sha512-MFHrgL4TXNQbBPzkKKur4Fb5ICEJa87HM7fczFs2+HWblM7mMLdco3dvyTI+QmLBU9xgns/EeeINSZD6Ar+oLg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.1.1.tgz", + "integrity": "sha512-20bYDfgOQAPUkkKBnyP9PTuHiJGM7HzNBbuqmD0jiFVZ0aOldz+VnJhbxzjcSabYsnNjMPsE0cyzEudpYxsrUQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.1.1.tgz", + "integrity": "sha512-9pRbK3M4asAHQRkwaXwu601oPZHghuSC8IXNENgbBSyImHv/zY4K5udBusgdHkvJ/Tcr96jJwQYOll0qU8+fPA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.1.1.tgz", + "integrity": "sha512-bdfQkggaLgnmYrFkSQfsHfOhk/mCYmjnrbRCGgkMcoOBZ4n+TRRSLmT/CU5SATzlBJ9TpioUyBW/vWFXTqQRiA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.1.1.tgz", + "integrity": "sha512-Ncwbw2WJ57Al5OX0k4chM68DKhEPlrXBaSXDCi2kPi5f4d8b3ejr3RRJGfKBLrn2YJL5ezNS7w2TZLHSti8CMw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@react-leaflet/core": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-3.0.0.tgz", + "integrity": "sha512-3EWmekh4Nz+pGcr+xjf0KNyYfC3U2JjnkWsh0zcqaexYqmmB5ZhH37kz41JXGmKzpaMZCnPofBBm64i+YrEvGQ==", + "license": "Hippocratic-2.1", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/@reduxjs/toolkit": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.11.2.tgz", + "integrity": "sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==", + "license": "MIT", + "dependencies": { + "@standard-schema/spec": "^1.0.0", + "@standard-schema/utils": "^0.3.0", + "immer": "^11.0.0", + "redux": "^5.0.1", + "redux-thunk": "^3.1.0", + "reselect": "^5.1.0" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || ^18 || ^19", + "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-redux": { + "optional": true + } + } + }, + "node_modules/@reduxjs/toolkit/node_modules/immer": { + "version": "11.1.3", + "resolved": "https://registry.npmjs.org/immer/-/immer-11.1.3.tgz", + "integrity": "sha512-6jQTc5z0KJFtr1UgFpIL3N9XSC3saRaI9PwWtzM2pSqkNGtiNkYY2OSwkOGDK2XcTRcLb1pi/aNkKZz0nxVH4Q==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/@standard-schema/spec": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz", + "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==", + "license": "MIT" + }, + "node_modules/@standard-schema/utils": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz", + "integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==", + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "node_modules/@tailwindcss/node": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz", + "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.4", + "enhanced-resolve": "^5.18.3", + "jiti": "^2.6.1", + "lightningcss": "1.30.2", + "magic-string": "^0.30.21", + "source-map-js": "^1.2.1", + "tailwindcss": "4.1.18" + } + }, + "node_modules/@tailwindcss/oxide": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz", + "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@tailwindcss/oxide-android-arm64": "4.1.18", + "@tailwindcss/oxide-darwin-arm64": "4.1.18", + "@tailwindcss/oxide-darwin-x64": "4.1.18", + "@tailwindcss/oxide-freebsd-x64": "4.1.18", + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18", + "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18", + "@tailwindcss/oxide-linux-arm64-musl": "4.1.18", + "@tailwindcss/oxide-linux-x64-gnu": "4.1.18", + "@tailwindcss/oxide-linux-x64-musl": "4.1.18", + "@tailwindcss/oxide-wasm32-wasi": "4.1.18", + "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18", + "@tailwindcss/oxide-win32-x64-msvc": "4.1.18" + } + }, + "node_modules/@tailwindcss/oxide-android-arm64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz", + "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-arm64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz", + "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-darwin-x64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz", + "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-freebsd-x64": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz", + "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz", + "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz", + "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz", + "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz", + "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-linux-x64-musl": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz", + "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-wasm32-wasi": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz", + "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==", + "bundleDependencies": [ + "@napi-rs/wasm-runtime", + "@emnapi/core", + "@emnapi/runtime", + "@tybys/wasm-util", + "@emnapi/wasi-threads", + "tslib" + ], + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1", + "@emnapi/wasi-threads": "^1.1.0", + "@napi-rs/wasm-runtime": "^1.1.0", + "@tybys/wasm-util": "^0.10.1", + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz", + "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz", + "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@tailwindcss/postcss": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.18.tgz", + "integrity": "sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "@tailwindcss/node": "4.1.18", + "@tailwindcss/oxide": "4.1.18", + "postcss": "^8.4.41", + "tailwindcss": "4.1.18" + } + }, + "node_modules/@tybys/wasm-util": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz", + "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz", + "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz", + "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.7.tgz", + "integrity": "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz", + "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "license": "MIT", + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/leaflet": { + "version": "1.9.21", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.21.tgz", + "integrity": "sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.19.27", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.27.tgz", + "integrity": "sha512-N2clP5pJhB2YnZJ3PIHFk5RkygRX5WO/5f0WC08tp0wd+sv0rsJk3MqWn3CbNmT2J505a5336jaQj4ph1AdMug==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.7", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz", + "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==", + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@types/use-sync-external-store": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz", + "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.52.0.tgz", + "integrity": "sha512-okqtOgqu2qmZJ5iN4TWlgfF171dZmx2FzdOv2K/ixL2LZWDStL8+JgQerI2sa8eAEfoydG9+0V96m7V+P8yE1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.52.0", + "@typescript-eslint/type-utils": "8.52.0", + "@typescript-eslint/utils": "8.52.0", + "@typescript-eslint/visitor-keys": "8.52.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.52.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.52.0.tgz", + "integrity": "sha512-iIACsx8pxRnguSYhHiMn2PvhvfpopO9FXHyn1mG5txZIsAaB6F0KwbFnUQN3KCiG3Jcuad/Cao2FAs1Wp7vAyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.52.0", + "@typescript-eslint/types": "8.52.0", + "@typescript-eslint/typescript-estree": "8.52.0", + "@typescript-eslint/visitor-keys": "8.52.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.52.0.tgz", + "integrity": "sha512-xD0MfdSdEmeFa3OmVqonHi+Cciab96ls1UhIF/qX/O/gPu5KXD0bY9lu33jj04fjzrXHcuvjBcBC+D3SNSadaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.52.0", + "@typescript-eslint/types": "^8.52.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.52.0.tgz", + "integrity": "sha512-ixxqmmCcc1Nf8S0mS0TkJ/3LKcC8mruYJPOU6Ia2F/zUUR4pApW7LzrpU3JmtePbRUTes9bEqRc1Gg4iyRnDzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.52.0", + "@typescript-eslint/visitor-keys": "8.52.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.52.0.tgz", + "integrity": "sha512-jl+8fzr/SdzdxWJznq5nvoI7qn2tNYV/ZBAEcaFMVXf+K6jmXvAFrgo/+5rxgnL152f//pDEAYAhhBAZGrVfwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.52.0.tgz", + "integrity": "sha512-JD3wKBRWglYRQkAtsyGz1AewDu3mTc7NtRjR/ceTyGoPqmdS5oCdx/oZMWD5Zuqmo6/MpsYs0wp6axNt88/2EQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.52.0", + "@typescript-eslint/typescript-estree": "8.52.0", + "@typescript-eslint/utils": "8.52.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.52.0.tgz", + "integrity": "sha512-LWQV1V4q9V4cT4H5JCIx3481iIFxH1UkVk+ZkGGAV1ZGcjGI9IoFOfg3O6ywz8QqCDEp7Inlg6kovMofsNRaGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.52.0.tgz", + "integrity": "sha512-XP3LClsCc0FsTK5/frGjolyADTh3QmsLp6nKd476xNI9CsSsLnmn4f0jrzNoAulmxlmNIpeXuHYeEQv61Q6qeQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.52.0", + "@typescript-eslint/tsconfig-utils": "8.52.0", + "@typescript-eslint/types": "8.52.0", + "@typescript-eslint/visitor-keys": "8.52.0", + "debug": "^4.4.3", + "minimatch": "^9.0.5", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.52.0.tgz", + "integrity": "sha512-wYndVMWkweqHpEpwPhwqE2lnD2DxC6WVLupU/DOt/0/v+/+iQbbzO3jOHjmBMnhu0DgLULvOaU4h4pwHYi2oRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.52.0", + "@typescript-eslint/types": "8.52.0", + "@typescript-eslint/typescript-estree": "8.52.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.52.0.tgz", + "integrity": "sha512-ink3/Zofus34nmBsPjow63FP5M7IGff0RKAgqR6+CFpdk22M7aLwC9gOcLGYqr7MczLPzZVERW9hRog3O4n1sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.52.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", + "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", + "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", + "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", + "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", + "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", + "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", + "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", + "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", + "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", + "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", + "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", + "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", + "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", + "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", + "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", + "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.11" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", + "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", + "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", + "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.11.1.tgz", + "integrity": "sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==", + "dev": true, + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.12", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.12.tgz", + "integrity": "sha512-Mij6Lij93pTAIsSYy5cyBQ975Qh9uLEc5rwGTpomiZeXZL9yIS6uORJakb3ScHgfs0serMMfIbXzokPMuEiRyw==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001763", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001763.tgz", + "integrity": "sha512-mh/dGtq56uN98LlNX9qdbKnzINhX0QzhiWBFEkFfsFO4QyCvL8YegrJAazCwXIeqkIob8BlZPGM3xdnY+sgmvQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==", + "license": "MIT" + }, + "node_modules/decode-named-character-reference": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", + "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "devOptional": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.267", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz", + "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/enhanced-resolve": { + "version": "5.18.4", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz", + "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.1.tgz", + "integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.2.tgz", + "integrity": "sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.1", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.1.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.3.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.5", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-toolkit": { + "version": "1.43.0", + "resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.43.0.tgz", + "integrity": "sha512-SKCT8AsWvYzBBuUqMk4NPwFlSdqLpJwmy6AP322ERn8W2YLIB6JBXnwMI2Qsh2gfphT3q7EKAxKb23cvFHFwKA==", + "license": "MIT", + "workspaces": [ + "docs", + "benchmarks" + ] + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.2", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz", + "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.2", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-next": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.1.1.tgz", + "integrity": "sha512-55nTpVWm3qeuxoQKLOjQVciKZJUphKrNM0fCcQHAIOGl6VFXgaqeMfv0aKJhs7QtcnlAPhNVqsqRfRjeKBPIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "16.1.1", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.32.0", + "eslint-plugin-jsx-a11y": "^6.10.0", + "eslint-plugin-react": "^7.37.0", + "eslint-plugin-react-hooks": "^7.0.0", + "globals": "16.4.0", + "typescript-eslint": "^8.46.0" + }, + "peerDependencies": { + "eslint": ">=9.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-next/node_modules/globals": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", + "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz", + "integrity": "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.32.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz", + "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.9", + "array.prototype.findlastindex": "^1.2.6", + "array.prototype.flat": "^1.3.3", + "array.prototype.flatmap": "^1.3.3", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "hasown": "^2.0.2", + "is-core-module": "^2.16.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.1", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.9", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-util-is-identifier-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/framer-motion": { + "version": "12.24.11", + "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.24.11.tgz", + "integrity": "sha512-cNTxTGvFKcY/eQcuGMpG2rb7DOxEFW+A8h5MFhwPqQrn4Jyz9hFhJAlHpngxZIkS0Kk+rZiYmuxNMgO5dGxeYQ==", + "license": "MIT", + "dependencies": { + "motion-dom": "^12.24.11", + "motion-utils": "^12.24.10", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "@emotion/is-prop-valid": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/is-prop-valid": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz", + "integrity": "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hast-util-to-jsx-runtime": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==", + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-mdx-expression": "^2.0.0", + "mdast-util-mdx-jsx": "^3.0.0", + "mdast-util-mdxjs-esm": "^2.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-js": "^1.0.0", + "unist-util-position": "^5.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/html-url-attributes": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz", + "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz", + "integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inline-style-parser": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==", + "license": "MIT" + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-bun-module/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jiti": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dev": true, + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==", + "license": "BSD-2-Clause" + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lightningcss": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz", + "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^2.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.30.2", + "lightningcss-darwin-arm64": "1.30.2", + "lightningcss-darwin-x64": "1.30.2", + "lightningcss-freebsd-x64": "1.30.2", + "lightningcss-linux-arm-gnueabihf": "1.30.2", + "lightningcss-linux-arm64-gnu": "1.30.2", + "lightningcss-linux-arm64-musl": "1.30.2", + "lightningcss-linux-x64-gnu": "1.30.2", + "lightningcss-linux-x64-musl": "1.30.2", + "lightningcss-win32-arm64-msvc": "1.30.2", + "lightningcss-win32-x64-msvc": "1.30.2" + } + }, + "node_modules/lightningcss-android-arm64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz", + "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz", + "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-darwin-x64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz", + "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz", + "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz", + "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz", + "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz", + "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz", + "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz", + "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz", + "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.30.2", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz", + "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lucide-react": { + "version": "0.562.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.562.0.tgz", + "integrity": "sha512-82hOAu7y0dbVuFfmO4bYF1XEwYk/mEbM5E+b1jgci/udUBEE/R7LF5Ip0CCEmXe8AybRM8L+04eP+LGZeDvkiw==", + "license": "ISC", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/markdown-table": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", + "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", + "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", + "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-expression": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz", + "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdx-jsx": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "parse-entities": "^4.0.0", + "stringify-entities": "^4.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-mdxjs-esm": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", + "license": "MIT", + "dependencies": { + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromark": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", + "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", + "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/motion-dom": { + "version": "12.24.11", + "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.24.11.tgz", + "integrity": "sha512-DlWOmsXMJrV8lzZyd+LKjG2CXULUs++bkq8GZ2Sr0R0RRhs30K2wtY+LKiTjhmJU3W61HK+rB0GLz6XmPvTA1A==", + "license": "MIT", + "dependencies": { + "motion-utils": "^12.24.10" + } + }, + "node_modules/motion-utils": { + "version": "12.24.10", + "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.24.10.tgz", + "integrity": "sha512-x5TFgkCIP4pPsRLpKoI86jv/q8t8FQOiM/0E8QKBzfMozWHfkKap2gA1hOki+B5g3IsBNpxbUnfOum1+dgvYww==", + "license": "MIT" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "dev": true, + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next": { + "version": "16.1.1", + "resolved": "https://registry.npmjs.org/next/-/next-16.1.1.tgz", + "integrity": "sha512-QI+T7xrxt1pF6SQ/JYFz95ro/mg/1Znk5vBebsWwbpejj1T0A23hO7GYEaVac9QUOT2BIMiuzm0L99ooq7k0/w==", + "license": "MIT", + "dependencies": { + "@next/env": "16.1.1", + "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.8.3", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.1.1", + "@next/swc-darwin-x64": "16.1.1", + "@next/swc-linux-arm64-gnu": "16.1.1", + "@next/swc-linux-arm64-musl": "16.1.1", + "@next/swc-linux-x64-gnu": "16.1.1", + "@next/swc-linux-x64-musl": "16.1.1", + "@next/swc-win32-arm64-msvc": "16.1.1", + "@next/swc-win32-x64-msvc": "16.1.1", + "sharp": "^0.34.4" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-entities": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", + "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz", + "integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.3" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-leaflet": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-5.0.0.tgz", + "integrity": "sha512-CWbTpr5vcHw5bt9i4zSlPEVQdTVcML390TjeDG0cK59z1ylexpqC6M1PJFjV8jD7CF+ACBFsLIDs6DRMoLEofw==", + "license": "Hippocratic-2.1", + "dependencies": { + "@react-leaflet/core": "^3.0.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/react-markdown": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz", + "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "html-url-attributes": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "unified": "^11.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=18", + "react": ">=18" + } + }, + "node_modules/react-redux": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.2.0.tgz", + "integrity": "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==", + "license": "MIT", + "dependencies": { + "@types/use-sync-external-store": "^0.0.6", + "use-sync-external-store": "^1.4.0" + }, + "peerDependencies": { + "@types/react": "^18.2.25 || ^19", + "react": "^18.0 || ^19", + "redux": "^5.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "redux": { + "optional": true + } + } + }, + "node_modules/recharts": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-3.6.0.tgz", + "integrity": "sha512-L5bjxvQRAe26RlToBAziKUB7whaGKEwD3znoM6fz3DrTowCIC/FnJYnuq1GEzB8Zv2kdTfaxQfi5GoH0tBinyg==", + "license": "MIT", + "workspaces": [ + "www" + ], + "dependencies": { + "@reduxjs/toolkit": "1.x.x || 2.x.x", + "clsx": "^2.1.1", + "decimal.js-light": "^2.5.1", + "es-toolkit": "^1.39.3", + "eventemitter3": "^5.0.1", + "immer": "^10.1.1", + "react-redux": "8.x.x || 9.x.x", + "reselect": "5.1.1", + "tiny-invariant": "^1.3.3", + "use-sync-external-store": "^1.2.2", + "victory-vendor": "^37.0.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/redux": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz", + "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==", + "license": "MIT" + }, + "node_modules/redux-thunk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz", + "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==", + "license": "MIT", + "peerDependencies": { + "redux": "^5.0.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", + "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-rehype": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", + "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/reselect": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz", + "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "dev": true, + "license": "MIT" + }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-to-js": { + "version": "1.1.21", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz", + "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==", + "license": "MIT", + "dependencies": { + "style-to-object": "1.0.14" + } + }, + "node_modules/style-to-object": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz", + "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==", + "license": "MIT", + "dependencies": { + "inline-style-parser": "0.2.7" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwind-merge": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.4.0.tgz", + "integrity": "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/dcastil" + } + }, + "node_modules/tailwindcss": { + "version": "4.1.18", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz", + "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ts-api-utils": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.4.0.tgz", + "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.52.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.52.0.tgz", + "integrity": "sha512-atlQQJ2YkO4pfTVQmQ+wvYQwexPDOIgo+RaVcD7gHgzy/IQA+XTyuxNM9M9TVXvttkF7koBHmcwisKdOAf2EcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.52.0", + "@typescript-eslint/parser": "8.52.0", + "@typescript-eslint/typescript-estree": "8.52.0", + "@typescript-eslint/utils": "8.52.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unrs-resolver": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", + "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.3.0" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-android-arm-eabi": "1.11.1", + "@unrs/resolver-binding-android-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-arm64": "1.11.1", + "@unrs/resolver-binding-darwin-x64": "1.11.1", + "@unrs/resolver-binding-freebsd-x64": "1.11.1", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", + "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", + "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", + "@unrs/resolver-binding-linux-x64-musl": "1.11.1", + "@unrs/resolver-binding-wasm32-wasi": "1.11.1", + "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", + "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", + "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/victory-vendor": { + "version": "37.3.6", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.6.tgz", + "integrity": "sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==", + "license": "MIT AND ISC", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.5.tgz", + "integrity": "sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000000000000000000000000000000000000..6e31f696d2ea9fe1d72d5100787904a6d3320c17 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,39 @@ +{ + "name": "frontend", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "eslint" + }, + "dependencies": { + "@dnd-kit/core": "^6.3.1", + "@dnd-kit/sortable": "^10.0.0", + "@dnd-kit/utilities": "^3.2.2", + "clsx": "^2.1.1", + "framer-motion": "^12.24.11", + "leaflet": "^1.9.4", + "lucide-react": "^0.562.0", + "next": "16.1.1", + "react": "19.2.3", + "react-dom": "19.2.3", + "react-leaflet": "^5.0.0", + "react-markdown": "^10.1.0", + "recharts": "^3.6.0", + "remark-gfm": "^4.0.1", + "tailwind-merge": "^3.4.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "@types/leaflet": "^1.9.21", + "@types/node": "^20", + "@types/react": "^19", + "@types/react-dom": "^19", + "eslint": "^9", + "eslint-config-next": "16.1.1", + "tailwindcss": "^4", + "typescript": "^5" + } +} diff --git a/frontend/postcss.config.mjs b/frontend/postcss.config.mjs new file mode 100644 index 0000000000000000000000000000000000000000..61e36849cf7cfa9f1f71b4a3964a4953e3e243d3 --- /dev/null +++ b/frontend/postcss.config.mjs @@ -0,0 +1,7 @@ +const config = { + plugins: { + "@tailwindcss/postcss": {}, + }, +}; + +export default config; diff --git a/frontend/public/file.svg b/frontend/public/file.svg new file mode 100644 index 0000000000000000000000000000000000000000..004145cddf3f9db91b57b9cb596683c8eb420862 --- /dev/null +++ b/frontend/public/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/public/globe.svg b/frontend/public/globe.svg new file mode 100644 index 0000000000000000000000000000000000000000..567f17b0d7c7fb662c16d4357dd74830caf2dccb --- /dev/null +++ b/frontend/public/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/public/next.svg b/frontend/public/next.svg new file mode 100644 index 0000000000000000000000000000000000000000..5174b28c565c285e3e312ec5178be64fbeca8398 --- /dev/null +++ b/frontend/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/public/vercel.svg b/frontend/public/vercel.svg new file mode 100644 index 0000000000000000000000000000000000000000..77053960334e2e34dc584dea8019925c3b4ccca9 --- /dev/null +++ b/frontend/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/public/window.svg b/frontend/public/window.svg new file mode 100644 index 0000000000000000000000000000000000000000..b2b2a44f6ebc70c450043c05a002e7a93ba5d651 --- /dev/null +++ b/frontend/public/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/app/favicon.ico b/frontend/src/app/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c Binary files /dev/null and b/frontend/src/app/favicon.ico differ diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css new file mode 100644 index 0000000000000000000000000000000000000000..6e2843e8a6cb362d70701f91c49965fd52ccf459 --- /dev/null +++ b/frontend/src/app/globals.css @@ -0,0 +1,39 @@ +@import "tailwindcss"; + +:root { + --background: #ffffff; + --foreground: #171717; +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --font-sans: var(--font-geist-sans); + --font-mono: var(--font-geist-mono); +} + +@media (prefers-color-scheme: dark) { + :root { + --background: #0a0a0a; + --foreground: #ededed; + } +} + +body { + background: var(--background); + color: var(--foreground); + font-family: Arial, Helvetica, sans-serif; +} + +/* Custom emoji/icon markers for map points */ +.custom-emoji-marker { + background: transparent !important; + border: none !important; + box-shadow: none !important; +} + +.custom-emoji-marker div { + display: flex; + align-items: center; + justify-content: center; +} diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx new file mode 100644 index 0000000000000000000000000000000000000000..f99f4b4a362a4d226521c7d77e2bf4cbb11f3b0b --- /dev/null +++ b/frontend/src/app/layout.tsx @@ -0,0 +1,35 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +const geistSans = Geist({ + variable: "--font-geist-sans", + subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", + subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + {children} + + + ); +} diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx new file mode 100644 index 0000000000000000000000000000000000000000..c06f24a6c5b40d42cfaa641da547e3a55c5463f4 --- /dev/null +++ b/frontend/src/app/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import dynamic from "next/dynamic"; +import ChatPanel from "@/components/ChatPanel"; +import { useState } from "react"; +import type { MapLayer } from "@/components/MapViewer"; + +// Dynamic import for MapViewer (client-side only) +const MapViewer = dynamic(() => import("@/components/MapViewer"), { + ssr: false, + loading: () =>
Loading Map...
+}); + +export default function Home() { + const [layers, setLayers] = useState([]); + + const handleMapUpdate = (newGeojson: any) => { + // Unique ID generation + const id = Date.now().toString() + Math.random().toString(36).substr(2, 9); + + // Extract metadata from backend response + const name = newGeojson.properties?.layer_name || `Layer ${layers.length + 1}`; + const recommendedStyle = newGeojson.properties?.style || {}; + const choroplethConfig = newGeojson.properties?.choropleth || null; + + // Construct new layer with defaults if style is missing + const newLayer: MapLayer = { + id, + name, + data: newGeojson, + visible: true, + style: { + color: recommendedStyle.color || "#6366f1", + fillColor: recommendedStyle.fillColor || recommendedStyle.color || "#6366f1", + fillOpacity: recommendedStyle.fillOpacity || 0.3, + weight: recommendedStyle.weight || 1 + }, + // Pass choropleth config if present + ...(choroplethConfig && { choropleth: choroplethConfig }), + + // Point marker config + pointMarker: newGeojson.properties?.pointMarker + }; + + // Add to layers (newest on top) + setLayers(prev => [...prev, newLayer]); + }; + + const handleLayerUpdate = (id: string, updates: Partial) => { + setLayers(prev => prev.map(layer => + layer.id === id ? { ...layer, ...updates } : layer + )); + }; + + const handleLayerRemove = (id: string) => { + setLayers(prev => prev.filter(layer => layer.id !== id)); + }; + + const handleLayerReorder = (fromIndex: number, toIndex: number) => { + setLayers(prev => { + const newLayers = [...prev]; + const [movedLayer] = newLayers.splice(fromIndex, 1); + newLayers.splice(toIndex, 0, movedLayer); + return newLayers; + }); + }; + + return ( +
+ {/* Left Panel: Chat (30-40% width) */} +
+ +
+ + {/* Right Panel: Map (Remaining width) */} +
+ +
+
+ ); +} diff --git a/frontend/src/components/ChatPanel.tsx b/frontend/src/components/ChatPanel.tsx new file mode 100644 index 0000000000000000000000000000000000000000..0c56d116871f5c22e6e973e467b27a984bce16fb --- /dev/null +++ b/frontend/src/components/ChatPanel.tsx @@ -0,0 +1,677 @@ +"use client"; + +import { useState, useRef, useEffect, useCallback } from "react"; +import { Send, Map as MapIcon, Database, Sparkles, BarChart3, Brain } from "lucide-react"; +import { cn } from "@/lib/utils"; +import dynamic from "next/dynamic"; +import ReactMarkdown from "react-markdown"; +import remarkGfm from "remark-gfm"; + +// Dynamic import for chart renderer to avoid SSR issues +const ChartRenderer = dynamic( + () => import("./charts/ChartRenderer"), + { ssr: false, loading: () =>
} +); + +// ============================================================================ +// ============================================================================ +// Types +// ============================================================================ + +import type { MapLayer } from "./MapViewer"; + +interface ChartData { + type: 'bar' | 'line' | 'pie' | 'donut'; + title?: string; + data: Array<{ [key: string]: any }>; + xKey?: string; + yKey?: string; + lines?: Array<{ key: string; color?: string; name?: string }>; +} + +interface Message { + role: "user" | "assistant"; + content: string; + sql?: string; + citations?: string[]; + intent?: string; + chart?: ChartData; + rawData?: Array; + thoughts?: string; + status?: string; // e.g., "Thinking...", "Writing SQL...", etc. +} + +interface ChatPanelProps { + onMapUpdate?: (geojson: any) => void; + layers?: MapLayer[]; +} + +// ============================================================================ +// Loading Indicator Component +// ============================================================================ + +function LoadingDots() { + return ( +
+ + + +
+ ); +} + +// ============================================================================ +// Message Bubble Component +// ============================================================================ + +interface MessageBubbleProps { + message: Message; +} + +function MessageBubble({ message: m }: MessageBubbleProps) { + const isUser = m.role === "user"; + const isLoading = !!m.status && !m.content; + const hasContent = !!m.content; + const hasThoughts = !!m.thoughts; + + // Auto-collapse reasoning when generation is done + const [isThinkingOpen, setIsThinkingOpen] = useState(false); + + useEffect(() => { + if (m.status === "Thinking..." || m.status === "Reasoning...") { + setIsThinkingOpen(true); + } else if (!m.status && hasThoughts) { + // Collapse when done + setIsThinkingOpen(false); + } + }, [m.status, hasThoughts]); + + return ( +
+ {/* Main Message Bubble */} +
+ {/* Status Indicator (inside bubble when loading) */} + {isLoading && ( +
+ + {m.status} +
+ )} + + {/* Content with Markdown */} + {hasContent && ( +
+ ( +
+ ), + code: ({ node, ...props }) => ( + + ) + }} + > + {m.content} + +
+ )} + + {/* Inline status when content is present but still loading more */} + {hasContent && m.status && ( +
+ + {m.status} +
+ )} +
+ + {/* Thought Process (Collapsible) - Auto-collapses when done */} + {hasThoughts && ( +
+ + + {isThinkingOpen && ( +
+
+
+
+ {m.thoughts} +
+
+
+ )} +
+ )} + + {/* Chart Visualization */} + {m.chart && ( +
+ +
+ )} + + {/* Data Citations */} + {m.citations && m.citations.length > 0 && ( +
+ {m.citations.map((citation, idx) => ( + + + {citation} + + ))} +
+ )} + + {/* SQL Query and Raw Data (collapsible) */} + {(m.sql || m.rawData) && ( +
+ + + View SQL & Raw Data + +
+ {m.sql && ( +
+ {m.sql} +
+ )} + + {m.rawData && m.rawData.length > 0 && m.rawData[0] && ( +
+ + + + {Object.keys(m.rawData[0] || {}).map((key) => ( + + ))} + + + + {m.rawData.map((row, idx) => ( + + {Object.values(row).map((val: any, vIdx) => ( + + ))} + + ))} + +
+ {key} +
+ {typeof val === 'object' ? JSON.stringify(val) : String(val)} +
+
+ )} +
+
+ )} +
+ ); +} + +// ============================================================================ +// Main ChatPanel Component +// ============================================================================ + +export default function ChatPanel({ onMapUpdate, layers = [] }: ChatPanelProps) { + const [messages, setMessages] = useState([ + { + role: "assistant", + content: "Welcome! I'm GeoQuery, your Territorial Intelligence Assistant for Panama." + } + ]); + const [input, setInput] = useState(""); + const [loading, setLoading] = useState(false); + const messagesEndRef = useRef(null); + + // Slash command state + const [showSuggestions, setShowSuggestions] = useState(false); + const [suggestionQuery, setSuggestionQuery] = useState(""); + const [activeSuggestionIndex, setActiveSuggestionIndex] = useState(0); + const inputRef = useRef(null); + const [cursorPosition, setCursorPosition] = useState<{ top: number, left: number } | null>(null); + const slashContext = useRef<{ node: Node, index: number } | null>(null); + + // Auto-scroll to bottom when new messages arrive + useEffect(() => { + messagesEndRef.current?.scrollIntoView({ behavior: "smooth" }); + }, [messages]); + + // ======================================================================== + // Message Updater - Properly handles immutable state updates + // ======================================================================== + const updateLastMessage = useCallback((updater: (msg: Message) => Message) => { + setMessages(prev => { + const newMsgs = [...prev]; + const lastMsgIndex = newMsgs.length - 1; + // Create a new message object to avoid mutation + newMsgs[lastMsgIndex] = updater({ ...newMsgs[lastMsgIndex] }); + return newMsgs; + }); + }, []); + + // ======================================================================== + // Slash Command Logic & Rich Text Input + // ======================================================================== + + // Filter layers based on query + const filteredLayers = layers.filter(layer => + layer.name.toLowerCase().includes(suggestionQuery.toLowerCase()) + ); + + const handleInput = () => { + if (!inputRef.current) return; + + const text = inputRef.current.innerText; + setInput(text); // Keep simple text state for disabled check + + // Detect slash command using Selection API + const selection = window.getSelection(); + if (!selection || selection.rangeCount === 0) { + setShowSuggestions(false); + return; + } + + const range = selection.getRangeAt(0); + const node = range.startContainer; + + // Only trigger if we are in a text node + if (node.nodeType === Node.TEXT_NODE && node.textContent) { + const textBeforeCursor = node.textContent.slice(0, range.startOffset); + const lastSlashIndex = textBeforeCursor.lastIndexOf("/"); + + if (lastSlashIndex !== -1) { + // Check if contains spaces (simple heuristic to stop looking too far back) + const query = textBeforeCursor.slice(lastSlashIndex + 1); + if (!query.includes(" ")) { + setShowSuggestions(true); + setSuggestionQuery(query); + setActiveSuggestionIndex(0); + + // Save context for replacement + slashContext.current = { node, index: lastSlashIndex }; + + // Get coordinates for popup + const rect = range.getBoundingClientRect(); + const inputRect = inputRef.current.getBoundingClientRect(); + setCursorPosition({ + top: rect.top - inputRect.top, + left: rect.left - inputRect.left + }); + return; + } + } + } + setShowSuggestions(false); + }; + + const handleSuggestionSelect = (layer: MapLayer) => { + if (!inputRef.current || !slashContext.current) return; + + // Use stored context + const { node, index } = slashContext.current; + + // Validate node is still in DOM (basic check) + if (!document.contains(node)) return; + + const selection = window.getSelection(); + const range = document.createRange(); + + try { + // Calculate end index: slash index + 1 (for '/') + query length + // But query length might have changed since last render? + // Better: Replace from slash index to the CURRENT cursor (if we still have focus) + // OR simpler: Replace from slash index to (slash index + 1 + suggestionQuery.length) + + // We'll trust suggestionQuery state as it drives the filtering + const endOffset = index + 1 + suggestionQuery.length; + + // Safety check limits + const safeEndOffset = Math.min(endOffset, (node.textContent?.length || 0)); + + range.setStart(node, index); + range.setEnd(node, safeEndOffset); + range.deleteContents(); + + // Create the chip + const chip = document.createElement("span"); + chip.contentEditable = "false"; + // Fixed height 20px (h-5), smaller text, constrained width + chip.className = "inline-flex items-center gap-1 px-1.5 h-5 mx-1 rounded-full text-[11px] font-medium select-none align-middle transition-transform hover:scale-105 cursor-default max-w-[160px] truncate border"; + + // Style: 15% opacity background, matching border + chip.style.backgroundColor = `${layer.style.color}26`; // 26 = ~15% opacity + chip.style.color = layer.style.color; + chip.style.borderColor = `${layer.style.color}40`; // 25% opacity border + + chip.dataset.layerId = layer.id; + chip.dataset.layerName = layer.name; + + // Dot icon + chip.innerHTML = ` + + ${layer.name} + `; + + // Insert chip + range.insertNode(chip); + + // Add a space after + const space = document.createTextNode("\u00A0"); + range.setStartAfter(chip); + range.setEndAfter(chip); + range.insertNode(space); + + // Restore Selection to end + range.setStartAfter(space); + range.setEndAfter(space); + + if (selection) { + selection.removeAllRanges(); + selection.addRange(range); + } + + setShowSuggestions(false); + setInput(inputRef.current.innerText); // update state + + // Force focus back + inputRef.current.focus(); + + } catch (e) { + console.error("Error inserting chip:", e); + } + }; + + const handleKeyDown = (e: React.KeyboardEvent) => { + if (showSuggestions && filteredLayers.length > 0) { + if (e.key === "ArrowDown") { + e.preventDefault(); + setActiveSuggestionIndex(prev => (prev + 1) % filteredLayers.length); + } else if (e.key === "ArrowUp") { + e.preventDefault(); + setActiveSuggestionIndex(prev => (prev - 1 + filteredLayers.length) % filteredLayers.length); + } else if (e.key === "Enter" || e.key === "Tab") { + e.preventDefault(); + handleSuggestionSelect(filteredLayers[activeSuggestionIndex]); + } else if (e.key === "Escape") { + setShowSuggestions(false); + } + return; + } + + if (e.key === "Enter" && !e.shiftKey) { + e.preventDefault(); + sendMessage(); + } + }; + + // ======================================================================== + // Send Message Handler + // ======================================================================== + const sendMessage = useCallback(async () => { + if (!inputRef.current || (!inputRef.current.innerText.trim() && !input.trim()) || loading) return; + + // Construct message with IDs from DOM + let fullMessage = ""; + const nodes = inputRef.current.childNodes; + let displayMessage = ""; // For user chat bubble (clean text) + + nodes.forEach(node => { + if (node.nodeType === Node.TEXT_NODE) { + fullMessage += node.textContent; + displayMessage += node.textContent; + } else if (node.nodeType === Node.ELEMENT_NODE) { + const el = node as HTMLElement; + if (el.dataset.layerId) { + // It's a chip + fullMessage += ` Layer ${el.dataset.layerName} (ID: ${el.dataset.layerId}) `; + displayMessage += ` ${el.dataset.layerName} `; + } else { + fullMessage += el.innerText; + displayMessage += el.innerText; + } + } + }); + + // Fallback if empty (shouldn't happen with check above) + if (!fullMessage.trim()) return; + + setMessages(prev => [...prev, { role: "user", content: displayMessage }]); + + // Clear input + if (inputRef.current) inputRef.current.innerHTML = ""; + setInput(""); + + setLoading(true); + setShowSuggestions(false); + + // Add placeholder assistant message with initial status + setMessages(prev => [...prev, { + role: "assistant", + content: "", + thoughts: "", + status: "Thinking..." + }]); + + try { + const history = messages.map(m => ({ role: m.role, content: m.content })); + const response = await fetch("http://localhost:8000/api/v1/chat/stream", { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify({ message: fullMessage, history }) // Send ID-enriched message + }); + + const reader = response.body?.getReader(); + const decoder = new TextDecoder(); + + if (!reader) { + updateLastMessage(msg => ({ ...msg, content: "Error: No response stream", status: undefined })); + return; + } + + let buffer = ""; + let currentEventType: string | null = null; + + while (true) { + const { done, value } = await reader.read(); + if (done) break; + + const chunk = decoder.decode(value, { stream: true }); + buffer += chunk; + + const lines = buffer.split('\n'); + buffer = lines.pop() || ""; // Keep partial line in buffer + + for (const line of lines) { + if (line.startsWith("event:")) { + currentEventType = line.slice(6).trim(); + } else if (line.startsWith("data:")) { + const dataStr = line.slice(5).trim(); + if (!dataStr) continue; + + try { + const data = JSON.parse(dataStr); + + // Handle map updates OUTSIDE state updater + if (currentEventType === "result" && data.geojson && onMapUpdate) { + onMapUpdate(data.geojson); + } + + // Update message based on event type + if (currentEventType === "chunk") { + if (data.type === "text") { + updateLastMessage(msg => ({ + ...msg, + content: msg.content + data.content + })); + } else if (data.type === "thought") { + updateLastMessage(msg => ({ + ...msg, + thoughts: (msg.thoughts || "") + data.content, + status: "Reasoning..." + })); + } + } else if (currentEventType === "result") { + updateLastMessage(msg => ({ + ...msg, + content: data.response || msg.content, + sql: data.sql_query, + chart: data.chart_data, + rawData: data.raw_data, + citations: data.data_citations, + status: undefined // Clear status on completion + })); + } else if (currentEventType === "status") { + updateLastMessage(msg => ({ + ...msg, + status: data.status + })); + } + } catch (e) { + console.error("Error parsing SSE JSON:", e); + } + } + } + } + } catch (err) { + console.error("Stream error:", err); + setMessages(prev => [...prev, { + role: "assistant", + content: "Error connecting to server. Please try again." + }]); + } finally { + setLoading(false); + // Ensure status is cleared after stream ends + updateLastMessage(msg => ({ ...msg, status: undefined })); + } + }, [input, loading, messages, onMapUpdate, updateLastMessage, layers]); + + // ======================================================================== + // Render + // ======================================================================== + return ( +
+ {/* Header */} +
+

+
+ +
+ + GeoQuery + +

+
+ + Gemini 3 Flash +
+
+ + {/* Messages */} +
+ {messages.map((m, i) => ( + + ))} +
+
+ + {/* Input */} +
+ {/* Suggestions Popup */} + {showSuggestions && filteredLayers.length > 0 && ( +
+
+ + Reference Map Layer +
+ {filteredLayers.map((layer, idx) => ( + + ))} +
+ )} + +
+
+ + + + {/* Send Button */} + +
+

+ GeoQuery can query datasets and visualize results as maps and charts. +
+ Use '/' to reference layers. +

+
+
+ ); +} diff --git a/frontend/src/components/MapViewer.tsx b/frontend/src/components/MapViewer.tsx new file mode 100644 index 0000000000000000000000000000000000000000..f0ddaaa76f08c719f99f2952c5f3db8000f721a3 --- /dev/null +++ b/frontend/src/components/MapViewer.tsx @@ -0,0 +1,640 @@ +"use client"; + +import { MapContainer, TileLayer, GeoJSON, useMap } from "react-leaflet"; +import "leaflet/dist/leaflet.css"; +import { useEffect, useState, useRef } from "react"; +import { Layers, X, Eye, EyeOff, Trash2, ChevronDown, ChevronUp, MoreHorizontal, Settings, GripVertical } from "lucide-react"; +import L from "leaflet"; +import { + DndContext, + closestCenter, + KeyboardSensor, + PointerSensor, + useSensor, + useSensors, + DragEndEvent +} from '@dnd-kit/core'; +import { + arrayMove, + SortableContext, + sortableKeyboardCoordinates, + verticalListSortingStrategy, + useSortable +} from '@dnd-kit/sortable'; +import { CSS } from '@dnd-kit/utilities'; + +// Fix for default marker icons in Next.js +delete (L.Icon.Default.prototype as any)._getIconUrl; +L.Icon.Default.mergeOptions({ + iconRetinaUrl: "https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-icon-2x.png", + iconUrl: "https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-icon.png", + shadowUrl: "https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-shadow.png", +}); + +export interface MapLayer { + id: string; + name: string; + data: any; + visible: boolean; + style: { + color: string; + fillColor: string; + fillOpacity: number; + weight: number; + opacity?: number; + }; + // Choropleth configuration + choropleth?: { + enabled: boolean; + column: string; + palette: string; + scale?: 'linear' | 'log'; + min?: number; + max?: number; + }; + // Geometry type for styling + geometryType?: 'polygon' | 'point' | 'line'; + // Point marker configuration + pointMarker?: { + icon: string; // emoji or icon class + color: string; + size: number; + style?: string; // "circle" or undefined + }; +} + +interface MapViewerProps { + layers: MapLayer[]; + onLayerUpdate: (id: string, updates: Partial) => void; + onLayerRemove: (id: string) => void; + onLayerReorder: (fromIndex: number, toIndex: number) => void; +} + +// ============== Choropleth Color Scales ================= +const COLOR_PALETTES: Record = { + viridis: ['#440154', '#482878', '#3e4a89', '#31688e', '#26828e', '#1f9e89', '#35b779', '#6ece58', '#b5de2b', '#fde725'], + blues: ['#f7fbff', '#deebf7', '#c6dbef', '#9ecae1', '#6baed6', '#4292c6', '#2171b5', '#08519c', '#08306b'], + reds: ['#fff5f0', '#fee0d2', '#fcbba1', '#fc9272', '#fb6a4a', '#ef3b2c', '#cb181d', '#a50f15', '#67000d'], + greens: ['#f7fcf5', '#e5f5e0', '#c7e9c0', '#a1d99b', '#74c476', '#41ab5d', '#238b45', '#006d2c', '#00441b'], + oranges: ['#fff5eb', '#fee6ce', '#fdd0a2', '#fdae6b', '#fd8d3c', '#f16913', '#d94801', '#a63603', '#7f2704'], +}; + +function getChoroplethColor(value: number, min: number, max: number, palette: string, scale: 'linear' | 'log' = 'linear'): string { + const colors = COLOR_PALETTES[palette] || COLOR_PALETTES.viridis; + if (value <= min) return colors[0]; + if (value >= max) return colors[colors.length - 1]; + + let normalized: number; + + if (scale === 'log' && min > 0 && max > 0) { + // Logarithmic normalization + const logMin = Math.log(min); + const logMax = Math.log(max); + const logVal = Math.log(Math.max(min, value)); // avoid log(0) + normalized = (logVal - logMin) / (logMax - logMin); + } else { + // Linear normalization + normalized = (value - min) / (max - min); + } + + // Clamp + normalized = Math.max(0, Math.min(1, normalized)); + + // Map to color index + const index = Math.floor(normalized * (colors.length - 1)); + return colors[index]; +} + +function calculateMinMax(features: any[], column: string): { min: number; max: number } { + let min = Infinity; + let max = -Infinity; + + features.forEach((feature: any) => { + const value = feature.properties?.[column]; + if (typeof value === 'number' && !isNaN(value)) { + min = Math.min(min, value); + max = Math.max(max, value); + } + }); + + return { min: min === Infinity ? 0 : min, max: max === -Infinity ? 1 : max }; +} + +// ============== Sortable Item Component ================= +interface SortableLayerItemProps { + layer: MapLayer; + onUpdate: (id: string, updates: Partial) => void; + onRemove: (id: string) => void; + expandedId: string | null; + setExpandedId: (id: string | null) => void; +} + +function SortableLayerItem({ layer, onUpdate, onRemove, expandedId, setExpandedId }: SortableLayerItemProps) { + const { + attributes, + listeners, + setNodeRef, + transform, + transition, + isDragging + } = useSortable({ id: layer.id }); + + const style = { + transform: CSS.Transform.toString(transform), + transition, + zIndex: isDragging ? 10 : 'auto', + opacity: isDragging ? 0.5 : 1 + }; + + return ( +
+
+
+ {/* Drag Handle */} +
+ +
+ +
+ + {layer.name} + +
+
+ + + +
+
+ + {/* Layer Settings (Expanded) */} + {expandedId === layer.id && ( +
+ {/* Fill Settings */} +
+ +
+ +
+ onUpdate(layer.id, { + style: { ...layer.style, fillColor: e.target.value } + })} + className="w-6 h-6 rounded cursor-pointer border-0 p-0" + /> +
+
+
+
+ + {Math.round((layer.style.fillOpacity ?? 0.6) * 100)}% +
+ onUpdate(layer.id, { + style: { ...layer.style, fillOpacity: parseFloat(e.target.value) } + })} + className="w-full h-1.5 bg-slate-200 rounded-lg appearance-none cursor-pointer accent-indigo-600" + /> +
+
+ + {/* Border Settings */} +
+ + + {/* Border Color */} +
+ +
+ onUpdate(layer.id, { + style: { ...layer.style, color: e.target.value } + })} + className="w-6 h-6 rounded cursor-pointer border-0 p-0" + /> +
+
+ + {/* Border Width */} +
+
+ + {layer.style.weight ?? 1}px +
+ onUpdate(layer.id, { + style: { ...layer.style, weight: parseFloat(e.target.value) } + })} + className="w-full h-1.5 bg-slate-200 rounded-lg appearance-none cursor-pointer accent-indigo-600" + /> +
+ + {/* Border Opacity (using style.opacity which Leaflet uses for stroke opacity) */} +
+
+ + {Math.round((layer.style.opacity ?? 1) * 100)}% +
+ onUpdate(layer.id, { + style: { ...layer.style, opacity: parseFloat(e.target.value) } + })} + className="w-full h-1.5 bg-slate-200 rounded-lg appearance-none cursor-pointer accent-indigo-600" + /> +
+
+
+ )} +
+ ); +} + +// Component to fit map bounds to the latest added layer +function AutoFitBounds({ layers }: { layers: MapLayer[] }) { + const map = useMap(); + const prevLayersLength = useRef(0); + + useEffect(() => { + // Only fit bounds if a NEW layer was added (not on every style update) + if (layers.length > prevLayersLength.current) { + const latestLayer = layers[layers.length - 1]; // Latest is at end of array (top layer) + if (latestLayer && latestLayer.visible && latestLayer.data) { + try { + const geoJsonLayer = L.geoJSON(latestLayer.data); + const bounds = geoJsonLayer.getBounds(); + if (bounds.isValid()) { + map.fitBounds(bounds, { padding: [50, 50], maxZoom: 14 }); + } + } catch (e) { + console.error("Error fitting bounds:", e); + } + } + } + prevLayersLength.current = layers.length; + }, [layers, map]); + + return null; +} + +// Popup content for features - Rich display with all properties +function onEachFeature(feature: any, layer: L.Layer) { + if (feature.properties) { + const props = feature.properties; + + // Start popup with styled container + let popupContent = ` +
+ `; + + // Determine admin level and show appropriate title + const title = props.adm3_name || props.adm2_name || props.adm1_name || props.name || "Feature"; + const adminLevel = props.adm3_name ? "Corregimiento" : props.adm2_name ? "District" : props.adm1_name ? "Province" : ""; + + popupContent += ` +
+
${title}
+ ${adminLevel ? `
${adminLevel}
` : ''} +
+ `; + + // Admin hierarchy (if not at country level) + const hierarchyItems = []; + if (props.adm3_name && props.adm2_name) hierarchyItems.push(`📍 District: ${props.adm2_name}`); + if ((props.adm3_name || props.adm2_name) && props.adm1_name) hierarchyItems.push(`🏛️ Province: ${props.adm1_name}`); + + if (hierarchyItems.length > 0) { + popupContent += `
`; + hierarchyItems.forEach(item => { + popupContent += `
${item}
`; + }); + popupContent += `
`; + } + + // Key metrics section + const metrics = []; + if (props.area_sqkm) { + const area = typeof props.area_sqkm === 'number' ? props.area_sqkm : parseFloat(props.area_sqkm); + metrics.push({ label: "Area", value: `${area.toLocaleString(undefined, { maximumFractionDigits: 1 })} km²` }); + } + if (props.area) { + const area = typeof props.area === 'number' ? props.area : parseFloat(props.area); + metrics.push({ label: "Area", value: `${area.toLocaleString(undefined, { maximumFractionDigits: 1 })} km²` }); + } + if (props.population) { + metrics.push({ label: "Population", value: props.population.toLocaleString() }); + } + + if (metrics.length > 0) { + popupContent += `
`; + metrics.forEach(m => { + popupContent += ` +
+ ${m.label} + ${m.value} +
+ `; + }); + popupContent += `
`; + } + + // Additional properties (expandable) + const excludedKeys = ['name', 'adm0_name', 'adm1_name', 'adm2_name', 'adm3_name', 'area_sqkm', 'area', 'population', + 'geometry', 'geom', 'layer_name', 'layer_id', 'style', 'adm0_pcode', 'adm1_pcode', 'adm2_pcode', 'adm3_pcode']; + const additionalProps = Object.entries(props).filter(([key, value]) => + !excludedKeys.includes(key) && + (typeof value === 'string' || typeof value === 'number') && + String(value).length < 50 + ); + + if (additionalProps.length > 0) { + popupContent += `
`; + additionalProps.slice(0, 5).forEach(([key, value]) => { + const cleanKey = key.replace(/_/g, ' ').replace(/\b\w/g, l => l.toUpperCase()); + popupContent += `
${cleanKey}: ${value}
`; + }); + popupContent += `
`; + } + + popupContent += `
`; + layer.bindPopup(popupContent, { maxWidth: 300 }); + } +} + +export default function MapViewer({ layers, onLayerUpdate, onLayerRemove, onLayerReorder }: MapViewerProps) { + const [showLegend, setShowLegend] = useState(true); + const [expandedLayerId, setExpandedLayerId] = useState(null); + const [dismissedEmptyState, setDismissedEmptyState] = useState(false); + + // Prepare reversed layers for visual display (Top layer at top of list) + // We reverse a copy of the ID list to determine visual order + const reversedLayers = [...layers].reverse(); + + const sensors = useSensors( + useSensor(PointerSensor, { + activationConstraint: { + distance: 8, + }, + }), + useSensor(KeyboardSensor, { + coordinateGetter: sortableKeyboardCoordinates, + }) + ); + + const handleDragEnd = (event: DragEndEvent) => { + const { active, over } = event; + + if (over && active.id !== over.id) { + const oldVisualIndex = reversedLayers.findIndex((l) => l.id === active.id); + const newVisualIndex = reversedLayers.findIndex((l) => l.id === over.id); + + // Convert visual indices (reversed list) to original indices + // Visual 0 -> Original LAST (length - 1) + const fromIndex = layers.length - 1 - oldVisualIndex; + const toIndex = layers.length - 1 - newVisualIndex; + + onLayerReorder(fromIndex, toIndex); + } + }; + + return ( +
+ + + + {/* Render All Visible Layers */} + {layers.map(layer => { + if (!layer.visible || !layer.data) return null; + + // Calculate min/max for choropleth if enabled + let choroplethConfig: { min: number; max: number; column: string; palette: string; scale: 'linear' | 'log' } | null = null; + if (layer.choropleth?.enabled && layer.data.features) { + const { min, max } = calculateMinMax(layer.data.features, layer.choropleth.column); + choroplethConfig = { + min: layer.choropleth.min ?? min, + max: layer.choropleth.max ?? max, + column: layer.choropleth.column, + palette: layer.choropleth.palette, + scale: layer.choropleth.scale || 'linear' + }; + } + + // Create point marker function for POI layers + const pointToLayer = (feature: any, latlng: L.LatLng) => { + const props = feature.properties || {}; + const iconChar = props.icon || layer.pointMarker?.icon; + const color = layer.pointMarker?.color || layer.style.color || '#6366f1'; + const size = layer.pointMarker?.size || 24; + + // Mode 1: Circle markers for dense data (heatmap-style) + // Use circles when: explicitly requested, no icon provided, or icon is "dot"/"circle" + if (!iconChar || iconChar === "dot" || iconChar === "circle" || layer.pointMarker?.style === "circle") { + return L.circleMarker(latlng, { + radius: size / 4 || 5, // Convert size to radius + fillColor: color, + color: '#ffffff', + weight: 2, + opacity: 1, + fillOpacity: 0.7 + }); + } + + // Mode 2: Icon markers for sparse, semantic features (hospitals, mountains, etc.) + const divIcon = L.divIcon({ + html: `
${iconChar}
`, + className: 'custom-emoji-marker', + iconSize: [size, size], + iconAnchor: [size / 2, size / 2], + popupAnchor: [0, -size / 2] + }); + + return L.marker(latlng, { icon: divIcon }); + }; + + return ( + { + // If choropleth is enabled, color by value + if (choroplethConfig && feature?.properties) { + const value = feature.properties[choroplethConfig.column]; + if (typeof value === 'number') { + const fillColor = getChoroplethColor( + value, + choroplethConfig.min, + choroplethConfig.max, + choroplethConfig.palette, + choroplethConfig.scale + ); + return { + fillColor, + fillOpacity: layer.style.fillOpacity ?? 0.7, + color: layer.style.color || '#333', + weight: layer.style.weight ?? 1, + opacity: layer.style.opacity ?? 1 + }; + } + } + // Line styling + if (feature?.geometry?.type === 'LineString' || feature?.geometry?.type === 'MultiLineString') { + return { + color: layer.style.color, + weight: layer.style.weight || 3, + opacity: layer.style.opacity ?? 0.8 + }; + } + // Default polygon style + return { + fillColor: layer.style.fillColor ?? layer.style.color, + fillOpacity: layer.style.fillOpacity ?? 0.6, + color: layer.style.color, + weight: layer.style.weight ?? 1, + opacity: layer.style.opacity ?? 1 + }; + }} + onEachFeature={onEachFeature} + /> + ); + })} + + +
+ + {/* Layer Control Panel */} + {showLegend && layers.length > 0 && ( +
+
+
+ + Layers ({layers.length}) +
+ +
+ + + l.id)} + strategy={verticalListSortingStrategy} + > +
+ {reversedLayers.map((layer) => ( + + ))} +
+
+
+
+ )} + + {/* Toggle legend button when hidden */} + {!showLegend && layers.length > 0 && ( + + )} + + {/* Empty state overlay */} + {layers.length === 0 && !dismissedEmptyState && ( +
+
+ +
+ +
+

No Data Displayed

+

+ Ask GeoQuery about population, districts, or coverage to see data on the map. +

+
+
+ )} +
+ ); +} diff --git a/frontend/src/components/charts/BarChart.tsx b/frontend/src/components/charts/BarChart.tsx new file mode 100644 index 0000000000000000000000000000000000000000..1a6129cbd10abd1a3b2a28aa9ef4948daf5987f8 --- /dev/null +++ b/frontend/src/components/charts/BarChart.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { + BarChart as RechartsBarChart, + Bar, + XAxis, + YAxis, + CartesianGrid, + Tooltip, + Legend, + ResponsiveContainer, + Cell, + Label // Import Label +} from 'recharts'; + +interface BarChartProps { + data: Array<{ [key: string]: any }>; + title?: string; + xKey?: string; + yKey?: string; + color?: string; + height?: number; + horizontal?: boolean; + xAxisLabel?: string; // New prop + yAxisLabel?: string; // New prop +} + +// Color palette for multiple bars +const COLORS = ['#6366f1', '#10b981', '#f59e0b', '#ef4444', '#8b5cf6', '#06b6d4', '#ec4899']; + +export default function BarChart({ + data, + title, + xKey = 'name', + yKey = 'value', + color = '#6366f1', + height = 300, + horizontal = false, + xAxisLabel, + yAxisLabel +}: BarChartProps) { + return ( +
+ {title && ( +

{title}

+ )} + + + + {horizontal ? ( + <> + + {xAxisLabel && + + {yAxisLabel && + + ) : ( + <> + + {xAxisLabel && + + {yAxisLabel && + + )} + + + + {data.map((entry, index) => ( + + ))} + + + +
+ ); +} diff --git a/frontend/src/components/charts/ChartRenderer.tsx b/frontend/src/components/charts/ChartRenderer.tsx new file mode 100644 index 0000000000000000000000000000000000000000..8930881d180a61c47179c396b3a647d9197d69d1 --- /dev/null +++ b/frontend/src/components/charts/ChartRenderer.tsx @@ -0,0 +1,76 @@ +"use client"; + +import dynamic from 'next/dynamic'; + +// Dynamic imports to avoid SSR issues with Recharts +const BarChart = dynamic(() => import('./BarChart'), { ssr: false }); +const PieChart = dynamic(() => import('./PieChart'), { ssr: false }); +const LineChart = dynamic(() => import('./LineChart'), { ssr: false }); + +export interface ChartData { + type: 'bar' | 'line' | 'pie' | 'donut'; + title?: string; + data: Array<{ [key: string]: any }>; + xKey?: string; + yKey?: string; + lines?: Array<{ key: string; color?: string; name?: string }>; + xAxisLabel?: string; // New + yAxisLabel?: string; // New +} + +interface ChartRendererProps { + chart: ChartData; +} + +export default function ChartRenderer({ chart }: ChartRendererProps) { + const { type, title, data, xKey, yKey, lines, xAxisLabel, yAxisLabel } = chart; + + switch (type) { + case 'bar': + return ( + + ); + + case 'line': + return ( + + ); + + case 'pie': + return ( + + ); + + case 'donut': + return ( + + ); + + default: + return ( +
+ Unknown chart type: {type} +
+ ); + } +} diff --git a/frontend/src/components/charts/LineChart.tsx b/frontend/src/components/charts/LineChart.tsx new file mode 100644 index 0000000000000000000000000000000000000000..5ea1346fe90ba4beb8c1ed1cb185c6000467b425 --- /dev/null +++ b/frontend/src/components/charts/LineChart.tsx @@ -0,0 +1,74 @@ +"use client"; + +import { + LineChart as RechartsLineChart, + Line, + XAxis, + YAxis, + CartesianGrid, + Tooltip, + Legend, + ResponsiveContainer +} from 'recharts'; + +interface LineChartProps { + data: Array<{ [key: string]: any }>; + title?: string; + xKey?: string; + lines: Array<{ key: string; color?: string; name?: string }>; + height?: number; +} + +// Default colors for lines +const COLORS = ['#6366f1', '#10b981', '#f59e0b', '#ef4444', '#8b5cf6']; + +export default function LineChart({ + data, + title, + xKey = 'name', + lines, + height = 300 +}: LineChartProps) { + return ( +
+ {title && ( +

{title}

+ )} + + + + + + + + {lines.map((line, index) => ( + + ))} + + +
+ ); +} diff --git a/frontend/src/components/charts/PieChart.tsx b/frontend/src/components/charts/PieChart.tsx new file mode 100644 index 0000000000000000000000000000000000000000..ba36d7a09533d5523ef6359b6225043ccc62af22 --- /dev/null +++ b/frontend/src/components/charts/PieChart.tsx @@ -0,0 +1,84 @@ +"use client"; + +import { + PieChart as RechartsPieChart, + Pie, + Cell, + Tooltip, + Legend, + ResponsiveContainer +} from 'recharts'; + +interface PieChartProps { + data: Array<{ [key: string]: any }>; + title?: string; + height?: number; + donut?: boolean; + nameKey?: string; + valueKey?: string; +} + +// Color palette +const COLORS = ['#6366f1', '#10b981', '#f59e0b', '#ef4444', '#8b5cf6', '#06b6d4', '#ec4899', '#84cc16']; + +export default function PieChart({ + data, + title, + height = 300, + donut = false +}: PieChartProps) { + // Calculate total for percentage + const total = data.reduce((sum, item) => sum + item.value, 0); + + return ( +
+ {title && ( +

{title}

+ )} + + + + `${props.name} (${((props.percent ?? 0) * 100).toFixed(0)}%)` + } + outerRadius={100} + innerRadius={donut ? 60 : 0} + fill="#8884d8" + dataKey="value" + paddingAngle={donut ? 2 : 0} + > + {data.map((entry, index) => ( + + ))} + + [ + `${(value ?? 0).toLocaleString()} (${(((value ?? 0) / total) * 100).toFixed(1)}%)`, + 'Value' + ]} + contentStyle={{ + background: 'white', + border: '1px solid #e2e8f0', + borderRadius: '8px', + boxShadow: '0 4px 6px -1px rgb(0 0 0 / 0.1)' + }} + /> + + + + {donut && ( +
+ {total.toLocaleString()} + Total +
+ )} +
+ ); +} diff --git a/frontend/src/lib/utils.ts b/frontend/src/lib/utils.ts new file mode 100644 index 0000000000000000000000000000000000000000..aa65f25eab04d9d16077e1850631b2a545e2cee7 --- /dev/null +++ b/frontend/src/lib/utils.ts @@ -0,0 +1,6 @@ +import { clsx, type ClassValue } from "clsx" +import { twMerge } from "tailwind-merge" + +export function cn(...inputs: ClassValue[]) { + return twMerge(clsx(inputs)) +} diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..cf9c65d3e0676a0169374d827f7abb97497789ef --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "target": "ES2017", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "react-jsx", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./src/*"] + } + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + ".next/dev/types/**/*.ts", + "**/*.mts" + ], + "exclude": ["node_modules"] +}